/* ============ Reset & Base ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Plus Jakarta Sans','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  font-size:16px;line-height:1.6;color:#111827;background:#fff;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
}
img,svg{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}

/* ============ Tokens ============ */
:root{
  --primary:#0F2A5C;
  --primary-dark:#0A1E42;
  --primary-light:#E8EDF6;
  --accent:#F59E0B;
  --accent-dark:#D97706;
  --text:#111827;
  --muted:#6B7280;
  --border:#E5E7EB;
  --bg:#FFFFFF;
  --bg-alt:#F9FAFB;
  --bg-dark:#0F172A;
  --radius:12px;
  --radius-sm:8px;
  --shadow-sm:0 1px 2px rgba(0,0,0,.05);
  --shadow-md:0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:0 12px 32px rgba(0,0,0,.12);
  --container:1200px;
  --header-min:72px;   /* input: designed bar height */
  --header-h:72px;     /* output: measured bar height, written by script.js */
}

/* Horizontal overflow guard. This must stay on html only: putting overflow-x
   on body turns body into a clip container, which detaches position:sticky and
   position:fixed descendants from the viewport and makes the header scroll away
   with the page. */
html{max-width:100%;overflow-x:clip}
body{max-width:100%}
p,li,h1,h2,h3,h4,h5,td,a{overflow-wrap:break-word}
:focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:4px}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
}

/* ============ Layout ============ */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.section-alt{background:var(--bg-alt)}
.section-title{font-size:2rem;font-weight:700;line-height:1.2;margin-bottom:16px;letter-spacing:-.02em}
.section-subtitle{font-size:1.125rem;color:var(--muted);margin-bottom:48px;max-width:640px}
.section-head{text-align:center;margin-bottom:56px}
.section-head .section-subtitle{margin:0 auto}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

/* ============ Typography ============ */
h1,h2,h3,h4{line-height:1.2;letter-spacing:-.02em;font-weight:700;color:var(--primary)}
h1{font-size:3rem}
h2{font-size:2rem}
h3{font-size:1.5rem}
h4{font-size:1.125rem}
p{color:var(--text)}
.lead{font-size:1.125rem;color:var(--muted)}
.eyebrow{
  display:inline-block;font-size:.8125rem;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--primary);
  background:var(--primary-light);padding:6px 14px;border-radius:999px;margin-bottom:20px;
}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 28px;border-radius:var(--radius-sm);font-weight:600;font-size:.9375rem;
  transition:all .2s ease;white-space:nowrap;
}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-secondary{background:#fff;color:var(--primary);border:1.5px solid var(--primary)}
.btn-secondary:hover{background:var(--primary-light)}
.btn-accent{background:var(--accent);color:#fff}
.btn-accent:hover{background:var(--accent-dark)}
.btn-lg{padding:16px 32px;font-size:1rem}
.btn-ghost{color:var(--text);padding:10px 16px}
.btn-ghost:hover{background:var(--bg-alt)}

/* ============ Header ============ */
/* Solid, not translucent. A blurred translucent bar reads as a floating
   overlay and, more importantly, backdrop-filter turns the header into the
   containing block for any position:fixed descendant. */
.header{
  position:fixed;top:0;left:0;right:0;z-index:100;background:#fff;
  border-bottom:1px solid var(--border);
  transition:box-shadow .18s ease,border-color .18s ease;
}
/* The header is out of flow, so the page has to reserve its height */
body{padding-top:var(--header-h)}
/* Anchor jumps must clear the fixed bar */
[id]{scroll-margin-top:calc(var(--header-h) + 16px)}
/* Flat while the page is at the top, lifted once content passes under it */
.header:not(.is-stuck){box-shadow:none}
.header.is-stuck{box-shadow:0 2px 14px rgba(15,42,92,.10);border-bottom-color:transparent}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:var(--header-min)}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:1.125rem;color:var(--text);min-width:0}
.logo-mark{
  width:38px;height:38px;border-radius:10px;background:var(--primary);color:#fff;
  display:grid;place-items:center;font-weight:800;font-size:1rem;
}
.logo-text{line-height:1.1}
.logo-text small{display:block;font-size:.6875rem;font-weight:500;color:var(--muted);letter-spacing:.04em}
.nav{display:flex;align-items:center;gap:4px}
.nav a{padding:10px 14px;font-size:.9375rem;font-weight:500;color:var(--text);border-radius:6px;transition:all .15s}
.nav a:hover{background:var(--bg-alt);color:var(--primary)}
.nav a.active{color:var(--primary)}
.nav-cta{margin-left:12px;background:#dde0e4;color:var(--text)}
.nav-cta:hover{background:#c9cdd3;color:var(--text);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.nav-highlight{color:var(--accent-dark) !important;font-weight:700 !important}
.nav-highlight:hover{background:#FEF3C7 !important}

/* Mobile-only header controls */
.header-actions{display:none;align-items:center;gap:8px;flex:0 0 auto}
.call-btn{
  width:46px;height:46px;border-radius:10px;flex:0 0 auto;
  display:grid;place-items:center;color:#fff;background:var(--primary);
}
.call-btn:hover{background:var(--primary-dark);color:#fff}
.call-btn svg{width:21px;height:21px}
@media(max-width:900px){.header-actions{display:flex}}

/* Hamburger */
.menu-btn{
  display:none;width:46px;height:46px;border-radius:10px;flex:0 0 auto;
  align-items:center;justify-content:center;color:var(--text);
  border:1px solid var(--border);background:#fff;
}
.menu-btn:hover{background:var(--bg-alt)}
.menu-btn svg{width:24px;height:24px}
.menu-btn .icon-close{display:none}
.menu-btn[aria-expanded="true"] .icon-open{display:none}
.menu-btn[aria-expanded="true"] .icon-close{display:block}
.menu-btn[aria-expanded="true"]{background:var(--primary);color:#fff;border-color:var(--primary)}

/* Dimmer behind the drawer (injected by script.js) */
.nav-scrim{
  position:fixed;inset:0;z-index:98;background:rgba(15,23,42,.5);
  opacity:0;transition:opacity .22s ease;
}
.nav-scrim.open{opacity:1}
@media(min-width:901px){.nav-scrim{display:none}}

/* Mobile drawer. Anchored under the header, never over it. */
.mobile-nav{
  position:fixed;right:0;top:var(--header-h);bottom:0;
  width:min(360px,86vw);max-width:100%;
  background:#fff;padding:8px 20px calc(28px + env(safe-area-inset-bottom));
  overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;
  z-index:99;box-shadow:-8px 0 28px rgba(15,23,42,.14);
  transform:translateX(100%);visibility:hidden;
  transition:transform .22s ease,visibility .22s ease;
}
.mobile-nav.open{transform:translateX(0);visibility:visible}
@media(max-width:480px){
  .mobile-nav{left:0;width:auto;box-shadow:none}
}
.mobile-nav-inner{display:flex;flex-direction:column}
.mobile-nav a{
  display:flex;align-items:center;min-height:52px;padding:12px 4px;
  font-size:1.0625rem;font-weight:600;color:var(--text);border-bottom:1px solid var(--border);
}
.mobile-nav a:active{color:var(--primary)}
.mobile-nav-actions{display:grid;gap:12px;margin-top:24px}
.mobile-nav-actions .btn{width:100%;min-height:52px;border-bottom:none;font-size:1rem}
.mobile-nav-actions a{border-bottom:none;justify-content:center}
/* Never let the drawer show on desktop, even if a class is left behind */
@media(min-width:901px){.mobile-nav{display:none}}
@media(max-width:900px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
}

/* Body scroll lock while drawer is open (iOS safe) */
body.nav-open{position:fixed;left:0;right:0;width:100%;overflow:hidden}
/* The floating WhatsApp button must not sit on top of the open drawer */
body.nav-open .wa-float{display:none}

/* ============ Hero ============ */
.hero{
  padding:80px 0 96px;
  background:linear-gradient(180deg,var(--primary-light) 0%,#fff 100%);
  position:relative;overflow:hidden;
}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:64px;align-items:center}
.hero h1{font-size:3.25rem;margin-bottom:20px}
.hero h1 span{color:var(--accent)}
.hero .lead{font-size:1.1875rem;margin-bottom:32px;max-width:540px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:36px}
.hero-trust{display:flex;gap:32px;flex-wrap:wrap;color:var(--muted);font-size:.875rem}
.hero-trust strong{display:block;color:var(--text);font-size:1.5rem;font-weight:700;line-height:1}
.hero-visual{
  position:relative;aspect-ratio:1;max-width:480px;margin-left:auto;
  background:#fff;border-radius:24px;border:1px solid var(--border);
  box-shadow:var(--shadow-lg);padding:32px;
}
.hero-visual-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;height:100%}
.hero-tile{
  background:var(--bg-alt);border-radius:var(--radius);padding:20px;
  display:flex;flex-direction:column;justify-content:space-between;transition:all .2s;
}
.hero-tile:hover{background:var(--primary-light);transform:translateY(-2px)}
.hero-tile-icon{
  width:44px;height:44px;border-radius:10px;background:#fff;
  display:grid;place-items:center;color:var(--primary);
}
.hero-tile-icon svg{width:22px;height:22px}
.hero-tile h4{font-size:.9375rem;margin-top:auto}
.hero-tile p{font-size:.75rem;color:var(--muted);margin-top:2px}

/* ============ Cards / Services ============ */
.service-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:28px;transition:all .2s;display:flex;flex-direction:column;height:100%;
}
.service-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.service-icon{
  width:52px;height:52px;border-radius:12px;background:var(--primary-light);color:var(--primary);
  display:grid;place-items:center;margin-bottom:20px;
}
.service-icon svg{width:26px;height:26px}
.service-card h3{font-size:1.1875rem;margin-bottom:10px}
.service-card p{color:var(--muted);font-size:.9375rem;margin-bottom:20px;flex:1}
.service-link{
  color:var(--primary);font-weight:600;font-size:.9375rem;
  display:inline-flex;align-items:center;gap:6px;
}
.service-link:hover{color:var(--primary-dark)}
.service-link::after{content:"→";transition:transform .2s}
.service-card:hover .service-link::after{transform:translateX(3px)}

/* ============ Feature Row ============ */
.feature{display:flex;gap:20px}
.feature-icon{
  flex-shrink:0;width:48px;height:48px;border-radius:10px;
  background:var(--primary-light);color:var(--primary);display:grid;place-items:center;
}
.feature-icon svg{width:24px;height:24px}
.feature h4{margin-bottom:6px;font-size:1.0625rem}
.feature p{color:var(--muted);font-size:.9375rem}

/* ============ CTA Band ============ */
.cta-band{
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);
  color:#fff;padding:64px 0;
}
.cta-band .container{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.cta-band h2{color:#fff;font-size:1.75rem;max-width:640px}
.cta-band p{color:rgba(255,255,255,.85);margin-top:8px;max-width:520px}
.cta-band .btn{background:#fff;color:var(--primary)}
.cta-band .btn:hover{background:var(--bg-alt)}

/* ============ Footer ============ */
.footer{background:var(--bg-dark);color:#CBD5E1;padding:64px 0 32px;font-size:.9375rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.footer h5{color:#fff;font-size:.9375rem;font-weight:600;margin-bottom:20px;letter-spacing:.02em}
.footer ul li{margin-bottom:10px}
.footer a{color:#CBD5E1;transition:color .15s}
.footer a:hover{color:#fff}
.footer .logo{color:#fff;margin-bottom:16px}
.footer .logo-text small{color:#94A3B8}
.footer p{color:#94A3B8;font-size:.875rem;line-height:1.7}
.footer-contact{display:flex;flex-direction:column;gap:10px;font-size:.875rem;color:#CBD5E1}
.footer-contact span{display:flex;gap:10px;align-items:flex-start}
.footer-contact svg{width:16px;height:16px;flex-shrink:0;margin-top:3px;color:var(--accent)}
.footer-bottom{
  border-top:1px solid #1E293B;padding-top:24px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;
  color:#64748B;font-size:.8125rem;
}

/* ============ Page Hero (inner pages) ============ */
.page-hero{
  padding:64px 0 56px;background:var(--primary-light);
  border-bottom:1px solid var(--border);
}
.page-hero h1{font-size:2.5rem;margin-bottom:12px}
.page-hero p{font-size:1.0625rem;color:var(--muted);max-width:640px}
.breadcrumb{
  display:flex;gap:8px;font-size:.8125rem;color:var(--muted);
  margin-bottom:16px;flex-wrap:wrap;
}
.breadcrumb a{color:var(--muted)}
.breadcrumb a:hover{color:var(--primary)}
.breadcrumb span{color:#D1D5DB}

/* ============ Content blocks ============ */
.content-block{max-width:820px}
.content-block h2{font-size:1.75rem;margin:40px 0 16px;letter-spacing:-.02em}
.content-block h2:first-child{margin-top:0}
.content-block h3{font-size:1.25rem;margin:28px 0 12px}
.content-block p{margin-bottom:16px;color:#374151}
.content-block ul.check{margin:16px 0 24px}
.content-block ul.check li{
  position:relative;padding:8px 0 8px 32px;color:#374151;
}
.content-block ul.check li::before{
  content:"";position:absolute;left:0;top:12px;
  width:20px;height:20px;border-radius:50%;
  background:var(--primary-light) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F2A5C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

/* Two-col with sidebar */
.layout-with-sidebar{display:grid;grid-template-columns:1fr 340px;gap:56px;align-items:start}
.sidebar-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:28px;position:sticky;top:calc(var(--header-h) + 24px);
}
.sidebar-card h4{margin-bottom:16px}
.sidebar-card p{color:var(--muted);font-size:.9375rem;margin-bottom:20px}
.sidebar-card .btn{width:100%;margin-bottom:10px}
.sidebar-card .price-note{
  background:var(--bg-alt);border-radius:var(--radius-sm);padding:14px;
  font-size:.8125rem;color:var(--muted);text-align:center;margin-top:12px;
}

/* Process steps */
.process{counter-reset:step;display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.step{position:relative;padding-top:24px}
.step::before{
  counter-increment:step;content:counter(step);
  position:absolute;top:0;left:0;
  width:36px;height:36px;border-radius:50%;
  background:var(--primary);color:#fff;
  display:grid;place-items:center;font-weight:700;font-size:.9375rem;
}
.step h4{margin:12px 0 6px;font-size:1rem}
.step p{color:var(--muted);font-size:.875rem}

/* FAQ */
.faq details{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-sm);
  margin-bottom:12px;padding:0;
}
.faq details[open]{border-color:var(--primary)}
.faq summary{
  padding:20px 24px;font-weight:600;cursor:pointer;list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  font-size:1rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:1.5rem;color:var(--primary);font-weight:400;transition:transform .2s}
.faq details[open] summary::after{content:"−"}
.faq details p{padding:0 24px 20px;color:var(--muted);line-height:1.7}

/* Contact grid */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px}
.contact-info-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:28px;margin-bottom:20px;
}
.contact-info-card h4{font-size:1rem;margin-bottom:12px}
.contact-info-card p,.contact-info-card a{color:#374151;line-height:1.6}
.contact-info-card a{color:var(--primary);font-weight:600}
.contact-form{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:32px;
}
.field{margin-bottom:20px}
.field label{display:block;font-size:.875rem;font-weight:600;margin-bottom:8px;color:#374151}
.field input,.field textarea,.field select{
  width:100%;padding:12px 14px;border:1px solid var(--border);
  border-radius:var(--radius-sm);font-family:inherit;font-size:.9375rem;
  background:#fff;transition:border-color .15s,box-shadow .15s;
}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(15,42,92,.15);
}
.field textarea{resize:vertical;min-height:120px}

/* Price list */
.price-list{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.price-list-item{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 24px;border-bottom:1px solid var(--border);gap:16px;
}
.price-list-item:last-child{border-bottom:none}
.price-list-item div h5{font-size:.9375rem;font-weight:600;margin-bottom:2px}
.price-list-item div p{font-size:.8125rem;color:var(--muted)}
.price-list-item .price{
  font-weight:700;color:var(--primary);font-size:1rem;white-space:nowrap;
}

/* About stats */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.stat{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:28px 24px;text-align:center;
}
.stat strong{display:block;font-size:2.25rem;color:var(--primary);font-weight:800;line-height:1}
.stat span{display:block;color:var(--muted);font-size:.875rem;margin-top:6px}

/* Values grid */
.value-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:28px;
}
.value-card .service-icon{margin-bottom:16px}
.value-card h4{margin-bottom:8px}
.value-card p{color:var(--muted);font-size:.9375rem}

/* Utility */
.text-center{text-align:center}
.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}

/* ============ Responsive ============ */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero-visual{margin:0 auto}
  .hero h1{font-size:2.75rem}
  .layout-with-sidebar{grid-template-columns:1fr;gap:32px}
  .sidebar-card{position:static}
  .contact-grid{grid-template-columns:1fr;gap:32px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .process{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
  .section{padding:56px 0}
  h1{font-size:2.25rem}
  .hero{padding:48px 0 64px}
  .hero h1{font-size:2.25rem}
  .hero .lead{font-size:1rem}
  .section-title{font-size:1.625rem}
  .section-subtitle{font-size:1rem;margin-bottom:32px}
  .section-head{margin-bottom:32px}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .page-hero{padding:40px 0 36px}
  .page-hero h1{font-size:1.875rem}
  .cta-band{padding:48px 0}
  .cta-band .container{flex-direction:column;text-align:center;align-items:center}
  .cta-band h2{font-size:1.5rem}
  .footer{padding:48px 0 24px}
  .footer-grid{grid-template-columns:1fr;gap:32px;margin-bottom:32px}
  .footer-bottom{flex-direction:column;align-items:center;text-align:center}
  .stats{grid-template-columns:1fr 1fr}
  .stat strong{font-size:1.75rem}
  .container{padding:0 20px}
  .hero-visual{padding:20px}
  .hero-tile{padding:14px}
  .service-card{padding:24px}
  .contact-form{padding:24px}
  .content-block h2{font-size:1.5rem}
  .btn{padding:12px 22px;font-size:.875rem}
  .btn-lg{padding:14px 26px}
}

@media(max-width:480px){
  .hero h1{font-size:1.875rem}
  .hero-visual-grid{gap:10px}
  .hero-tile-icon{width:36px;height:36px}
  .hero-cta{width:100%}
  .hero-cta .btn{flex:1;min-width:140px}
  .logo-text{font-size:1rem}
  .logo-text small{font-size:.625rem}
  .process{grid-template-columns:1fr}
}

/* ============ Contact page: Call + WhatsApp actions ============ */
.contact-actions{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:960px;margin:0 auto;
}
.contact-action{
  display:flex;flex-direction:column;gap:10px;
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:36px 32px;text-align:left;color:var(--text);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
  position:relative;overflow:hidden;
}
.contact-action:hover{
  transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:var(--primary);
}
.contact-action-icon{
  width:56px;height:56px;border-radius:14px;
  background:var(--primary-light);color:var(--primary);
  display:grid;place-items:center;margin-bottom:8px;
}
.contact-action-icon svg{width:28px;height:28px}
.contact-action h3{color:var(--primary);font-size:1.375rem;margin-bottom:4px}
.contact-action-value{
  font-size:1.25rem;font-weight:700;color:var(--text);letter-spacing:-.01em;
}
.contact-action-note{color:var(--muted);font-size:.9375rem;line-height:1.5}
.contact-action-cta{
  margin-top:12px;display:inline-flex;align-items:center;
  color:var(--primary);font-weight:700;font-size:.9375rem;
}
.contact-action-cta::after{content:" \2192";margin-left:6px}
.contact-action-whatsapp .contact-action-icon{
  background:#DCF8C6;color:#25D366;
}
.contact-action-whatsapp:hover{border-color:#25D366}
.contact-action-whatsapp .contact-action-cta{color:#128C7E}

/* Details grid below action cards */
.contact-details-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px;max-width:960px;margin:0 auto;
}
.contact-details-grid .contact-info-card{margin-bottom:0}

/* ============ CTA-band: dual action buttons ============ */
.cta-band-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn-whatsapp{
  background:#25D366;color:#fff;
}
.btn-whatsapp:hover{background:#1DA851;color:#fff}

/* ============ Floating WhatsApp launcher (all pages) ============ */
.wa-float{
  position:fixed;right:22px;z-index:60;
  bottom:calc(22px + env(safe-area-inset-bottom));
  width:56px;height:56px;border-radius:50%;
  background:#25D366;color:#fff;
  display:grid;place-items:center;
  box-shadow:0 8px 20px rgba(37,211,102,.4);
  transition:transform .18s ease,box-shadow .18s ease;
}
.wa-float:hover{transform:scale(1.08);box-shadow:0 12px 28px rgba(37,211,102,.5);color:#fff}
.wa-float svg{width:30px;height:30px;fill:currentColor}
@media(max-width:480px){
  .wa-float{width:52px;height:52px;right:16px;bottom:calc(16px + env(safe-area-inset-bottom))}
  .wa-float svg{width:27px;height:27px}
  /* leave room so the button never sits on top of the last row of links */
  .footer-bottom{padding-bottom:72px}
}

/* Responsive tweaks */
@media(max-width:768px){
  .contact-actions{grid-template-columns:1fr;gap:16px;max-width:100%}
  .contact-details-grid{grid-template-columns:1fr}
  .contact-action{padding:28px 24px}
  .cta-band-actions{width:100%}
  .cta-band-actions .btn{flex:1;min-width:120px}
  .wa-float{bottom:16px;right:16px;width:52px;height:52px}
  .wa-float svg{width:26px;height:26px}
}

/* ============ Printing pricing banner (hero highlight) ============ */
.pricing-banner{
  background:linear-gradient(135deg,#F59E0B 0%,#D97706 100%);
  color:#fff;border-radius:var(--radius);padding:32px 40px;
  display:grid;grid-template-columns:1fr auto 1fr auto;gap:32px;align-items:center;
  box-shadow:0 12px 40px rgba(245,158,11,.28);position:relative;overflow:hidden;
}
.pricing-banner::before{
  content:"";position:absolute;top:-40px;right:-40px;width:220px;height:220px;
  background:radial-gradient(circle,rgba(255,255,255,.16),transparent 70%);border-radius:50%;
}
.pricing-banner-label{
  font-size:.75rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(255,255,255,.85);margin-bottom:8px;
}
.pricing-banner-title{font-size:1.375rem;font-weight:700;line-height:1.2;color:#fff;letter-spacing:-.01em;margin-bottom:6px}
.pricing-banner-sub{font-size:.9375rem;color:rgba(255,255,255,.88);line-height:1.5}
.pricing-tag{text-align:center;position:relative;z-index:1}
.pricing-tag .rate{
  font-size:3rem;font-weight:800;line-height:1;color:#fff;letter-spacing:-.03em;
  font-family:'Plus Jakarta Sans',sans-serif;
}
.pricing-tag .rate small{font-size:1.25rem;font-weight:600;margin-right:2px;vertical-align:top}
.pricing-tag .kind{
  display:block;margin-top:8px;font-size:.8125rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.92);
}
.pricing-divider{width:1px;height:60px;background:rgba(255,255,255,.3)}
.pricing-banner .btn{
  background:#fff;color:var(--accent-dark);font-weight:700;white-space:nowrap;
}
.pricing-banner .btn:hover{background:#FEF3C7;color:var(--accent-dark)}

/* ============ Service hero with SVG visual (2-column on service pages) ============ */
.service-hero{
  padding:56px 0 64px;background:linear-gradient(180deg,var(--primary-light) 0%,#fff 100%);
  border-bottom:1px solid var(--border);
}
.service-hero .container{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center}
.service-hero .breadcrumb{margin-bottom:20px}
.service-hero h1{font-size:2.75rem;margin-bottom:16px;line-height:1.15}
.service-hero p.lead{color:var(--muted);font-size:1.125rem;max-width:520px}
.service-hero-actions{margin-top:24px;display:flex;gap:12px;flex-wrap:wrap}
.service-hero-visual{
  aspect-ratio:1/1;max-width:440px;margin-left:auto;
  background:#fff;border-radius:var(--radius);border:1px solid var(--border);
  padding:32px;display:grid;place-items:center;box-shadow:var(--shadow-md);
  position:relative;overflow:hidden;
}
.service-hero-visual svg{width:100%;height:100%;max-height:340px}
.service-hero-visual img{width:100%;height:100%;object-fit:cover;border-radius:8px}

/* ============ Featured (large) service card ============ */
.service-card-featured{
  grid-column:span 2;background:linear-gradient(135deg,#0F2A5C 0%,#1E3A8A 100%);
  color:#fff;border:none;padding:40px;position:relative;overflow:hidden;
  display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;
}
.service-card-featured::after{
  content:"";position:absolute;top:-80px;right:-80px;width:280px;height:280px;
  background:radial-gradient(circle,rgba(245,158,11,.25),transparent 65%);border-radius:50%;
}
.service-card-featured h3{color:#fff;font-size:1.75rem;margin-bottom:12px;position:relative;z-index:1}
.service-card-featured p{color:rgba(255,255,255,.9);font-size:1rem;line-height:1.6;margin-bottom:16px;position:relative;z-index:1}
.service-card-featured .service-link{color:var(--accent);position:relative;z-index:1}
.service-card-featured .service-link:hover{color:#FBBF24}
.service-card-featured .featured-badge{
  display:inline-block;font-size:.6875rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;background:rgba(245,158,11,.2);color:var(--accent);
  padding:5px 12px;border-radius:999px;margin-bottom:14px;
}
.service-card-featured .featured-prices{
  display:flex;gap:20px;position:relative;z-index:1;
}
.service-card-featured .featured-price{
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);
  border-radius:12px;padding:20px 28px;text-align:center;min-width:140px;
  backdrop-filter:blur(4px);
}
.service-card-featured .featured-price .rate{
  font-size:2.25rem;font-weight:800;line-height:1;color:#fff;letter-spacing:-.02em;
}
.service-card-featured .featured-price .rate small{font-size:1rem;font-weight:600;margin-right:2px;vertical-align:top}
.service-card-featured .featured-price .kind{
  display:block;margin-top:6px;font-size:.75rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.85);
}

/* ============ Service card image support ============ */
.service-card-img{
  aspect-ratio:16/10;background:var(--primary-light);border-radius:8px;
  overflow:hidden;margin-bottom:20px;display:grid;place-items:center;
  color:var(--primary);position:relative;
}
.service-card-img svg{width:64px;height:64px}
.service-card-img img{width:100%;height:100%;object-fit:cover}
.service-card{display:flex;flex-direction:column}
.service-card .service-link{margin-top:auto}

/* ============ 12-service grid: make sure 3 cols works well ============ */
.grid-12{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}

/* Featured price note on printing page hero */
.printing-hero-prices{
  display:flex;gap:16px;margin-top:24px;flex-wrap:wrap;
}
.printing-hero-prices .price-chip{
  background:#fff;border:2px solid var(--accent);border-radius:12px;
  padding:14px 22px;display:flex;align-items:baseline;gap:8px;
  box-shadow:var(--shadow-sm);
}
.printing-hero-prices .price-chip .rate{
  font-size:1.75rem;font-weight:800;color:var(--accent-dark);line-height:1;
}
.printing-hero-prices .price-chip .rate small{font-size:.875rem;font-weight:600}
.printing-hero-prices .price-chip .kind{
  font-size:.8125rem;font-weight:600;color:var(--text);letter-spacing:.02em;
}

/* Responsive */
@media(max-width:1024px){
  .service-hero .container{grid-template-columns:1fr;gap:32px}
  .service-hero-visual{max-width:360px;margin:0 auto}
  .service-card-featured{grid-column:span 1;grid-template-columns:1fr;text-align:left}
  .grid-12{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .pricing-banner{grid-template-columns:1fr;padding:24px 20px;gap:16px;text-align:center}
  .pricing-divider{width:60px;height:1px;margin:0 auto}
  .service-hero{padding:40px 0 48px}
  .service-hero h1{font-size:2rem}
  .service-card-featured{padding:28px 24px}
  .service-card-featured .featured-prices{flex-direction:column;gap:12px}
  .service-card-featured .featured-price{min-width:0}
  .grid-12{grid-template-columns:1fr}
}

/* Featured tile in hero (printing) */
.hero-tile-featured{
  background:linear-gradient(135deg,#F59E0B 0%,#D97706 100%) !important;
  color:#fff !important;border-color:transparent !important;
  box-shadow:0 8px 24px rgba(245,158,11,.3);
}
.hero-tile-featured .hero-tile-icon{background:rgba(255,255,255,.2) !important;color:#fff !important}
.hero-tile-featured h4{color:#fff !important}
.hero-tile-featured p{color:rgba(255,255,255,.9) !important;font-weight:600}

/* ================================================================
   MOBILE RESPONSIVENESS FIXES
   ================================================================ */
@media(max-width:900px){
  :root{--header-min:64px;--header-h:64px}
  .header-inner{padding-top:8px;padding-bottom:8px}
  .logo-mark{flex:0 0 auto;width:36px;height:36px;font-size:.9375rem}
  .logo-text{font-size:1.0625rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .btn{min-height:44px}
  .footer-contact span{overflow-wrap:anywhere}
  .contact-info-card a{overflow-wrap:anywhere}
  iframe{max-width:100%}
}
@media(max-width:768px){
  .hero-trust{gap:20px 24px}
  .hero-visual{max-width:420px;width:100%}
  .price-list-item{flex-wrap:wrap;gap:6px 16px;padding:16px 18px}
  .price-list-item .price{margin-left:auto}
  .faq summary{padding:16px 18px;font-size:.9375rem}
  .faq details p{padding:0 18px 18px}
  .sidebar-card{padding:22px}
  .content-block h3{font-size:1.125rem}
  section[style*="height:420"],iframe[height="420"]{height:320px}
}
@media(max-width:480px){
  .container{padding:0 16px}
  :root{--header-min:60px;--header-h:60px}
  .logo-text{font-size:1rem}
  .logo-text small{font-size:.625rem}
  .section{padding:44px 0}
  .hero{padding:36px 0 48px}
  .hero h1{font-size:1.75rem}
  .hero-trust{gap:16px 20px;font-size:.8125rem}
  .hero-trust strong{font-size:1.25rem}
  .hero-visual{padding:16px;border-radius:18px}
  .hero-tile{padding:12px}
  .hero-tile h4{font-size:.875rem}
  .service-card{padding:20px}
  .service-icon{width:44px;height:44px;margin-bottom:16px}
  .stats{grid-template-columns:1fr 1fr;gap:12px}
  .stat{padding:20px 14px}
  .btn,.btn-lg{width:100%}
  .hero-cta,.service-hero-actions,.cta-band-actions{flex-direction:column;width:100%}
  .pricing-banner .btn{width:100%}
  .breadcrumb{font-size:.75rem}
  iframe{height:280px !important}
}

/* ================================================================
   DESIGN STUDIO: marketing + wizard shared styles
   ================================================================ */
.studio-hero{
  padding:72px 0 80px;color:#fff;position:relative;overflow:hidden;
  background:linear-gradient(135deg,#1B1035 0%,#0F2A5C 55%,#123A6B 100%);
}
.studio-hero::after{
  content:"";position:absolute;top:-120px;right:-100px;width:460px;height:460px;border-radius:50%;
  background:radial-gradient(circle,rgba(245,158,11,.35),transparent 65%);pointer-events:none;
}
.studio-hero .container{position:relative;z-index:1;display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.studio-hero .eyebrow{background:rgba(255,255,255,.14);color:#FDE68A}
.studio-hero h1,.studio-hero h2{color:#fff;font-size:3rem;margin-bottom:16px;line-height:1.1}
.studio-hero h1 em,.studio-hero h2 em{font-style:normal;color:var(--accent)}
.studio-hero p.lead{color:rgba(255,255,255,.82);font-size:1.125rem;max-width:520px}
.studio-hero .breadcrumb,.studio-hero .breadcrumb a{color:rgba(255,255,255,.6)}
.studio-hero .breadcrumb a:hover{color:#fff}
.studio-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.studio-hero .btn-secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.studio-hero .btn-secondary:hover{background:rgba(255,255,255,.12)}
.studio-points{display:flex;gap:24px;flex-wrap:wrap;margin-top:32px;color:rgba(255,255,255,.75);font-size:.875rem}
.studio-points strong{display:block;color:#fff;font-size:1.25rem;line-height:1.2}

/* Mock preview panel in hero */
.studio-mock{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);
  border-radius:20px;padding:18px;backdrop-filter:blur(6px);
}
.studio-mock-grid{display:grid;grid-template-columns:2fr 1fr;grid-template-rows:repeat(3,72px);gap:10px}
.studio-mock-cell{border-radius:12px;background:linear-gradient(135deg,#F59E0B,#FB7185);position:relative;overflow:hidden}
.studio-mock-cell:nth-child(1){grid-row:span 2;background:linear-gradient(135deg,#6366F1,#EC4899)}
.studio-mock-cell:nth-child(2){background:linear-gradient(135deg,#F472B6,#FBBF24)}
.studio-mock-cell:nth-child(3){background:linear-gradient(135deg,#34D399,#0EA5E9)}
.studio-mock-cell:nth-child(4){background:linear-gradient(135deg,#FBBF24,#F97316)}
.studio-mock-cell:nth-child(5){grid-column:span 2;background:linear-gradient(135deg,#0F2A5C,#4338CA)}
.studio-mock-caption{
  margin-top:14px;display:flex;justify-content:space-between;align-items:center;
  color:rgba(255,255,255,.75);font-size:.75rem;letter-spacing:.06em;text-transform:uppercase
}

/* Steps ribbon */
.flowline{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;counter-reset:fl}
.flowline .fl{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:22px 20px;position:relative}
.flowline .fl::before{
  counter-increment:fl;content:counter(fl);
  display:grid;place-items:center;width:30px;height:30px;border-radius:8px;
  background:var(--primary-light);color:var(--primary);font-weight:800;font-size:.875rem;margin-bottom:14px;
}
.flowline .fl h4{font-size:1rem;margin-bottom:6px}
.flowline .fl p{color:var(--muted);font-size:.875rem}

/* Template / style chips grid */
.chip-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:12px}
.chip{
  border:1.5px solid var(--border);border-radius:var(--radius-sm);background:#fff;
  padding:14px 16px;font-weight:600;font-size:.9375rem;text-align:left;color:var(--text);
  display:flex;flex-direction:column;gap:4px;min-height:64px;justify-content:center;transition:all .15s;
}
.chip small{font-weight:500;color:var(--muted);font-size:.75rem}
.chip:hover{border-color:var(--primary)}
.chip[aria-pressed="true"],.chip.selected{border-color:var(--primary);background:var(--primary-light);box-shadow:inset 0 0 0 1px var(--primary)}

@media(max-width:1024px){
  .studio-hero .container{grid-template-columns:1fr;gap:36px}
  .flowline{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .studio-hero{padding:40px 0 52px}
  .studio-hero h1,.studio-hero h2{font-size:2rem}
  .studio-hero p.lead{font-size:1rem}
  .studio-mock-grid{grid-template-rows:repeat(3,56px)}
}
@media(max-width:480px){
  .flowline{grid-template-columns:1fr}
  .studio-points{gap:14px 20px}
  .chip-grid{grid-template-columns:repeat(2,1fr)}
}


/* ================================================================
   MOBILE PASS 2: navigation chrome, tap targets, small-screen layout
   ================================================================ */

/* iOS zooms the page whenever a focused field is under 16px. Every input
   on the site is therefore pinned at 16px on touch widths. */
@media(max-width:900px){
  input,select,textarea{font-size:16px}
  .nav-cta{display:none}
}

/* Tap targets: 44px is the smallest reliably hittable size */
@media(max-width:900px){
  .footer a,.breadcrumb a,.service-link,.footer-bottom a{
    display:inline-block;min-height:32px;line-height:32px;
  }
  .footer-contact a{line-height:1.5;min-height:0}
  .faq summary{min-height:52px;display:flex;align-items:center}
}

/* Studio marketing blocks */
@media(max-width:900px){
  .studio-hero{padding:52px 0 56px}
  .studio-hero .container{grid-template-columns:1fr;gap:36px}
  .studio-hero h1,.studio-hero h2{font-size:2.125rem}
  .studio-hero p.lead{max-width:none}
  .studio-hero-actions .btn{flex:1 1 180px}
  .studio-mock-grid{grid-template-rows:repeat(3,64px)}
  .flowline{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:560px){
  .studio-hero{padding:40px 0 44px}
  .studio-hero h1,.studio-hero h2{font-size:1.75rem}
  .studio-points{gap:14px 20px;font-size:.8125rem}
  .studio-points strong{font-size:1.0625rem}
  .studio-mock{padding:14px;border-radius:16px}
  .studio-mock-grid{grid-template-rows:repeat(3,54px);gap:8px}
  .flowline{grid-template-columns:1fr;gap:12px}
  .flowline .fl{padding:18px 16px}
  .chip-grid{grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:10px}
  .chip{padding:12px 14px;min-height:58px;font-size:.875rem}
}

/* Map embed: 420px of map on a phone pushes everything else off screen */
@media(max-width:480px){
  iframe[height="420"]{height:260px}
}

/* Short landscape phones: the header and drawer must not eat the screen */
@media(max-height:480px) and (orientation:landscape){
  :root{--header-min:56px;--header-h:56px}
  .logo-text small{display:none}
  .mobile-nav a{min-height:44px;padding:8px 4px}
  .mobile-nav-actions{margin-top:14px;grid-template-columns:1fr 1fr}
  .mobile-nav-actions .btn{min-height:44px}
}

/* Very narrow phones (320-360px) */
@media(max-width:360px){
  .container{padding:0 14px}
  .logo-mark{width:32px;height:32px;font-size:.875rem}
  .logo-text{font-size:.9375rem}
  .call-btn,.menu-btn{width:42px;height:42px}
  .header-actions{gap:6px}
  .stats{grid-template-columns:1fr}
  .studio-points{display:grid;grid-template-columns:1fr 1fr}
}
