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

:root {
    --ink: #FFFFFF;
    --ink-soft: #1e2a45;
    --paper: #f4f2ed;
    --cream: #000B1A;
    --white: #ffffff;
    --cobalt: #2563EB;
    --cobalt-l: #3a62f5;
    --cobalt-d: #0e2fa8;
    --teal: #06B6D4;
    --teal-l: #0fb39e;
    --amber: #d97706;
    --amber-l: #f59e0b;
    --rose: #c2185b;
    --violet: #6d28d9;
    --violet-l: #8b5cf6;
    --dark: #0F172A;
    --dark-light: #1E293B;
    --text: #CBD5E1;
    --green: #22c55e;
    --r-sm: 10px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-xl: 48px;
    --sh-card: 0 2px 4px rgba(13,19,33,.05), 0 8px 20px rgba(13,19,33,.08);
    --sh-float: 0 16px 48px rgba(13,19,33,.14);
    --font-display: 'Ranade', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-neu: 'Neuton', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); overflow-x: hidden; line-height: 1.6; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--cobalt); border-radius: 5px; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
h1, h2, h3 { font-family: var(--font-display); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
/* ── Fluid typography: scales smoothly across all screen sizes ── */
html { font-size: clamp(15px, 1vw + 12px, 17px); }
h1 { font-size: clamp(1.9rem, 4vw + 1rem, 3.6rem); line-height: 1.2; }
h2, .section-title { font-size: clamp(1.5rem, 2.4vw + 0.9rem, 2.6rem); }
h3 { font-size: clamp(1.05rem, 1vw + 0.7rem, 1.6rem); }
p, li, .form-group input, .form-group select, .form-group textarea { font-size: clamp(0.88rem, 0.3vw + 0.8rem, 1rem); }
.hero p { font-size: clamp(0.92rem, 0.5vw + 0.8rem, 1.05rem); }
.section-sub { font-size: clamp(0.9rem, 0.3vw + 0.85rem, 1rem); }
.btn { font-size: clamp(0.85rem, 0.3vw + 0.78rem, 0.92rem); padding: clamp(10px, 1vw + 6px, 12px) clamp(18px, 2vw + 10px, 26px); }
/* ── Scroll progress bar (signature) ── */
#scrollProgress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--cobalt), var(--teal), var(--violet-l)); z-index: 100000; transition: width .08s linear; box-shadow: 0 0 12px rgba(6,182,212,.6); }

/* ── Reveal-on-scroll utility ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; padding: 12px 26px; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; transition: all .22s ease; position: relative; overflow: hidden; }
.btn:hover { transform: translateY(-2px); }
.btn::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.35), transparent 60%); opacity: 0; transition: opacity .3s ease; }
.btn:hover::after { opacity: 1; }
.btn-cobalt { background: var(--cobalt); color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,.35); }
.btn-cobalt:hover { background: var(--cobalt-l); }
.btn-ghost { background: transparent; color: var(--cobalt); border: 1.5px solid var(--cobalt); }
.btn-ghost:hover { background: var(--cobalt); border-color: var(--cobalt); color: white; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1fbf5a; }

/* ── Header ── */
header { position: sticky; top: 0; z-index: 900; background: rgba(250,248,243,.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(13,19,33,.09); transition: box-shadow .3s ease, padding .3s ease; }
header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.12); }
nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 20px; flex-wrap: wrap; }
.logo { font-family:'Ubuntu', sans-serif; font-size: 1.65rem; font-weight: 700; color: var(--cobalt-d); }
.logo span { color: var(--teal); }
.nav-links { display: flex; gap: 28px; align-items: center;}
.nav-links a { text-decoration: none; font-weight: 500; font-size: .92rem; color: var(--ink-soft); transition: .18s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--cobalt); transition: .22s; }
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }
.nav-links > a.nav-wa.btn-wa,
.nav-links > a.nav-wa.btn-wa:hover,
.nav-links > a.nav-wa.btn-wa:focus,
.nav-links > a.nav-wa.btn-wa:focus-visible,
.nav-links > a.nav-wa.btn-wa:active {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.nav-links > a.nav-wa.btn-wa::after,
.nav-links > a.nav-wa.btn-wa:hover::after {
    display: none !important;
    content: none !important;
}
#navwa {display: inline-flex;align-items: center;justify-content: center;gap: 8px;padding: 10px 20px;margin-left: 12px;background: linear-gradient(135deg, #25D366, #128C7E);color: #fff;font-size: 14px;font-weight: 600;text-decoration: none !important;border: none;outline: none;border-radius: 30px;box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);transition: all 0.25s ease;white-space: nowrap;position: relative;overflow: hidden;}

#navwa i {font-size: 16px;}

#navwa:hover {background: linear-gradient(135deg, #128C7E, #25D366);transform: translateY(-2px);box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);text-decoration: none !important;}

#navwa:active {transform: translateY(0);}

#navwa:focus,
#navwa:focus-visible {outline: none;border: none;text-decoration: none;}

#navwa::after,
#navwa:hover::after,
#navwa::before,
#navwa:hover::before {
    content: none !important;
    display: none !important;
}

@media (max-width: 768px) {
    #navwa {width: 100%;margin: 12px 0 0;}
}

/* Hero */
.hero { position: relative; overflow: hidden; padding: 76px 0 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg { position: absolute; inset: -40px 0 0 0; background-image: linear-gradient(135deg, #0a0f2a, #0a1a3a), url('./images/office_bg_pro.webp'); background-blend-mode: overlay; background-size: cover; background-position: center; will-change: transform; z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; padding-bottom: 56px; }
.features-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.features-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.features-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.features-grid .reveal:nth-child(4) { transition-delay: 240ms; }
.features-grid .reveal:nth-child(5) { transition-delay: 320ms; }
.features-grid .reveal:nth-child(6) { transition-delay: 400ms; }

.hero-content { flex: 1; min-width: 280px; }
.hero h1, .hero p, .hero .stat-item span { color: white; }
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #7dd3fc; background: rgba(37,99,235,.15); border: 1px solid rgba(56,189,248,.35); padding: 7px 16px; border-radius: 30px; margin-bottom: 22px; }
.eyebrow-pill .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: dotPulse 1.8s infinite; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6);} 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0);} 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);} }
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.hero h1 em { font-style: italic; background: linear-gradient(100deg, var(--cobalt-l), var(--teal-l) 60%, var(--violet-l)); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% auto; animation: gradShift 6s ease-in-out infinite; }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero h1 .teal { color: var(--teal-l); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 500px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat-item strong { display: block; font-family: var(--font-mono); color: #ffffff; font-size: 1.9rem; font-weight: 700; }
.stat-item span { font-size: .8rem; color: rgba(255,255,255,0.7); }
.hero-card { background: rgba(255,255,255,0.95); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--sh-float); width: 100%; max-width: 320px; transition: transform .25s ease; }
.card-brand { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--cobalt-d); }
.card-brand span { color: var(--teal); }
.card-url {color: #050d1a; font-size: 0.9rem; font-weight: 600; }
.card-tagline { font-size: .72rem; font-weight: 600; text-transform: uppercase; color: var(--teal); background: rgba(6,182,212,.08); padding: 4px 12px; display: inline-block; margin-bottom: 18px; }
.card-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.chip { padding: 5px 12px; border-radius: 4px; font-size: .78rem; font-weight: 600; }
.chip-cobalt { background: rgba(37,99,235,.08); color: var(--cobalt); }
.chip-teal { background: rgba(6,182,212,.08); color: var(--teal); }
.chip-violet { background: rgba(109,40,217,.08); color: var(--violet); }
.chip-amber { background: rgba(217,119,6,.08); color: var(--amber); }

/* ── Live Status Bar (signature dashboard strip) ── */
.status-bar { position: relative; z-index: 1; background: rgba(2,8,16,.75); backdrop-filter: blur(10px); border-top: 1px solid rgba(56,189,248,.18); }
.status-bar-inner { display: flex; flex-wrap: wrap; gap: 0; }
.status-cell { flex: 1; min-width: 160px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.status-cell:last-child { border-right: none; }
.status-label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: #64748b; margin-bottom: 6px; }
.status-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: #38bdf8; }
.status-value.ok { color: var(--green); }
.status-cell.status-live { display: flex; align-items: center; justify-content: center; gap: 10px; }
.status-cell.status-live .live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: dotPulse 1.8s infinite; }
.status-cell.status-live span.status-text { font-family: var(--font-mono); font-size: .82rem; color: var(--green); font-weight: 600; letter-spacing: .5px; }

/* Sections */
section { padding: 88px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.section-label::before { content: ''; width: 18px; height: 1.5px; border-radius: 2px; background: var(--cobalt); }
.centered { text-align: center; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: #5a6a8e; max-width: 560px; margin: 0 auto 56px;  }

/* ── Trusted-stack marquee ── */
.marquee-wrap { padding: 36px 0; background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.marquee-label { text-align: center; font-family: var(--font-mono); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: #64748b; margin-bottom: 22px; }
.marquee-track { display: flex; width: max-content; gap: 64px; animation: marqueeScroll 28s linear infinite; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,.42); white-space: nowrap; transition: color .3s ease; }
.marquee-item:hover { color: rgba(255,255,255,.85); }
.marquee-item i { font-size: 1.3rem; }

/* ── Why Us ── */
.why-us { padding: 100px 0; background: var(--dark); position: relative; }
.why-us .section-header { text-align: center; margin-bottom: 64px; }
.why-us .section-header h2 { font-size: 2.8rem; font-weight: 700; color: rgba(255, 255, 255, 255); margin-bottom: 16px; }
.why-us .section-header h2 span { color: var(--teal); border-bottom: 3px solid var(--cobalt); display: inline-block; padding-bottom: 4px; }
.why-us .section-header p { color: var(--text); font-size: 1.2rem; max-width: 700px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.feature-card { background: var(--dark-light); padding: 38px 28px; border-radius: 28px; border: 1px solid rgba(255,255,255,0.08); transition: transform .35s ease, border-color .35s ease, background .35s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(6,182,212,.12), transparent 60%); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(6,182,212,0.5); background: #243045; }
.feature-card i { font-size: 3rem; background: linear-gradient(145deg, var(--cobalt), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 24px; display: inline-block; }
.feature-card h3 { font-size: 1.6rem; font-weight: 600; color: rgba(255, 255, 255, 255); margin-bottom: 16px; font-family: var(--font-display); }
.feature-card p { color: var(--text); line-height: 1.6; font-size: 0.98rem; }
.future-metrics { margin-top: 80px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 56px; }
.note-message { background: rgba(6,182,212,0.08); border-radius: 24px; padding: 20px 32px; margin-top: 48px; display: inline-block; border-left: 4px solid var(--teal); font-size: 0.9rem; color: var(--text); }

/* ── Services Section (Animated Background) ── */
.svc-section { position: relative; overflow: hidden; padding: 88px 0; background: #020810; }
.svc-bg-base { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, #0a1628 0%, #050d1a 50%, #020810 100%); z-index: 0; }
.svc-glow-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.18; animation: svcPulse 6s ease-in-out infinite; z-index: 0; pointer-events: none; }
.svc-orb1 { width: 420px; height: 420px; background: #0ea5e9; top: -100px; left: -80px; animation-delay: 0s; }
.svc-orb2 { width: 320px; height: 320px; background: #10b981; top: 80px; right: -60px; animation-delay: 2s; }
.svc-orb3 { width: 260px; height: 260px; background: #6366f1; bottom: -60px; left: 30%; animation-delay: 4s; }
@keyframes svcPulse { 0%, 100% { transform: scale(1); opacity: 0.18; } 50% { transform: scale(1.15); opacity: 0.28; } }
.svc-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(14,165,233,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,233,0.07) 1px, transparent 1px); background-size: 60px 60px; z-index: 0; pointer-events: none; }
.svc-scanline { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(14,165,233,0.4) 30%, rgba(16,185,129,0.6) 50%, rgba(14,165,233,0.4) 70%, transparent 100%); animation: svcScan 8s linear infinite; top: -2px; filter: blur(1px); z-index: 1; pointer-events: none; }
@keyframes svcScan { 0% { top: -2px; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.svc-hex-grid { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.svc-hex { position: absolute; width: 60px; height: 60px; border: 1px solid rgba(14,165,233,0.12); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); animation: svcHexGlow 4s ease-in-out infinite; }
@keyframes svcHexGlow { 0%, 100% { border-color: rgba(14,165,233,0.08); background: transparent; } 50% { border-color: rgba(14,165,233,0.35); background: rgba(14,165,233,0.04); } }
.svc-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.svc-data-lines { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.svc-dline { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(16,185,129,0.5), transparent); animation: svcDataFlow 3s linear infinite; opacity: 0; }
@keyframes svcDataFlow { 0% { transform: translateX(-100%); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(200%); opacity: 0; } }
.svc-content { position: relative; z-index: 2; }
.svc-header { text-align: center; margin-bottom: 48px; }
.svc-label { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; text-transform: uppercase; color: #38bdf8; letter-spacing: 2px; margin-bottom: 12px; }
.svc-label::before { content: ''; width: 18px; height: 1.5px; background: #38bdf8; border-radius: 2px; }
.svc-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 48px; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.svc-card { background: rgba(15,23,42,0.75); backdrop-filter: blur(10px); border-radius: 16px; padding: 32px 24px; border: 1px solid rgba(14,165,233,0.15); transition: all 0.28s ease; position: relative; z-index: 2; }
.svc-card:hover { transform: translateY(-10px); background: rgba(30,41,59,0.85); border-color: rgba(14,165,233,0.4);}
.svc-icon { width: 54px; height: 54px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.ic-blue { background: rgba(37,99,235,0.2); color: #60a5fa; }
.ic-teal { background: rgba(6,182,212,0.2); color: #22d3ee; }
.ic-amber { background: rgba(217,119,6,0.2); color: #fbbf24; }
.ic-violet { background: rgba(109,40,217,0.2); color: #a78bfa; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.svc-card p { font-size: .88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── Portfolio── */
.portfolio-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 28px;
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 20px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--cobalt) transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}
.portfolio-grid::-webkit-scrollbar { height: 8px; }
.portfolio-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.portfolio-grid::-webkit-scrollbar-thumb { background: var(--cobalt); border-radius: 10px; }

.portfolio-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--dark-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1),
              border-color .4s ease,
              box-shadow .4s ease;
  opacity: 0;
  transform: translateY(24px);
  animation: pfCardIn .7s cubic-bezier(.16,1,.3,1) forwards;
}
.portfolio-card:nth-child(1) { animation-delay: .05s; }
.portfolio-card:nth-child(2) { animation-delay: .15s; }
.portfolio-card:nth-child(3) { animation-delay: .25s; }
.portfolio-card:nth-child(4) { animation-delay: .35s; }
.portfolio-card:nth-child(5) { animation-delay: .45s; }
.portfolio-card:nth-child(6) { animation-delay: .55s; }
@keyframes pfCardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Single, non-conflicting hover state — lift + gentle tilt + glow, combined intentionally */
.portfolio-card:hover {
  transform: translateY(-12px) scale(1.02) rotateZ(0.6deg);
  border-color: color-mix(in srgb, var(--pf-accent) 55%, transparent);
  box-shadow:
    0 24px 50px rgba(0,0,0,.45),
    0 0 0 1px color-mix(in srgb, var(--pf-accent) 20%, transparent),
    0 0 32px color-mix(in srgb, var(--pf-accent) 35%, transparent);
}

.portfolio-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin: 16px 0 6px; }
.portfolio-card p { color: var(--text); font-size: .88rem; line-height: 1.55; margin-bottom: 12px; }
.portfolio-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: var(--teal); background: rgba(6,182,212,.1);
  padding: 5px 12px; border-radius: 20px;
}

/* Laptop card */
.portfolio-card:has(.device-laptop) {
  width: 400px;
}
.device-laptop {
  background: #1a2436;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  border: 2px solid #2a3548;
  transition: border-color .35s ease;
}
.portfolio-card:hover .device-laptop { border-color: rgba(6,182,212,0.5); }
.device-bar { display: flex; gap: 6px; padding: 10px 12px; background: #222f45; }
.device-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.device-bar span:nth-child(1) { background: #ff5f57; }
.device-bar span:nth-child(2) { background: #febc2e; }
.device-bar span:nth-child(3) { background: #28c840; }
.device-laptop .device-screen { aspect-ratio: 16/10; }

/* Phone card */
.portfolio-card:has(.device-phone) {
  width: 220px;
}
.device-phone {
  background: #111827;
  border-radius: 26px;
  padding: 5px 3px 10px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  border: 2px solid #2a3548;
  transition: border-color .35s ease;
}
.portfolio-card:hover .device-phone { border-color: rgba(6,182,212,0.5); }
.device-notch {
  width: 50px; height: 14px;
  background: #011827;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}
.device-phone .device-screen { border-radius: 14px; overflow: hidden; aspect-ratio: 9/17; }

.device-screen { width: 100%; overflow: hidden; }
.device-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s ease;
}
.portfolio-card:hover .device-screen img { transform: scale(1.08); }

.portfolio-cta { text-align: center; margin-top: 48px; }
.portfolio-cta p { color: var(--text); margin-bottom: 14px; font-size: .95rem; }

/* ── Responsive scaling ── */
@media (max-width: 1024px) and (min-width: 789px) {
  .portfolio-card:has(.device-laptop) { width: 340px; }
  .portfolio-card:has(.device-phone) { width: 190px; }
  .portfolio-grid { gap: 22px; }
}

@media (max-width: 788px) {
  .portfolio-card:has(.device-laptop) { width: 300px; }
  .portfolio-card:has(.device-phone) { width: 180px; }
  .portfolio-grid { gap: 18px; scroll-snap-type: x mandatory; }
  .portfolio-card { scroll-snap-align: center; }
}

@media (max-width: 480px) {
  .portfolio-card:has(.device-laptop) { width: 260px; padding: 18px; }
  .portfolio-card:has(.device-phone) { width: 150px; padding: 14px; }
  .portfolio-card h3 { font-size: .95rem; }
  .portfolio-card p { font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card { animation: none; opacity: 1; transform: none; }
}
/* ── Pricing ── */
.pricing-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  margin: 2rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 20px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--cobalt) transparent;
}
.pricing-row::-webkit-scrollbar { height: 8px; }
.pricing-row::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.pricing-row::-webkit-scrollbar-thumb { background: var(--cobalt); border-radius: 10px; }
.pricing-card { background: rgba(14, 165, 233, 0.12); border-radius: 2rem; flex: 1; min-width: 180px; padding: 2rem 1.8rem; border: 1px solid rgba(255, 255, 255, 0.12); transition: transform .3s ease, box-shadow .3s ease; text-align: center; box-shadow: var(--sh-card); }
.pricing-card:hover { transform: translateY(-8px);}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-8px); }
.popular-tag { display: inline-block; background: var(--cobalt); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 14px; }
.pricing-card h4 { font-size: 1.6rem; margin-bottom: 0.5rem; font-family: var(--font-display); }
.pricing-price { font-size: 2.2rem; font-weight: 800; margin: 1rem 0; color: #FFFFFF; }
.pricing-price span { font-size: 1rem; font-weight: 400; }
.feature-list { list-style: none; margin: 1.2rem 0; text-align: left; }
.feature-list li { padding: 0.4rem 0; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.feature-list i.fa-check { color: #22c55e; width: 20px; }

.pricing-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 300px;   /* was "flex: 1; min-width: 280px;" — now a fixed width so it won't get squeezed or dropped */
  scroll-snap-align: start;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 2rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: center;
  box-shadow: var(--sh-card);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
  pointer-events: none;
}
.pricing-card:hover::before {
  left: 130%;
  
}

.pricing-card.popular {
  position: relative;
  border: none;
  background:
    linear-gradient(rgba(14,165,233,0.12), rgba(14,165,233,0.12)) padding-box,
    linear-gradient(135deg, var(--cobalt), var(--teal), var(--violet-l), var(--cobalt)) border-box;
  background-size: 100% 100%, 300% 300%;
  border: 2px solid transparent;
  animation: cardFloat 4s ease-in-out infinite, borderFlow 6s linear infinite;
}
@keyframes borderFlow {
  0%   { background-position: 0% 0%, 0% 50%; }
  100% { background-position: 0% 0%, 300% 50%; }
}
.feature-list li i.fa-check {
  transition: transform .3s ease;
}
.pricing-card:hover .feature-list li:nth-child(1) i.fa-check { transition-delay: 0.03s; transform: scale(1.3); }
.pricing-card:hover .feature-list li:nth-child(2) i.fa-check { transition-delay: 0.06s; transform: scale(1.3); }
.pricing-card:hover .feature-list li:nth-child(3) i.fa-check { transition-delay: 0.09s; transform: scale(1.3); }
.pricing-card:hover .feature-list li:nth-child(4) i.fa-check { transition-delay: 0.12s; transform: scale(1.3); }
.pricing-card:hover .feature-list li:nth-child(5) i.fa-check { transition-delay: 0.15s; transform: scale(1.3); }
.pricing-card:hover .feature-list li:nth-child(6) i.fa-check { transition-delay: 0.18s; transform: scale(1.3); }

/* ── Custom Pricing card ── */
.pricing-card-custom {
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color .35s ease, transform .3s ease, background .35s ease;
  flex: 0 0 300px;
}
.pricing-card-custom:hover {
  border-color: var(--teal);
  border-style: solid;
  background: rgba(6,182,212,0.06);
  transform: translateY(-8px);
}
.custom-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cobalt), var(--teal));
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 14px;
  animation: customSpin 6s linear infinite;
}
@keyframes customSpin {
  0%, 90%, 100% { transform: rotate(0deg); }
  95% { transform: rotate(20deg); }
}
.custom-price {
  font-size: 1.6rem !important;
  background: linear-gradient(100deg, var(--cobalt-l), var(--teal-l));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.custom-cta {
  width: 100%;
  justify-content: center;
  border-color: var(--teal);
  color: var(--teal);
}
.custom-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .custom-icon { animation: none; }
}

/* ── Spotlight ── */
.spotlight-wrap { padding: 0 0 72px; }
.spotlight { background: linear-gradient(135deg, var(--cobalt-d) 0%, #0c1e6e 50%, var(--violet) 100%); border-radius: var(--r-xl); padding: 52px 48px; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.spotlight::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.12), transparent 55%); pointer-events:none; }
.spotlight-content { flex: 2; min-width: 260px; position: relative; z-index: 1; }
.spotlight-content h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.spotlight-content p { color: rgba(255,255,255,.8); margin-bottom: 26px; }
.spotlight-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-spotlight { background: #fff; color: var(--cobalt); font-weight: 700; padding: 11px 24px; border-radius: 6px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s ease; }
.btn-spotlight:hover { transform: translateY(-2px); }
.wa-pill { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.25); border-radius: 6px; padding: 10px 18px; color: #fff; font-weight: 600; }
.spotlight-badge { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-lg); padding: 24px 28px; text-align: center; min-width: 200px; position: relative; z-index: 1; }
.badge-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; }
.badge-line { width: 32px; height: 2px; background: var(--teal-l); margin: 8px auto; }
.badge-sub { font-size: .7rem; color: rgba(255,255,255,.65); text-transform: uppercase; }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card { background: rgba(37,99,235,.04); border: 1px solid rgba(37,99,235,.14); border-radius: 22px; padding: 32px 28px; transition: transform .3s ease, border-color .3s ease; }
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,.4); }
.testimonial-stars { color: var(--amber-l); font-size: .85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: .96rem; color:#e6e6e6; line-height: 1.7; margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: .95rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--ink-soft); }
.testimonial-role { font-size: .78rem; color: #6b7a9f; }

/* ── Team ── */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.team-card { background: rgba(249,115,22, 0.06); padding: 32px 24px; text-align: center; width: 100%; max-width: 320px; border: 1px solid rgba(249, 115, 22, 0.2); border-radius: 18px; transition: transform .28s ease, border-color .28s ease; }
.team-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.5); }
.avatar { width: 90px; height: 90px; border-radius: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 2rem; color: #fff; }
.av-cobalt { background: linear-gradient(135deg, var(--cobalt), var(--violet)); }
.av-teal { background: linear-gradient(135deg, var(--teal), var(--cobalt)); }
.av-amber { background: linear-gradient(135deg, var(--amber), var(--rose)); }
.team-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.team-role { font-size: .82rem; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; color: var(--cobalt); }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.process-step { background: rgba(249,115,22, 0.06); padding: 32px 24px; text-align: center; border: 1px solid rgba(249, 115, 22, 0.2); border-radius: 18px; transition: transform .28s ease, border-color .28s ease; position: relative; }
.process-step:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.5); }
.process-grid { counter-reset: step; }
.step-num { font-family: var(--font-mono); font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 12px; color: rgba(37,99,235,0.15); }
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: .86rem; color: #6b7a9f; }
.process-grid { position: relative; }

/* ── Contact ── */
.contact-layout { display: flex; flex-wrap: wrap; gap: 32px; }
.contact-info, .contact-form-wrap { flex: 1; background: rgba(255,255,255, 0.07); padding: 36px 32px; box-shadow: var(--sh-card); min-width: 280px; border: 1px solid rgba(249, 115, 22, 0.2); border-radius: 18px; transition: border-color .28s ease;}
.info-block { background: linear-gradient(135deg, rgba(37,99,235,.04), rgba(109,40,217,.04)); border: 1px solid rgba(37,99,235,.1); border-radius: var(--r-md); padding: 18px 20px; margin: 18px 0;  }
.info-block .fa-envelope{color:#06B6D4;}
.info-block .fa-whatsapp{color:#25D366;}
.info-block i{font-size:1.1rem;width:24px;}
.info-block div { margin-bottom: 8px; font-size: .92rem; }
.info-block div:last-child { margin-bottom: 0; }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.contact-btns .wa-me i {
    transform: translateY(2px);
}
.contact-meta .fa-globe{color:#06B6D4;}
.contact-meta .fa-map-marker-alt{color:#F97316;}
.contact-meta i{width:24px;font-size:1.1rem;}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .72rem; font-weight: 600; color: #6b7a9f; margin-bottom: 6px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 16px; border: 1.5px solid rgba(13,19,33,.12); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .92rem; background: #faf9f7; transition: .18s; color:#0f172a; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cobalt); outline: none; background: #ffffff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; justify-content: center; }
.form-hint { font-size: .78rem; color: #9aa3bc; margin-top: 12px; text-align: center; }

/* ── Footer ── */
footer { background: rgba(0, 0, 0, 0.85); color: rgba(255,255,255,.5); padding: 60px 0 30px; margin-top: 20px;}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; margin-bottom: 44px;flex-direction:row }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 10px; display: block; }
.footer-logo span { color: var(--teal-l); }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.48); max-width: 260px; }
.footer-col h4 { font-family: var(--font-display); font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: .86rem; color: rgba(255,255,255,.48); text-decoration: none; line-height: 2; }
.footer-col a:hover { color: var(--teal-l); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: .82rem; }
.footer-col .fa-whatsapp {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px !important;
}
/* ── Toast ── */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 6000; background: var(--white); border-radius: 10px; padding: 13px 18px; box-shadow: 0 6px 24px rgba(0,0,0,.16); transform: translateX(calc(100% + 36px)); transition: .32s; border-left: 3px solid var(--cobalt); color: #0f172a; max-width: 320px; }
.toast.show { transform: translateX(0); }

/* ── Floating action buttons ── */
    .fab-stack { position: fixed; right: 22px; bottom: 22px; z-index: 5000; display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; text-decoration: none; box-shadow: 0 8px 22px rgba(0,0,0,.28); transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease; cursor: pointer; border: none; }
    .fab-wa { background: #25D366; color: #fff; position: relative; }
    .fab-wa::before { content:''; position:absolute; inset:-4px; border-radius:50%; border:2px solid rgba(37,211,102,.5); animation: fabRing 2.2s ease-out infinite; }
    @keyframes fabRing { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
    .fab-wa:hover { transform: translateY(-4px) scale(1.05); }
    .fab-top { width: 42px; height: 42px; background: rgba(37,99,235,.92); color: #fff; font-size: 1rem; opacity: 0; pointer-events: none; transform: translateY(10px); }
    .fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .fab-top:hover { transform: translateY(-4px); }
    .sticky-wa {
      width:50px; height:50px; border-radius:50%;
      background:#25D366; display:grid; place-items:center;
      box-shadow:0 4px 24px rgba(37,211,102,.4);
      transition:all .3s; animation:waPop .4s 2s ease both;
    }
    .sticky-wa:hover { transform:scale(1.1) translateY(-2px); box-shadow:0 8px 32px rgba(37,211,102,.5); }
    @keyframes waPop { from { transform:scale(0); } to { transform:scale(1); } }
    

/* ── Mobile ── */
@media (max-width:768px){
    .mobile-menu-btn {color:#000;font-size:1.6rem;}
    .loader-logo{font-size:36px;}
    .loader-bar{width:180px;}
    .container { padding: 0 18px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-stats{justify-content:center;gap:20px;}
    .stat-item{text-align:center;}
    .hero { padding: 52px 0 0;}
    .hero-card { max-width: 100%;bottom:20px  }
    .hero-grid{bottom:20px }
    section { padding: 60px 0; } 
    .pricing-card,
    .pricing-card-custom {
      flex: 0 0 300px;
      width: 300px;
      max-width: 300px;
      min-width: 300px;   /* explicitly overrides any lingering 280px min-width from before */
    }
    .form-row { grid-template-columns: 1fr; }
    .spotlight { flex-direction: column; text-align: center; padding: 36px 24px; }
    .spotlight-badge { width: 100%; }
    .contact-btns{flex-direction:column;}
    body{padding-bottom: env(safe-area-inset-bottom);}
    .contact-btns{flex-direction: column;gap: 15px;}
    .nav-links{transition: all .3s ease;}
    .nav-links.show { display: flex; flex-direction: column; width: 100%; background: var(--white); padding: 22px; gap: 16px; border-radius: var(--r-md); box-shadow: var(--sh-float); }
    .why-us .section-header h2 { font-size: 2rem; }
    .svc-grid { grid-template-columns: 1fr; }
    #svcCanvas{display:none;}
    .hero h1{font-size:2rem;line-height:1.3;}
    .hero p{font-size:0.95rem;}
    .hero-cta{flex-direction:column;}
    .hero-cta .btn{width:100%;justify-content:center;}
    .team-card,
    .process-step{width:100%;}
    .contact-info,
    .contact-form-wrap{padding:24px 18px;}
    .contact-btns .btn{width:100%;justify-content:center;align-items:center;gap:10px;}
    .spotlight-content h2{font-size:1.6rem;}
    .pricing-price{font-size:1.8rem;}
    .footer-grid{flex-direction:column;gap:24px;}
    .footer-col,
    .footer-brand{width:100%;}
    .status-cell { min-width: 45%; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07); }
    .fab-stack { right: 14px; bottom: 14px; }
    .fab-wa { width: 50px; height: 50px; }
}
/* ── Tablet (iPad-ish widths) ── */
@media (max-width: 1024px) and (min-width: 789px) {
  .container { padding: 0 22px; }
  .features-grid, .svc-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .hero-grid { gap: 28px; }
  .pricing-row { gap: 1.4rem; }
  .team-grid, .process-grid { margin: 20px; flex-shrink:1}
}

/* ── Small phones (iPhone SE / older Android) ── */
@media (max-width: 468px) {
  .container { padding: 0 14px; bottom:20px}
  .hero { padding: 44px 0 0; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero-card { padding: 24px 20px; }
  .status-cell { min-width: 100%; padding: 14px 16px; }
  .marquee-item { font-size: .92rem; }
  .feature-card, .svc-card { padding: 26px 18px; }
  .btn-spotlight {left:5px; }
  .pricing-card { padding: 1.5rem 1.2rem; }
  .pricing-card,
  .pricing-card-custom {
    flex: 0 0 300px;
    max-width: 250px;   
  }  
  .testimonial-card { padding: 24px 20px; }
  .fab { width: 46px; height: 46px; font-size: 1.2rem; }
  .info-block i {
  font-size: 1.1rem;
  width: 24px;
  line-height: 2;        /* ← add this */
  vertical-align: middle; /* ← and this */
}

  .fab-top { width: 38px; height: 38px; }
  .toast { left: 14px; right: 14px; max-width: none; }
  .btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 2em; 
}
#navwa i {
  font-size: 16px;
  line-height: 2.5;
  vertical-align: middle;
  margin-left: 0;
  padding: 0;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  gap: 2px; /* try 4px if you want them even closer */
}
}
/* ── Extra-small phones ── */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.4rem; }
  .btn { padding: 10px 5px; font-size: 1rem; }
  .eyebrow-pill { font-size: .68rem; padding: 6px 12px; }
  .fab { width: 46px; height: 46px; font-size: 1.2rem; margin:0;}
  .btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 2em; /* locks icon size to match the button's own font-size instead of drifting independently */
}
}
/* ── Nav: shrink instead of wrapping to a new line ── */
@media (max-width: 1150px) and (min-width: 789px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .95rem; }
  #navwa { padding: 8px 14px; font-size: 13px; gap: 6px; }
  .logo { font-size: 1.4rem; }
}

@media (max-width: 950px) and (min-width: 789px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: .88rem; }
  #navwa span, #navwa { white-space: nowrap; }
}
