:root {
    /* Colors */
    --primary: #E05A26;
    --primary-hover: #C24A1D;
    --primary-light: rgba(224, 90, 38, 0.1);
    --bg-color: #FCFBF9;
    --surface: #FFFFFF;
    --text-main: #2C2C2C;
    --text-muted: #666666;
    --accent-gold: #D4AF37;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typography Classes */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    margin-bottom: var(--space-sm);
}

p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.lead {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    margin-bottom: var(--space-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.7rem, 2vw, 0.875rem) clamp(1.2rem, 4vw, 2rem);
    border-radius: 50px;
    font-weight: 500;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(224, 90, 38, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(224, 90, 38, 0.4);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: clamp(0.9rem, 2.5vw, 1.2rem) clamp(1.5rem, 5vw, 3.5rem);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 2px;
    display: block;
    text-align: center;
}

.footer-logo {
    font-size: clamp(2rem, 5vw, 3rem);
}

.footer-logo-sub {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
}

.btn-mobile-nav {
    display: none;
}

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.75rem;
        color: var(--text-main);
        cursor: pointer;
        z-index: 101;
        padding: 0.25rem;
        transition: var(--transition);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(252, 251, 249, 0.98);
        /* FCFBF9 body bg */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 100;
        text-align: center;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.15rem;
        font-weight: 500;
        width: 100%;
        padding: 0.5rem 0;
    }

    .btn-mobile-nav {
        display: block !important;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .btn-nav {
        display: none !important;
    }

    /* Responsive Typography & Spacing on Mobile/Tablet */
    h1 {
        font-size: clamp(2rem, 6vw, 2.75rem) !important;
    }

    h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    }

    .lead {
        font-size: 1.1rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    section {
        padding: 4rem 0 !important;
        /* Reduce padding on mobile from 8rem to 4rem */
    }
}

/* Sections Common */
section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-header {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Banner Carousel */
/* Banner Carousel - Masaüstü ve Genel Kurallar */
.banner-carousel {
    position: relative;
    width: 100vw;
    height: auto;
    /* Sabit calc yüksekliği yerine otomatik yapıyoruz */
    min-height: unset;
    /* Alt sınır zorlamasını kaldırıyoruz */
    max-height: unset;
    /* Üst sınır zorlamasını kaldırıyoruz */
    overflow: hidden;
    margin-top: 100px;
    padding: 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.banner-carousel:active {
    cursor: grabbing;
}

.banner-slides {
    display: flex;
    width: 100%;
    height: auto;
    /* Yüksekliği içeriğe bırakıyoruz */
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.banner-slides.dragging {
    transition: none;
}

.banner-slide {
    min-width: 100%;
    width: 100%;
    height: auto;
    /* Yüksekliği serbest bırakıyoruz */
    flex-shrink: 0;
    position: relative;
}

.banner-link {
    display: block;
    width: 100%;
    height: auto;
}

/* Picture Element Wrapper */
.banner-slide picture {
    display: block;
    width: 100%;
    height: auto;
    /* Yüksekliğin resme göre şekillenmesini sağlar */
}

.banner-slide img {
    width: 100%;
    height: auto !important;
    /* Görsel en-boy oranını bozmadan tam sığar */
    object-fit: contain !important;
    /* Görselin hiçbir yerinin kırpılmamasını sağlar */
    display: block;
    pointer-events: none;
}


/* Banner Navigation Arrows */
.banner-arrow {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 5;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    line-height: 0;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Add text shadow so the white arrow is visible on light backgrounds */
}

.banner-arrow:hover {
    background: transparent;
    transform: translateY(-50%) scale(1.1);
}

.banner-arrow.prev {
    left: 1.25rem;
}

.banner-arrow.next {
    right: 1.25rem;
}

.banner-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 5;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.banner-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(224, 90, 38, 0.5);
}

.banner-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

@media (max-width: 1920px) {
    .banner-carousel {
        height: calc(70vh + 100px);
        min-height: 580px;
        max-height: 880px;
    }
}

@media (max-width: 1512px) {
    .banner-carousel {
        height: calc(65vh + 100px);
        min-height: 520px;
        max-height: 780px;
    }
}

@media (max-width: 1200px) {
    .banner-carousel {
        height: calc(60vh + 120px);
        min-height: 460px;
        max-height: 680px;
    }
}

@media (max-width: 992px) {
    .banner-carousel {
        height: calc(50vh + 120px);
        min-height: 400px;
        max-height: 570px;
        margin-top: 76px;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .banner-arrow.prev {
        left: 0.75rem;
    }

    .banner-arrow.next {
        right: 0.75rem;
    }
}

@media (max-width: 768px) {
    .banner-carousel {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        margin-top: 60px;
        /* Navbar padding matches */
    }

    .banner-slides,
    .banner-slide,
    .banner-link {
        height: auto !important;
    }

    .banner-slide picture {
        height: auto !important;
    }

    .banner-slide img {
        height: auto !important;
        object-fit: contain !important;
    }

    .banner-arrow {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.25rem !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .banner-carousel {
        height: calc(40vh + 120px);
        min-height: 340px;
        max-height: 470px;
    }

    .banner-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .banner-indicators {
        bottom: 1.5rem;
    }

    .banner-dot {
        width: 10px;
        height: 10px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Offset for navbar */
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 251, 249, 0.85);
    /* FCFBF9 */
    z-index: -1;
}

@media (min-width: 992px) {
    .hero-bg::after {
        background: linear-gradient(to right, rgba(252, 251, 249, 0.95) 0%, rgba(252, 251, 249, 0.7) 60%, rgba(252, 251, 249, 0.2) 100%);
    }
}

.hero-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: var(--space-xl);
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--surface);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    filter: blur(40px);
    border-radius: 50%;
}

.hero-image {
    width: 100%;
    max-width: 612px;
    height: auto;
    max-height: 80vh;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    margin-top: -200px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-image {
        margin-top: 0;
    }
}

/* Benefits Section */
.benefits {
    position: relative;
    background: transparent;
    overflow: hidden;
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/benefits-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.benefits-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 251, 249, 0.88);
    z-index: -1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: var(--surface);
    padding: clamp(1.25rem, 4vw, 2rem);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-size: 2rem;
}

/* Product Details */
.details {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.details-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/details-bg.jpg');
    /* Soft minimal aesthetic */
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.details-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 251, 249, 0.85);
    z-index: -1;
}

@media (min-width: 992px) {
    .details-bg::after {
        background: linear-gradient(to left, rgba(252, 251, 249, 0.95) 0%, rgba(252, 251, 249, 0.75) 50%, rgba(252, 251, 249, 0.2) 100%);
    }
}

.details-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.details-image {
    text-align: center;
}

.details-image img {
    width: 100%;
    max-width: none;
    transform: scale(1.3);
    transform-origin: center right;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@media (max-width: 992px) {
    .details-image img {
        transform: scale(1.1);
        transform-origin: center center;
    }
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.feature-list strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.feature-list span {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .details-container {
        grid-template-columns: 1fr;
    }

    .details-image {
        order: -1;
    }
}

/* Experience Section */
.experience {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-main);
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/experience-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.experience-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 251, 249, 0.75);
    /* Soft light overlay */
    z-index: -1;
}

.experience-card {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.experience-card h2 {
    color: var(--text-main);
}

.experience-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-tags span {
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(224, 90, 38, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    position: relative;
    background: transparent;
    overflow: hidden;
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.testimonials-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 251, 249, 0.85);
    z-index: -1;
}

.testimonials-marquee-wrapper {
    overflow: hidden;
    width: 110%;
    margin-left: -5%;
    position: relative;
    padding: 20px 0;
}

.testimonials-marquee-track {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

.testimonials-marquee-track .testimonial-card {
    width: 350px;
    flex-shrink: 0;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--space-lg) / 2)));
    }
}

.testimonial-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.reviewer-info strong {
    display: block;
    color: var(--text-main);
}

.reviewer-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.final-banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: clamp(4rem, 10vw, 8rem) 0;
    min-height: 100vh;
}

/* Final CTA */
.final-cta {
    background: var(--text-main);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/final-banner-bg.jpg');
    /* Soft wellness image */
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.15;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 90, 38, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: transparent;
    padding: 4rem 0 2rem;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;

}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    margin: 1rem 0 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.link-group a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .stat-item {
        align-items: center;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

/* Scroll Animations Base */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}