/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
    --brand-orange: #FF601A;
    --brand-orange-hover: #E55516;
    --white: #FFFFFF;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);
    --dark-bg: #0A0A0A;
    --dark-text: #1A1A2E;
    --gray-text: #4A4A5A;
    --light-bg: #FFFFFF;
    --glass-bg: rgba(10, 10, 10, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 16px 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.4s;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--brand-orange);
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.6s;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon:hover svg {
    fill: var(--brand-orange);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: fill 0.3s ease;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 30, 0.75) 0%,
        rgba(10, 15, 30, 0.65) 50%,
        rgba(10, 15, 30, 0.8) 100%
    );
    z-index: -1;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 40px;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

/* Main Headline */
.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title .line-1 {
    display: block;
    opacity: 0;
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.hero-title .line-2 {
    display: block;
    opacity: 0;
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.7s;
}

/* Subtitle */
.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 96, 26, 0.35);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary .arrow-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-primary .arrow-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
}

/* Secondary Button - Play Video (Glass Effect) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary .play-icon {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-secondary .play-icon svg {
    width: 10px;
    height: 10px;
    fill: var(--white);
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .play-icon {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover .play-icon svg {
    transform: scale(1.1);
}

.btn-secondary .btn-text {
    position: relative;
    z-index: 1;
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 1.3s;
}

.indicator {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--brand-orange);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes rippleEffect {
    to {
        transform: translate(-50%, -50%) scale(100);
        opacity: 0;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.scroll-indicator {
    display: none;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .header {
        padding: 16px 30px;
    }

    .nav {
        gap: 28px;
    }

    .hero-indicators {
        right: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }

    .nav {
        display: none;
    }

    .social-icons {
        gap: 16px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-indicators {
        right: 50%;
        transform: translateX(50%);
        bottom: 24px;
    }
}

/* ========================================
   CLIENTS / TRUST BAR SECTION
======================================== */
.clients-section {
    background: var(--light-bg);
    padding: 40px 0;
    overflow: hidden;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 60px;
}

.clients-title {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.clients-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
}

.clients-title h3 span {
    display: block;
}

.clients-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.15);
}

/* Logo Marquee */
.clients-marquee {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

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

.client-logo {
    flex-shrink: 0;
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

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

/* ========================================
   ABOUT / WHO WE ARE SECTION
======================================== */
.about-section {
    background: var(--light-bg);
    padding: 120px 100px 200px;
    overflow: visible;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.about-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-text);
    margin-bottom: 36px;
    max-width: 480px;
}

/* Right Image */
.about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
    max-width: 560px;
    margin-left: auto;
}

.about-image-wrapper.revealed {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Floating Growth Card */
.growth-card {
    position: absolute;
    bottom: 50px;
    left: -100px;
    background: var(--white);
    padding: 28px 28px 24px;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    z-index: 10;
    width: 260px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.5s;
}

.about-image-wrapper.revealed .growth-card {
    opacity: 1;
    transform: translateY(0);
}

.growth-card-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-text);
    margin-bottom: 2px;
    line-height: 1.2;
}

.growth-card-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    margin-top: 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* Chart Wrapper with Bars + Arrow */
.growth-chart-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
}

.growth-bars-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.growth-arrow-img {
    position: absolute;
    top: -22px;
    left: 5px;
    width: 95%;
    height: 90%;
    object-fit: contain;
    pointer-events: none;
}

/* ========================================
   SCROLL REVEAL UTILITY
======================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE - CLIENTS SECTION
======================================== */
@media (max-width: 1024px) {
    .clients-container {
        padding: 0 40px;
        gap: 30px;
    }

    .clients-title h3 {
        font-size: 16px;
    }

    .client-logo {
        height: 28px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 30px 0;
    }

    .clients-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 20px;
    }

    .clients-title {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .clients-title h3 {
        font-size: 15px;
    }

    .clients-title h3 span {
        display: inline;
    }

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

    .client-logo {
        height: 24px;
    }

    .clients-track {
        gap: 40px;
    }
}

/* ========================================
   RESPONSIVE - ABOUT SECTION
======================================== */
@media (max-width: 1300px) {
    .about-section {
        padding: 100px 60px 180px;
    }

    .about-container {
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 500px;
    }

    .growth-card {
        left: -80px;
        width: 260px;
    }
}

@media (max-width: 1100px) {
    .about-section {
        padding: 80px 40px 160px;
    }

    .about-container {
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 460px;
    }

    .about-image {
        height: 420px;
    }

    .growth-card {
        left: -60px;
        bottom: 40px;
        width: 240px;
        padding: 24px 26px 26px;
    }

    .growth-card-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .growth-chart {
        height: 85px;
        width: 180px;
    }

    .chart-bars {
        gap: 5px;
    }
}

@media (max-width: 900px) {
    .about-section {
        padding: 70px 30px 140px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content .btn-primary {
        margin: 0 auto;
    }

    .about-image-wrapper {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image {
        height: 400px;
    }

    .growth-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -60px;
        width: 250px;
    }

    .growth-chart {
        width: 190px;
        height: 90px;
    }

    .about-image-wrapper.revealed .growth-card {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 60px 20px 100px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-image {
        height: 300px;
        border-radius: 16px;
    }

    .growth-card {
        width: 220px;
        padding: 20px 22px 22px;
        bottom: -50px;
        border-radius: 18px;
    }

    .growth-card-label {
        font-size: 13px;
    }

    .growth-card-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .growth-chart {
        height: 75px;
        width: 170px;
    }

    .chart-bars {
        gap: 4px;
    }
}

/* ========================================
   GROWTH SYSTEM SECTION
======================================== */
.growth-system-section {
    position: relative;
    background: #0D0D0D;
    padding: 100px 60px 120px;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
}

/* Background Grid Pattern */
.growth-system-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.growth-system-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
}

/* Header */
.growth-system-header {
    text-align: center;
    margin-bottom: 70px;
}

.growth-system-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 28px;
}

.growth-system-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
}

/* Cards Grid */
.growth-system-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

/* Individual Card */
.growth-card-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px 36px;
}


/* Icon Circle */
.growth-card-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.growth-card-icon i {
    font-size: 26px;
    color: var(--white);
}

.growth-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

/* Card Title */
.growth-card-item-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

/* Card Description */
.growth-card-item-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

/* Connector Arrows */
.connector-arrow {
    position: absolute;
    top: -10px;
    right: -55px;
    width: 109px;
    height: 47px;
    z-index: 2;
}

.connector-arrow.connector-bottom {
    top: auto;
    bottom: -10px;
    right: -55px;
}

/* Hide last card's arrow */
.growth-card-item:last-child .connector-arrow {
    display: none;
}

/* Footer */
.growth-system-footer {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.growth-system-footer.revealed {
    opacity: 1;
    transform: translateY(0);
}

.growth-system-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-weight: 400;
}

/* Reveal Animations for Growth System */
.growth-system-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.growth-system-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.growth-card-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                border-color 0.3s ease;
}

.growth-card-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.growth-card-item.revealed:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ========================================
   RESPONSIVE - GROWTH SYSTEM SECTION
======================================== */
@media (max-width: 1200px) {
    .growth-system-section {
        padding: 80px 40px 100px;
    }

    .growth-system-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .connector-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .growth-system-section {
        padding: 60px 20px 80px;
        border-radius: 30px 30px 0 0;
        margin-top: -30px;
    }

    .growth-system-header {
        margin-bottom: 50px;
    }

    .growth-system-badge {
        padding: 8px 20px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .growth-system-title {
        font-size: 32px;
    }

    .growth-system-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .growth-card-item {
        padding: 28px 24px 32px;
    }

    .growth-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .growth-card-icon i {
        font-size: 22px;
    }

    .growth-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .growth-card-item-title {
        font-size: 18px;
    }

    .growth-card-item-desc {
        font-size: 14px;
    }

    .growth-system-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .growth-system-section {
        padding: 50px 16px 60px;
        border-radius: 24px 24px 0 0;
        margin-top: -24px;
    }

    .growth-system-title {
        font-size: 28px;
    }

    .growth-card-item {
        padding: 24px 20px 28px;
        border-radius: 16px;
    }
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    background: var(--light-bg);
    padding: 100px 0 160px;
    padding-top: 160px;
    overflow: visible;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #0D0D0D;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.services-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.services-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.services-subtitle {
    font-size: 17px;
    color: var(--gray-text);
    font-weight: 400;
}

/* Carousel Wrapper */
.services-carousel-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.services-carousel {
    display: flex;
    gap: 24px;
    padding: 20px 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

/* Service Card */
.service-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffeee8 0%, #fff5f0 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Card Content */
.service-card-content {
    padding: 24px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
}

/* CTA */
.services-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.services-cta.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Animations for Services */
.services-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.services-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE - SERVICES SECTION
======================================== */
@media (max-width: 1200px) {
    .services-carousel {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0 100px;
        padding-top: 120px;
    }

    .services-section::before {
        height: 60px;
        border-radius: 0 0 30px 30px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-badge {
        padding: 8px 20px;
        font-size: 13px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-subtitle {
        font-size: 15px;
    }

    .services-carousel {
        padding: 20px;
        gap: 16px;
    }

    .service-card {
        flex: 0 0 280px;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0 80px;
        padding-top: 100px;
    }

    .services-section::before {
        height: 50px;
        border-radius: 0 0 24px 24px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-card {
        flex: 0 0 260px;
    }

    .service-card-image {
        height: 160px;
    }

    .service-card-content {
        padding: 18px;
    }
}

/* ========================================
   CASE STUDIES / OUR WORK SECTION
======================================== */
.case-studies-section {
    background: #111111;
    padding: 100px 80px 120px;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.case-studies-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

.case-studies-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Left Content */
.case-studies-content {
    color: var(--white);
}

.case-studies-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    margin-bottom: 28px;
}

.case-studies-title {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.case-studies-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 380px;
}

.case-studies-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Dark Secondary Button */
.btn-secondary-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #1f1f1f;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.btn-secondary-dark:hover {
    background: #262626;
}

.btn-secondary-dark .arrow-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-dark .arrow-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
}

/* Right Bento Grid - Staggered layout */
.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 100px 180px;
    gap: 20px;
    max-width: 580px;
}

/* Orange card - top left (short) */
.case-studies-grid .case-card:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

/* Image 1 - top right (tall, spans 2 rows) */
.case-studies-grid .case-card:nth-child(2) {
    grid-row: 1 / 3;
    grid-column: 2;
}

/* Image 2 - bottom left (tall, spans 2 rows) */
.case-studies-grid .case-card:nth-child(3) {
    grid-row: 2 / 4;
    grid-column: 1;
}

/* White card - bottom right (short) */
.case-studies-grid .case-card:nth-child(4) {
    grid-row: 3;
    grid-column: 2;
}

/* Case Cards */
.case-card {
    border-radius: 20px;
    overflow: hidden;
}

/* Orange Info Card */
.case-card-info {
    background: var(--brand-orange);
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card-info .case-card-business {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.1;
}

.case-card-info .case-card-location {
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: auto;
}

.case-card-info .case-card-stat {
    display: inline-block;
    padding: 12px 18px;
    background: #0D0D0D;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

/* White Info Card */
.case-card-info-light {
    background: var(--white);
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card-info-light .case-card-business {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 8px;
    line-height: 1.1;
}

.case-card-info-light .case-card-location {
    font-size: 20px;
    color: var(--brand-orange);
    font-weight: 500;
    margin-bottom: auto;
}

.case-card-info-light .case-card-stat {
    display: inline-block;
    padding: 12px 18px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

/* Image Cards */
.case-card-image {
    background: #1a1a1a;
    height: 100%;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   RESPONSIVE - CASE STUDIES SECTION
======================================== */
@media (max-width: 1100px) {
    .case-studies-section {
        padding: 90px 40px 110px;
    }

    .case-studies-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .case-studies-content {
        text-align: center;
    }

    .case-studies-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .case-studies-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .case-studies-section {
        padding: 60px 20px 80px;
        border-radius: 36px 36px 0 0;
        margin-top: -30px;
    }

    .case-studies-title {
        font-size: 32px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 80px 140px;
        gap: 14px;
        max-width: 100%;
    }

    .case-card-info,
    .case-card-info-light {
        padding: 18px;
    }

    .case-card-info .case-card-business,
    .case-card-info-light .case-card-business {
        font-size: 18px;
    }

    .case-card-info .case-card-location,
    .case-card-info-light .case-card-location {
        font-size: 14px;
    }

    .case-card-info .case-card-stat,
    .case-card-info-light .case-card-stat {
        padding: 10px 16px;
        font-size: 12px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .case-studies-section {
        padding: 40px 16px 60px;
        border-radius: 28px 28px 0 0;
    }

    .case-studies-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .case-studies-title {
        font-size: 28px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    /* Reset grid positioning for single column */
    .case-studies-grid .case-card:nth-child(1),
    .case-studies-grid .case-card:nth-child(2),
    .case-studies-grid .case-card:nth-child(3),
    .case-studies-grid .case-card:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
    }

    .case-card-info,
    .case-card-info-light {
        min-height: 160px;
    }

    .case-card-image img {
        min-height: 200px;
    }

    .case-studies-cta {
        flex-direction: column;
    }

    .case-studies-cta .btn-primary,
    .case-studies-cta .btn-secondary-dark {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   TESTIMONIALS / HAPPY CLIENTS SECTION
======================================== */
.testimonials-section {
    background: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Shape */
.testimonials-bg-shape {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 500px;
    height: auto;
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    font-size: 17px;
    color: var(--gray-text);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel */
.testimonials-carousel-wrapper {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.testimonials-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 340px;
    background: #F8F8F8;
    border-radius: 20px;
    padding: 32px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-orange);
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-text);
}

/* Navigation Arrows */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #999;
}

.testimonial-nav-btn:hover {
    color: var(--brand-orange);
}

.testimonial-nav-btn.next {
    color: var(--brand-orange);
}

/* ========================================
   RESPONSIVE - TESTIMONIALS SECTION
======================================== */
@media (max-width: 1024px) {
    .testimonials-container {
        padding: 0 40px;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0 90px;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonials-bg-shape {
        width: 280px;
        right: -100px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0 70px;
    }

    .testimonial-card {
        flex: 0 0 260px;
    }

    .testimonials-nav {
        margin-top: 30px;
    }
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--brand-orange);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-circles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    opacity: 0.3;
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--white);
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-white .arrow-icon {
    width: 24px;
    height: 24px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-white .arrow-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #0D0D0D;
    position: relative;
}

.footer-top-bar {
    height: 8px;
    background: var(--brand-orange);
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Column */
.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-contact-item svg {
    stroke: rgba(255, 255, 255, 0.7);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Links Columns */
.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Footer Social */
.footer-social-icons {
    display: flex;
    gap: 16px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-social-icon svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.7);
    transition: fill 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
}

.footer-social-icon:hover svg {
    fill: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ========================================
   RESPONSIVE - CTA & FOOTER
======================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 70px 30px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .footer-container {
        padding: 60px 30px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 20px;
    }

    .btn-cta-white {
        padding: 16px 24px;
        font-size: 15px;
    }

    .footer-container {
        padding: 50px 20px 24px;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-divider {
        display: none;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}
