/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --color-primary: #0D9488;
    --color-primary-dark: #0B7A70;
    --color-primary-light: #14B8A6;
    --color-mint: #99F6E4;
    --color-mint-light: #CCFBF1;
    --color-coral: #F97316;
    --color-coral-light: #FB923C;
    --color-coral-dark: #EA580C;
    --color-charcoal: #1E293B;
    --color-charcoal-light: #334155;
    --color-gray-100: #F8FAFC;
    --color-gray-200: #F1F5F9;
    --color-gray-300: #E2E8F0;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-white: #FFFFFF;

    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);
    --shadow-glow: 0 0 40px rgba(13,148,136,0.3);
    --shadow-glow-coral: 0 0 40px rgba(249,115,22,0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.4s var(--ease);
    --transition-fast: 0.2s var(--ease);
    --transition-slow: 0.6s var(--ease);

    --container: 1280px;
    --space-section: clamp(5rem, 10vw, 8rem);
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: clamp(0.938rem, 0.9rem + 0.2vw, 1.063rem);
    line-height: 1.7;
    color: var(--color-charcoal);
    background: var(--color-white);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }

/* ========================================
   LOADER
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__icon {
    animation: loaderPulse 1.5s var(--ease) infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

/* ========================================
   CURSOR GLOW
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,148,136,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* ========================================
   CONTAINER & UTILITY
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
    padding: var(--space-section) 0;
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-mint-light);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.section__label--light {
    background: rgba(255,255,255,0.15);
    color: var(--color-mint);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--color-gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 600;
    padding: 0.8rem 1.85rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease), height 0.6s var(--ease);
}

.btn:hover::after {
    width: 400px;
    height: 400px;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(13,148,136,0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(13,148,136,0.35);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn--full { width: 100%; }

.btn--glow:hover {
    box-shadow: var(--shadow-glow), 0 12px 32px rgba(13,148,136,0.2);
}

.btn--submit {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: all var(--transition);
}

.header--scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 0.6rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}

.logo__icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-charcoal);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-charcoal-light);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav__link:hover { color: var(--color-primary); }
.nav__link:hover::after { width: 100%; }

.header__cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.hamburger__line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger--active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger--active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger--active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(153,246,228,0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 75% 60%, rgba(13,148,136,0.2) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(249,115,22,0.08) 0%, transparent 50%),
        linear-gradient(160deg, #ffffff 0%, var(--color-mint-light) 50%, #e0faf4 100%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 80%, 0% 0%;
    }
    33% {
        background-position: 10% 20%, 80% 70%, 60% 90%, 0% 0%;
    }
    66% {
        background-position: 30% 10%, 60% 80%, 40% 70%, 0% 0%;
    }
    100% {
        background-position: 20% 30%, 90% 50%, 55% 85%, 0% 0%;
    }
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* 15 sparkle particles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    animation: sparkleFloat linear infinite;
}

.sparkle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    filter: blur(2px);
}

.sparkle--1  { left:  8%; top: 25%; width:5px; height:5px; animation-duration:9s;  animation-delay:0s; }
.sparkle--2  { left: 18%; top: 65%; width:7px; height:7px; animation-duration:12s; animation-delay:-2s; background:var(--color-mint); }
.sparkle--3  { left: 30%; top: 15%; width:4px; height:4px; animation-duration:7s;  animation-delay:-4s; }
.sparkle--4  { left: 42%; top: 75%; width:6px; height:6px; animation-duration:10s; animation-delay:-1s; background:var(--color-coral); }
.sparkle--5  { left: 55%; top: 20%; width:5px; height:5px; animation-duration:8s;  animation-delay:-3s; }
.sparkle--6  { left: 65%; top: 55%; width:8px; height:8px; animation-duration:11s; animation-delay:-5s; background:var(--color-mint); }
.sparkle--7  { left: 75%; top: 30%; width:3px; height:3px; animation-duration:6.5s;animation-delay:-2s; }
.sparkle--8  { left: 85%; top: 70%; width:6px; height:6px; animation-duration:9.5s;animation-delay:-6s; }
.sparkle--9  { left: 92%; top: 40%; width:4px; height:4px; animation-duration:8s;  animation-delay:-1.5s; background:var(--color-coral); }
.sparkle--10 { left:  5%; top: 50%; width:7px; height:7px; animation-duration:13s; animation-delay:-7s; }
.sparkle--11 { left: 22%; top: 85%; width:3px; height:3px; animation-duration:7.5s;animation-delay:-3.5s; }
.sparkle--12 { left: 48%; top: 45%; width:5px; height:5px; animation-duration:10.5s;animation-delay:-4.5s; background:var(--color-mint); }
.sparkle--13 { left: 60%; top: 80%; width:4px; height:4px; animation-duration:8.5s;animation-delay:-2.5s; }
.sparkle--14 { left: 78%; top: 10%; width:6px; height:6px; animation-duration:11.5s;animation-delay:-5.5s; }
.sparkle--15 { left: 35%; top: 35%; width:5px; height:5px; animation-duration:9s;  animation-delay:-8s; background:var(--color-coral); }

@keyframes sparkleFloat {
    0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
    10%  { opacity: 0.6; transform: translateY(-20px) translateX(5px) scale(1); }
    50%  { opacity: 0.3; transform: translateY(-100px) translateX(25px) scale(0.8); }
    90%  { opacity: 0.5; transform: translateY(-180px) translateX(-10px) scale(1.1); }
    100% { transform: translateY(-220px) translateX(15px) scale(0); opacity: 0; }
}

/* decorative blobs for parallax */
.hero__deco {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero__deco--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -80px;
    background: radial-gradient(circle, rgba(153,246,228,0.35) 0%, transparent 70%);
}

.hero__deco--2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -60px;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
}

.hero__deco--3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 60%;
    background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 0 4rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease-in-out infinite alternate;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.hero__title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__dot {
    -webkit-text-fill-color: var(--color-coral);
}

@keyframes gradientText {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero__tagline {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--color-charcoal-light);
    margin-bottom: 2.75rem;
    min-height: 2em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease) 0.3s, transform 0.8s var(--ease) 0.3s;
}

.hero__tagline.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__cursor {
    display: inline-block;
    animation: cursorBlink 0.8s steps(2) infinite;
    font-weight: 300;
    color: var(--color-primary);
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero__ctas {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease) 0.6s, transform 0.8s var(--ease) 0.6s;
}

.hero__ctas.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero__divider svg {
    width: 100%;
    height: 80px;
}

/* ========================================
   MARQUEE BAND
   ======================================== */
.marquee {
    background: var(--color-primary);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    z-index: 4;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee__content {
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    padding: 0 0.5rem;
}

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

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: var(--color-gray-100);
    overflow: hidden;
}

.services__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.blob--1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
    background: var(--color-mint);
}

.blob--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: rgba(13,148,136,0.2);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

/* staggered layout */
.services__grid .service-card:nth-child(2) { transform: translateY(30px); }
.services__grid .service-card:nth-child(5) { transform: translateY(30px); }

.service-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px) rotateY(-3deg) !important;
    box-shadow: var(--shadow-xl);
    background: rgba(255,255,255,0.9);
}

.service-card__circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-primary-light) 100%);
    opacity: 0.2;
    transition: all var(--transition);
}

.service-card:hover .service-card__circle {
    opacity: 0.35;
    transform: scale(1.4);
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-mint) 100%);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: all var(--transition);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

/* ========================================
   STATS BAND
   ======================================== */
.stats {
    background: var(--color-charcoal);
    padding: 1.25rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,148,136,0.08) 0%, transparent 50%, rgba(249,115,22,0.06) 100%);
}

.stats__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 2.5rem;
    position: relative;
    z-index: 2;
}

.stat {
    color: var(--color-white);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    white-space: nowrap;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.stat__number--text {
    font-size: 1.5rem;
}

.stat__plus {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
}

.stat__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how__timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.how__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-gray-300);
    transform: translateX(-50%);
    border-radius: 2px;
}

.how__step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.how__step:last-child { margin-bottom: 0; }

.how__dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(13,148,136,0.15);
}

.how__svg { overflow: visible; }

.how__draw {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.2s var(--ease);
}

.how__step.visible .how__draw {
    stroke-dashoffset: 0;
}

.how__card {
    width: calc(50% - 52px);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition);
}

.how__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.how__card--left {
    margin-right: auto;
}

.how__card--right {
    margin-left: auto;
}

.how__step:nth-child(even) .how__card--right {
    order: 0;
}

.how__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--color-charcoal);
}

.how__desc {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.65;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: var(--color-gray-100);
    overflow: hidden;
}

.testimonials__carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 320px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s var(--ease);
    pointer-events: none;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial__quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(8rem, 15vw, 12rem);
    line-height: 0.5;
    color: var(--color-mint);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    pointer-events: none;
    user-select: none;
}

.testimonial__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.25rem;
}

.testimonial__star {
    color: var(--color-coral);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s var(--ease-bounce);
}

.testimonial.active .testimonial__star {
    opacity: 1;
    transform: scale(1);
}

.testimonial__text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-charcoal-light);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}

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

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

.testimonial__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-charcoal);
}

.testimonial__role {
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-gray-400);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.testimonials__dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

.testimonials__dot:hover {
    border-color: var(--color-primary);
}

/* ========================================
   PRICING
   ======================================== */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: center;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 3.5vw, 2.75rem);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-gray-200);
    position: relative;
    transition: all 0.5s var(--ease);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px) scale(1.02);
}

/* Popular card: bigger and elevated */
.pricing-card--popular {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: scale(1.08);
    z-index: 2;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    overflow: hidden;
}

.pricing-card--popular:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}

/* animated gradient border */
.pricing-card__border-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-2xl);
    background: conic-gradient(from 0deg, var(--color-coral), var(--color-primary), var(--color-mint), var(--color-coral));
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-card--popular > *:not(.pricing-card__border-glow):not(.pricing-card__badge) {
    position: relative;
    z-index: 2;
}

.pricing-card--popular::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--color-white);
    border-radius: calc(var(--radius-2xl) - 2px);
    z-index: 1;
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-coral);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    z-index: 5;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
}

.pricing-card__header {
    text-align: center;
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--color-gray-200);
    position: relative;
    z-index: 2;
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 0.5rem;
}

.pricing-card__currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-top: 0.4rem;
}

.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-charcoal);
}

.pricing-card--popular .pricing-card__amount {
    color: var(--color-coral);
}

.pricing-card__tagline {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-charcoal-light);
}

.pricing-check svg {
    flex-shrink: 0;
    color: var(--color-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s var(--ease-bounce);
}

.pricing-card.visible .pricing-check svg {
    opacity: 1;
    transform: scale(1);
}

/* stagger the check animation */
.pricing-card.visible .pricing-check:nth-child(1) svg { transition-delay: 0.1s; }
.pricing-card.visible .pricing-check:nth-child(2) svg { transition-delay: 0.2s; }
.pricing-card.visible .pricing-check:nth-child(3) svg { transition-delay: 0.3s; }
.pricing-card.visible .pricing-check:nth-child(4) svg { transition-delay: 0.4s; }
.pricing-card.visible .pricing-check:nth-child(5) svg { transition-delay: 0.5s; }

/* ========================================
   TRUST BAND
   ======================================== */
.trust {
    background: linear-gradient(160deg, var(--color-charcoal) 0%, var(--color-primary-dark) 100%);
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.trust__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.trust-item svg {
    color: var(--color-mint);
    flex-shrink: 0;
}

/* ========================================
   CONTACT / CTA
   ======================================== */
.contact {
    background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-charcoal) 100%);
    color: var(--color-white);
    overflow: hidden;
}

.contact__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.contact__shape--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: var(--color-mint);
    animation: contactFloat 15s ease-in-out infinite alternate;
}

.contact__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    background: var(--color-coral);
    animation: contactFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes contactFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.1); }
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.contact__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact__trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact__badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.contact__badge svg {
    color: var(--color-mint);
    flex-shrink: 0;
}

.contact__form {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form__group { margin-bottom: 0; }

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__input {
    width: 100%;
    padding: 0.8rem 0;
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--color-charcoal);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-gray-300);
    border-radius: 0;
    transition: all var(--transition-fast);
    outline: none;
}

.form__input::placeholder { color: var(--color-gray-400); }

.form__input:focus {
    border-bottom-color: var(--color-primary);
    box-shadow: 0 2px 0 0 var(--color-primary);
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.contact__form .btn {
    margin-top: 0.75rem;
    color: var(--color-white);
}

.form__success {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 0.75rem;
    color: var(--color-primary);
    z-index: 5;
}

.form__success.active {
    display: flex;
    animation: fadeScale 0.5s var(--ease-bounce);
}

.form__success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.form__success p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-charcoal);
    color: rgba(255,255,255,0.65);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
    position: relative;
    overflow: hidden;
}

.footer__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,148,136,0.05) 0%, transparent 40%);
    pointer-events: none;
    animation: footerGradient 10s ease-in-out infinite alternate;
}

@keyframes footerGradient {
    0%   { opacity: 0.5; }
    100% { opacity: 1; }
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
    position: relative;
    z-index: 2;
}

.logo--footer .logo__text {
    color: var(--color-white);
}

.logo--footer .logo__icon {
    color: var(--color-mint);
}

.footer__tagline {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer__col a {
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer__col a:hover {
    color: var(--color-mint);
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer__contact-list svg {
    flex-shrink: 0;
    color: var(--color-gray-400);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    transition: all var(--transition);
}

.footer__social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    animation: socialBounce 0.4s var(--ease-bounce);
}

@keyframes socialBounce {
    0%   { transform: translateY(0); }
    40%  { transform: translateY(-8px); }
    60%  { transform: translateY(-3px); }
    100% { transform: translateY(-4px); }
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 0;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* keep staggered cards visible when animated */
.services__grid .service-card.reveal.visible:nth-child(2),
.services__grid .service-card.reveal.visible:nth-child(5) {
    transform: translateY(30px);
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__grid .service-card:nth-child(2),
    .services__grid .service-card:nth-child(5) {
        transform: none;
    }

    .services__grid .service-card.reveal.visible:nth-child(2),
    .services__grid .service-card.reveal.visible:nth-child(5) {
        transform: none;
    }

    .pricing__grid {
        gap: 1.25rem;
    }

    .pricing-card--popular {
        transform: scale(1.04);
    }

    .pricing-card--popular:hover {
        transform: scale(1.04) translateY(-8px);
    }

    .contact__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact__trust-badges {
        align-items: center;
    }

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

    .stats__inner {
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }

    .how__card {
        width: calc(50% - 44px);
    }
}

/* ========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .nav--open {
        opacity: 1;
        pointer-events: all;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav__link {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        font-weight: 700;
    }

    .header__cta { display: none; }
    .hamburger { display: flex; }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card--popular {
        transform: none;
    }

    .pricing-card--popular:hover {
        transform: translateY(-8px);
    }

    .how__timeline {
        max-width: 100%;
    }

    .how__line { left: 32px; }
    .how__dot {
        left: 32px;
        width: 52px;
        height: 52px;
    }

    .how__step {
        padding-left: 80px;
    }

    .how__card {
        width: 100%;
    }

    .how__card--left,
    .how__card--right {
        margin: 0;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__social {
        justify-content: center;
    }

    .trust__inner {
        gap: 1.5rem;
    }

    .cursor-glow { display: none; }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero__ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .stats__inner {
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }

    .trust__inner {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial__quote {
        font-size: 6rem;
    }
}
