
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root{
  --navy:#06172f;
  --navy2:#092748;
  --blue:#1167e8;
  --blue2:#2a8cff;
  --ink:#0d1d34;
  --text:#50627a;
  --muted:#74849a;
  --line:#dce4ed;
  --light:#f6f9fc;
  --white:#fff;
  --shadow:0 14px 34px rgba(6,23,47,.08);
  --radius:14px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Inter',Arial,sans-serif;color:var(--text);background:#fff;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(1190px,calc(100% - 42px));margin:auto}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid #e4e9ef;
  box-shadow:0 4px 18px rgba(6,23,47,.04);
}
.navbar{min-height:126px;display:flex;align-items:center;gap:28px}
.logo-wrap{display:flex;align-items:center;min-width:330px}
.logo-wrap img{height:108px;width:auto;max-width:360px;object-fit:contain}
.nav-links{display:flex;align-items:center;justify-content:center;gap:28px;flex:1;color:var(--ink);font-size:.92rem;font-weight:600}
.nav-links a{padding:10px 0;position:relative}
.nav-links a:hover{color:var(--blue)}
.nav-links a::after{content:"";position:absolute;left:0;right:100%;bottom:2px;height:2px;background:#1675ff;transition:.2s}
.nav-links a:hover::after{right:0}
.nav-actions{display:flex;align-items:center;gap:10px}
.lang-switch{display:flex;align-items:center;gap:4px;border:1px solid #d8e0e8;border-radius:8px;padding:6px 8px;color:var(--ink);background:#fff}
.lang-switch select{background:transparent;color:var(--ink);border:0;outline:0;font-weight:700}
.lang-switch option{color:#111}
.nav-cta{background:linear-gradient(135deg,#0e5fd6,#1479ff);color:#fff;padding:12px 18px;border-radius:6px;font-weight:700}
.menu-toggle{display:none;background:#fff;border:1px solid #d8e0e8;color:var(--ink);border-radius:8px;padding:8px 10px;font-size:1.1rem}
/* Hero */
.hero-ref{position:relative;overflow:hidden;background:linear-gradient(110deg,#031126 0%,#061a35 48%,#07284b 100%);color:#fff}
.hero-ref::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 85% 15%,rgba(26,119,255,.15),transparent 28%);pointer-events:none}
.hero-ref-grid{position:relative;z-index:2;display:grid;grid-template-columns:.78fr 1.22fr;min-height:510px;align-items:center}
.hero-copy{padding:62px 0 72px}
.hero-kicker{color:#45a8ff;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800}
.hero-title{font-family:'Manrope','Inter',sans-serif;font-weight:400;font-size:clamp(3.4rem,5vw,5.7rem);line-height:.98;letter-spacing:-.025em;margin:14px 0 20px;color:#fff}
.hero-title em{color:#2079ef;font-weight:400}
.hero-copy p{max-width:470px;color:#d3deeb;font-size:1.05rem}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:13px 20px;border-radius:6px;font-weight:700;border:1px solid transparent;transition:.2s}
.btn-primary{color:#fff;background:linear-gradient(135deg,#0d62db,#147cff)}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 10px 24px rgba(17,103,232,.22)}
.btn-ghost{color:#fff;border-color:#6f8cab;background:rgba(255,255,255,.03)}
.btn-outline{color:var(--blue);border-color:#b8d4f5;background:#fff}
.hero-earth{position:absolute;z-index:1;right:-2%;top:0;width:64%;height:100%;background-image:linear-gradient(90deg,#061a35 0%,rgba(6,26,53,.1) 22%,rgba(6,26,53,0) 45%),url('/assets/images/hero-earth.jpg');background-size:cover;background-position:center right;opacity:.98}

/* Trust bar */
.trust-bar{background:#071d38;color:#fff;border-top:1px solid rgba(255,255,255,.09);border-bottom:1px solid rgba(255,255,255,.09)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{display:flex;align-items:center;gap:15px;padding:18px 28px;border-right:1px solid rgba(255,255,255,.12)}
.trust-item:last-child{border-right:0}
.trust-icon{width:46px;height:46px;color:#fff;flex:0 0 46px}
.trust-icon svg{width:100%;height:100%}
.trust-item strong{display:block;font-size:.95rem}
.trust-item span{display:block;color:#c5d5e6;font-size:.82rem}

/* Sections */
.section{padding:78px 0}
.section-light{background:linear-gradient(180deg,#f8fbfe,#f0f6fc)}
.kicker{color:var(--blue);font-weight:800;text-transform:uppercase;letter-spacing:.08em;font-size:.72rem}
.section-title{font-family:'Manrope','Inter',sans-serif;color:var(--ink);font-size:clamp(2rem,3.1vw,3rem);line-height:1.08;margin:7px 0 12px;font-weight:400}
.section-title .blue{color:var(--blue)}
.section-lead{max-width:720px;color:var(--muted)}

.services-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:30px}
.service-card{border:1px solid var(--line);border-radius:10px;background:#fff;padding:22px;box-shadow:0 8px 24px rgba(6,23,47,.04);min-height:310px;display:flex;flex-direction:column;transition:.22s}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#c7d9ec}
.service-icon{width:44px;height:44px;color:#0e64e8;margin-bottom:18px}
.service-icon svg{width:100%;height:100%}
.service-card h3{color:var(--ink);font-size:1rem;line-height:1.35;margin:0 0 12px;min-height:44px}
.service-card p{font-size:.88rem;color:var(--text);margin:0 0 18px}
.service-card a{margin-top:auto;color:var(--blue);font-size:.88rem;font-weight:700}

/* Approach */
.approach-grid{display:grid;grid-template-columns:1.05fr 1.65fr;gap:58px;align-items:start}
.approach-copy p{max-width:430px}
.approach-steps{display:grid;grid-template-columns:repeat(3,1fr)}
.approach-step{padding:0 28px;border-left:1px solid #cbdceb}
.approach-step:first-child{border-left:0;padding-left:0}
.step-top{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.step-no{color:var(--blue);font-weight:800;font-size:1.55rem}
.step-icon{width:47px;height:47px;border-radius:50%;background:#e7f2ff;color:var(--blue);display:grid;place-items:center}
.step-icon svg{width:28px;height:28px}
.approach-step h3{margin:0 0 6px;color:var(--ink);font-size:1rem}
.approach-step p{font-size:.86rem;color:var(--text)}

/* CTA */
.cta-band{background:linear-gradient(110deg,#06172f,#09294e);color:#fff;padding:28px 0}
.cta-inner{display:flex;justify-content:space-between;align-items:center;gap:30px}
.cta-inner h2{font-family:'Manrope','Inter',sans-serif;font-weight:400;margin:0 0 4px;font-size:1.8rem}
.cta-inner p{margin:0;color:#c4d4e5}

/* Internal hero */
.page-hero{position:relative;overflow:hidden;background:linear-gradient(115deg,#031126,#07284b);color:#fff;padding:76px 0 68px}
.page-hero::after{content:"";position:absolute;right:-90px;top:-150px;width:420px;height:420px;border-radius:50%;border:1px solid rgba(93,178,255,.18);box-shadow:0 0 0 58px rgba(64,160,255,.025),0 0 0 120px rgba(64,160,255,.018)}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{font-family:'Manrope','Inter',sans-serif;font-size:clamp(2.8rem,5vw,4.8rem);line-height:1.02;font-weight:400;margin:8px 0 14px;color:#fff}
.page-hero p{max-width:760px;color:#c7d6e6;font-size:1.05rem}

/* General internal layouts */
.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:55px;align-items:start}
.info-panel{background:#fff;border:1px solid var(--line);border-radius:12px;padding:28px;box-shadow:var(--shadow)}
.service-block{display:grid;grid-template-columns:.72fr 1.28fr;gap:48px;padding:38px 0;border-bottom:1px solid var(--line)}
.service-block:last-child{border-bottom:0}
.service-block h2{color:var(--ink);margin:4px 0;font-size:1.8rem}
.list-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:13px}
.list-item{background:#f9fbfd;border:1px solid var(--line);padding:14px 15px;border-radius:8px;font-weight:600;color:#4e6077}
.tool-card{background:linear-gradient(140deg,#eef6ff,#fff);border:1px solid #cfe0f2;border-radius:14px;padding:30px}
.value-list{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.value-item{background:#fff;border:1px solid var(--line);border-radius:10px;padding:18px}
.value-item strong{display:block;color:var(--ink)}
.contact-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:34px}
.form-card,.q-section{background:#fff;border:1px solid var(--line);border-radius:12px;padding:28px;box-shadow:0 10px 28px rgba(6,23,47,.045)}
.form-group{margin-bottom:17px}
label{display:block;color:var(--ink);font-size:.9rem;font-weight:700;margin-bottom:6px}
input,select,textarea{width:100%;border:1px solid #cbd6e1;border-radius:8px;padding:12px 13px;font:inherit;background:#fff;outline:0}
input:focus,select:focus,textarea:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(17,103,232,.09)}
textarea{min-height:140px;resize:vertical}
.info-card{background:linear-gradient(145deg,#06172f,#09284a);color:#fff;border-radius:12px;padding:28px}
.info-card h3{margin-top:0}.info-card p,.info-card a{color:#cbd8e5}

/* Tools */
.tools-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tool-tile{background:#fff;border:1px solid var(--line);border-radius:11px;padding:24px;box-shadow:0 8px 24px rgba(6,23,47,.04);display:flex;flex-direction:column;min-height:300px}
.tool-type{display:inline-flex;width:max-content;background:#eaf4ff;color:var(--blue);border-radius:999px;padding:6px 9px;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.tool-tile h3{color:var(--ink);font-size:1.12rem;margin:16px 0 8px}
.tool-tile p{font-size:.9rem}
.tool-meta{margin-top:auto;display:flex;justify-content:space-between;align-items:center;gap:10px}
.questionnaire-wrap{max-width:940px;margin:auto}
.questionnaire-top{display:flex;justify-content:space-between;gap:20px}
.badge-soft{background:#edf4fb;border-radius:999px;padding:7px 10px;height:max-content;font-size:.78rem;font-weight:700}
.questionnaire-note{background:#eef6ff;border:1px solid #cfe2f4;border-radius:9px;padding:14px;margin-top:18px}
.stepper{display:grid;grid-template-columns:repeat(5,1fr);gap:7px;margin:24px 0}
.stepper span{height:6px;border-radius:999px;background:#d9e6f2}.stepper .active{background:var(--blue)}
.q-section{margin-bottom:18px}
.q-section h2{color:var(--ink);font-size:1.35rem;margin-top:0}
.q-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.q-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.radio-row,.check-row{display:flex;flex-wrap:wrap;gap:10px}
.choice{display:flex;gap:8px;align-items:center;border:1px solid var(--line);border-radius:8px;padding:9px 11px}
.choice input{width:auto}
.repeat-card{background:#f9fbfd;border:1px dashed #b9c8d8;border-radius:9px;padding:16px;margin:12px 0}
.form-actions{display:flex;justify-content:space-between;gap:12px}

/* Footer */
.footer{background:#031126;color:#c2d0df;padding:48px 0 22px}
.footer-grid{display:grid;grid-template-columns:1.4fr .8fr 1fr;gap:38px}
.footer h4{color:#fff;margin-top:0}
.footer a{display:block;margin:7px 0;color:#c2d0df;font-size:.9rem}
.footer a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.09);margin-top:34px;padding-top:18px;display:flex;justify-content:space-between;gap:20px;font-size:.83rem}

@media(max-width:1050px){
  .menu-toggle{display:inline-flex}
  .nav-links{display:none;position:absolute;top:126px;left:20px;right:20px;background:#06172f;border:1px solid rgba(255,255,255,.1);padding:18px;border-radius:10px;flex-direction:column;align-items:stretch}
  .nav-links.open{display:flex}
  .nav-cta{display:none}
  .logo-wrap{min-width:auto}
  .hero-ref-grid{grid-template-columns:1fr;min-height:730px}
  .hero-copy{padding-bottom:330px}
  .hero-earth{width:100%;height:48%;top:auto;bottom:0;background-position:center}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:0}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .approach-grid,.service-block,.split,.contact-grid,.footer-grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .container{width:min(100% - 28px,1190px)}
  .navbar{min-height:94px}.logo-wrap img{height:72px;max-width:245px}
  .nav-links{top:94px}
  .hero-title{font-size:3.5rem}
  .hero-copy{padding-top:48px}
  .trust-grid{grid-template-columns:1fr}
  .trust-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.1)}
  .services-grid,.list-grid,.value-list,.tools-grid,.q-grid,.q-grid-3{grid-template-columns:1fr}
  .approach-steps{grid-template-columns:1fr;gap:26px}
  .approach-step,.approach-step:first-child{border-left:0;padding:0;border-top:1px solid #cbdceb;padding-top:20px}
  .approach-step:first-child{border-top:0;padding-top:0}
  .cta-inner,.questionnaire-top,.form-actions,.footer-bottom{flex-direction:column;align-items:flex-start}
  .btn{width:100%}
}


/* V6 Typography & Brand Refinement */
.hero-title{
  font-family:'Manrope','Inter',sans-serif;
  font-weight:800;
  font-size:clamp(4rem,6.3vw,7.1rem);
  line-height:.88;
  letter-spacing:-.062em;
  margin:14px 0 28px;
  max-width:640px;
}
.hero-title em{
  font-family:'Manrope','Inter',sans-serif;
  font-style:normal;
  font-weight:800;
  color:#1d7cff;
}
.hero-copy p{
  max-width:590px;
  font-size:1.08rem;
  line-height:1.75;
  color:#d0dbe8;
}
.section-title,
.page-hero h1,
.cta-inner h2{
  font-family:'Manrope','Inter',sans-serif;
  font-weight:800;
  letter-spacing:-.045em;
}
.section-title{
  line-height:1.03;
}
.page-hero h1{
  line-height:.98;
  letter-spacing:-.055em;
}
.cta-inner h2{
  letter-spacing:-.035em;
}
.service-card h3,
.service-block h2,
.tool-tile h3,
.q-section h2,
.info-panel h3{
  font-family:'Manrope','Inter',sans-serif;
  letter-spacing:-.025em;
}
.header .nav-links,
.nav-cta{
  letter-spacing:-.01em;
}
@media(max-width:1050px){
  .nav-links{top:126px}
}
@media(max-width:700px){
  .navbar{min-height:104px}
  .logo-wrap img{height:84px;max-width:270px}
  .nav-links{top:104px}
  .hero-title{
    font-size:clamp(3.6rem,15vw,5rem);
    line-height:.9;
  }
}




/* V6.4 - Questionnaire contrast fix */
.page-hero .questionnaire-note{
  background:#eef6ff;
  border:1px solid #c9ddf3;
  color:#3f536b !important;
}
.page-hero .questionnaire-note,
.page-hero .questionnaire-note *{
  color:#3f536b !important;
}
.page-hero .badge-soft{
  background:#f3f6f9;
  color:#42546b !important;
  border:1px solid #d9e1e9;
}
.page-hero .badge-soft *{
  color:#42546b !important;
}


/* V6.6 - Consolidated questionnaire UI fixes */

/* The autosave status is not a button. It is a lightweight system-status pill. */
.page-hero .badge-soft[data-draft-status],
.page-hero [data-draft-status]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.72) !important;
  border-radius:999px;
  background:transparent !important;
  color:#ffffff !important;
  box-shadow:none !important;
  font-family:'Inter',Arial,sans-serif;
  font-size:.86rem;
  font-weight:600;
  line-height:1;
  text-align:center;
  white-space:nowrap;
}
.page-hero [data-draft-status] *{
  color:#ffffff !important;
}

/* Questionnaire breadcrumb / section label must remain legible on dark navy hero. */
.page-hero .questionnaire-kicker{
  color:#ffffff !important;
  opacity:.96;
}

/* Keep the informational note legible on its light background. */
.page-hero .questionnaire-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:#eef6ff !important;
  border:1px solid #c9ddf3 !important;
  color:#3f536b !important;
  line-height:1.55;
}
.page-hero .questionnaire-note::before{
  content:"i";
  flex:0 0 22px;
  width:22px;
  height:22px;
  border:1px solid #7aaee5;
  color:#1768c9;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:.78rem;
  margin-top:1px;
}
.page-hero .questionnaire-note,
.page-hero .questionnaire-note *{
  color:#3f536b !important;
}

/* Prevent autosave pill from looking cramped on narrow screens. */
@media(max-width:700px){
  .page-hero [data-draft-status]{
    align-self:flex-start;
    min-width:0;
    width:auto;
  }
}


/* ============================================================
   UPWARDS V9 - PREMIUM VISUAL POLISH
   No framework. No extra runtime dependency.
   ============================================================ */

:root{
  --v9-blue:#156FEA;
  --v9-blue-soft:#EAF3FF;
  --v9-navy:#06172F;
  --v9-ink:#0B1930;
  --v9-slate:#5C6D82;
  --v9-border:#DCE5EF;
  --v9-shadow:0 18px 46px rgba(6,23,47,.08);
}

/* Global rhythm */
body{
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.container{
  width:min(1220px,calc(100% - 48px));
}
.section{
  padding:92px 0;
}
.kicker,
.section-kicker{
  letter-spacing:.11em;
}
.section-title{
  max-width:880px;
}
.section-lead{
  max-width:760px;
  line-height:1.75;
}

/* Header polish */
.header{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px) saturate(140%);
  box-shadow:0 1px 0 rgba(6,23,47,.06);
}
.navbar{
  min-height:118px;
}
.logo-wrap img{
  height:102px;
}
.nav-links{
  gap:32px;
}
.nav-links a{
  font-weight:650;
}
.nav-cta{
  border-radius:8px;
  padding:13px 19px;
  box-shadow:0 10px 24px rgba(21,111,234,.18);
}

/* Home hero */
.hero-ref{
  min-height:610px;
  background:
    radial-gradient(circle at 76% 26%,rgba(30,126,255,.18),transparent 30%),
    linear-gradient(112deg,#031125 0%,#061A35 52%,#082C52 100%);
}
.hero-ref::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to right,rgba(0,0,0,.85),rgba(0,0,0,.15));
}
.hero-ref-grid{
  min-height:610px;
}
.hero-copy{
  padding:82px 0 92px;
  position:relative;
  z-index:3;
}
.hero-kicker{
  color:#66B7FF;
  font-size:.76rem;
  letter-spacing:.12em;
}
.hero-title{
  font-size:clamp(4.4rem,6.4vw,7.6rem);
  line-height:.87;
  max-width:680px;
  margin:16px 0 30px;
}
.hero-title em{
  background:linear-gradient(90deg,#60B6FF,#1C78FF);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-copy p{
  max-width:600px;
  font-size:1.08rem;
  line-height:1.8;
}
.hero-earth{
  opacity:.93;
  filter:saturate(.92) contrast(1.04);
}
.hero-actions{
  gap:12px;
}
.hero-actions .btn{
  min-height:48px;
}

/* Trust bar */
.trust-bar{
  background:#071B34;
}
.trust-item{
  min-height:92px;
  padding:22px 28px;
}
.trust-icon{
  width:42px;height:42px;flex-basis:42px;
  opacity:.92;
}
.trust-item strong{
  font-size:.96rem;
}
.trust-item span{
  color:#9EB3CA;
}

/* Service cards */
.services-grid{
  gap:18px;
}
.service-card{
  min-height:335px;
  border-radius:12px;
  padding:26px 24px;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--v9-shadow);
}
.service-icon{
  width:46px;height:46px;
  margin-bottom:22px;
}
.service-card h3{
  min-height:50px;
  font-size:1.03rem;
  margin-bottom:13px;
}
.service-card p{
  line-height:1.7;
}
.service-card a{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* Approach */
.section-light{
  background:
    radial-gradient(circle at 93% 5%,rgba(21,111,234,.07),transparent 22%),
    linear-gradient(180deg,#F8FBFE,#EFF5FB);
}
.approach-grid{
  gap:72px;
}
.approach-copy{
  padding-right:20px;
}
.approach-step{
  padding-left:34px;
  padding-right:34px;
}
.step-icon{
  background:#EAF3FF;
  border:1px solid #D7E9FB;
}
.approach-step p{
  line-height:1.7;
}

/* Internal pages */
.page-hero{
  padding:90px 0 82px;
  background:
    radial-gradient(circle at 86% 8%,rgba(47,145,255,.15),transparent 26%),
    linear-gradient(112deg,#031125,#07294A);
}
.page-hero h1{
  max-width:900px;
  font-size:clamp(3.2rem,5.4vw,5.3rem);
  margin-top:12px;
}
.page-hero p{
  line-height:1.8;
}
.service-block{
  padding:48px 0;
}
.list-item{
  padding:16px 17px;
  border-radius:9px;
  background:#FBFCFE;
}
.tool-card{
  border-radius:16px;
  padding:36px;
  box-shadow:0 14px 34px rgba(6,23,47,.05);
}
.info-panel,
.form-card,
.q-section,
.info-card{
  border-radius:14px;
}

/* Client tools */
.tools-grid{
  gap:20px;
}
.tool-tile{
  border-radius:13px;
  min-height:315px;
  padding:27px;
  transition:transform .22s ease,box-shadow .22s ease;
}
.tool-tile:hover{
  transform:translateY(-4px);
  box-shadow:var(--v9-shadow);
}
.tool-type{
  letter-spacing:.1em;
}

/* Questionnaires */
.questionnaire-wrap{
  max-width:980px;
}
.page-hero .questionnaire-top{
  gap:30px;
}
.page-hero [data-draft-status]{
  min-height:40px;
  padding:0 16px;
}
.stepper{
  margin-top:30px;
}
.q-section{
  padding:32px;
  margin-bottom:20px;
}
.q-section h2{
  font-size:1.48rem;
}
.q-section .section-help{
  line-height:1.65;
}
input,select,textarea{
  min-height:46px;
}
textarea{
  min-height:145px;
}
.choice{
  background:#FCFDFE;
}
.form-actions{
  margin-top:28px;
}

/* Contact */
.contact-grid{
  gap:44px;
}
.info-card{
  box-shadow:0 18px 48px rgba(6,23,47,.14);
}

/* CTA and footer */
.cta-band{
  padding:34px 0;
}
.cta-inner h2{
  font-size:2rem;
}
.footer{
  padding-top:56px;
}
.footer-grid{
  gap:48px;
}
.footer-bottom{
  padding-top:22px;
}

/* Micro-interactions */
.btn,
.nav-cta,
.service-card,
.tool-tile,
.list-item{
  transition-duration:.2s;
}
.btn:active,
.nav-cta:active{
  transform:translateY(1px);
}

/* Subtle section reveal, safe if JS fails */
.v9-reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease,transform .6s ease;
}
.v9-reveal.v9-visible{
  opacity:1;
  transform:none;
}

@media(max-width:1050px){
  .navbar{min-height:104px}
  .logo-wrap img{height:86px}
  .hero-ref-grid{min-height:auto}
  .hero-ref{min-height:auto}
  .hero-copy{padding-top:64px}
}
@media(max-width:700px){
  .container{width:min(100% - 30px,1220px)}
  .section{padding:72px 0}
  .hero-title{
    font-size:clamp(3.5rem,15vw,5.2rem);
  }
  .service-card{
    min-height:auto;
  }
  .q-section{
    padding:24px;
  }
}
@media(prefers-reduced-motion:reduce){
  .v9-reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
}
