/* =========================================================
   FALKAN AI — Production Stylesheet
   Palette: cream #F6F1E7 · ember #FF5A1F · ink #0B0B0C
   Type: Fraunces (display) · Inter (body) · IBM Plex Mono (labels)
   ========================================================= */

:root{
  --ink:#0B0B0C;
  --ink-soft:#17171A;
  --cream:#F6F1E7;
  --cream-dim:#EDE6D6;

  /* --------------------------------------------------------------
     Brand ember. Unchanged, and still the accent on dark surfaces
     where it measures 6.31:1 against --ink.
     -------------------------------------------------------------- */
  --ember:#FF5A1F;
  --ember-dark:#E14B14;

  /* --------------------------------------------------------------
     Accessible ember. Same hue family, darkened only as far as the
     contrast requirement demands. Used wherever ember sits behind
     or beside text on a light surface.

       cream on --ember            = 2.77:1  (failed AA)
       cream on --ember-accessible = 4.176:1 (passes AA at >=18.66px
                                    bold, which the button is not)
       --ember-accessible on cream = 4.19:1  (passes AA normal text)

     The eyebrow labels and focus ring use --ember-ink, which is
     darker still, because they render at 12.5px.
     -------------------------------------------------------------- */
  --ember-accessible:#C43D0C;
  --ember-accessible-dark:#A33009;
  --ember-ink:#A83407;

  --mist:#5E5C57;
  --line:#E7E0D2;
  --line-dark:#2A2A2D;
  --card:#FFFFFF;
  --radius:14px;
  --radius-sm:8px;
  --shadow:0 4px 24px rgba(11,11,12,0.06);
  --shadow-lg:0 20px 60px rgba(11,11,12,0.12);
  --maxw:1160px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;scroll-padding-top:96px;}
/* Anchor targets must clear the sticky header, otherwise the heading
   a visitor jumped to sits hidden behind it (WCAG 2.2 SC 2.4.11). */
:target{scroll-margin-top:96px;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4,h5{margin:0;font-family:'Fraunces',Georgia,serif;font-weight:600;line-height:1.15;color:var(--ink);}
p{margin:0 0 14px;color:var(--ink);}
ul{margin:0;padding:0;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px;}

::selection{background:var(--ember-accessible);color:#FFFFFF;}
/* --------------------------------------------------------------
   Focus fallback for browsers without :focus-visible support
   (Safari < 15.4, iOS < 15.4). Those browsers ignore the
   :focus-visible rules below entirely, which would leave keyboard
   users with no focus indicator at all. The second rule removes this
   fallback on browsers that DO support :focus-visible, so mouse
   clicks there do not draw a ring.
   -------------------------------------------------------------- */
:focus{
  outline:3px solid var(--ink);
  outline-offset:2px;
  border-radius:3px;
}
:focus:not(:focus-visible){
  outline:none;
  box-shadow:none;
}

/* --------------------------------------------------------------
   Focus indicator. The previous single ember ring measured 2.77:1
   against --cream, below the 3:1 required by WCAG 2.2 SC 1.4.11.
   A dark ring with a light outer halo stays visible on cream, on
   white cards and on the dark ink sections alike.
   -------------------------------------------------------------- */
:focus-visible{
  outline:3px solid var(--ink);
  outline-offset:2px;
  box-shadow:0 0 0 6px rgba(246,241,231,0.95);
  border-radius:3px;
}
.cta-band-dark :focus-visible,
.hero-card :focus-visible,
footer :focus-visible,
.addon-card :focus-visible{
  outline-color:var(--cream);
  box-shadow:0 0 0 6px rgba(11,11,12,0.9);
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important;}
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  display:flex;align-items:center;gap:8px;
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;font-weight:500;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--ember-ink);margin-bottom:14px;
}
.display{font-family:'Fraunces',Georgia,serif;}
.display em{font-style:italic;color:var(--ember-ink);font-weight:500;}
.hero-card .display em,.cta-band-dark .display em,.process-dark .display em{color:var(--ember);}

/* ---------- Header / Nav ---------- */
header{position:sticky;top:0;z-index:100;background:rgba(246,241,231,0.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--line);}
.nav{max-width:var(--maxw);margin:0 auto;padding:14px 28px;display:flex;align-items:center;justify-content:space-between;gap:24px;}
.nav .logo{display:flex;align-items:center;gap:8px;font-family:'IBM Plex Mono',monospace;font-weight:600;font-size:16px;letter-spacing:0.04em;color:var(--ink);flex-shrink:0;}
.nav .logo span{color:var(--ember-ink);}
.nav-links{display:flex;align-items:center;gap:26px;flex-wrap:wrap;}
.nav-links a{display:flex;align-items:center;gap:6px;min-height:24px;padding:4px 2px;font-size:14px;font-weight:500;color:var(--ink);opacity:0.8;transition:opacity .15s ease,color .15s ease;}
.nav-links a:hover{opacity:1;color:var(--ember-ink);}
.nav-links a[aria-current="page"]{opacity:1;color:var(--ember-ink);font-weight:600;}
.nav-cta{display:flex;align-items:center;gap:16px;flex-shrink:0;}
.nav-phone{display:flex;align-items:center;gap:6px;font-size:13.5px;font-weight:600;color:var(--ink);white-space:nowrap;}
.nav-phone:hover{color:var(--ember-ink);}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 26px;border-radius:999px;font-size:14.5px;font-weight:600;font-family:'Inter',sans-serif;transition:transform .15s ease,box-shadow .15s ease,background .15s ease,border-color .15s ease;white-space:nowrap;border:1.5px solid transparent;cursor:pointer;}
.btn-primary{background:var(--ember-accessible);color:#FFFFFF;box-shadow:0 6px 20px rgba(196,61,12,0.28);}
.btn-primary:hover{background:var(--ember-accessible-dark);transform:translateY(-1px);box-shadow:0 10px 26px rgba(196,61,12,0.36);}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--ink);}
.btn-outline:hover{background:var(--ink);color:var(--cream);}
.btn-outline-light{background:transparent;color:var(--cream);border-color:rgba(246,241,231,0.4);}
.btn-outline-light:hover{background:var(--cream);color:var(--ink);}
.btn-sm{padding:9px 18px;font-size:13.5px;}

/* ---------- Layout / sections ---------- */
.section{padding:88px 0;}
.section-sm{padding:56px 0;}
.section-alt{background:var(--cream-dim);}
.section-head{max-width:620px;margin:0 auto 44px;text-align:center;}
.section-head p{color:var(--mist);font-size:16px;}
.section-head .eyebrow{justify-content:center;}

/* ---------- Hero ---------- */
.hero{padding:64px 0 40px;}
.hero-card{
  display:grid;grid-template-columns:1.15fr 1fr;gap:56px;align-items:center;
  background:var(--ink);color:var(--cream);border-radius:28px;padding:64px 56px;
  position:relative;overflow:hidden;
}
.hero-card::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(600px circle at 85% 20%, rgba(255,90,31,0.18), transparent 60%);
  pointer-events:none;
}
.hero-card .eyebrow{color:var(--ember);}
.hero-card h1{color:var(--cream);font-size:44px;letter-spacing:-0.01em;margin-bottom:18px;}
.hero-card p{color:rgba(246,241,231,0.72);font-size:16.5px;max-width:460px;}
.hero-actions{display:flex;gap:14px;margin-top:28px;flex-wrap:wrap;}

.hero-3d{position:relative;z-index:1;}
.hero-3d-stage{position:relative;height:280px;}
.floater{
  position:absolute;background:var(--cream);color:var(--ink);border-radius:14px;
  padding:14px 18px;box-shadow:var(--shadow-lg);min-width:120px;
  animation:float 6s ease-in-out infinite;
}
.floater-base{top:10px;left:20px;animation-delay:0s;}
.floater-chart{top:70px;right:0;width:170px;animation-delay:1.2s;}
.floater-ad{bottom:60px;left:0;animation-delay:2.1s;}
.floater-chat{bottom:0;right:20px;width:190px;animation-delay:0.6s;}
.fnum{display:block;font-family:'Fraunces',serif;font-size:26px;font-weight:600;color:var(--ember-accessible);}
.flabel{display:flex;align-items:center;gap:6px;font-family:'IBM Plex Mono',monospace;font-size:10.5px;letter-spacing:0.08em;text-transform:uppercase;color:var(--mist);}
.fsub{display:block;font-size:12.5px;color:var(--mist);margin-top:2px;}
.floater .dot{width:7px;height:7px;border-radius:50%;background:#2ECC71;display:inline-block;}
.floater-chart svg{width:100%;height:26px;margin-top:4px;}
.hero-3d-caption{text-align:center;font-size:13px;color:rgba(246,241,231,0.55);margin-top:18px;font-style:italic;}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

/* ---------- About / grids ---------- */
.about-grid,.ai-agent-grid,.detail-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:56px;align-items:center;}
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;}

.why-list{display:grid;grid-template-columns:1fr 1fr;gap:22px 28px;}
.why-list-compact{grid-template-columns:1fr;gap:18px;}
.why-item{display:flex;gap:14px;align-items:flex-start;}
.why-check{
  flex-shrink:0;width:26px;height:26px;border-radius:50%;background:var(--ember-accessible);color:#FFFFFF;
  display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;margin-top:2px;
}
.why-item h3{font-size:15.5px;margin-bottom:4px;font-family:'Inter',sans-serif;font-weight:600;}
.why-item p{font-size:14px;color:var(--mist);margin:0;}

/* ---------- Cards / grid-3 ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:28px 24px;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:transparent;}
.card-icon{width:42px;height:42px;border-radius:10px;background:var(--cream-dim);display:flex;align-items:center;justify-content:center;color:var(--ember-accessible);margin-bottom:16px;}
.card h3{font-size:17px;margin-bottom:8px;}
.card p{font-size:14px;color:var(--mist);margin:0;}

/* ---------- AI chat mock ---------- */
.ai-agent-lead{font-size:16.5px;color:var(--mist);margin-bottom:22px;}
.ai-chat-card{background:var(--ink);border-radius:22px;padding:0;overflow:hidden;box-shadow:var(--shadow-lg);}
.ai-chat-head{display:flex;align-items:center;gap:8px;padding:16px 20px;color:var(--cream);font-size:13.5px;font-weight:600;font-family:'IBM Plex Mono',monospace;border-bottom:1px solid var(--line-dark);}
.ai-chat-dot{width:8px;height:8px;border-radius:50%;background:#2ECC71;display:inline-block;box-shadow:0 0 0 4px rgba(46,204,113,0.18);}
.ai-chat-body{padding:20px;display:flex;flex-direction:column;gap:10px;min-height:220px;}
.ai-bubble{max-width:82%;padding:11px 15px;border-radius:14px;font-size:13.8px;line-height:1.45;}
.ai-bubble-in{align-self:flex-start;background:var(--ink-soft);color:var(--cream);border-bottom-left-radius:4px;}
.ai-bubble-out{align-self:flex-end;background:var(--ember-accessible);color:#FFFFFF;border-bottom-right-radius:4px;}
.ai-chat-typing{display:flex;gap:4px;padding:0 20px 18px;}
.ai-chat-typing span{width:6px;height:6px;border-radius:50%;background:var(--mist);opacity:0.5;animation:blink 1.4s infinite;}
.ai-chat-typing span:nth-child(2){animation-delay:.2s;}
.ai-chat-typing span:nth-child(3){animation-delay:.4s;}
@keyframes blink{0%,80%,100%{opacity:0.3;}40%{opacity:0.9;}}

/* ---------- Industries ---------- */
.industry-row{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;}
.industry-pill{padding:10px 20px;border-radius:999px;background:var(--card);border:1px solid var(--line);font-size:14px;font-weight:500;}

/* ---------- Process (dark) ---------- */
.process-dark{background:var(--ink);color:var(--cream);}
.process-dark .eyebrow{color:var(--ember);}
.process-dark h2,.process-dark .section-head p{color:var(--cream);}
.process-dark .section-head p{color:rgba(246,241,231,0.6);}
.process-list{display:grid;grid-template-columns:repeat(3,1fr);gap:28px 32px;margin-bottom:56px;}
.process-item{display:flex;gap:16px;}
.process-num{font-family:'Fraunces',serif;font-size:26px;color:var(--ember-accessible);flex-shrink:0;font-weight:500;}
.process-dark .process-num{color:var(--ember);}
.process-item h3{color:var(--cream);font-size:15.5px;margin-bottom:4px;font-family:'Inter',sans-serif;font-weight:600;}
.process-item p{color:rgba(246,241,231,0.55);font-size:13.8px;margin:0;}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;border-top:1px solid var(--line-dark);padding-top:36px;}
.stat-cell{text-align:center;}
.stat-cell .num{font-family:'Fraunces',serif;font-size:34px;color:var(--ember);font-weight:600;}
.stat-cell .label{font-size:12.5px;color:rgba(246,241,231,0.55);margin-top:4px;}

/* ---------- Portfolio / insights ---------- */
.work-insights-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;}
.col-label{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:0.1em;text-transform:uppercase;color:var(--mist);margin-bottom:18px;}
.portfolio-stack,.insight-stack{display:flex;flex-direction:column;gap:14px;}
.portfolio-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius-sm);padding:18px 20px;}
.tag{display:inline-block;font-family:'IBM Plex Mono',monospace;font-size:10.5px;letter-spacing:0.06em;text-transform:uppercase;color:var(--ember-ink);background:rgba(168,52,7,0.09);padding:3px 9px;border-radius:5px;margin-bottom:10px;}
.portfolio-body h3{font-size:15px;margin-bottom:4px;}
.portfolio-body p{font-size:13.5px;color:var(--mist);margin:0;}
.insight-row{display:block;padding:14px 0;border-bottom:1px solid var(--line);transition:padding-left .15s ease;}
.insight-row:hover{padding-left:6px;color:var(--ember-ink);}
.insight-cat{display:block;font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:0.06em;text-transform:uppercase;color:var(--ember-ink);margin-bottom:4px;}
.insight-row h3{font-size:15px;color:inherit;}

/* ---------- Testimonial ---------- */
.testimonial-panel{display:flex;gap:22px;align-items:flex-start;background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:32px;max-width:760px;margin:0 auto;}
.testimonial-panel .mark{flex-shrink:0;width:44px;height:44px;border-radius:50%;background:var(--cream-dim);color:var(--ember-accessible);display:flex;align-items:center;justify-content:center;}
.testimonial-panel h3{font-size:16px;margin-bottom:6px;}
.testimonial-panel p{font-size:14px;color:var(--mist);margin:0;}

/* ---------- FAQ ---------- */
.faq-item{padding:22px 0;border-bottom:1px solid var(--line);}
.faq-item h3{font-size:16px;margin-bottom:8px;}
.faq-item p{font-size:14.5px;color:var(--mist);margin:0;}

/* ---------- CTA band ---------- */
.cta-band{text-align:center;padding:56px 40px;border-radius:24px;}
.cta-band-dark{background:var(--ink);color:var(--cream);}
.cta-band-dark h2{color:var(--cream);font-size:30px;margin-bottom:12px;}
.cta-band-dark p{color:rgba(246,241,231,0.65);max-width:480px;margin:0 auto 26px;}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* ---------- Contact ---------- */
.contact-info .row{display:flex;gap:14px;align-items:flex-start;margin-bottom:22px;}
.contact-info .ic{flex-shrink:0;width:38px;height:38px;border-radius:10px;background:var(--cream-dim);color:var(--ember-accessible);display:flex;align-items:center;justify-content:center;}
.contact-info h3{font-size:14.5px;margin-bottom:2px;}
.contact-info p{font-size:14px;color:var(--mist);margin:0;}
.contact-form{display:flex;flex-direction:column;gap:14px;background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:30px;}
.contact-form input,.contact-form textarea{
  width:100%;padding:13px 16px;border-radius:var(--radius-sm);border:1.5px solid var(--line);
  font-family:'Inter',sans-serif;font-size:14.5px;color:var(--ink);background:var(--cream);
  transition:border-color .15s ease;
}
.contact-form input:focus-visible,.contact-form textarea:focus-visible{border-color:var(--ember-accessible);}
.contact-form textarea{min-height:110px;resize:vertical;}
.contact-form .btn{margin-top:6px;}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{padding:72px 0 48px;text-align:center;}
.page-hero .wrap{max-width:680px;}
.page-hero .eyebrow{justify-content:center;}
.page-hero h1{font-size:38px;margin-bottom:16px;}
.page-hero p{color:var(--mist);font-size:16.5px;}

/* ---------- Legal pages ---------- */
.legal-body{padding:56px 0 88px;}
.legal-body .wrap{max-width:760px;}
.legal-body h2{font-size:21px;margin:36px 0 12px;}
.legal-body h2:first-child{margin-top:0;}
.legal-body p{color:var(--mist);font-size:15px;}
.legal-note{margin-top:36px;padding:18px 20px;background:var(--cream-dim);border-radius:var(--radius-sm);border-left:3px solid var(--ember-accessible);font-size:13.5px;color:var(--mist);}
.updated{font-family:'IBM Plex Mono',monospace;}

/* ---------- Footer ---------- */
footer{background:var(--ink);color:var(--cream);padding:64px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:32px;padding-bottom:48px;border-bottom:1px solid var(--line-dark);}
.footer-brand .logo{display:flex;align-items:center;gap:8px;font-family:'IBM Plex Mono',monospace;font-weight:600;font-size:16px;color:var(--cream);margin-bottom:14px;}
.footer-brand p{font-size:13.5px;color:rgba(246,241,231,0.55);max-width:230px;}
.footer-col h5,.footer-heading{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:0.08em;text-transform:uppercase;color:rgba(246,241,231,0.5);margin-bottom:16px;font-weight:500;}
.footer-col a{display:flex;align-items:center;gap:6px;font-size:13.8px;color:rgba(246,241,231,0.75);padding:6px 0;transition:color .15s ease;}
.footer-col a:hover{color:#FFB89A;}
.footer-col .fi{width:12px;height:12px;flex-shrink:0;opacity:0.6;}
.fi-brand{font-weight:500;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:22px 0;font-size:13px;color:rgba(246,241,231,0.72);flex-wrap:wrap;gap:10px;}
.footer-bottom a{color:rgba(246,241,231,0.88);text-decoration:underline;}
.footer-bottom a:hover{color:#FFB89A;}
.momentum{height:0;}

/* ---------- WhatsApp float ---------- */
.whatsapp-float{
  position:fixed;bottom:24px;right:24px;width:56px;height:56px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,0.4);z-index:200;transition:transform .15s ease;
}
.whatsapp-float:hover{transform:scale(1.08);}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px){
  .hero-card{grid-template-columns:1fr;gap:48px;padding:48px 36px;}
  .hero-3d-stage{height:240px;}
  .about-grid,.ai-agent-grid,.detail-grid,.contact-grid,.work-insights-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr 1fr;}
  .grid-3{grid-template-columns:1fr 1fr;}
  .process-list{grid-template-columns:1fr 1fr;}
}

@media (max-width: 768px){
  .nav{flex-wrap:wrap;padding:14px 20px;}
  /* .nav-links and .nav-phone are defined in the navigation block
     lower in this file — kept together so the mobile nav is one rule
     set rather than two that contradict each other. */
  .wrap{padding:0 20px;}
  .section{padding:64px 0;}
  .hero-card h1{font-size:32px;}
  .hero{padding:32px 0 24px;}
  .grid-3{grid-template-columns:1fr;}
  .why-list{grid-template-columns:1fr;}
  .process-list{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr;gap:28px;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px 24px;}
  .cta-band{padding:40px 24px;}
  .cta-band-dark h2{font-size:24px;}
  .page-hero h1{font-size:28px;}
  .testimonial-panel{flex-direction:column;padding:24px;}
  .footer-bottom{flex-direction:column;text-align:center;}
}

@media (max-width: 480px){
  .footer-grid{grid-template-columns:1fr;}
  .hero-card{padding:36px 22px;}
  .hero-card h1{font-size:27px;}
  .btn{width:100%;}
  .hero-actions,.cta-actions{flex-direction:column;}
  .hero-actions .btn,.cta-actions .btn{width:100%;}
}

/* ---------- Pricing ---------- */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:stretch;}
.price-card{position:relative;background:var(--card);border:1.5px solid var(--line);border-radius:18px;padding:32px 26px;display:flex;flex-direction:column;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;}
.price-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.price-card-featured{border-color:var(--ember-accessible);box-shadow:0 12px 40px rgba(196,61,12,0.14);}
.price-badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--ember-accessible);color:#FFFFFF;font-family:'IBM Plex Mono',monospace;font-size:11px;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;padding:5px 14px;border-radius:999px;white-space:nowrap;}
.price-card h3{font-size:19px;margin-bottom:6px;}
.price-card .price-desc{font-size:13.5px;color:var(--mist);margin-bottom:18px;min-height:36px;}
.price-tag{display:flex;align-items:baseline;gap:6px;margin-bottom:22px;padding-bottom:22px;border-bottom:1px solid var(--line);}
.price-tag .amount{font-family:'Fraunces',serif;font-size:36px;font-weight:600;color:var(--ink);}
.price-tag .period{font-size:13.5px;color:var(--mist);}
.price-features{list-style:none;display:flex;flex-direction:column;gap:11px;margin-bottom:26px;flex:1;}
.price-features li{display:flex;gap:10px;align-items:flex-start;font-size:14px;color:var(--ink);}
.price-features li svg{flex-shrink:0;margin-top:2px;color:var(--ember-accessible);}
.price-card .btn{width:100%;}

.addon-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.addon-card{background:var(--ink);color:var(--cream);border-radius:16px;padding:26px 24px;}
.addon-card h3{color:var(--cream);font-size:16.5px;margin-bottom:6px;}
.addon-card .addon-price{font-family:'Fraunces',serif;font-size:24px;color:var(--ember);margin:10px 0;}
.addon-card p{color:rgba(246,241,231,0.6);font-size:13.5px;margin:0;}

.payment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.payment-card{background:var(--card);border:1px solid var(--line);border-radius:14px;padding:22px 20px;text-align:center;transition:transform .15s ease,box-shadow .15s ease;}
.payment-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);}
.payment-card .pay-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin:0 auto 12px;overflow:hidden;}
.payment-card h3{font-size:14.5px;margin-bottom:4px;}
.payment-card p{font-size:12.5px;color:var(--mist);margin:0;}

@media (max-width: 1024px){
  .addon-grid{grid-template-columns:1fr 1fr;}
  .payment-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 640px){
  .addon-grid{grid-template-columns:1fr;}
  .payment-grid{grid-template-columns:1fr;}
}

.pricing-note{display:flex;gap:14px;align-items:flex-start;background:var(--cream-dim);border-left:3px solid var(--ember-accessible);border-radius:var(--radius-sm);padding:20px 22px;margin-top:12px;}
.pricing-note svg{flex-shrink:0;color:var(--ember-accessible);margin-top:2px;}
.pricing-note p{margin:0;font-size:14px;color:var(--ink);}
.pricing-note strong{color:var(--ink);}

@media (max-width: 1024px){
  .pricing-grid{grid-template-columns:1fr;}
}


/* =========================================================
   Added during the enterprise accessibility pass
   ========================================================= */

/* ---------- Skip link (WCAG 2.2 SC 2.4.1) ---------- */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:1000;
  background:var(--ink);color:var(--cream);
  padding:12px 20px;border-radius:0 0 var(--radius-sm) 0;
  font-size:14px;font-weight:600;
}
.skip-link:focus{left:0;}

/* ---------- Screen-reader-only utility ---------- */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ---------- Mobile navigation disclosure ---------- */
/* Hidden on desktop; revealed by the 768px breakpoint below. */
.nav-toggle{
  display:none;align-items:center;gap:8px;
  background:transparent;border:1.5px solid var(--line);
  border-radius:999px;padding:8px 14px;cursor:pointer;
  font-family:'Inter',sans-serif;font-size:13.5px;font-weight:600;
  color:var(--ink);min-height:44px;
}
.nav-toggle-label{line-height:1;}
.nav-toggle-bars{display:inline-flex;flex-direction:column;gap:3px;width:16px;}
.nav-toggle-bars span{display:block;height:2px;background:currentColor;border-radius:2px;}
.nav-toggle[aria-expanded="true"]{background:var(--ink);color:var(--cream);border-color:var(--ink);}

/* ---------- Form fields ---------- */
.contact-form .field{display:flex;flex-direction:column;gap:6px;}
.contact-form label{
  font-size:13.5px;font-weight:600;color:var(--ink);
}
.form-note{
  margin:4px 0 0;font-size:12.5px;color:var(--mist);line-height:1.5;
}
.form-note a{text-decoration:underline;}

/* Honeypot: removed from view and from the accessibility tree,
   but still submitted by bots that fill every field. */
.hp-field{
  position:absolute!important;left:-9999px!important;
  width:1px;height:1px;overflow:hidden;
}

/* ---------- Submission confirmation (H-08) ---------- */
.form-success{
  display:flex;gap:14px;align-items:flex-start;
  background:#ECFDF3;border:1px solid #A6E9C1;border-left:4px solid #067647;
  border-radius:var(--radius);padding:20px 22px;margin-bottom:22px;
}
.form-success svg{color:#067647;flex-shrink:0;margin-top:2px;}
.form-success h3{font-size:17px;margin-bottom:6px;color:#054F31;}
.form-success p{margin:0;font-size:14px;color:#054F31;}
.form-success a{text-decoration:underline;font-weight:600;}

/* ---------- Keep the floating CTA clear of footer content ---------- */
.footer-bottom{padding-bottom:80px;}

@media (max-width: 768px){
  /* Collapse the nav behind the toggle — but only when JavaScript is
     confirmed running, so a script failure cannot trap the menu shut. */
  .nav-toggle{display:inline-flex;}
  .js-nav .nav-links{display:none;}
  .js-nav .nav-links.is-open{display:flex;}

  .nav-links{
    order:3;width:100%;gap:2px;flex-direction:column;align-items:stretch;
    padding-top:10px;border-top:1px solid var(--line);margin-top:10px;
  }
  .nav-links a{min-height:44px;padding:10px 4px;font-size:15px;}

  /* The WhatsApp number was hidden at this breakpoint. It is the
     highest-intent CTA on the device where it converts best. */
  .nav-phone{display:flex;}
  .nav-cta{gap:10px;flex-wrap:wrap;}
}

@media (max-width: 480px){
  .nav-cta .btn{width:auto;}
  .nav-phone span{font-size:13px;}
}

/* =========================================================
   Utility classes
   Replaces the inline style attributes that were scattered
   across the pages (audit M-04). Keeping presentation out of
   the markup also lets the CSP drop 'unsafe-inline' for
   style-src once this migration is verified.
   ========================================================= */

/* Display heading scale — was four different inline font-sizes */
.display-lg{font-size:34px;margin-bottom:18px;}
.display-md{font-size:32px;margin-bottom:24px;}
.display-sm{font-size:28px;margin-bottom:16px;}
.display-xs{font-size:26px;margin-bottom:16px;}

/* Lead paragraph */
.lead{color:var(--mist);font-size:16px;}
.lead-spaced{color:var(--mist);font-size:16px;margin-bottom:16px;}

/* Mono footnote under a block */
.note-mono{
  margin-top:12px;font-size:13px;color:var(--mist);
  font-family:'IBM Plex Mono',monospace;
}

/* Small qualifier inside a price on a dark card */
.price-qualifier{font-size:14px;color:rgba(246,241,231,0.72);}

/* Inline accent link on a light surface. Uses the accessible
   ember: the bright brand ember measures only 3.12:1 on white. */
.link-accent{color:var(--ember-accessible);text-decoration:underline;}
.link-accent:hover{color:var(--ember-accessible-dark);}

/* Layout helpers */
.u-center{justify-content:center;}
.u-narrow{max-width:800px;}
.pt-0{padding-top:0;}
.mt-0{margin-top:0;}
.mt-sm{margin-top:8px;}
.mt-md{margin-top:22px;}
.mt-lg{margin-top:24px;}
.mb-sm{margin-bottom:8px;}
.mb-lg{margin-bottom:28px;}
.grid-3-fixed{grid-template-columns:repeat(3,1fr);}

/* Payment provider tiles — brand colours, declared once */
.pay-jazzcash{background:#8A1538;}
.pay-easypaisa{background:#1A1A2E;}
.pay-bank{background:#0B0B0C;}

@media (max-width: 768px){
  .display-lg{font-size:27px;}
  .display-md{font-size:26px;}
  .display-sm,.display-xs{font-size:23px;}
  .grid-3-fixed{grid-template-columns:1fr;}
}

/* Lists inside the legal pages */
.legal-body .legal-list{margin:0 0 14px 20px;padding:0;list-style:disc;}
.legal-body .legal-list li{margin-bottom:8px;font-size:15px;}

/* =========================================================
   AI Engineering Team
   Reuses .grid-3 / .card / .card-icon (About) and
   .industry-row / .industry-pill (homepage, AI Employees).
   Only spacing and the two text treatments are new.
   ========================================================= */

/* About page: 12-specialist grid. Slightly tighter than the
   default .card so four rows do not dominate the page. */
.team-grid .card{padding:24px 20px;}
.team-grid .card h3{font-size:16px;}
.team-grid .card p{font-size:13.5px;line-height:1.55;}

.team-note{
  margin:28px auto 0;
  text-align:center;
  color:var(--mist);
}

/* Homepage + AI Employees page: curated six */
.team-strip{
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid var(--line);
}
.team-strip-lead{
  text-align:center;
  font-size:14.5px;
  color:var(--mist);
  margin-bottom:18px;
}
/* --ember-ink, not --ember-accessible: this link renders at 14.5px on
   BOTH cream (homepage) and cream-dim (AI Employees page). On cream-dim
   --ember-accessible measures 4.20:1, below the 4.5:1 required for
   normal-size text. --ember-ink gives 5.90 and 5.35 respectively. */
.team-strip-lead a{
  color:var(--ember-ink);
  text-decoration:underline;
  font-weight:600;
}
.team-strip-lead a:hover{color:var(--ember-accessible-dark);}

/* On the dark process section the divider must lift, not sink */
.process-dark .team-strip{border-top-color:var(--line-dark);}
.process-dark .team-strip-lead{color:rgba(246,241,231,0.72);}

/* Sitewide footer line */
.footer-team{
  margin:0;
  padding:20px 0 0;
  border-top:1px solid var(--line-dark);
  font-size:13px;
  line-height:1.6;
  color:rgba(246,241,231,0.72);
  max-width:760px;
}
.footer-team a{
  color:rgba(246,241,231,0.92);
  text-decoration:underline;
  font-weight:600;
}
.footer-team a:hover{color:#FFB89A;}

@media (max-width: 768px){
  .team-grid .card{padding:20px 18px;}
  .team-strip{margin-top:32px;padding-top:26px;}
  .footer-team{font-size:12.5px;}
}
