:root {
    --color-cream: #FDF8F3;
    --color-warm-white: #FEFCFA;
    --color-sand: #E8DDD4;
    --color-terracotta: #C4725D;
    --color-terracotta-dark: #A85C48;
    --color-forest: #2D4739;
    --color-forest-light: #3D5C4A;
    --color-charcoal: #2C2C2C;
    --color-text: #3A3A3A;
    --color-text-light: #6B6B6B;
    --color-kids: #E8A87C;
    --color-wedding: #D4A5A5;
    --color-analog: #8BAAB3;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 16px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-forest);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--color-terracotta);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-terracotta);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-forest);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-forest-light);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-sand) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(232, 168, 124, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(139, 170, 179, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.hero-badge::before {
    content: '✦';
    color: var(--color-terracotta);
}

.hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    color: var(--color-charcoal);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-terracotta);
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-terracotta);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 114, 93, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--color-charcoal);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--color-sand);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--color-charcoal);
    background: var(--color-charcoal);
    color: white;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.hero-card:nth-child(1) {
    width: 280px;
    height: 340px;
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 3;
}

.hero-card:nth-child(2) {
    width: 260px;
    height: 320px;
    top: 20px;
    right: 0;
    transform: rotate(6deg);
    z-index: 2;
}

.hero-card:nth-child(3) {
    width: 240px;
    height: 300px;
    bottom: 0;
    left: 35%;
    transform: rotate(-3deg);
    z-index: 1;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.hero-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, var(--color-cream), white);
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card:nth-child(1) .hero-card-image {
    background: linear-gradient(135deg, #FFF5E6, #FFE4CC);
}

.hero-card:nth-child(2) .hero-card-image {
    background: linear-gradient(135deg, #FFF0F0, #FFE4E4);
}

.hero-card:nth-child(3) .hero-card-image {
    background: linear-gradient(135deg, #E8F4F8, #D4E8ED);
}

.hero-card-label {
    padding: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

/* Stats */
.stats-bar {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-sand);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-forest);
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* Video Showcase Section */
.video-showcase {
    padding: 80px 0 20px;
    /* Reduced bottom padding */
    background: var(--color-warm-white);
    text-align: center;
}

.video-container {
    max-width: 380px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    position: relative;
    /* Optional: Add a subtle border or ring if needed to separate from background */
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 20px 0 120px;
    /* Reduced top padding */
    background: var(--color-warm-white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
    /* Adjusted slightly to balance spacing */
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-large);
}

.service-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:nth-child(1) .service-image {
    background: linear-gradient(135deg, #FFF5E6, #FFE4CC);
}

.service-card:nth-child(2) .service-image {
    background: linear-gradient(135deg, #FFF0F0, #FFE4E4);
}

.service-card:nth-child(3) .service-image {
    background: linear-gradient(135deg, #E8F4F8, #D4E8ED);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.service-card:nth-child(1) .service-badge {
    color: var(--color-kids);
}

.service-card:nth-child(2) .service-badge {
    color: var(--color-wedding);
}

.service-card:nth-child(3) .service-badge {
    color: var(--color-analog);
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.service-description {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 12px;
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--color-cream);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-forest);
    flex-shrink: 0;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-from {
    font-size: 13px;
    color: var(--color-text-light);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.price-currency {
    font-size: 18px;
    color: var(--color-text-light);
}

.service-cta {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-card:nth-child(1) .service-cta {
    background: var(--color-kids);
    color: white;
}

.service-card:nth-child(1) .service-cta:hover {
    background: #D69A6C;
}

.service-card:nth-child(2) .service-cta {
    background: var(--color-wedding);
    color: white;
}

.service-card:nth-child(2) .service-cta:hover {
    background: #C49595;
}

.service-card:nth-child(3) .service-cta {
    background: var(--color-analog);
    color: white;
}

.service-card:nth-child(3) .service-cta:hover {
    background: #7B9AA3;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--color-forest);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.how-it-works .section-label {
    color: var(--color-kids);
}

.how-it-works .section-title {
    color: white;
}

.how-it-works .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2), transparent);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-terracotta);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.step-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--color-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--color-sand);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-charcoal);
    font-family: var(--font-body);
}

.testimonial-info p {
    font-size: 13px;
    color: var(--color-text-light);
}

.testimonial-stars {
    color: #F5A623;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--color-terracotta);
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--color-warm-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-charcoal);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-cream);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--color-terracotta);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 32px 24px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--color-charcoal);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-terracotta);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 999;
    padding: 100px 24px 40px;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    flex: 1;
}

.mobile-menu-links a {
    display: block;
    padding: 20px 0;
    font-size: 24px;
    font-family: var(--font-display);
    color: var(--color-charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--color-sand);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps-grid::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-visual {
        height: 420px;
    }

    .hero-card:nth-child(1) {
        width: 180px;
        height: 240px;
        top: 0;
        left: -10px;
    }

    .hero-card:nth-child(2) {
        width: 160px;
        height: 220px;
        top: 60px;
        right: -10px;
    }

    .hero-card:nth-child(3) {
        width: 150px;
        height: 200px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: rotate(-3deg);
    }

    .stats-bar {
        flex-direction: column;
        gap: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}

.hero-card {
    animation: float 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
    animation-delay: -2s;
}

.hero-card:nth-child(3) {
    animation-delay: -4s;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Regulamin / Content Pages */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 100%);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

.content-section {
    padding: 60px 0 100px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

.content-wrapper h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--color-charcoal);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--color-forest);
}

.content-wrapper p {
    margin-bottom: 16px;
    font-size: 16px;
}

.content-wrapper ul {
    margin: 16px 0 16px 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
}

.content-wrapper strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

/* Nav CTA fix for when it's inside nav-links */
.nav-links a.nav-cta::after {
    display: none;
}

.nav-links a.nav-cta:hover {
    color: white;
    /* Ensure text color stays white on hover */
}

/* Responsive updates for Regulamin */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .content-wrapper {
        padding: 32px 24px;
    }

    .content-wrapper h2 {
        font-size: 28px;
    }

    .content-wrapper h3 {
        font-size: 20px;
    }
}

/* Subpage Navigation styling */
.subpage .nav {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

/* Fix for nav-cta color when nested in nav-links (overriding general link color) */
.nav-links a.nav-cta {
    color: white !important;
}