/* ============================================================
   style.css — PixelGrowMedia | Ultra Premium v2.0
   Senior Frontend Dev Edition — Bricolage Grotesque + DM Sans
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
    /* Brand */
    --green:             #00bf6f;
    --green-hover:       #00a85e;
    --green-deep:        #007a44;
    --green-light:       rgba(0, 191, 111, 0.08);
    --green-glow:        rgba(0, 191, 111, 0.16);
    --green-subtle:      rgba(0, 191, 111, 0.05);

    /* Dark Palette */
    --dark:              #06080a;
    --dark-card:         #0d1014;
    --dark-text:         #0f1214;
    --dark-muted:        #181d22;
    --border-dark:       #1e2428;
    --border-dark-2:     #252b30;

    /* Text */
    --mid-text:          #4e5662;
    --light-text:        #8d94a0;
    --placeholder:       #b0b7c2;

    /* Light Palette */
    --white:             #ffffff;
    --bg:                #f4f5f8;
    --bg-alt:            #edeef2;
    --bg-subtle:         #f9fafb;

    /* Borders */
    --border:            #e3e6ea;
    --border-strong:     #cdd0d6;

    /* Shadows — multi-layer premium */
    --shadow-xs:         0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm:         0 2px 10px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md:         0 8px 28px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg:         0 20px 56px rgba(0,0,0,0.09), 0 6px 18px rgba(0,0,0,0.05);
    --shadow-xl:         0 36px 88px rgba(0,0,0,0.12), 0 12px 32px rgba(0,0,0,0.06);
    --shadow-2xl:        0 56px 120px rgba(0,0,0,0.16), 0 24px 56px rgba(0,0,0,0.08);
    --shadow-green:      0 6px 24px rgba(0,191,111,0.22), 0 2px 6px rgba(0,191,111,0.14);
    --shadow-green-lg:   0 16px 48px rgba(0,191,111,0.28), 0 6px 14px rgba(0,191,111,0.16);

    /* Radius */
    --radius-xs:         4px;
    --radius-sm:         8px;
    --radius-md:         12px;
    --radius-lg:         18px;
    --radius-xl:         24px;
    --radius-2xl:        32px;
    --radius-full:       999px;

    /* Transitions */
    --transition:        all 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:   all 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-display:      'Bricolage Grotesque', sans-serif;
    --font-body:         'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { -webkit-tap-highlight-color: transparent; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== SCROLL REVEAL ===== */
.build-card, .process-step, .pricing-card, .why-item, .contact-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.build-card.revealed, .process-step.revealed, .pricing-card.revealed,
.why-item.revealed, .contact-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
/* ============================================================
   NAVBAR — Premium Capsule Design
   ============================================================ */
.navbar {
    position: sticky;
    top: 24px; /* Floats down from the top */
    z-index: 1000;
    max-width: 1100px; /* Constrained width for capsule effect */
    margin: 0 auto;
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full); /* Perfect pill shape */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    top: 12px; /* Floats slightly up when scrolling */
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px; /* Slightly slimmer for premium look */
    padding: 0 24px;
}
.logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark-text);
    letter-spacing: -0.3px;
    flex-shrink: 0;
    font-optical-sizing: auto;
}
.logo span { color: var(--green); }

.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; margin-left: 20px; }
.nav-links > li > a {
    text-decoration: none;
    color: var(--mid-text);
    font-weight: 600;
    font-size: 14.5px;
    padding: 8px 18px;
    border-radius: var(--radius-full); /* Pill shape hover for links */
    transition: var(--transition);
    display: block;
    font-family: var(--font-body);
    letter-spacing: -0.1px;
}
.nav-links > li > a:hover { color: var(--dark-text); background: var(--bg); transform: translateY(-1px); }

.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px); /* Pushed down slightly to clear the capsule curve */
    left: 50%;
    transform: translateX(-50%); /* Centered dropdown */
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    list-style: none;
    overflow: hidden;
    z-index: 1001;
    padding: 8px;
}
.dropdown-menu.dropdown-open { display: block; animation: dropFade 0.2s ease forwards; }
@keyframes dropFade { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--mid-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--green-light); color: var(--green); }

.nav-buttons { display: flex; gap: 10px; align-items: center; }
.nav-buttons .btn { padding: 10px 20px; } /* Perfectly sized buttons for capsule */

.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    list-style: none;
    overflow: hidden;
    z-index: 1001;
    padding: 6px;
}
.dropdown-menu.dropdown-open { display: block; }
.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 14px;
    color: var(--mid-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: -0.1px;
}
.dropdown-menu li a:hover { background: var(--bg); color: var(--dark-text); }

.nav-buttons { display: flex; gap: 8px; align-items: center; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    color: var(--dark-text);
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}
.hamburger:hover { background: var(--bg); }
.hamburger svg { display: block; }

/* ============================================================
   MOBILE DRAWER — Premium
   ============================================================ */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 88vw);
    height: 100dvh; /* handles mobile browser UI correctly */
    background: var(--white);
    box-shadow: -20px 0 80px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: none;
    flex-direction: column;
}
.mobile-drawer.open { right: 0; }

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    flex-shrink: 0;
}
.drawer-header .logo { font-size: 18px; }
.drawer-close {
    background: var(--bg);
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--dark-text);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    transition: var(--transition);
    flex-shrink: 0;
}
.drawer-close:hover { background: var(--bg-alt); }

.drawer-nav {
    list-style: none;
    padding: 10px 14px;
    flex-grow: 1;
}
.drawer-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: -0.2px;
}
.drawer-nav > li > a:hover { color: var(--green); background: var(--green-light); }
.drawer-nav > li { border-bottom: 1px solid var(--border); }
.drawer-nav > li:last-child { border-bottom: none; }

.drawer-sub { list-style: none; padding: 4px 0 10px 16px; }
.drawer-sub li a {
    display: block;
    padding: 9px 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--mid-text);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}
.drawer-sub li a:hover { color: var(--green); background: var(--green-light); }

.drawer-cta {
    padding: 18px 22px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.52);
    z-index: 9998;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.drawer-overlay.open { display: block; }

/* ============================================================
   BUTTONS — Premium
   ============================================================ */
.btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    white-space: nowrap;
    letter-spacing: -0.15px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}
.btn-primary:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-green); }

.btn-outline {
    background: transparent;
    color: var(--dark-text);
    border: 1.5px solid var(--border-strong);
    font-weight: 600;
}
.btn-outline:hover { background: var(--bg); border-color: #adb3bc; }
.btn-ghost {
    background: transparent;
    color: var(--mid-text);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg); color: var(--dark-text); }
.btn-outline-dark {
    background: transparent;
    color: var(--dark-text);
    border: 1.5px solid rgba(0,0,0,0.12);
    font-weight: 600;
}
.btn-outline-dark:hover { background: rgba(0,0,0,0.03); }
.btn-outline-card {
    background: transparent;
    color: var(--dark-text);
    border: 1.5px solid var(--border);
    font-weight: 600;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.btn-outline-card:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    box-shadow: 0 8px 32px rgba(37,211,102,0.38), 0 2px 8px rgba(37,211,102,0.20);
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: -0.1px;
}
.whatsapp-float:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(37,211,102,0.48), 0 6px 16px rgba(37,211,102,0.24);
}
.whatsapp-float:active { transform: translateY(0); }
.wa-label { white-space: nowrap; }

/* ============================================================
   HERO — Premium Overhaul
   ============================================================ */
.hero {
    padding: 104px 0 100px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0,191,111,0.032) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,191,111,0.032) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 65% 25%, black 25%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 65% 25%, black 25%, transparent 72%);
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: glow-drift 10s ease-in-out infinite;
}
.hero-glow-1 {
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(0,191,111,0.09) 0%, transparent 68%);
    top: -200px; right: -80px;
}
.hero-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,191,111,0.06) 0%, transparent 68%);
    bottom: -100px; left: 80px;
    animation-delay: -5s;
}
.hero-glow-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(60,120,255,0.04) 0%, transparent 70%);
    top: 35%; left: 38%;
    animation-delay: -2.5s;
}
@keyframes glow-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(18px, -22px) scale(1.04); }
    70%       { transform: translate(-12px, 10px) scale(0.97); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-subtle);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    letter-spacing: 0.2px;
    border: 1px solid rgba(0,191,111,0.16);
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.55); }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -1.2px;
    color: var(--dark-text);
    margin-bottom: 22px;
    font-optical-sizing: auto;
}
.hero-accent { color: var(--green); }
.hero-accent-outline {
    -webkit-text-stroke: 2px var(--green);
    color: transparent;
}

.hero-content p {
    font-size: 1.07rem;
    color: var(--mid-text);
    margin-bottom: 36px;
    max-width: 430px;
    line-height: 1.78;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    align-items: center;
}
.hero-cta-group .btn { padding: 14px 28px; font-size: 14.5px; }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    margin-right: -8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    flex-shrink: 0;
}
.hero-trust p {
    font-size: 13px;
    color: var(--mid-text);
    font-weight: 500;
    line-height: 1.4;
}
.hero-trust p strong { color: var(--dark-text); font-weight: 700; }

/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.case-study-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.case-study-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), #00e580 50%, rgba(0,229,128,0));
}
.case-study-card .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--font-display);
}
.case-study-card h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.22;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--dark-text);
    font-optical-sizing: auto;
}
.case-study-card .card-sub {
    color: var(--mid-text);
    font-size: 0.9rem;
    margin-bottom: 22px;
    line-height: 1.65;
}
.card-metrics {
    display: flex;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.metric { flex: 1; text-align: center; padding: 0 8px; }
.metric:not(:last-child) { border-right: 1px solid var(--border); }
.metric-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.5px;
    font-optical-sizing: auto;
}
.metric-label {
    display: block;
    font-size: 10.5px;
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 3px;
}

/* Stats bar */
.hero-stat-row {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.8px;
    line-height: 1;
    font-optical-sizing: auto;
}
.hero-stat .stat-plus {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green);
}
.hero-stat .stat-label {
    display: block;
    font-size: 10.5px;
    color: var(--light-text);
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrapper {
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    background: var(--bg-subtle);
}
.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-scroll 32s linear infinite;
    padding: 13px 0;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--light-text);
    white-space: nowrap;
    padding: 0 22px;
    transition: color 0.2s;
    letter-spacing: -0.1px;
}
.marquee-item:hover { color: var(--green); }
.marquee-item svg { flex-shrink: 0; color: var(--green); opacity: 0.65; }
.marquee-dot { color: var(--green); font-size: 10px; opacity: 0.35; padding: 0 4px; }

/* ============================================================
   WHAT WE BUILD
   ============================================================ */
.what-we-build { padding: 104px 0; background: var(--white); }

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.build-card-wide { grid-column: span 2; }

.build-card {
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.build-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,111,0.04) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.build-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--green), rgba(0,229,128,0.25), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.build-card:hover {
    border-color: rgba(0,191,111,0.22);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--white);
}
.build-card:hover::before { opacity: 1; }
.build-card:hover::after  { transform: scaleX(1); }

.build-card-icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green);
    border: 1px solid rgba(0,191,111,0.12);
    transition: var(--transition);
}
.build-card:hover .build-card-icon {
    background: rgba(0,191,111,0.13);
    border-color: rgba(0,191,111,0.22);
}
.build-card h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.15px;
    color: var(--dark-text);
    font-optical-sizing: auto;
}
.build-card p { font-size: 14px; color: var(--mid-text); line-height: 1.72; margin-bottom: 20px; }
.build-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.build-tags span {
    background: var(--green-light);
    color: var(--green);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,191,111,0.16);
    letter-spacing: 0.1px;
}
/* ============================================================
   PROCESS SECTION — Premium Light Theme
   ============================================================ */
.process-section {
    padding: 104px 0;
    background: var(--bg-alt); /* Soft elegant gray to make white cards pop */
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Subtle green glow accent in the background */
.process-section::before {
    content: '';
    position: absolute;
    top: -150px; 
    right: -100px;
    width: 500px; 
    height: 500px;
    background: radial-gradient(circle, var(--green-light) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.8;
}

.process-header {
    display: flex;
    gap: 72px;
    align-items: flex-start;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}
.process-header .section-eyebrow { 
    color: var(--green-deep);
    background: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-body);
    display: inline-block;
    margin-bottom: 16px;
}
.process-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark-text); /* Pure dark text for light theme */
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 0;
}
.process-sub {
    color: var(--mid-text);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 360px;
    flex-shrink: 0;
    padding-top: 12px;
}

.process-steps {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
}
.process-step {
    flex: 1;
    padding: 36px 28px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
}
.process-step:hover {
    border-color: rgba(0,191,111,0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
/* Premium Smooth Green Numbers - High Visibility */
.step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    /* Outline thoda thick rakha hai taaki visibility badhe */
    -webkit-text-stroke: 2.5px var(--green); 
    /* Text-shadow se outline ko thoda aur depth aur clarity milegi */
    text-shadow: 0 0 15px rgba(0, 191, 111, 0.2); 
    opacity: 0.6; /* Pehle se better opacity */
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .step-num {
    color: var(--green); /* Hover pe solid fill */
    opacity: 1;
    text-shadow: 0 10px 20px rgba(0, 191, 111, 0.3); /* Hover pe glowing depth */
    transform: scale(1.05);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}
.process-step p { 
    font-size: 14px; 
    color: var(--mid-text); 
    line-height: 1.65; 
}

.process-connector {
    width: 32px;
    height: 1.5px;
    background: var(--border-strong);
    margin-top: 65px;
    flex-shrink: 0;
    position: relative;
    align-self: flex-start;
}
.process-connector::after {
    content: '→';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-text);
    font-size: 14px;
    font-weight: 700;
}

/* Ensure mobile layout doesn't break */
@media (max-width: 1024px) {
    .process-steps { flex-direction: column; gap: 16px; }
    .process-connector {
        width: 1.5px; height: 32px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .process-connector::after { top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(90deg); content: '→'; }
    .process-header { flex-direction: column; gap: 16px; }
    .process-sub { max-width: 100%; padding-top: 0; }
}
/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
    display: inline-block;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--font-body);
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-optical-sizing: auto;
}
.section-sub {
    color: var(--mid-text);
    font-size: 1.02rem;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.72;
}

/* ============================================================
   PRICING — Premium
   ============================================================ */
.pricing-section { padding: 104px 0; background: var(--bg); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,191,111,0.18);
}
.pricing-card.popular {
    border-color: var(--green);
    border-width: 2px;
    box-shadow: 0 0 0 4px var(--green-light), var(--shadow-lg);
    transform: translateY(-10px);
}
.pricing-card.popular:hover {
    transform: translateY(-18px);
    box-shadow: 0 0 0 4px var(--green-light), var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    padding: 5px 18px;
    border-radius: var(--radius-full);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    font-family: var(--font-display);
    box-shadow: 0 4px 16px rgba(0,191,111,0.32);
}

.plan-icon { font-size: 1.9rem; margin-bottom: 14px; }
.pricing-card-top { margin-bottom: 22px; }
.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    font-optical-sizing: auto;
}
.pricing-desc { color: var(--mid-text); font-size: 13px; line-height: 1.62; margin-bottom: 20px; }
.price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-optical-sizing: auto;
}
.price .currency { font-size: 1.2rem; font-weight: 700; padding-top: 6px; color: var(--mid-text); }
.price .per {
    font-size: 0.82rem;
    color: var(--light-text);
    font-weight: 500;
    align-self: flex-end;
    padding-bottom: 4px;
    padding-left: 4px;
    font-family: var(--font-body);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    font-size: 13.5px;
    color: var(--mid-text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.pricing-features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--green-light);
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-card .btn-primary { width: 100%; justify-content: center; padding: 13px; font-size: 14.5px; }

.pricing-note {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
    color: var(--mid-text);
    font-size: 13.5px;
}
.pricing-note svg { color: var(--green); flex-shrink: 0; }
.pricing-note a { color: var(--green); font-weight: 700; text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }
/* ── Discount price row (cut price + save badge) ── */
.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.price-original {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light-text);
    text-decoration: line-through;
    text-decoration-color: rgba(141,148,160,0.65);
    font-family: var(--font-display);
}
.price-save-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0,191,111,0.10);
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,191,111,0.20);
    letter-spacing: 0.4px;
    white-space: nowrap;
}

/* ── Starter plans tier (1999/2999) ── */
.pricing-tier-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.pricing-tier-label .tier-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
}
.tier-note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mid-text);
    background: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}
.pricing-grid-budget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto 44px;
}

/* ── Divider between Starter and Full plans ── */
.pricing-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 44px 0 38px;
    color: var(--light-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pricing-divider::before,
.pricing-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.pricing-divider span { flex-shrink: 0; white-space: nowrap; }
/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding: 104px 0; background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-content .section-eyebrow { text-align: left; display: block; margin-bottom: 12px; }
.why-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-optical-sizing: auto;
}
.why-content > p { color: var(--mid-text); font-size: 0.98rem; line-height: 1.78; }

.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-subtle);
    transition: var(--transition);
}
.why-item:hover {
    border-color: rgba(0,191,111,0.22);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
    background: var(--white);
}
.why-icon {
    font-size: 1.5rem;
    width: 46px; height: 46px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.why-item:hover .why-icon {
    border-color: rgba(0,191,111,0.18);
    box-shadow: 0 4px 16px rgba(0,191,111,0.09);
}
.why-item h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark-text);
    font-optical-sizing: auto;
}
.why-item p { font-size: 13px; color: var(--mid-text); line-height: 1.65; }

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-section { padding: 104px 0; background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 48px;
}
.contact-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}
.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,191,111,0.22);
}
.contact-item-wa { border-color: rgba(37,211,102,0.18); }
.contact-item-wa:hover { border-color: #25D366; box-shadow: 0 16px 48px rgba(37,211,102,0.13); }

.contact-icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--green);
    border: 1px solid rgba(0,191,111,0.12);
    transition: var(--transition);
}
.contact-item:hover .contact-icon { background: rgba(0,191,111,0.12); }
.contact-icon-wa { background: rgba(37,211,102,0.08); color: #25D366; border-color: rgba(37,211,102,0.16); }
.contact-item h4 {
    font-family: var(--font-display);
    color: var(--dark-text);
    font-size: 0.98rem;
    margin-bottom: 5px;
    font-weight: 700;
    font-optical-sizing: auto;
}
.contact-item p { color: var(--mid-text); font-size: 0.9rem; font-weight: 500; margin-bottom: 10px; }
.contact-cta { font-size: 12.5px; font-weight: 700; color: var(--green); }

.quick-contact {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quick-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -10%, rgba(0,191,111,0.13) 0%, transparent 52%);
    pointer-events: none;
}
.quick-contact h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-optical-sizing: auto;
}
.quick-contact p {
    color: rgba(255,255,255,0.36);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: var(--white); padding: 72px 0 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 52px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 48px;
    margin-bottom: 28px;
}
.footer-brand .logo { font-family: var(--font-display); color: var(--white); font-size: 19px; font-optical-sizing: auto; }
.footer-brand .logo span { color: var(--green); }
.footer-brand p {
    color: rgba(255,255,255,0.28);
    font-size: 13.5px;
    max-width: 290px;
    line-height: 1.78;
    margin-top: 14px;
}
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 11px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.38);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-optical-sizing: auto;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
    color: rgba(255,255,255,0.26);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.72); }
.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.18);
    font-size: 12.5px;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0,191,111,0.18);
}
.portfolio-img-wrapper {
    width: 100%; aspect-ratio: 16/10; overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.portfolio-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-card:hover .portfolio-img-wrapper img { transform: scale(1.06); }
.portfolio-content { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.portfolio-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 700;
    letter-spacing: -0.15px;
    font-optical-sizing: auto;
}
.portfolio-content p { color: var(--mid-text); margin-bottom: 20px; flex-grow: 1; font-size: 13.5px; line-height: 1.65; }
.portfolio-btn {
    width: 100%;
    text-align: center;
    color: var(--dark-text);
    padding: 11px 0;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    display: block;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.portfolio-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ============================================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
    .hero-inner { gap: 48px; }
    .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — TABLET LANDSCAPE (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }

    .build-grid { grid-template-columns: 1fr 1fr; }
    .build-card-wide { grid-column: span 2; }

    .process-steps { flex-direction: column; gap: 14px; }
    .process-connector {
        width: 40px; height: 24px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .process-connector::after { top: 50%; left: 50%; transform: translate(-50%,-50%); content: '↓'; }
    .process-header { flex-direction: column; gap: 14px; }
    .process-sub { max-width: 100%; }

    /* Pricing: 2 col with popular card full-width in middle */
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.popular {
        grid-column: span 2;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        transform: none;
    }
    .pricing-card.popular:hover { transform: translateY(-6px); }

    .why-grid { grid-template-columns: 1fr; gap: 44px; }
    .why-content { text-align: center; }
    .why-content .section-eyebrow { text-align: center; }
    .why-content > p { max-width: 500px; margin: 0 auto; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-brand p { max-width: 360px; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤900px)
   ============================================================ */
@media (max-width: 900px) {
    /* Hero collapses to single column */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-content h1 { font-size: clamp(2.6rem, 7vw, 3.3rem); }
    .hero-content p { max-width: 520px; margin-left: auto; margin-right: auto; }
    .hero-eyebrow, .hero-trust { justify-content: center; }
    .hero-cta-group { justify-content: center; }
    .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }

    /* Contact: 2 cols at this size */
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    .nav-links, .nav-buttons { display: none; }
    .hamburger { display: flex; }
    .mobile-drawer { display: flex; }
    
    .navbar {
        top: 12px;
        width: calc(100% - 24px); /* Leaves a beautiful 12px gap on left and right */
        border-radius: var(--radius-full);
    }
    .nav-container { 
        height: 60px; 
        padding: 0 18px; 
    }

    .hero { padding: 60px 0 68px; }
    .hero-content h1 { font-size: clamp(2.3rem, 8.5vw, 3rem); letter-spacing: -0.8px; }
    .hero-eyebrow { font-size: 11px; padding: 5px 12px; }
    .hero-cta-group { flex-direction: column; align-items: center; gap: 10px; }
    .hero-cta-group .btn { width: 100%; max-width: 300px; justify-content: center; }
    .case-study-card { padding: 22px; }
    .case-study-card h2 { font-size: 1.2rem; }
    .hero-stat-row { padding: 16px 14px; }
    .hero-stat .stat-number { font-size: 1.5rem; letter-spacing: -0.4px; }
    .hero-stat .stat-label { font-size: 9.5px; }

    .build-grid { grid-template-columns: 1fr; gap: 14px; }
    .build-card-wide { grid-column: span 1; }
    .build-card { padding: 26px; }

    .what-we-build, .why-section, .contact-info-section { padding: 72px 0; }
    .pricing-section { padding: 72px 0; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-grid-budget { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 32px; }
    .pricing-tier-label { flex-direction: column; align-items: flex-start; gap: 8px; }
    .pricing-card { padding: 28px 22px; }
    .pricing-card.popular { grid-column: span 1; max-width: 100%; transform: none; }
    .pricing-card.popular:hover { transform: translateY(-6px); }

    .contact-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 48px; }
    .contact-item { padding: 26px 20px; }
    .quick-contact { padding: 36px 24px; }
    .quick-contact h3 { font-size: 1.55rem; }

    .section-header { margin-bottom: 44px; }

    .why-grid { gap: 36px; }
    .why-item { padding: 18px; }
    .why-item:hover { transform: none; } /* no x-shift on mobile */

    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-brand { grid-column: span 1; }
    .footer-brand p { max-width: 100%; margin: 14px auto 0; }
    .footer-links ul { align-items: center; }

    .portfolio-grid { grid-template-columns: 1fr; }

    .whatsapp-float .wa-label { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
    .whatsapp-float:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE — MID MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
    .container { padding: 0 18px; }

    .hero-content h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
    .hero-stat-row { border-radius: var(--radius-md); }
    .hero-stat .stat-number { font-size: 1.35rem; }

    .pricing-grid { max-width: 100%; }
    .contact-grid { max-width: 100%; }

    .section-header h2 { font-size: clamp(1.8rem, 6vw, 2.2rem); }

    .process-step { padding: 22px 18px; }
    .step-num { font-size: 2.2rem; }

    .quick-contact { padding: 32px 20px; }
    .quick-contact h3 { font-size: 1.4rem; }

    .case-study-card { padding: 18px; }
    .metric-num { font-size: 1.3rem; }

    .footer { padding: 56px 0 24px; }
    .whatsapp-float { bottom: 16px; right: 16px; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    .hero-content h1 { font-size: clamp(1.85rem, 7.5vw, 2.2rem); letter-spacing: -0.5px; }

    /* Stats bar wraps to 2+1 grid on very small */
    .hero-stat-row {
        flex-wrap: wrap;
        gap: 14px 0;
        justify-content: center;
        padding: 16px 12px;
    }
    .hero-stat { min-width: calc(50% - 0.5px); }
    .hero-stat-divider { display: none; }
    .hero-stat:nth-child(2n) { border-left: 1px solid var(--border); }
    .hero-stat:nth-child(5) { border-left: none; border-top: 1px solid var(--border); padding-top: 14px; min-width: 100%; }

    /* Metrics wrap */
    .card-metrics { flex-wrap: wrap; }
    .metric { min-width: 45%; }
    .metric:not(:last-child) { border-right: none; }
    .metric:nth-child(odd) { border-right: 1px solid var(--border); }

    .build-card { padding: 20px 16px; }
    .build-card-icon { width: 44px; height: 44px; }
    .build-card h3 { font-size: 1.1rem; }

    .pricing-card { padding: 22px 16px; }
    .price { font-size: 2.1rem; }

    .why-item { padding: 16px 14px; gap: 12px; }
    .why-icon { width: 40px; height: 40px; font-size: 1.2rem; }

    .contact-item { padding: 22px 14px; }
    .contact-icon { width: 46px; height: 46px; }

    .quick-contact { border-radius: var(--radius-lg); padding: 26px 14px; }
    .quick-contact h3 { font-size: 1.3rem; }

    .drawer-header { padding: 14px 16px; }
    .drawer-nav { padding: 8px 10px; }
    .drawer-cta { padding: 14px 16px 20px; }

    .btn { font-size: 13.5px; padding: 11px 20px; }
    .hero-cta-group .btn { padding: 12px 22px; max-width: 280px; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL PHONES (≤360px)
   ============================================================ */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero { padding: 48px 0 56px; }
    .hero-content h1 { font-size: 1.75rem; letter-spacing: -0.3px; }
    .section-header h2 { font-size: 1.65rem; }
    .nav-container { height: 60px; }
    .logo { font-size: 16px; }
    .case-study-card { padding: 14px 12px; }
    .metric-num { font-size: 1.15rem; }
    .hero-stat .stat-number { font-size: 1.15rem; }
    .hero-stat .stat-label { font-size: 9px; }
    .build-card { padding: 18px 14px; }
    .pricing-card { padding: 20px 14px; }
}

/* ============================================================
   TOUCH DEVICES — disable stuck hover states
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
    .build-card:hover,
    .portfolio-card:hover,
    .contact-item:hover,
    .pricing-card:not(.popular):hover,
    .process-step:hover {
        transform: none;
        box-shadow: none;
    }
    .pricing-card.popular:hover { transform: none; }
    .why-item:hover { transform: none; box-shadow: none; }
    .btn-primary:hover { transform: none; box-shadow: var(--shadow-green); }
    .whatsapp-float:hover { transform: none; }
    .build-card:hover::after { transform: scaleX(0); }
}

/* ============================================================
   FOCUS VISIBLE — Keyboard accessibility
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}
:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   REDUCED MOTION — Respect user preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .hero-glow { animation: none; }
    .hero-eyebrow .dot { animation: none; }
    .marquee-track { animation: none; }
}