/* ============================================
   NIKSHITH DIGITAL MARKETING SERVICES
   White & Sky-Blue Green Premium Theme
   ============================================ */

:root {
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --light-sky: #F0F9FF;
    --light-mint: #F0FDFA;
    --ice: #E0F7FA;
    --teal: #0D9488;
    --teal-dark: #0A7A70;
    --teal-deep: #0F766E;
    --sky: #0EA5E9;
    --sky-light: #38BDF8;
    --cyan: #14B8A6;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --text: #1E293B;
    --text-mid: #475569;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --gradient: linear-gradient(135deg, #0D9488 0%, #0EA5E9 100%);
    --gradient-soft: linear-gradient(135deg, rgba(13,148,136,.08), rgba(14,165,233,.06));
    --gradient-reverse: linear-gradient(135deg, #0EA5E9 0%, #0D9488 100%);
    --shadow-sm: 0 1px 3px rgba(15,23,42,.06);
    --shadow: 0 4px 20px rgba(15,23,42,.08);
    --shadow-md: 0 10px 40px rgba(15,23,42,.10);
    --shadow-lg: 0 20px 60px rgba(15,23,42,.12);
    --shadow-teal: 0 8px 30px rgba(13,148,136,.20);
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --r-lg: 20px;
    --r-md: 14px;
    --r-sm: 10px;
    --nav-h: 84px;
}

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

html { scroll-behavior:smooth; scroll-padding-top: var(--nav-h); }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }
img { max-width:100%; display:block; }

.container { max-width: 1240px; margin:0 auto; padding:0 24px; }
.section { padding: 110px 0; position:relative; }

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.5px; color: var(--dark); }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.kicker {
    display:inline-flex; align-items:center; gap:10px;
    font-size:12px; font-weight:700; letter-spacing:3px;
    color: var(--teal); text-transform:uppercase;
    margin-bottom:18px;
}
.kicker::before {
    content:''; width:28px; height:2px; background:var(--gradient); border-radius:2px;
}

.section-head { text-align:center; max-width:760px; margin:0 auto 64px; }
.section-head h2 {
    font-size: clamp(30px, 4.5vw, 46px); font-weight:700; margin-bottom:18px;
}
.section-head p { color: var(--text-mid); font-size:16px; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius:10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ---------- Selection ---------- */
::selection { background: var(--teal); color:#fff; }

/* ---------- Preloader ---------- */
.preloader {
    position:fixed; inset:0; z-index:10000;
    background: var(--white);
    display:flex; align-items:center; justify-content:center;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.preloader-brand { text-align:center; }
.preloader-name {
    font-family: var(--font-head); font-weight:700;
    font-size:32px; letter-spacing:8px; color: var(--dark);
}
.preloader-bar {
    display:block; width:220px; height:2px; background:var(--border);
    margin:16px auto; border-radius:2px; overflow:hidden;
}
.preloader-bar i { display:block; height:100%; width:0; background:var(--gradient); animation: preload 1.6s ease forwards; }
@keyframes preload { to { width:100%; } }
.preloader-sub { font-size:10px; letter-spacing:4px; color:var(--text-muted); text-transform:uppercase; }

/* ---------- Cursor ---------- */
.cursor-dot, .cursor-ring { display:none; }
@media (hover:hover) and (pointer:fine) {
    .cursor-dot {
        display:block; position:fixed; width:6px; height:6px;
        background:var(--teal); border-radius:50%; z-index:10001;
        pointer-events:none; transform:translate(-50%,-50%);
    }
    .cursor-ring {
        display:block; position:fixed; width:36px; height:36px;
        border:1.5px solid rgba(13,148,136,.4); border-radius:50%;
        z-index:10000; pointer-events:none; transform:translate(-50%,-50%);
        transition: width .25s, height .25s, border-color .25s, background .25s;
    }
    .cursor-ring.grow {
        width:56px; height:56px;
        background:rgba(13,148,136,.06); border-color:var(--teal);
    }
}

/* ---------- Buttons ---------- */
.btn {
    position:relative;
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding:14px 30px; border-radius:var(--r-md);
    font-family:var(--font-body); font-size:15px; font-weight:600;
    border:none; color:#fff; overflow:hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    white-space:nowrap; will-change:transform;
}
.btn-primary {
    background: var(--gradient);
    box-shadow: var(--shadow-teal);
}
.btn-primary::after {
    content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transition:left .5s ease;
}
.btn-primary:hover::after { left:100%; }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(13,148,136,.30); transform:translateY(-2px); }

.btn-outline {
    background:transparent; border:2px solid var(--border); color:var(--text);
}
.btn-outline:hover { border-color:var(--teal); color:var(--teal); background:var(--light-mint); }

.btn-whatsapp { background:#25D366; box-shadow: 0 8px 30px rgba(37,211,102,.25); }
.btn-whatsapp:hover { box-shadow: 0 12px 40px rgba(37,211,102,.35); transform:translateY(-2px); }

.btn-sm { padding:10px 20px; font-size:14px; border-radius:var(--r-sm); }
.btn-lg { padding:16px 34px; font-size:16px; border-radius:var(--r-md); }
.btn-xl { padding:18px 42px; font-size:17px; }
.btn-full { width:100%; }

/* ---------- Navbar ---------- */
.navbar {
    position:fixed; top:0; left:0; width:100%; height:var(--nav-h);
    z-index:1000; display:flex; align-items:center;
    background:transparent; transition: background .3s, box-shadow .3s, height .3s, backdrop-filter .3s;
}
.navbar.scrolled {
    background:rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(15,23,42,.06);
    border-bottom: 1px solid var(--border-light);
    height: 70px;
}
.nav-inner {
    width:100%; max-width:1280px; margin:0 auto; padding:0 24px;
    display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.logo { display:flex; align-items:center; gap:12px; }
.logo-mark {
    width:42px; height:42px; flex-shrink:0;
    background:var(--gradient); border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:18px;
    box-shadow: var(--shadow-teal);
}
.logo-type { display:flex; flex-direction:column; line-height:1.1; }
.logo-name { font-family:var(--font-head); font-weight:700; font-size:17px; letter-spacing:2px; color:var(--dark); }
.logo-sub { font-size:9px; letter-spacing:2.5px; color:var(--text-muted); text-transform:uppercase; }

.nav-menu ul { display:flex; gap:4px; }
.nav-link {
    padding:8px 16px; font-size:14px; font-weight:500; color:var(--text-mid);
    border-radius:8px; position:relative; transition: color .25s, background .25s;
}
.nav-link:hover { color:var(--teal); background:rgba(13,148,136,.06); }
.nav-link.active { color:var(--teal); font-weight:600; }

.nav-actions { display:flex; align-items:center; gap:16px; }
.nav-phone { font-size:14px; font-weight:600; color:var(--text-mid); display:flex; align-items:center; gap:8px; transition:.3s; }
.nav-phone:hover { color:var(--teal); }
.nav-phone i { font-size:12px; color:var(--teal); }
.nav-cta { white-space:nowrap; }

.hamburger {
    display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;
    z-index:1002;
}
.hamburger span {
    width:26px; height:2px; background:var(--dark); border-radius:2px; transition:.3s;
}
.hamburger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
    display:none; position:fixed; bottom:0; left:0; right:0; z-index:990;
    grid-template-columns: 2fr 1fr; box-shadow:0 -4px 20px rgba(15,23,42,.08);
}
.mobile-cta a { display:flex; align-items:center; justify-content:center; gap:8px; padding:16px; font-weight:600; font-size:15px; color:#fff; }
.mcta-primary { background:#25D366; }
.mcta-secondary { background:var(--teal); }

/* ================= HERO ================= */
.hero {
    position:relative; min-height:100vh;
    display:flex; align-items:center;
    padding:calc(var(--nav-h) + 40px) 0 70px;
    overflow:hidden; background: var(--white);
}
.hero-bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-gradient-orb {
    position:absolute; border-radius:50%;
    filter: blur(120px); opacity:.5;
}
.orb-1 { width:500px; height:500px; background:rgba(13,148,136,.18); top:-160px; right:-80px; }
.orb-2 { width:420px; height:420px; background:rgba(14,165,233,.15); bottom:-200px; left:-100px; }
.orb-3 { width:300px; height:300px; background:rgba(20,184,166,.10); top:40%; left:50%; }
.hero-grid-pattern {
    position:absolute; inset:0;
    background-image:
        linear-gradient(rgba(13,148,136,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,148,136,.03) 1px, transparent 1px);
    background-size:60px 60px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}
.hero-particles { position:absolute; inset:0; }

.hero-inner {
    position:relative; z-index:1; width:100%;
    max-width:1280px; margin:0 auto; padding:0 24px;
    display:grid; grid-template-columns:1.1fr .9fr; gap:60px;
    align-items:center;
}

.hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    padding:9px 18px; border-radius:100px;
    border:1px solid rgba(13,148,136,.2); background:var(--light-mint);
    font-size:12px; font-weight:600; letter-spacing:2px; color: var(--teal);
    margin-bottom:28px;
}
.hero-badge i { color:var(--teal); }

.hero-title { font-size: clamp(36px, 5.4vw, 62px); font-weight:700; margin-bottom:24px; }
.hero-title .line { display:block; overflow:hidden; }
.hero-title .line:first-child { color:var(--dark); }

.hero-sub { color:var(--text-mid); font-size:17px; max-width:540px; margin-bottom:36px; }
.hero-cta { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }

.hero-stats {
    display:flex; align-items:center; gap:28px;
    padding:20px 28px; border-radius:var(--r-lg);
    background:var(--light-sky); border:1px solid var(--border-light);
    margin-bottom:32px;
}
.hero-stat { text-align:center; }
.hero-stat strong {
    font-family:var(--font-head); font-size:28px; font-weight:700; color:var(--teal); display:block;
}
.hero-stat strong em { font-style:normal; font-size:16px; }
.hero-stat span { font-size:12px; color:var(--text-muted); display:block; margin-top:2px; }
.hero-stat-divider { width:1px; height:40px; background:var(--border); }

.hero-founder { display:flex; align-items:center; gap:14px; }
.founder-photo {
    width:52px; height:52px; border-radius:50%; flex-shrink:0;
    background:var(--gradient); display:flex; align-items:center; justify-content:center;
    font-family:var(--font-head); font-weight:600; font-size:16px; color:#fff;
    box-shadow: var(--shadow-teal);
}
.hero-founder strong { display:block; font-size:15px; color:var(--dark); }
.hero-founder span { font-size:12px; color:var(--text-muted); }

/* Hero Visual */
.hero-visual { position:relative; height:520px; }
.visual-orbit { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:420px; height:420px; }
.orbit { position:absolute; border:1.5px solid rgba(13,148,136,.15); border-radius:50%; }
.orbit-outer { inset:0; animation: orbitSpin 28s linear infinite; }
.orbit-inner { inset:60px; border-style:dashed; animation: orbitSpin 20s linear infinite reverse; }
.orbit-node {
    position:absolute; width:50px; height:50px; border-radius:50%;
    background:var(--white); border:1.5px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    color:var(--teal); font-size:18px;
    box-shadow: var(--shadow);
}
.node-1 { top:-12px; left:50%; transform:translateX(-50%); }
.node-2 { bottom:8%; left:-10px; }
.node-3 { bottom:8%; right:-10px; }
.node-4 { top:24%; right:-18px; }
.visual-core {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:140px; height:140px; border-radius:50%;
    background: var(--gradient);
    border:none;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:38px;
    box-shadow: 0 20px 60px rgba(13,148,136,.30);
}
@keyframes orbitSpin { to { transform:rotate(360deg); } }

/* Scroll cue */
.scroll-cue {
    position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
    display:flex; flex-direction:column; align-items:center; gap:8px;
    color:var(--text-muted); font-size:11px; letter-spacing:3px; text-transform:uppercase; z-index:2;
}
.scroll-cue i { animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0%,100%{transform:translateY(0);opacity:1;} 50%{transform:translateY(6px);opacity:.4;} }

/* ================= TRUST ================= */
.trust { background: var(--light-sky); border-top:1px solid var(--border-light); border-bottom:1px solid var(--border-light); }
.trust-inner {
    max-width:1280px; margin:0 auto; padding:40px 24px;
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.trust-item { display:flex; flex-direction:column; gap:4px; padding:8px 16px; border-left:2px solid var(--border); transition:.3s; }
.trust-item:hover { border-left-color:var(--teal); }
.trust-item i { color:var(--teal); font-size:22px; margin-bottom:10px; }
.trust-item strong { font-family:var(--font-head); font-size:17px; }
.trust-item span { font-size:13px; color:var(--text-muted); }

/* ================= SERVICES ================= */
.services { background: var(--white); }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.service-card {
    position:relative; display:flex; flex-direction:column; gap:14px;
    padding:30px 26px; border-radius:var(--r-lg);
    background: var(--white); border:1px solid var(--border);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s, background .3s;
    overflow:hidden;
}
.service-card::before {
    content:''; position:absolute; inset:0 0 auto 0; height:3px;
    background:var(--gradient); transform:scaleX(0); transform-origin:left;
    transition: transform .4s ease;
}
.service-card:hover {
    transform:translateY(-8px); border-color:rgba(13,148,136,.3);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform:scaleX(1); }
.sc-icon {
    width:54px; height:54px; border-radius:14px;
    background:var(--gradient-soft); display:flex; align-items:center; justify-content:center;
    color:var(--teal); font-size:22px;
    transition: background .3s, color .3s, transform .3s;
}
.service-card:hover .sc-icon { background:var(--gradient); color:#fff; transform:scale(1.06); }
.service-card h3 { font-size:19px; font-weight:600; }
.service-card p { font-size:14px; color:var(--text-mid); flex:1; }
.sc-link { font-size:14px; font-weight:600; color:var(--teal); display:inline-flex; align-items:center; gap:6px; }
.sc-link i { transition: transform .3s; }
.service-card:hover .sc-link i { transform:translateX(4px); }

/* ================= ABOUT ================= */
.about { background: var(--off-white); }
.about-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:70px; align-items:center; }
.about-visual { display:flex; align-items:center; justify-content:center; position:relative; min-height:420px; }
.about-abstract { position:relative; width:340px; height:340px; display:flex; align-items:center; justify-content:center; }
.about-ring { position:absolute; border-radius:50%; border:1.5px solid rgba(13,148,136,.2); }
.r1 { inset:0; animation: orbitSpin 30s linear infinite; }
.r2 { inset:50px; border-style:dashed; animation: orbitSpin 22s linear infinite reverse; }
.about-core {
    width:120px; height:120px; border-radius:50%;
    background: var(--gradient);
    display:flex; align-items:center; justify-content:center;
    font-size:40px; color:#fff;
    box-shadow: var(--shadow-teal);
    z-index:2;
}
.about-badge-abs {
    position:absolute; bottom:10px; padding:10px 18px; border-radius:100px;
    background:var(--white); border:1px solid var(--border);
    box-shadow: var(--shadow); font-size:12px; color:var(--text-mid);
    display:flex; align-items:center; gap:8px; z-index:3;
}
.about-badge-abs i { color:var(--teal); }
.about-body h2 { font-size: clamp(30px, 4vw, 44px); font-weight:700; margin-bottom:20px; }
.about-body p { color:var(--text-mid); margin-bottom:16px; max-width:500px; }
.about-body strong { color:var(--dark); }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:28px 0 32px; }
.af-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-mid); font-weight:500; }
.af-item i { color:var(--teal); font-size:16px; }
.about-body .btn { margin-top:6px; }

/* ================= WHY CHOOSE US ================= */
.why { background: var(--white); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:48px; }
.why-card {
    padding:34px 28px; border-radius:var(--r-lg);
    background:var(--white); border:1px solid var(--border);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:rgba(13,148,136,.25); }
.wc-icon {
    width:56px; height:56px; border-radius:14px;
    background:var(--gradient-soft); display:flex; align-items:center; justify-content:center;
    color:var(--teal); font-size:22px; margin-bottom:20px;
}
.why-card:hover .wc-icon { background:var(--gradient); color:#fff; }
.why-card h3 { font-size:20px; font-weight:600; margin-bottom:10px; }
.why-card p { font-size:14px; color:var(--text-mid); }
.why-cta { text-align:center; }

/* ================= PROCESS ================= */
.process { background: var(--light-sky); }
.process-steps { display:grid; grid-template-columns:repeat(6,1fr); gap:18px; }
.step {
    position:relative; text-align:center; padding:34px 20px;
    border-radius:var(--r-lg); background:var(--white); border:1px solid var(--border);
    transition:.35s;
}
.step:hover { border-color:rgba(13,148,136,.3); transform:translateY(-6px); box-shadow:var(--shadow-md); }
.step::after {
    content:''; position:absolute; top:50%; right:-18px; width:18px; height:1px;
    background:linear-gradient(90deg, var(--border), transparent);
}
.step:last-child::after { display:none; }
.step-num { font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--teal); display:block; margin-bottom:14px; letter-spacing:2px; }
.step-icon {
    width:56px; height:56px; border-radius:50%; margin:0 auto 16px;
    background:var(--gradient-soft); display:flex; align-items:center; justify-content:center;
    color:var(--teal); font-size:22px; transition:.3s;
}
.step:hover .step-icon { background:var(--gradient); color:#fff; }
.step h3 { font-size:18px; margin-bottom:8px; }
.step p { font-size:13px; color:var(--text-muted); }

/* ================= SHOWCASE ================= */
.showcase { background: var(--off-white); padding:40px 0 110px; }
.showcase-item { max-width:1240px; margin:0 auto; padding:60px 24px; display:grid; align-items:center; gap:60px; }
.showcase-item.split { grid-template-columns:1fr 1fr; }
.showcase-item.reverse .showcase-body { order:1; }
.showcase-item.reverse .showcase-visual { order:2; }

.showcase-visual {
    position:relative; min-height:380px; display:flex; align-items:center; justify-content:center;
    border-radius:var(--r-lg); background:var(--light-sky); border:1px solid var(--border-light); overflow:hidden;
}
.showcase-visual::before { content:''; position:absolute; width:300px; height:300px; background:var(--gradient); filter:blur(120px); opacity:.15; }
.sv-1::after, .sv-2::after { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(13,148,136,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(13,148,136,.04) 1px,transparent 1px); background-size:44px 44px; }

.mock-social { position:relative; z-index:1; width:240px; }
.mock-head { display:flex; gap:8px; margin-bottom:16px; }
.mock-head span { width:10px; height:10px; border-radius:50%; }
.mock-head span:nth-child(1){ background:var(--teal);} .mock-head span:nth-child(2){ background:var(--sky);} .mock-head span:nth-child(3){ background:var(--text-muted);}
.mock-heart { display:flex; align-items:center; justify-content:center; width:60px; height:60px; border-radius:50%; background:var(--gradient); color:#fff; font-size:22px; margin:0 auto 18px; box-shadow:var(--shadow-teal); }
.mock-bar { width:100%; height:8px; background:var(--border); border-radius:6px; overflow:hidden; margin-bottom:14px; }
.mock-bar i { display:block; height:100%; width:var(--w); background:var(--gradient); border-radius:6px; }
.mock-chips { display:flex; justify-content:center; gap:8px; }
.mock-chips i { width:44px; height:44px; border-radius:12px; background:var(--gradient-soft); }

.mock-seo { position:relative; z-index:1; width:260px; text-align:center; }
.seo-bar { display:flex; align-items:flex-end; justify-content:center; gap:8px; height:150px; margin-bottom:18px; }
.seo-bar i { width:22px; height:var(--h); border-radius:4px 4px 0 0; background:var(--gradient); opacity:.6; transition:.3s; }
.mock-seo:hover .seo-bar i { opacity:1; }
.seo-tag { display:inline-flex; align-items:center; justify-content:center; width:64px; height:64px; border-radius:50%; background:var(--gradient); color:#fff; font-size:26px; margin:0 auto; box-shadow:var(--shadow-teal); }

.showcase-body h3 { font-size: clamp(26px, 3.5vw, 38px); font-weight:700; margin-bottom:16px; }
.showcase-body > p { color:var(--text-mid); margin-bottom:24px; max-width:460px; }
.benefit-list { display:flex; flex-direction:column; gap:12px; margin-bottom:30px; }
.benefit-list li { display:flex; align-items:center; gap:10px; font-size:15px; color:var(--text-mid); }
.benefit-list i { color:var(--teal); }

/* ================= PORTFOLIO ================= */
.portfolio-sec { background: var(--white); }
.demo-note { color:var(--text-muted); font-size:13px; font-style:italic; margin-top:12px; }
.portfolio-filters { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.pfilter {
    padding:10px 22px; border-radius:100px; background:transparent;
    border:1.5px solid var(--border); color:var(--text-mid); font-size:14px; font-weight:500;
    transition:.3s;
}
.pfilter:hover { color:var(--teal); border-color:var(--teal); }
.pfilter.active { background:var(--gradient); color:#fff; border-color:transparent; box-shadow:var(--shadow-teal); }

.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.portfolio-card { border-radius:var(--r-lg); overflow:hidden; background:var(--white); border:1px solid var(--border); transition:.35s; }
.portfolio-card:hover { transform:translateY(-6px); border-color:rgba(13,148,136,.25); box-shadow:var(--shadow-lg); }
.pc-visual { height:200px; display:flex; align-items:center; justify-content:center; font-size:44px; color:#fff; position:relative; overflow:hidden; }
.pc-visual::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,.08); transition:.3s; }
.portfolio-card:hover .pc-visual::after { background:rgba(0,0,0,.02); }
.pc-v1 { background:linear-gradient(135deg,#0D9488,#38BDF8); }
.pc-v2 { background:linear-gradient(135deg,#0EA5E9,#8B5CF6); }
.pc-v3 { background:linear-gradient(135deg,#14B8A6,#0EA5E9); }
.pc-v4 { background:linear-gradient(135deg,#F472B6,#0EA5E9); }
.pc-v5 { background:linear-gradient(135deg,#FBBF24,#0D9488); }
.pc-v6 { background:linear-gradient(135deg,#475569,#0EA5E9); }
.pc-body { padding:24px; position:relative; }
.pc-cat { font-size:11px; letter-spacing:2px; color:var(--teal); text-transform:uppercase; font-weight:700; }
.pc-body h3 { font-size:19px; margin:8px 0; }
.pc-body p { font-size:14px; color:var(--text-mid); }
.pc-badge {
    position:absolute; top:20px; right:20px; font-size:10px; letter-spacing:1px;
    padding:4px 10px; border-radius:100px; background:rgba(255,255,255,.15); color:#fff; border:1px solid rgba(255,255,255,.25);
}
.pc-visual i { position:relative; z-index:1; }

/* ================= RESULTS ================= */
.results { background: var(--light-sky); }
.results-board {
    display:grid; grid-template-columns:.9fr 1.4fr; gap:30px;
    padding:34px; border-radius:var(--r-lg);
    background:var(--white); border:1px solid var(--border);
    margin-bottom:34px; box-shadow:var(--shadow);
}
.rb-funnel { display:flex; flex-direction:column; justify-content:center; gap:14px; padding:12px; border-right:1px solid var(--border); }
.funnel-seg span { display:block; font-size:12px; color:var(--text-mid); margin-bottom:6px; font-weight:500; }
.funnel-seg i { display:block; height:14px; width:var(--w); border-radius:6px; background:var(--gradient); opacity:.4; transition:.3s; }
.funnel-seg:hover i { opacity:1; }
.rb-main { display:flex; flex-direction:column; gap:20px; }
.rb-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.metric {
    padding:20px; border-radius:var(--r-md);
    background:var(--off-white); border:1px solid var(--border-light);
    text-align:center; transition:.3s;
}
.metric:hover { border-color:rgba(13,148,136,.25); box-shadow:var(--shadow-sm); }
.metric-icon { width:40px; height:40px; border-radius:10px; margin:0 auto 10px; background:var(--gradient-soft); display:flex; align-items:center; justify-content:center; color:var(--teal); font-size:16px; }
.metric small { display:block; font-size:11px; color:var(--text-muted); letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
.metric strong { font-family:var(--font-head); font-size:15px; font-weight:600; color:var(--teal); }
.rb-string { position:relative; flex:1; min-height:140px; }
.rb-string svg { width:100%; height:100%; }
.chart-fill { fill:rgba(13,148,136,.10); }
.chart-line { fill:none; stroke-width:2.5; stroke-linecap:round; }
.results-note { display:flex; align-items:center; gap:14px; justify-content:center; max-width:720px; margin:0 auto; text-align:left; }
.results-note i { color:var(--teal); font-size:22px; flex-shrink:0; }
.results-note p { color:var(--text-mid); font-size:14px; }

/* ================= TESTIMONIALS ================= */
.testimonials { background: var(--white); }
.testi-track { display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; padding:20px 0 30px; scrollbar-width:none; }
.testi-track::-webkit-scrollbar { display:none; }
.testi-card {
    min-width:360px; max-width:360px; padding:34px 30px; border-radius:var(--r-lg);
    background:var(--off-white); border:1px solid var(--border);
    display:flex; flex-direction:column; scroll-snap-align:start;
    transition:.3s; position:relative;
}
.testi-card:hover { border-color:rgba(13,148,136,.25); transform:translateY(-4px); box-shadow:var(--shadow); }
.testi-quote { font-family:var(--font-head); font-size:64px; line-height:1; color:var(--teal); opacity:.35; height:40px; }
.testi-card > p { color:var(--text-mid); font-size:15px; font-style:italic; flex:1; }
.testi-author { display:flex; align-items:center; gap:14px; margin-top:22px; }
.ta-avatar { width:46px; height:46px; border-radius:50%; background:var(--gradient-soft); display:flex; align-items:center; justify-content:center; color:var(--teal); flex-shrink:0; }
.testi-author strong { display:block; font-size:15px; }
.testi-author span { font-size:12px; color:var(--text-muted); }
.testi-placeholder { margin-top:16px; font-size:11px; letter-spacing:1px; color:var(--text-muted); border:1px dashed var(--border); padding:6px 12px; border-radius:100px; align-self:flex-start; }
.testi-controls { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:30px; }
.tbtn { width:46px; height:46px; border-radius:50%; background:var(--white); border:1.5px solid var(--border); color:var(--text-mid); font-size:15px; transition:.3s; }
.tbtn:hover { background:var(--gradient); color:#fff; border-color:transparent; }
.t-dots { display:flex; gap:8px; }
.t-dot { width:8px; height:8px; border-radius:50%; background:var(--border); transition:.3s; cursor:pointer; }
.t-dot.active { width:26px; background:var(--gradient); border-radius:5px; }

/* ================= FAQ ================= */
.faq { background: var(--off-white); }
.faq-list { max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item {
    border-radius:var(--r-md); background:var(--white); border:1px solid var(--border);
    overflow:hidden; transition:border-color .3s, box-shadow .3s;
}
.faq-item.open { border-color:rgba(13,148,136,.3); box-shadow:var(--shadow-sm); }
.faq-q {
    width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
    padding:22px 26px; background:none; border:none; color:var(--dark);
    font-family:var(--font-head); font-size:16px; font-weight:500; text-align:left;
    transition:color .3s;
}
.faq-item.open .faq-q { color:var(--teal); }
.faq-q i { color:var(--teal); transition: transform .35s; flex-shrink:0; }
.faq-item.open .faq-q i { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-a p { padding:0 26px 22px; color:var(--text-mid); font-size:15px; }

/* ================= FINAL CTA ================= */
.final-cta { position:relative; padding:110px 0; overflow:hidden; background:var(--dark); }
.cta-bg { position:absolute; inset:0; }
.cta-orb { position:absolute; border-radius:50%; filter:blur(120px); opacity:.4; animation: ctaFloat 8s ease-in-out infinite; }
.c1 { width:420px; height:420px; background:rgba(13,148,136,.45); top:-100px; left:10%; }
.c2 { width:380px; height:380px; background:rgba(14,165,233,.35); bottom:-120px; right:10%; animation-delay:-3s; }
.c3 { width:300px; height:300px; background:rgba(20,184,166,.3); top:30%; left:45%; animation-delay:-5s; }
@keyframes ctaFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-30px);} }
.cta-content { position:relative; z-index:1; text-align:center; }
.cta-content h2 { font-size: clamp(30px, 5vw, 52px); font-weight:700; margin-bottom:18px; color:#fff; }
.cta-content p { color:rgba(255,255,255,.7); font-size:18px; max-width:600px; margin:0 auto 40px; }
.cta-buttons { display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.cta-contact-info {
    display:flex; justify-content:center; gap:32px; margin-top:36px;
}
.cta-contact-info a {
    font-size:14px; color:rgba(255,255,255,.6); display:flex; align-items:center; gap:8px;
    transition:.3s;
}
.cta-contact-info a:hover { color:#fff; }
.cta-contact-info i { color:var(--cyan); }

/* ================= CONTACT ================= */
.contact { background: var(--white); }
.contact-grid { display:grid; grid-template-columns:.9fr 1.2fr; gap:50px; align-items:start; }
.contact-info { display:flex; flex-direction:column; gap:20px; }
.contact-info h3 { font-size:24px; margin-bottom:6px; }
.ci-row { display:flex; gap:16px; align-items:center; padding:16px 20px; border-radius:var(--r-md); background:var(--off-white); border:1px solid var(--border-light); transition:.3s; }
.ci-row:hover { border-color:rgba(13,148,136,.25); transform:translateX(4px); box-shadow:var(--shadow-sm); }
.ci-row > i { width:44px; height:44px; flex-shrink:0; border-radius:12px; background:var(--gradient-soft); display:flex; align-items:center; justify-content:center; color:var(--teal); font-size:18px; }
.ci-row small { display:block; font-size:11px; color:var(--text-muted); letter-spacing:1px; text-transform:uppercase; margin-bottom:2px; }
.ci-row strong, .ci-row a { font-size:16px; }
.ci-row a:hover { color:var(--teal); }
.chat-btn { align-self:flex-start; margin-top:8px; }

.contact-form {
    padding:36px; border-radius:var(--r-lg);
    background:var(--off-white); border:1px solid var(--border-light);
    display:flex; flex-direction:column; gap:18px;
}
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.f-group { display:flex; flex-direction:column; gap:8px; }
.f-group label { font-size:13px; font-weight:600; color:var(--text-mid); }
.f-group input, .f-group select, .f-group textarea {
    width:100%; padding:14px 16px; border-radius:var(--r-sm);
    background:var(--white); border:1.5px solid var(--border); color:var(--dark);
    font-family:var(--font-body); font-size:15px; transition:.3s; outline:none;
}
.f-group input::placeholder, .f-group textarea::placeholder { color:var(--text-muted); }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
    border-color:var(--teal); box-shadow:0 0 0 3px rgba(13,148,136,.10);
}
.f-group select { appearance:none; background-color:var(--white); background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230D9488' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:38px; }
.f-group select option { background:var(--white); color:var(--dark); }
.f-group textarea { resize:vertical; min-height:110px; }
.form-note { text-align:center; font-size:13px; color:var(--text-muted); margin-top:4px; }
.form-note a { color:var(--teal); font-weight:600; }

.success-msg {
    max-width:560px; margin:40px auto 0; text-align:center;
    padding:48px; border-radius:var(--r-lg); background:var(--off-white); border:1px solid var(--border-light);
    display:flex; flex-direction:column; align-items:center; gap:16px;
}
.success-icon { width:72px; height:72px; border-radius:50%; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-size:30px; color:#fff; box-shadow:var(--shadow-teal); }
.success-msg h3 { font-size:26px; }
.success-msg p { color:var(--text-mid); }
.success-msg .btn { margin-top:6px; }

/* ================= FOOTER ================= */
.footer { background: var(--dark); }
.footer-grid {
    max-width:1280px; margin:0 auto; padding:70px 24px 50px;
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:44px;
}
.foot-brand p { color:rgba(255,255,255,.5); font-size:14px; margin-top:18px; max-width:260px; }
.foot-brand .logo-name { color:#fff; }
.foot-brand .logo-sub { color:rgba(255,255,255,.4); }
.foot-socials { display:flex; gap:12px; margin-top:18px; }
.foot-socials a {
    width:38px; height:38px; border-radius:10px; border:1px solid rgba(255,255,255,.12);
    display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.5); font-size:15px;
    transition:.3s;
}
.foot-socials a:hover { background:var(--gradient); color:#fff; border-color:transparent; }
.foot-col h4 { font-size:14px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:20px; font-weight:600; }
.foot-col ul { display:flex; flex-direction:column; gap:12px; }
.foot-col a { font-size:14px; color:rgba(255,255,255,.45); transition:.25s; }
.foot-col a:hover { color:var(--cyan); padding-left:4px; }
.foot-connect a { display:flex; align-items:center; gap:10px; }
.foot-connect i { color:var(--cyan); width:16px; }
.footer-bottom {
    max-width:1280px; margin:0 auto; padding:24px;
    border-top:1px solid rgba(255,255,255,.08); text-align:center;
}
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.35); }

/* ================= FLOAT WHATSAPP ================= */
.wa-float {
    position:fixed; bottom:28px; right:28px; width:62px; height:62px; z-index:995;
    background:#25D366; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:30px;
    box-shadow:0 8px 28px rgba(37,211,102,.35);
    transition:transform .3s;
}
.wa-float:hover { transform:scale(1.08); }
.wa-pulse { position:absolute; inset:0; border-radius:50%; background:rgba(37,211,102,.35); animation:waPulse 2.2s ease-out infinite; }
@keyframes waPulse { 0%{ transform:scale(1); opacity:.8;} 100%{ transform:scale(1.8); opacity:0;} }
.wa-tip {
    position:absolute; right:74px; white-space:nowrap;
    padding:10px 16px; border-radius:10px; background:var(--white); border:1px solid var(--border);
    box-shadow:var(--shadow); font-size:13px; font-weight:600; color:var(--dark);
    opacity:0; visibility:hidden; transform:translateX(8px); transition:.3s;
}
.wa-float:hover .wa-tip { opacity:1; visibility:visible; transform:translateX(0); }

/* ================= REVEAL ================= */
[data-reveal] { opacity:0; transform:translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in-view { opacity:1; transform:translateY(0); }

/* ================= RESPONSIVE ================= */
@media (max-width:1024px){
    .services-grid { grid-template-columns:repeat(2,1fr); }
    .process-steps { grid-template-columns:repeat(3,1fr); gap:20px; }
    .step:nth-child(3)::after { display:none; }
    .portfolio-grid { grid-template-columns:repeat(2,1fr); }
    .hero-inner { grid-template-columns:1fr; gap:40px; text-align:center; }
    .hero-sub { margin-left:auto; margin-right:auto; }
    .hero-cta { justify-content:center; }
    .hero-founder { justify-content:center; }
    .hero-visual { height:460px; margin-top:20px; }
    .about-grid { grid-template-columns:1fr; gap:50px; }
    .contact-grid { grid-template-columns:1fr; }
    .showcase-item.split { grid-template-columns:1fr; }
    .showcase-item.reverse .showcase-body { order:2; }
    .showcase-item.reverse .showcase-visual { order:1; }
    .results-board { grid-template-columns:1fr; }
    .rb-funnel { border-right:none; border-bottom:1px solid var(--border); padding-bottom:24px; }
    .trust-inner { grid-template-columns:repeat(2,1fr); gap:28px; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
    .why-grid { grid-template-columns:repeat(2,1fr); }
    .hero-stats { justify-content:center; }
}

@media (max-width:768px){
    :root { --nav-h:68px; }
    .section { padding:80px 0; }
    .nav-menu {
        position:fixed; top:0; right:0; width:min(80%,340px); height:100vh;
        background:rgba(255,255,255,.98); backdrop-filter:blur(20px);
        transform:translateX(100%); transition:transform .4s cubic-bezier(.2,.8,.2,1);
        padding:100px 30px 40px; z-index:1001;
        box-shadow: -20px 0 60px rgba(15,23,42,.1);
    }
    .nav-menu.open { transform:translateX(0); }
    .nav-menu ul { flex-direction:column; gap:6px; }
    .nav-link { display:block; font-size:20px; padding:14px 16px; }
    .hamburger { display:flex; }
    .nav-cta { display:none; }
    .nav-phone { display:none; }
    .mobile-cta { display:grid; }
    .wa-float { bottom:84px; right:20px; width:54px; height:54px; font-size:26px; }
    .wa-tip { display:none; }
    .wa-pulse { display:none; }
    .hero { padding-top:120px; }
    .hero-title { font-size: clamp(32px,8vw,44px); }
    .hero-cta { flex-direction:column; align-items:stretch; }
    .hero-cta .btn { width:100%; }
    .hero-visual { height:380px; }
    .visual-orbit { width:300px; height:300px; }
    .visual-core { width:100px; height:100px; font-size:30px; }
    .orbit-node { width:40px; height:40px; font-size:14px; }
    .services-grid { grid-template-columns:1fr; }
    .process-steps { grid-template-columns:repeat(2,1fr); }
    .step::after { display:none; }
    .portfolio-grid { grid-template-columns:1fr; }
    .f-row { grid-template-columns:1fr; }
    .f-row { gap:14px; }
    .contact-form { padding:26px 20px; }
    .trust-inner { padding:30px 20px; }
    .results-board { padding:22px; }
    .rb-metrics { grid-template-columns:1fr; }
    .cta-buttons { flex-direction:column; align-items:center; }
    .cta-buttons .btn { width:100%; max-width:340px; }
    .footer-grid { grid-template-columns:1fr; gap:36px; }
    .scroll-cue { display:none; }
    .why-grid { grid-template-columns:1fr; }
    .hero-stats { flex-direction:column; gap:16px; }
    .hero-stat-divider { width:40px; height:1px; }
    .about-features { grid-template-columns:1fr; }
    .cta-contact-info { flex-direction:column; gap:12px; align-items:center; }
}

@media (max-width:480px){
    .container { padding:0 18px; }
    .section { padding:64px 0; }
    .services-grid { gap:16px; }
    .portfolio-filters { gap:8px; }
    .pfilter { padding:8px 16px; font-size:13px; }
    .testi-card { min-width:290px; max-width:290px; padding:28px 24px; }
    .hero-stats { padding:16px 20px; }
    .hero-stat strong { font-size:22px; }
}

/* Prevent horizontal overflow */
.hero-inner, .services, .about, .why, .process, .showcase, .portfolio-sec,
.results, .testimonials, .faq, .final-cta, .contact { overflow:hidden; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
    *, *::before, *::after {
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
        scroll-behavior:auto !important;
    }
    [data-reveal] { opacity:1 !important; transform:none !important; }
}
