/* ==========================================================================
   Smartdesizns — Site stylesheet
   Modern, fast, hand-written. No framework dependency.
   ========================================================================== */

/* Design tokens ----------------------------------------------------------- */
:root {
  --ink-1: #0b1020;
  --ink-2: #1e293b;
  --ink-3: #475569;
  --ink-4: #64748b;
  --ink-5: #94a3b8;
  --line: #e2e8f0;
  --line-soft: #eef2f6;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-sky: #f1f5f9;

  --brand: #063c5d;         /* Smartdesizns signature navy-teal */
  --brand-strong: #00264a;  /* deeper navy */
  --brand-soft: #e6eff5;    /* pale brand tint */
  --brand-ink: #051e31;     /* deepest brand */
  --gold: #f9c947;          /* signature gold/yellow accent */
  --gold-strong: #e5b220;
  --gold-soft: #fff8e2;
  --accent: #f97316;        /* orange CTA (kept for conversion) */
  --accent-strong: #ea580c;
  --cyan: #0ea5e9;
  --teal: #0891b2;
  --green: #16a34a;
  --amber: #d97706;
  --red: #dc2626;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 40px -12px rgba(30, 58, 138, 0.18);

  --container: 1200px;
  --container-narrow: 860px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink-1);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
}

img, svg, video { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-strong); }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  color: var(--ink-1);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em 0;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: 0; text-transform: uppercase; color: var(--ink-3); font-weight: 600; letter-spacing: .08em; font-size: .85rem; }

p { margin: 0 0 1em 0; color: var(--ink-2); }
.lead { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem); color: var(--ink-3); line-height: 1.55; }

ul, ol { padding-left: 1.2em; }
li { margin-bottom: .25em; }

hr { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }

code, pre { font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, Monaco, monospace; font-size: .9em; }
code { background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; color: #334155; }
pre { background: #0f172a; color: #e2e8f0; padding: 16px; border-radius: var(--radius); overflow-x: auto; font-size: .85rem; line-height: 1.55; }

/* Layout primitives ------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(48px, 7vw, 96px) 0; }
.section-sm { padding: clamp(32px, 5vw, 60px) 0; }
.section-soft { background: var(--bg-soft); }
.section-sky  { background: var(--bg-sky); }
.section-ink  { background: var(--ink-1); color: #e2e8f0; }
.section-ink h1, .section-ink h2, .section-ink h3 { color: #ffffff; }
.section-ink p { color: #cbd5e1; }

.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.eyebrow.on-dark { color: #bfdbfe; background: rgba(59,130,246,.12); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

.stack-sm > * + * { margin-top: .4rem; }
.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .97rem;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 18px -6px rgba(249,115,22,.55);
}
.btn-primary:hover { background: var(--accent-strong); color: #fff; }

.btn-brand {
  background: var(--brand);
  color: #ffffff;
}
.btn-brand:hover { background: var(--brand-strong); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink-1);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink-5); }

.btn-ghost-dark {
  background: transparent;
  color: #e2e8f0;
  border-color: rgba(255,255,255,.18);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.06); color: #fff; }

.btn-lg { padding: 14px 24px; font-size: 1rem; }
.btn-sm { padding: 8px 14px; font-size: .88rem; }
.btn-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.btn-arrow:hover::after { transform: translateX(3px); }

/* Header / nav ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15,23,42,.03);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink-1);
  letter-spacing: -0.01em;
}
.logo .mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 14px -4px rgba(30,58,138,.45);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink-1); }
.nav-links a.active { color: var(--brand); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 42px; height: 42px;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px; left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { padding: 10px 12px; }
}

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 85% 10%, rgba(14,165,233,.14), transparent 60%),
    radial-gradient(55% 60% at 8% 90%, rgba(249,115,22,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 {
  font-size: clamp(2.2rem, 1.2rem + 4.2vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero .lead { max-width: 560px; margin-bottom: 28px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stats .n { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--ink-1); }
.hero-stats .l { font-size: .85rem; color: var(--ink-4); }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hero-art .blob {
  position: absolute; inset: 0;
  background: conic-gradient(from 140deg at 60% 40%, #1e40af, #0ea5e9, #f97316, #1e40af);
  filter: blur(42px);
  opacity: .55;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
  50%      { border-radius: 60% 40% 45% 55% / 40% 60% 45% 55%; }
}
.hero-art .card-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  color: var(--ink-2);
}
.hero-art .card-float .title { font-weight: 700; color: var(--ink-1); margin-bottom: 2px; font-size: .9rem; }
.hero-art .card-float.tl { top: 6%; left: -6%; }
.hero-art .card-float.br { bottom: 6%; right: -2%; }
.hero-art .card-float.mid { top: 46%; right: 10%; }

/* Trust bar --------------------------------------------------------------- */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  color: var(--ink-4);
  font-weight: 600;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 600;
}
.trust-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,.15); }

/* Cards ------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column; gap: 12px;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cbd5e1; }
.card h3 { margin: 0; font-size: 1.15rem; }
.card p { margin: 0; color: var(--ink-3); font-size: .96rem; }
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.card .link-inline { color: var(--brand); font-weight: 600; font-size: .92rem; margin-top: auto; }
.card .link-inline::after { content: " →"; transition: transform .2s var(--ease); display: inline-block; }
.card:hover .link-inline::after { transform: translateX(3px); }

.card-accent {
  background: linear-gradient(135deg, var(--brand) 0%, #0b1e52 100%);
  color: #ffffff;
  border: 0;
}
.card-accent h3, .card-accent p { color: #ffffff; }
.card-accent p { color: #cbd5e1; }
.card-accent .icon { background: rgba(255,255,255,.12); color: #fff; }

/* Product / pricing cards ------------------------------------------------- */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .price { color: var(--brand); font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.product-card .price .amount { font-size: 1.6rem; }
.product-card .pill-new { position: absolute; top: 16px; right: 16px; font-size: .7rem; background: var(--accent); color: #fff; padding: 3px 10px; border-radius: 999px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-card ul { list-style: none; padding: 0; margin: 0; color: var(--ink-3); font-size: .95rem; }
.product-card ul li { padding: 4px 0 4px 22px; position: relative; }
.product-card ul li::before { content: "✓"; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.product-card .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 8px; }

/* Feature grid ------------------------------------------------------------ */
.feat {
  display: flex; align-items: flex-start; gap: 14px;
}
.feat .fi {
  flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.feat h4 { margin: 0 0 4px; font-size: 1rem; text-transform: none; letter-spacing: 0; color: var(--ink-1); }
.feat p { margin: 0; font-size: .94rem; color: var(--ink-3); }

/* Process steps ----------------------------------------------------------- */
.steps { counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 14px; right: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.4rem;
  color: transparent;
  -webkit-text-stroke: 1px #cbd5e1;
}
.step h4 { font-size: 1.05rem; text-transform: none; letter-spacing: 0; color: var(--ink-1); margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-3); font-size: .94rem; }

/* Testimonials ------------------------------------------------------------ */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.testimonial .quote {
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 16px;
}
.testimonial .quote::before { content: "\201C"; font-family: serif; font-size: 2.4rem; line-height: 0; color: var(--brand); margin-right: 2px; vertical-align: -0.4em; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--cyan)); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.testimonial .name { font-weight: 700; color: var(--ink-1); font-size: .95rem; }
.testimonial .role { color: var(--ink-4); font-size: .85rem; }

/* Office strip ------------------------------------------------------------ */
.office {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.office h4 { text-transform: none; letter-spacing: 0; font-size: 1.1rem; color: var(--ink-1); font-weight: 700; margin-bottom: 8px; }
.office .pin { display: inline-flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.office .pin::before { content: "●"; color: var(--accent); }
.office p { font-size: .95rem; color: var(--ink-3); margin: 0; }

/* FAQ --------------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink-1);
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand);
  transition: transform .2s var(--ease);
  font-weight: 500;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  color: var(--ink-3);
  margin-top: 10px;
  font-size: .98rem;
}

/* CTA block --------------------------------------------------------------- */
.cta-block {
  background: linear-gradient(135deg, var(--brand) 0%, #0b1e52 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-block::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.35), transparent 70%);
  bottom: -160px; right: -120px;
}
.cta-block h2 { color: #fff; margin-bottom: 8px; }
.cta-block p { color: #cbd5e1; margin-bottom: 0; }
@media (max-width: 900px) { .cta-block { grid-template-columns: 1fr; } }

/* Forms ------------------------------------------------------------------- */
.form-card {
  background: #fff;
  color: var(--ink-1);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--ink-3); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--ink-1);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30,58,138,.12);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-4); }

/* Footer ------------------------------------------------------------------ */
.site-footer {
  background: var(--ink-1);
  color: #cbd5e1;
  padding: 64px 0 32px;
}
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid #1f2a44;
  padding-top: 22px;
  margin-top: 42px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: #94a3b8; font-size: .88rem;
}
.footer-logo { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; display: inline-flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.footer-desc { color: #94a3b8; font-size: .93rem; max-width: 340px; }

/* Pricing table ----------------------------------------------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.price-table th { background: var(--bg-soft); font-weight: 700; color: var(--ink-1); }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price-amt { font-weight: 700; color: var(--brand); white-space: nowrap; }

/* Case study cards -------------------------------------------------------- */
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.case-card .thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.case-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-card .tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--bg-sky); color: var(--ink-3); padding: 3px 8px; border-radius: 999px; }
.case-card .kpi { margin-top: auto; background: var(--bg-soft); border-radius: var(--radius); padding: 10px 14px; font-size: .9rem; color: var(--ink-2); }
.case-card .kpi b { color: var(--brand); }

/* Floating buttons (WhatsApp / call) -------------------------------------- */
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab a {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(37,211,102,.5);
  transition: transform .15s var(--ease);
}
.fab a:hover { transform: scale(1.06); color: #fff; }
.fab a.phone { background: var(--brand); box-shadow: 0 8px 20px -4px rgba(30,58,138,.5); }

/* Breadcrumb -------------------------------------------------------------- */
.crumb { font-size: .88rem; color: var(--ink-4); margin-bottom: 8px; }
.crumb a { color: var(--ink-4); }
.crumb a:hover { color: var(--brand); }
.crumb span + span::before { content: " / "; color: var(--ink-5); padding: 0 4px; }

/* Badges / chips ---------------------------------------------------------- */
.badge { display: inline-block; font-size: .75rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: .04em; }
.badge-brand { background: var(--brand-soft); color: var(--brand); }
.badge-accent { background: #fff7ed; color: var(--accent-strong); }
.badge-green { background: #ecfdf5; color: var(--green); }

/* Utility ----------------------------------------------------------------- */
.muted { color: var(--ink-4); }
.small { font-size: .88rem; }
.lg { font-size: 1.1rem; }
.f-strong { font-weight: 700; }
.divider { height: 1px; background: var(--line); margin: 32px 0; }

/* Skip link --------------------------------------------------------------- */
.skip { position: absolute; left: -9999px; top: 12px; background: var(--ink-1); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 12px; color: #fff; }

/* Print ------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .fab, .cta-block { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   V2 — 2026 refresh: bento, image cards, richer hero, photo avatars
   ========================================================================== */

/* Hero v2 ----------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(40% 40% at 12% 12%, rgba(99,102,241,.18), transparent 60%),
    radial-gradient(45% 55% at 90% 18%, rgba(14,165,233,.22), transparent 60%),
    radial-gradient(40% 50% at 85% 95%, rgba(249,115,22,.14), transparent 65%),
    radial-gradient(35% 40% at 8% 90%, rgba(236,72,153,.10), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("/assets/img/illustrations/pattern-grid.svg");
  background-size: 40px 40px;
  opacity: .35;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero-device {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 30px 50px rgba(30, 58, 138, .18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-chip .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: .7rem; font-weight: 800;
}
.hero-chip strong { color: var(--brand); font-weight: 700; }

/* Service cards v2 (with header band + illustration) ---------------------- */
.svc-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cbd5e1; }
.svc-card .svc-art {
  height: 140px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-card .svc-art::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("/assets/img/illustrations/pattern-grid.svg");
  background-size: 28px 28px;
  opacity: .25;
  pointer-events: none;
}
.svc-card .svc-art img { width: 82px; height: 82px; position: relative; z-index: 1; }
.svc-card .svc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card h3 { margin: 0; font-size: 1.18rem; }
.svc-card p { margin: 0; color: var(--ink-3); font-size: .96rem; }
.svc-card .link-inline { color: var(--brand); font-weight: 600; font-size: .92rem; margin-top: auto; padding-top: 8px; }
.svc-card .link-inline::after { content: " →"; transition: transform .2s var(--ease); display: inline-block; }
.svc-card:hover .link-inline::after { transform: translateX(3px); }

.svc-card.tone-sky .svc-art   { background: linear-gradient(135deg, #eff6ff, #e0f2fe); }
.svc-card.tone-indigo .svc-art{ background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.svc-card.tone-amber .svc-art { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.svc-card.tone-ink .svc-art   { background: linear-gradient(135deg, #1e293b, #0b1020); }
.svc-card.tone-pink .svc-art  { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }
.svc-card.tone-green .svc-art { background: linear-gradient(135deg, #ecfdf5, #bbf7d0); }

/* Product cards v2 with illustration header ------------------------------- */
.product-card-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.product-card-v2::before { display: none; }
.product-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-v2 .prod-art { aspect-ratio: 8 / 5; overflow: hidden; }
.product-card-v2 .prod-art img { width: 100%; height: 100%; object-fit: cover; }
.product-card-v2 .prod-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-card-v2 .pill-new {
  position: absolute; top: 14px; left: 14px;
  font-size: .7rem; background: var(--accent); color: #fff;
  padding: 4px 12px; border-radius: 999px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  z-index: 2;
}
.product-card-v2 h3 { margin: 0; font-size: 1.25rem; }
.product-card-v2 .muted { margin: 0; font-size: .95rem; }
.product-card-v2 ul { list-style: none; padding: 0; margin: 0; color: var(--ink-3); font-size: .93rem; }
.product-card-v2 ul li { padding: 4px 0 4px 22px; position: relative; }
.product-card-v2 ul li::before { content: "✓"; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.product-card-v2 .price { color: var(--brand); font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.product-card-v2 .price .amount { font-size: 1.6rem; }
.product-card-v2 .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 6px; }

/* Case-study image cards -------------------------------------------------- */
.case-card-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.case-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card-v2 .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #0b1020;
}
.case-card-v2 .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.case-card-v2:hover .thumb img { transform: scale(1.04); }
.case-card-v2 .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,16,32,.55) 100%);
}
.case-card-v2 .thumb-label {
  position: absolute; bottom: 12px; left: 14px; z-index: 1;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.case-card-v2 .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card-v2 .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-card-v2 .tag {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; background: var(--bg-sky); color: var(--ink-3);
  padding: 3px 8px; border-radius: 999px;
}
.case-card-v2 .kpi {
  margin-top: auto; background: var(--bg-soft);
  border-radius: var(--radius); padding: 10px 14px;
  font-size: .9rem; color: var(--ink-2);
}
.case-card-v2 .kpi b { color: var(--brand); }

/* Testimonials v2 with photo avatars -------------------------------------- */
.testimonial .avatar-photo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(15,23,42,.12);
}

/* Office cards v2 with photo --------------------------------------------- */
.office-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.office-v2 .office-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.office-v2 .office-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.office-v2:hover .office-photo img { transform: scale(1.03); }
.office-v2 .office-body { padding: 22px 24px 24px; }
.office-v2 h4 {
  text-transform: none; letter-spacing: 0;
  font-size: 1.15rem; color: var(--ink-1);
  font-weight: 700; margin-bottom: 8px;
}
.office-v2 .pin {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: .78rem; color: var(--brand); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 10px;
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.office-v2 p { font-size: .95rem; color: var(--ink-3); margin: 0; }

/* Blog cards v2 with image header ----------------------------------------- */
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.blog-card .blog-thumb {
  aspect-ratio: 16 / 9; overflow: hidden;
}
.blog-card .blog-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-card .blog-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.blog-card .blog-body h3 { margin: 0; font-size: 1.15rem; }
.blog-card .blog-body p { margin: 0; color: var(--ink-3); font-size: .95rem; }
.blog-card .link-inline { margin-top: auto; color: var(--brand); font-weight: 600; font-size: .92rem; }

/* Trust bar v2 ------------------------------------------------------------ */
.trust-row .logo-pill {
  display: inline-flex; align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-3);
  font-weight: 600;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.trust-row .logo-pill:hover { border-color: var(--ink-5); transform: translateY(-1px); }
.trust-row .logo-pill .mini {
  width: 20px; height: 20px; border-radius: 5px;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  color: #fff; display: inline-flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: .7rem;
}

/* Industries v2 icons ----------------------------------------------------- */
.ind-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.ind-card:hover { transform: translateY(-2px); border-color: #cbd5e1; }
.ind-card .ico {
  flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.ind-card h3 { margin: 0; font-size: 1rem; }
.ind-card p { margin: 0; font-size: .85rem; color: var(--ink-4); }

/* Section decorator ------------------------------------------------------- */
.section-dec {
  position: relative;
  overflow: hidden;
}
.section-dec::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(30% 50% at 100% 0%, rgba(30,58,138,.06), transparent 60%),
    radial-gradient(30% 50% at 0% 100%, rgba(249,115,22,.05), transparent 60%);
  pointer-events: none;
}
.section-dec > .container { position: relative; z-index: 1; }

/* Animated gradient text -------------------------------------------------- */
.grad-text {
  background: linear-gradient(90deg, #1e3a8a 0%, #0ea5e9 40%, #f97316 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradSlide 8s linear infinite;
}
@keyframes gradSlide {
  to { background-position: -200% center; }
}

/* Hide old hero art on v2 ------------------------------------------------- */
.hero-art-v2 .blob,
.hero-art-v2 .card-float { display: none; }

/* Rounded section dividers ------------------------------------------------ */
.rounded-hero {
  border-radius: 0 0 32px 32px;
  margin-bottom: 0;
}

/* ==========================================================================
   Page hero banner (for inner pages) + shape decor system
   ========================================================================== */

.page-hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(45% 60% at 88% 20%, rgba(14,165,233,.22), transparent 60%),
    radial-gradient(45% 55% at 5% 85%, rgba(249,115,22,.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("/assets/img/illustrations/pattern-grid.svg");
  background-size: 40px 40px;
  opacity: .30;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-grid .hero-banner { max-width: 500px; margin: 0 auto; }
}

.page-hero h1 {
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem);
  line-height: 1.1;
  margin: 10px 0 14px;
}
.page-hero .lead { max-width: 620px; }
.page-hero .crumb { margin-bottom: 6px; }

.hero-banner {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(30,58,138,.15));
  animation: float 7s ease-in-out infinite;
}

/* Alternate tone palettes for page hero */
.page-hero.tone-indigo {
  background:
    radial-gradient(45% 60% at 90% 15%, rgba(99,102,241,.24), transparent 60%),
    radial-gradient(45% 55% at 0% 90%, rgba(14,165,233,.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.page-hero.tone-amber {
  background:
    radial-gradient(45% 60% at 90% 15%, rgba(249,115,22,.22), transparent 60%),
    radial-gradient(45% 55% at 0% 90%, rgba(236,72,153,.12), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}
.page-hero.tone-green {
  background:
    radial-gradient(45% 60% at 90% 15%, rgba(22,163,74,.20), transparent 60%),
    radial-gradient(45% 55% at 0% 90%, rgba(14,165,233,.16), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.page-hero.tone-pink {
  background:
    radial-gradient(45% 60% at 90% 15%, rgba(244,114,182,.22), transparent 60%),
    radial-gradient(45% 55% at 0% 90%, rgba(249,115,22,.14), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fdf2f8 100%);
}
.page-hero.tone-ink {
  background:
    radial-gradient(45% 60% at 90% 15%, rgba(99,102,241,.32), transparent 60%),
    radial-gradient(45% 55% at 0% 90%, rgba(14,165,233,.22), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #1e293b 100%);
  color: #e2e8f0;
}
.page-hero.tone-ink h1,
.page-hero.tone-ink .lead { color: #ffffff; }
.page-hero.tone-ink .crumb,
.page-hero.tone-ink .crumb a { color: #94a3b8; }
.page-hero.tone-ink .eyebrow {
  background: rgba(59,130,246,.15);
  color: #bfdbfe;
}

/* Decorative floating shapes ---------------------------------------------- */
.shape {
  position: absolute;
  pointer-events: none;
  opacity: .55;
  z-index: 0;
}
.shape-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
}
.shape-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: transparent;
  opacity: .35;
}
.shape-square {
  width: 44px; height: 44px;
  background: var(--brand);
  border-radius: 10px;
  opacity: .18;
  transform: rotate(18deg);
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 36px solid var(--accent);
  opacity: .22;
  background: none;
  border-radius: 0;
}
.shape-blob {
  width: 160px; height: 160px;
  background: conic-gradient(from 40deg, var(--brand), var(--cyan), var(--accent), var(--brand));
  filter: blur(30px);
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  opacity: .35;
  animation: morph 14s ease-in-out infinite;
}
.shape-plus {
  width: 26px; height: 26px;
  background:
    linear-gradient(var(--brand), var(--brand)) center/3px 100% no-repeat,
    linear-gradient(var(--brand), var(--brand)) center/100% 3px no-repeat;
  opacity: .28;
}

/* Stat / metric strip ----------------------------------------------------- */
.metric-strip {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) { .metric-strip { grid-template-columns: repeat(2, 1fr); } }
.metric-strip .metric { text-align: left; padding: 8px 12px; border-left: 3px solid var(--brand); }
.metric-strip .metric .n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(1.6rem, 1rem + 1.5vw, 2.1rem);
  color: var(--ink-1); letter-spacing: -0.02em;
}
.metric-strip .metric .l { font-size: .82rem; color: var(--ink-4); margin-top: 2px; }

/* Image banner / feature stripe ------------------------------------------- */
.banner-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7;
}
.banner-img img { width: 100%; height: 100%; object-fit: cover; }
.banner-img.tall { aspect-ratio: 4 / 3; }

/* Sticker / ribbon -------------------------------------------------------- */
.sticker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: #ffffff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
}
.sticker .emoji { font-size: 1rem; }

/* Wavy divider ------------------------------------------------------------ */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path fill='%23f8fafc' d='M0 40 C 240 0 480 80 720 40 S 1200 0 1440 40 L 1440 80 L 0 80 Z'/></svg>") center/cover no-repeat;
}
.wave-divider.inverted { transform: rotate(180deg); }

/* Gallery grid ------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery .tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery .tile:hover img { transform: scale(1.06); }
.gallery .tile.wide { grid-column: span 2; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .tile.wide { grid-column: span 2; }
}

/* Feature strip v2 with icon + copy side by side ------------------------- */
.feat-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 720px) { .feat-grid { grid-template-columns: 1fr; } }

/* Callout / info box ----------------------------------------------------- */
.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  align-items: center;
}
.callout .c-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.callout h3 { margin: 0 0 4px; font-size: 1.1rem; }
.callout p { margin: 0; font-size: .95rem; color: var(--ink-3); }
.callout.warn { background: linear-gradient(135deg, #fff7ed, #fed7aa); border-color: #fdba74; }
.callout.success { background: linear-gradient(135deg, #ecfdf5, #bbf7d0); border-color: #86efac; }

/* Timeline --------------------------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--brand), var(--cyan));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding: 0 0 22px 0;
}
.timeline-item::before {
  content: ""; position: absolute; left: -22px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--brand-soft);
}
.timeline-item h4 {
  text-transform: none; letter-spacing: 0;
  font-size: 1rem; color: var(--ink-1); margin-bottom: 4px;
}
.timeline-item p { margin: 0; font-size: .93rem; color: var(--ink-3); }
.timeline-item .date {
  font-size: .78rem; font-weight: 700;
  color: var(--brand); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 2px;
  display: block;
}

/* Pricing card v2 -------------------------------------------------------- */
.price-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); }
.price-card.featured::before {
  content: "Most popular";
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: .08em; text-transform: uppercase;
}
.price-card h3 { margin: 0; font-size: 1.2rem; }
.price-card .pc-price {
  display: flex; align-items: baseline; gap: 6px;
  color: var(--brand); font-family: 'Plus Jakarta Sans', sans-serif;
}
.price-card .pc-price .amt { font-size: 2.1rem; font-weight: 800; }
.price-card .pc-price .per { font-size: .88rem; color: var(--ink-4); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 0; font-size: .94rem; color: var(--ink-3); }
.price-card ul li { padding: 6px 0 6px 22px; position: relative; }
.price-card ul li::before { content: "✓"; color: var(--green); position: absolute; left: 0; font-weight: 700; }

/* Tech stack chips ------------------------------------------------------- */
.stack-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.stack-chips .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .82rem; font-weight: 600; color: var(--ink-2);
  transition: border-color .2s var(--ease);
}
.stack-chips .chip:hover { border-color: var(--brand); color: var(--brand); }
.stack-chips .chip .bullet {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
}

/* ==========================================================================
   V3 — Smartdesizns brand revival (navy #063c5d + gold #f9c947)
   Inspired by the original smartdesizns.com brand DNA
   ========================================================================== */

/* Logo mark v3 (navy/gold) */
.logo .mark {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 6px 14px -4px rgba(6,60,93,.45);
}

/* Nav links — navy active state */
.nav-links a.active { color: var(--brand); }

/* Accent button variant in brand gold */
.btn-gold {
  background: var(--gold);
  color: var(--brand-ink);
  box-shadow: 0 6px 18px -6px rgba(249,201,71,.55);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-strong); color: var(--brand-ink); }

/* Brand hero — LIGHT variant (default for inner pages) ------------------- */
.brand-hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(45% 60% at 92% 10%, rgba(6,60,93,.12), transparent 60%),
    radial-gradient(40% 50% at 5% 95%, rgba(249,201,71,.18), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  color: var(--ink-1);
  border-bottom: 1px solid var(--line);
}
.brand-hero .eyebrow {
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(6,60,93,.12);
}
.brand-hero h1 { color: var(--brand-ink); }
.brand-hero h1 .accent { color: var(--brand); }
.brand-hero h1 .accent::after {
  background: var(--gold);
  opacity: 1;
  height: 8px;
  bottom: -2px;
  border-radius: 4px;
}
.brand-hero .lead { color: var(--ink-3); }
.brand-hero .crumb { color: var(--ink-4); }
.brand-hero .crumb a { color: var(--brand); }
.brand-hero .hero-art-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(6,60,93,.25);
  background: linear-gradient(135deg, #fff, #eff5fa);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
}
.brand-hero .hero-art-frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("/assets/img/illustrations/pattern-grid.svg");
  background-size: 36px 36px;
  opacity: .35;
  pointer-events: none;
}
.brand-hero .hero-art-frame img { filter: drop-shadow(0 14px 24px rgba(6,60,93,.2)); }
.brand-hero .hero-chips .chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.brand-hero .hero-chips .chip .v { color: var(--brand); }
.brand-hero .btn-ghost-dark {
  color: var(--brand);
  border-color: rgba(6,60,93,.2);
  background: #fff;
}
.brand-hero .btn-ghost-dark:hover {
  background: var(--brand-soft);
  color: var(--brand-strong);
  border-color: var(--brand);
}

/* Brand hero — LIGHT variant (HOMEPAGE, white base) ------------------- */
.brand-hero-light {
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 9vw, 110px);
  background:
    radial-gradient(50% 60% at 92% 8%, rgba(6,60,93,.10), transparent 60%),
    radial-gradient(45% 55% at 4% 96%, rgba(249,201,71,.22), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border-bottom: 1px solid var(--line);
}
.brand-hero-light h1 {
  color: var(--brand-ink);
  font-size: clamp(2.2rem, 1.35rem + 3.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.brand-hero-light h1 .accent { color: var(--brand); }
.brand-hero-light h1 .accent::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 8px; background: var(--gold);
  border-radius: 4px; opacity: .9;
  transform: skewX(-14deg);
}
.brand-hero-light .lead {
  font-size: clamp(1.02rem, .98rem + 0.35vw, 1.22rem);
  max-width: 580px;
}
.brand-hero-light .hero-art-frame {
  min-height: 380px;
  box-shadow: 0 30px 60px -20px rgba(6,60,93,.22);
}

/* Brand hero — DARK variant (HOMEPAGE only, add class brand-hero-dark) */
.brand-hero-dark {
  position: relative;
  padding: clamp(72px, 11vw, 140px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,60,93,.92) 0%, rgba(0,38,74,.94) 60%, rgba(5,30,49,.96) 100%),
    url("/assets/img/brand/pattern-bg.jpg") center/cover no-repeat;
  color: #e6eff5;
  border-bottom: none;
}
.brand-hero-dark::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("/assets/img/illustrations/pattern-grid.svg");
  background-size: 46px 46px;
  opacity: .10;
  pointer-events: none;
}
.brand-hero > .container,
.brand-hero-dark > .container { position: relative; z-index: 2; }
.brand-hero h1,
.brand-hero-dark h1 {
  font-size: clamp(2.1rem, 1.35rem + 2.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.brand-hero-dark h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4.4rem);
  line-height: 1.04;
}
.brand-hero h1 .accent,
.brand-hero-dark h1 .accent {
  display: inline-block;
  position: relative;
}
.brand-hero-dark h1 .accent { color: var(--gold); }
.brand-hero-dark h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--gold);
  border-radius: 3px;
  opacity: .35;
  transform: skewX(-14deg);
}
.brand-hero .lead {
  font-size: clamp(1.02rem, .98rem + 0.3vw, 1.18rem);
  max-width: 580px;
  margin-bottom: 24px;
}
.brand-hero-dark .lead {
  color: rgba(255,255,255,.85);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.28rem);
  max-width: 580px;
  margin-bottom: 30px;
}
.brand-hero-dark .eyebrow {
  background: rgba(249,201,71,.18);
  color: var(--gold);
  border: 1px solid rgba(249,201,71,.3);
}
.brand-hero-dark .crumb,
.brand-hero-dark .crumb a { color: rgba(255,255,255,.7); }

.brand-hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 48px; align-items: center;
}
@media (max-width: 900px) { .brand-hero-grid { grid-template-columns: 1fr; gap: 32px; } }

.brand-hero-dark .hero-art-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
.brand-hero-dark .hero-art-frame img { filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); }

/* Floating stat chips over hero */
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.hero-chips .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-2);
  font-weight: 600;
}
.hero-chips .chip .v {
  color: var(--brand);
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.brand-hero-dark .hero-chips .chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(8px);
}
.brand-hero-dark .hero-chips .chip .v { color: var(--gold); }

/* Big stats band (8-up like the original) -------------------------------- */
.stats-band {
  padding: 60px 0;
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("/assets/img/illustrations/pattern-grid.svg");
  background-size: 40px 40px;
  opacity: .10;
}
.stats-band > .container { position: relative; z-index: 1; }
.stats-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
}
@media (max-width: 900px) { .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stats-band .stat {
  text-align: center;
  padding: 16px 8px;
}
.stats-band .stat .n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 1.6vw, 2.8rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stats-band .stat .l {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin-top: 10px;
  letter-spacing: .04em;
}
.stats-band .stat .ico {
  width: 42px; height: 42px; margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(249,201,71,.18);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

/* Portfolio grid (Bumper, Skinner, E-Shop, Goodies) ----------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0c2338;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-card .pf-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-card .pf-bg img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.3));
}
.portfolio-card.tone-gold .pf-bg {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
}
.portfolio-card.tone-accent .pf-bg {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}
.portfolio-card.tone-teal .pf-bg {
  background: linear-gradient(135deg, var(--teal) 0%, var(--brand) 100%);
}
.portfolio-card .pf-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 20px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.75) 70%);
  color: #fff;
  z-index: 2;
}
.portfolio-card .pf-overlay .tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.portfolio-card .pf-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.portfolio-card .pf-overlay .sub {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  margin-top: 3px;
}

/* Client-logo strip (Worked With) ---------------------------------------- */
.clients-strip {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients-strip .clients-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  color: var(--ink-4);
  font-weight: 700;
  margin-bottom: 24px;
}
.clients-strip .clients-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}
@media (max-width: 900px) { .clients-strip .clients-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .clients-strip .clients-row { grid-template-columns: repeat(2, 1fr); } }
.clients-strip .cl-tile {
  aspect-ratio: 2 / 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  filter: grayscale(100%);
  opacity: .6;
  transition: opacity .25s var(--ease), filter .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.clients-strip .cl-tile:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--brand);
}
.clients-strip .cl-tile img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Feature cards with brand illustrations --------------------------------- */
.feat-card-v3 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  text-align: center;
  align-items: center;
}
.feat-card-v3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.feat-card-v3 .feat-icon-wrap {
  width: 88px; height: 88px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.feat-card-v3 .feat-icon-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.feat-card-v3.tone-gold .feat-icon-wrap {
  background: linear-gradient(135deg, var(--gold-soft), #fff);
}
.feat-card-v3 h3 { margin: 0; font-size: 1.1rem; }
.feat-card-v3 p { margin: 0; color: var(--ink-3); font-size: .94rem; }

/* Named testimonial carousel (Thirent T., Shaul R, etc.) ----------------- */
.testimonial-v3 {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 640px) { .testimonial-v3 { grid-template-columns: 1fr; } }
.testimonial-v3::before {
  content: """;
  position: absolute;
  top: -30px; left: 30px;
  font-size: 160px;
  line-height: 1;
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  opacity: .5;
  z-index: 0;
  font-weight: 800;
}
.testimonial-v3 > * { position: relative; z-index: 1; }
.testimonial-v3 .tv-photo {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(6,60,93,.35);
  border: 3px solid #fff;
}
.testimonial-v3 .tv-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.testimonial-v3 .tv-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 16px;
}
.testimonial-v3 .tv-meta .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink-1);
  font-size: 1rem;
}
.testimonial-v3 .tv-meta .role {
  color: var(--ink-4);
  font-size: .85rem;
  margin-top: 2px;
}
.testimonial-v3 .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

/* Tech stack logos strip ------------------------------------------------- */
.tech-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 18px;
  align-items: center;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
@media (max-width: 720px) { .tech-strip { grid-template-columns: repeat(3, 1fr); } }
.tech-strip .t-tile {
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.tech-strip .t-tile img { max-width: 100%; max-height: 48px; object-fit: contain; }

/* Success-story strip (angled ribbon) ----------------------------------- */
.story-ribbon {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.story-ribbon::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: linear-gradient(135deg, rgba(249,201,71,.15), transparent);
  transform: rotate(-18deg);
}
.story-ribbon::after {
  content: "";
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,201,71,.18), transparent 70%);
  border-radius: 50%;
}
.story-ribbon > * { position: relative; z-index: 1; }
.story-ribbon h2 { color: #fff; }
.story-ribbon p { color: rgba(255,255,255,.85); }
.story-ribbon .eyebrow {
  background: rgba(249,201,71,.18);
  color: var(--gold);
}

/* Gold underline text accent -------------------------------------------- */
.u-gold {
  position: relative;
  display: inline-block;
}
.u-gold::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--gold);
  border-radius: 3px;
  opacity: .45;
  transform: skewX(-10deg);
}

/* Brand-inked section ---------------------------------------------------- */
.section-brand {
  background: var(--brand);
  color: #e6eff5;
  position: relative;
  overflow: hidden;
}
.section-brand::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("/assets/img/illustrations/pattern-grid.svg");
  background-size: 40px 40px;
  opacity: .08;
  pointer-events: none;
}
.section-brand > .container { position: relative; z-index: 1; }
.section-brand h1, .section-brand h2, .section-brand h3, .section-brand h4 { color: #fff; }
.section-brand p { color: rgba(255,255,255,.85); }
.section-brand .eyebrow {
  background: rgba(249,201,71,.18);
  color: var(--gold);
}

/* Contact strip --------------------------------------------------------- */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 760px) { .contact-strip { grid-template-columns: 1fr; } }
.contact-strip .cs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-strip .cs-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.contact-strip .cs-card .cs-ico {
  flex: 0 0 auto;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-strip .cs-card h4 {
  text-transform: none; letter-spacing: 0;
  color: var(--ink-1); font-size: 1rem; margin: 0 0 4px;
}
.contact-strip .cs-card p { margin: 0; font-size: .9rem; color: var(--ink-3); }
.contact-strip .cs-card a { color: var(--brand); font-weight: 600; }

/* Three audience cards (Enterprise / Consumer / Business) --------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }
.aud-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.aud-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 72px; height: 72px;
  background: var(--brand);
  border-radius: 0 0 var(--radius-lg) 0;
  opacity: .08;
}
.aud-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 3rem;
  color: var(--brand);
  line-height: 1;
  opacity: .15;
  position: absolute;
  top: 10px; right: 18px;
}
.aud-card h3 { margin: 0 0 10px; font-size: 1.2rem; color: var(--brand); }
.aud-card p { margin: 0; font-size: .95rem; color: var(--ink-3); }
.aud-card.gold { border-color: var(--gold); }
.aud-card.gold::before { background: var(--gold); opacity: .2; }
.aud-card.gold .num { color: var(--gold-strong); opacity: .3; }
.aud-card.gold h3 { color: var(--brand-ink); }

/* WhatsApp FAB — brand upgrade */
.fab a.phone { background: var(--brand); box-shadow: 0 8px 20px -4px rgba(6,60,93,.5); }

/* Footer — brand dark ---------------------------------------------------- */
.site-footer { background: var(--brand-ink); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top-color: rgba(255,255,255,.08); }

/* Trust chip (hero) — brand */
.trust-chip .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(249,201,71,.2); }

/* Header — brand underline on active */
.nav-links a.active::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 4px;
}

/* ==========================================================================
   Inner-page hero graphics — decorative shapes, floating pills, pattern dots
   (auto-applies to every page using .brand-hero, no HTML change needed)
   ========================================================================== */
.brand-hero { isolation: isolate; }

/* Floating gold blob — top-right */
.brand-hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(249,201,71,.55) 0%, rgba(249,201,71,.15) 45%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  animation: blobDrift 14s ease-in-out infinite;
}

/* Floating navy blob — bottom-left (light pages only; dark page has its own ::after) */
.brand-hero:not(.brand-hero-dark)::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -70px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 60%, rgba(6,60,93,.18) 0%, rgba(14,165,233,.08) 50%, transparent 75%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
  animation: blobDrift 16s ease-in-out infinite reverse;
}

/* Ensure content stays above the decorative blobs */
.brand-hero > .container { position: relative; z-index: 2; }

/* Floating verified-badge on hero-art-frame (corner decoration) */
.brand-hero .hero-art-frame::after {
  content: "✓ Verified partner · since 2011";
  position: absolute;
  left: -18px; bottom: -14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(6,60,93,.45);
  border: 2px solid #fff;
  z-index: 3;
  pointer-events: none;
  animation: floatY 5s ease-in-out infinite;
}
.brand-hero-dark .hero-art-frame::after {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: var(--brand-ink);
  border-color: rgba(255,255,255,.18);
}
/* Homepage already has its own HTML floating cards — hide the CSS badge there */
.brand-hero .hero-art-frame.hero-art-live::after { display: none; }

/* Frame must show outside content (badge + dots extend beyond) */
.brand-hero .hero-art-frame {
  overflow: visible;
}
.brand-hero .hero-art-frame > img { position: relative; z-index: 1; }

/* Extra decorative dotted panel behind frame — added as a before on brand-hero-grid?
   Instead, we add it inline on the frame via a background layer that extends using box-shadow. */
.brand-hero .hero-art-frame {
  box-shadow: 0 20px 50px -20px rgba(6,60,93,.25),
              32px 32px 0 -4px rgba(6,60,93,.04);
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(18px,-12px) scale(1.05); }
  66%      { transform: translate(-10px,14px) scale(.97); }
}

/* Inner-page hero floating chip (adds via pseudo — decorative only) */
.brand-hero-grid { position: relative; }
.brand-hero-grid::after {
  content: "✦";
  position: absolute;
  top: -8px; right: 38%;
  font-size: 24px;
  color: var(--gold);
  opacity: .55;
  animation: twinkle 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.brand-hero-grid::before {
  content: "✦";
  position: absolute;
  bottom: 12%; left: -6px;
  font-size: 18px;
  color: var(--brand);
  opacity: .45;
  animation: twinkle 3.4s ease-in-out .6s infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes twinkle {
  0%, 100% { transform: scale(.85); opacity: .3; }
  50%      { transform: scale(1.15); opacity: .75; }
}

/* Site-header — gold accent dot next to logo (all pages) */
.site-header .logo { position: relative; }
.site-header .logo::after {
  content: "";
  position: absolute;
  top: 4px; right: -6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(249,201,71,.25);
  animation: pulseDot 2.2s ease-out infinite;
}

/* Site-header — subtle gradient underline that glides on scroll */
.site-header {
  background-image: linear-gradient(90deg, transparent 0%, rgba(6,60,93,.04) 50%, transparent 100%);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 30%, var(--gold) 50%, var(--brand) 70%, transparent 100%);
  opacity: .4;
  pointer-events: none;
}

/* Breadcrumb chevron pop on hover */
.brand-hero .crumb span + span::before {
  content: "›";
  margin: 0 6px;
  color: var(--ink-4);
  font-weight: 600;
  transition: transform .2s var(--ease), color .2s var(--ease);
  display: inline-block;
}
.brand-hero .crumb a:hover {
  color: var(--gold);
}

/* ==========================================================================
   Eye-catchy extras — tooltips, floating cards, badges, trust row
   ========================================================================== */

/* Tooltip system (data-tip) --------------------------------------------- */
[data-tip] { position: relative; }
[data-tip]::before,
[data-tip]::after {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 60;
}
[data-tip]::before {
  content: attr(data-tip);
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 4px);
  background: var(--brand-ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 7px 11px;
  border-radius: 8px;
  white-space: nowrap;
  max-width: 280px;
  box-shadow: 0 10px 24px -8px rgba(6,60,93,.35);
  letter-spacing: .01em;
}
[data-tip]::after {
  content: "";
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translate(-50%, 4px);
  border: 6px solid transparent;
  border-top-color: var(--brand-ink);
}
[data-tip]:hover::before,
[data-tip]:hover::after,
[data-tip]:focus-visible::before,
[data-tip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 640px) {
  [data-tip]::before { white-space: normal; width: max-content; max-width: 200px; }
}

/* Floating cards on hero image ------------------------------------------ */
.brand-hero .hero-art-frame.hero-art-live { overflow: visible; }
.hero-art-live { position: relative; }

/* Hero photo frame — real image, full-cover with corner tag (inner pages) */
.brand-hero .hero-art-frame.hero-photo-frame {
  padding: 0;
  background: #0c2033;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 50px -18px rgba(6,60,93,.35),
              28px 28px 0 -6px rgba(6,60,93,.05);
  aspect-ratio: 4 / 3;
  min-height: 0;
  position: relative;
}
.brand-hero .hero-art-frame.hero-photo-frame::before { display: none; }
.brand-hero .hero-art-frame.hero-photo-frame > img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  display: block;
  max-width: none;
  transition: transform .6s var(--ease);
}
.brand-hero .hero-art-frame.hero-photo-frame:hover > img {
  transform: scale(1.04);
}
.brand-hero .hero-art-frame.hero-photo-frame > .hc-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--brand-ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.25);
  letter-spacing: .02em;
  z-index: 2;
}
/* Gradient overlay at bottom for readability of future captions */
.brand-hero .hero-art-frame.hero-photo-frame::after {
  display: block;
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(6,60,93,.55) 100%);
  pointer-events: none;
  z-index: 1;
  animation: none;
  border-radius: 0;
  box-shadow: none;
  color: transparent;
}

/* Hero collage — real photo composition ---------------------------------- */
.brand-hero .hero-collage {
  background: linear-gradient(135deg, #f4f8fc 0%, #e9f1f8 100%);
  padding: 0;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
}
.brand-hero .hero-collage::before { display: none; }
.hero-collage .hc-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(6,60,93,.35);
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #0c2033;
}
.hero-collage .hc-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
  display: block;
}
.hero-collage .hc-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--brand-ink);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.25);
  letter-spacing: .02em;
}

/* Floating thumbnail cards — show adjacent work */
.hero-collage .hc-thumb {
  position: absolute;
  margin: 0;
  width: 160px;
  background: #fff;
  border-radius: 14px;
  padding: 8px 8px 10px;
  box-shadow: 0 16px 32px -12px rgba(6,60,93,.35);
  border: 1px solid var(--line);
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}
.hero-collage .hc-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.hero-collage .hc-thumb figcaption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  color: var(--brand-ink);
  padding: 8px 4px 2px;
  letter-spacing: .02em;
}
.hero-collage .hc-thumb-tl {
  top: -26px; left: -32px;
  transform: rotate(-4deg);
  animation-delay: .2s;
}
.hero-collage .hc-thumb-br {
  bottom: -30px; right: -28px;
  transform: rotate(3deg);
  animation-delay: 1.2s;
}

/* Clients avatars stack — proof at a glance */
.hero-collage .hc-avatars {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.95);
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(6,60,93,.35);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.hero-collage .hc-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px;
}
.hero-collage .hc-avatars img:first-child { margin-left: 0; }
.hero-collage .hc-avatars-count {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand);
  margin-left: 10px;
  letter-spacing: .02em;
}

/* Responsive — tighten collage on small screens */
@media (max-width: 900px) {
  .hero-collage .hc-thumb { width: 130px; }
  .hero-collage .hc-thumb-tl { top: -18px; left: -10px; }
  .hero-collage .hc-thumb-br { bottom: -20px; right: -10px; }
}
@media (max-width: 560px) {
  .hero-collage .hc-thumb { width: 110px; }
  .hero-collage .hc-thumb-tl { top: -12px; left: 0; }
  .hero-collage .hc-thumb-br { bottom: -14px; right: 0; }
  .hero-collage .hc-avatars { bottom: 10px; left: 10px; padding: 4px 10px 4px 4px; }
  .hero-collage .hc-avatars img { width: 26px; height: 26px; }
}
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 14px 30px -10px rgba(6,60,93,.25);
  font-size: .85rem;
  animation: floatY 4.5s ease-in-out infinite;
}
.float-card .fc-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.float-card .fc-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .08em;
  white-space: nowrap;
}
.float-card .fc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--brand-ink);
  font-size: .9rem;
  line-height: 1.1;
}
.float-card .fc-sub {
  color: var(--ink-4);
  font-size: .72rem;
  margin-top: 2px;
}
.float-card-tl { top: 14px; left: -22px; animation-delay: 0s; }
.float-card-br { bottom: 18px; right: -22px; animation-delay: 1.5s; }

.float-pill {
  position: absolute;
  top: -14px; right: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-ink);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: 0 10px 24px -8px rgba(6,60,93,.45);
  animation: floatY 5.5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.float-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(249,201,71,.7);
  animation: pulseDot 1.8s ease-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(249,201,71,.65); }
  70% { box-shadow: 0 0 0 10px rgba(249,201,71,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,201,71,0); }
}

@media (max-width: 900px) {
  .float-card-tl { left: 8px; top: -10px; }
  .float-card-br { right: 8px; bottom: -10px; }
  .float-pill { right: 14px; top: -12px; }
}
@media (max-width: 560px) {
  .float-card { padding: 8px 10px; font-size: .78rem; }
  .float-card .fc-ico { width: 30px; height: 30px; font-size: 1rem; }
}

/* Service-card badges --------------------------------------------------- */
.feat-card-v3 { position: relative; }
.card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(6,60,93,.35);
}
.card-badge.badge-gold { background: var(--gold); color: var(--brand-ink); box-shadow: 0 6px 14px -4px rgba(249,201,71,.5); }
.card-badge.badge-new { background: linear-gradient(135deg, #16a34a, #059669); color: #fff; box-shadow: 0 6px 14px -4px rgba(22,163,74,.4); }

/* Trust badges row (hero) ----------------------------------------------- */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed rgba(6,60,93,.18);
}
.trust-badges .tb-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  cursor: default;
}
.trust-badges .tb-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(6,60,93,.18);
}
.trust-badges .tb-item svg { color: var(--gold); }

/* Tech strip — title + hover interaction ------------------------------- */
.tech-strip-wrap { text-align: center; }
.tech-strip-title {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 14px;
}
.tech-strip .t-tile {
  transition: transform .2s var(--ease), filter .2s var(--ease);
  cursor: default;
  filter: grayscale(.35);
  opacity: .9;
}
.tech-strip .t-tile:hover {
  transform: translateY(-4px) scale(1.06);
  filter: grayscale(0);
  opacity: 1;
}

/* Stat-band tiles — lift on hover, tooltip-friendly --------------------- */
.stats-grid .stat {
  transition: transform .22s var(--ease);
  cursor: default;
}
.stats-grid .stat:hover { transform: translateY(-4px); }

/* Error / 404 banner ----------------------------------------------------- */
.big404 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.9;
  background: linear-gradient(135deg, var(--brand) 0%, var(--cyan) 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  margin: 0;
}

