
:root{
  --ink:#10233f;
  --navy:#123250;
  --navy-dark:#0c243d;
  --blue:#287fe5;
  --blue-dark:#1769c2;
  --cyan:#1ea8dd;
  --surface:#f4f8fc;
  --surface-2:#edf4fa;
  --white:#ffffff;
  --muted:#61738a;
  --line:#d8e4ee;
  --success:#197a60;
  --warning:#9b5a16;
  --radius-sm:12px;
  --radius:18px;
  --radius-lg:24px;
  --shadow-sm:0 8px 24px rgba(16,35,63,.06);
  --shadow:0 18px 46px rgba(16,35,63,.09);
  --content:1200px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  text-size-adjust:100%;
}

body{
  min-width:320px;
  margin:0;
  overflow-x:hidden;
  color:var(--ink);
  background:var(--white);
  font-family:Tahoma,Verdana,"PingFang SC","Microsoft YaHei",Arial,sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

body.menu-open{overflow:hidden}

img,svg{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}
a{color:inherit}
p,h1,h2,h3,h4,h5,h6,blockquote{margin-top:0}
p:last-child{margin-bottom:0}

h1,h2,h3,h4,h5,h6{
  margin-bottom:.45em;
  color:var(--ink);
  font-weight:750;
  line-height:1.1;
  letter-spacing:-.025em;
  text-wrap:balance;
  text-transform:none;
}

h1{font-size:clamp(2.55rem,4.7vw,4.15rem)}
h2{font-size:clamp(2rem,3.4vw,3rem)}
h3{font-size:1.12rem;letter-spacing:-.012em}
h4{font-size:1rem}

.container{
  width:min(var(--content),calc(100% - 40px));
  margin-inline:auto;
}

.narrow{max-width:820px}

.lead{
  max-width:68ch;
  color:var(--muted);
  font-size:clamp(1.03rem,1.5vw,1.18rem);
  line-height:1.7;
  text-wrap:pretty;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  color:var(--blue);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:none;
}

.eyebrow::before{
  width:24px;
  height:3px;
  border-radius:999px;
  background:var(--blue);
  content:"";
}

.label{
  display:inline-flex;
  width:max-content;
  margin-bottom:13px;
  padding:6px 10px;
  border-radius:999px;
  background:#e9f3ff;
  color:var(--blue-dark);
  font-size:.72rem;
  font-weight:800;
  text-transform:none;
}

.btn{
  display:inline-flex;
  min-height:46px;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:12px 18px;
  border:1px solid transparent;
  border-radius:12px;
  color:#fff;
  background:var(--blue);
  font-size:.9rem;
  font-weight:800;
  line-height:1.2;
  text-align:center;
  text-decoration:none;
  transition:background-color .18s ease,border-color .18s ease,transform .18s ease;
}

.btn:hover{background:var(--blue-dark);transform:translateY(-1px)}
.btn svg{width:17px;height:17px;flex:none}
.btn.small{min-height:42px;padding:10px 15px;font-size:.84rem}

.btn.secondary{
  border-color:#cddbea;
  color:var(--ink);
  background:#fff;
}
.btn.secondary:hover{
  border-color:#aabfd3;
  background:#f7fafc;
}

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--blue-dark);
  font-size:.86rem;
  font-weight:800;
  text-decoration:none;
}
.link-arrow:hover{text-decoration:underline}
.link-arrow svg{width:17px;height:17px;flex:none}

/* Header */
.site-header{
  position:sticky;
  z-index:50;
  top:0;
  border-bottom:1px solid rgba(216,228,238,.9);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
}

.navbar{
  display:flex;
  min-height:76px;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:inline-flex;
  flex:none;
  align-items:center;
}
.brand img{
  width:116px;
  height:auto;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  margin-left:auto;
}
.nav-links>a{
  position:relative;
  padding:26px 0 24px;
  color:#34465d;
  font-size:.83rem;
  font-weight:750;
  text-decoration:none;
  white-space:nowrap;
}
.nav-links>a:hover,
.nav-links>a[aria-current="page"]{color:var(--blue-dark)}
.nav-links>a[aria-current="page"]::after{
  position:absolute;
  right:0;
  bottom:16px;
  left:0;
  height:2px;
  border-radius:99px;
  background:var(--blue);
  content:"";
}
.nav-links .mobile-cta{display:none}
.nav-actions{display:flex;align-items:center;gap:10px}
.menu-button{
  display:none;
  width:44px;
  height:44px;
  place-items:center;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--ink);
}
.menu-button svg{width:22px;height:22px}

/* Home hero */
.hero{
  padding:72px 0 64px;
  background:var(--surface);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:clamp(36px,5vw,66px);
  align-items:start;
}

.hero-copy h1{
  max-width:12ch;
  margin-bottom:22px;
}

.hero-copy h1 span{color:var(--blue)}

.hero-actions,
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.hero-actions{margin-top:26px}

.proof-line{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-top:24px;
}
.proof-line span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#41546b;
  font-size:.79rem;
  font-weight:700;
}
.proof-line svg{width:16px;height:16px;color:var(--blue)}

.job-type-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:28px;
}

.job-type-link{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  min-height:82px;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  text-decoration:none;
  transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.job-type-link:hover{
  border-color:#aac2d8;
  box-shadow:var(--shadow);
  transform:translateY(-2px);
}
.quick-icon{
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border-radius:12px;
  background:#eaf4ff;
  color:var(--blue);
}
.quick-icon svg{width:21px;height:21px}
.job-type-link strong{
  display:block;
  margin-bottom:2px;
  font-size:.9rem;
  line-height:1.25;
}
.job-type-link small{
  display:block;
  color:var(--muted);
  font-size:.74rem;
  line-height:1.35;
}
.job-type-link b{
  color:var(--blue-dark);
  font-size:.76rem;
  white-space:nowrap;
}

.job-board{min-width:0}
.board{
  padding:24px;
  border-radius:22px;
  background:var(--navy);
  box-shadow:0 24px 55px rgba(12,36,61,.16);
}
.board-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.board-head strong{
  color:#fff;
  font-size:.97rem;
}
.live{
  display:inline-flex;
  align-items:center;
  padding:6px 9px;
  border-radius:999px;
  color:#d9edff;
  background:#21496d;
  font-size:.68rem;
  font-weight:800;
  white-space:nowrap;
}
.mini-list{display:grid;gap:10px}
.mini-job{
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  gap:12px;
  padding:14px;
  border:1px solid #315473;
  border-radius:14px;
  background:#193b5c;
}
.mini-icon{
  display:grid;
  width:40px;
  height:40px;
  place-items:center;
  border-radius:11px;
  background:#24577d;
  color:#7fdcff;
}
.mini-icon svg{width:20px;height:20px}
.mini-job h3{
  margin-bottom:3px;
  color:#fff;
  font-size:.9rem;
}
.mini-job p{
  margin-bottom:7px;
  color:#c9d7e4;
  font-size:.78rem;
  line-height:1.45;
}
.mini-job b{
  display:inline-flex;
  color:#7fdcff;
  font-size:.67rem;
}
.board-note{
  margin-top:12px;
  padding:15px 16px;
  border-radius:14px;
  background:#fff;
}
.board-note strong{
  display:block;
  margin-bottom:5px;
  color:var(--ink);
  font-size:.91rem;
}
.board-note p{
  color:var(--muted);
  font-size:.78rem;
  line-height:1.5;
}

.experience-stat{
  display:flex;
  min-height:56px;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  padding:12px 18px;
  border:1px solid #47708f;
  border-radius:14px;
  color:#fff;
  background:#21496d;
  font-size:.96rem;
  font-weight:850;
  letter-spacing:.01em;
  text-align:center;
}

/* General page hero */
.page-hero{
  padding:64px 0;
  background:var(--surface);
}
.page-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.65fr) minmax(280px,.7fr);
  gap:clamp(36px,5vw,64px);
  align-items:end;
}
.page-hero h1{
  max-width:19ch;
  margin-bottom:18px;
  font-size:clamp(2.5rem,4.4vw,3.75rem);
}
.page-hero .lead{max-width:62ch}
.aside-box{
  padding:22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.aside-box strong{
  display:block;
  margin-bottom:7px;
  font-size:.95rem;
}
.aside-box p{
  color:var(--muted);
  font-size:.86rem;
  line-height:1.6;
}

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:7px;
  margin-bottom:22px;
  color:#708197;
  font-size:.74rem;
}
.breadcrumbs a{color:var(--blue-dark);text-decoration:none}
.breadcrumbs svg{width:14px;height:14px}

/* Sections and grids */
.section{
  padding:82px 0;
  content-visibility:auto;
  contain-intrinsic-size:1px 700px;
}
.section.soft{background:var(--surface)}
.section.navy{background:var(--navy)}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
}
.section-head>div{max-width:760px}
.section-head h2{margin-bottom:10px}

.grid2,
.grid3,
.role-grid,
.seo-link-grid,
.media-link-grid,
.proof-grid,
.contact-grid,
.split{
  display:grid;
  gap:20px;
}
.grid2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid3{grid-template-columns:repeat(3,minmax(0,1fr))}
.role-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.seo-link-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.media-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.proof-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:stretch}
.split{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}
.contact-grid{grid-template-columns:minmax(270px,.7fr) minmax(0,1.3fr);align-items:start}

.card,
.role-card,
.seo-link-card,
.profile-card,
.media-card,
.media-link-card,
.form-card,
.contact-card,
.faq-item,
.testimonial-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.card{
  display:flex;
  min-height:245px;
  flex-direction:column;
  padding:24px;
}
.card p,
.role-card p,
.media-link-card p,
.profile-card p,
.media-card p{color:var(--muted)}
.card .link-arrow{margin-top:auto;padding-top:18px}

.card-icon,
.media-icon{
  display:grid;
  width:46px;
  height:46px;
  place-items:center;
  margin-bottom:18px;
  border-radius:13px;
  background:#eaf4ff;
  color:var(--blue);
}
.card-icon svg,
.media-icon svg{width:22px;height:22px}
.card-icon.cyan{background:#e7f8fd;color:#058ab9}
.card-icon.green{background:#e8f7f1;color:#178164}
.card-icon.purple{background:#f0ecff;color:#6e55ce}
.card-icon.orange{background:#fff2e6;color:#b9651c}
.card-icon.red{background:#fff0f1;color:#c34f5a}

.role-card{padding:24px}
.role-card .btn{margin-top:17px}
.meta-note{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:16px;
}
.meta-note span{
  padding:5px 8px;
  border-radius:999px;
  background:var(--surface);
  color:#56687e;
  font-size:.69rem;
  font-weight:750;
}

.seo-link-card{
  padding:22px;
  text-decoration:none;
  transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.seo-link-card:hover{
  border-color:#aac2d8;
  box-shadow:var(--shadow);
  transform:translateY(-2px);
}
.seo-link-card strong{
  display:block;
  margin-bottom:6px;
  font-size:.98rem;
}
.seo-link-card span{
  color:var(--muted);
  font-size:.82rem;
}

.dark-panel{
  padding:30px;
  border:1px solid #cddfeb;
  border-radius:22px;
  background:#edf6fc;
}
.dark-panel h2{font-size:clamp(1.8rem,2.8vw,2.45rem)}
.dark-panel p{color:var(--muted)}

.feature-list{display:grid;gap:12px;margin-top:22px}
.feature{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:13px;
  padding:15px;
  border:1px solid #d4e3ef;
  border-radius:14px;
  background:#fff;
}
.feature>span{
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border-radius:11px;
  background:#e8f3fc;
  color:var(--blue);
}
.feature>span svg{width:20px;height:20px}
.feature h3{margin-bottom:3px;font-size:.9rem}
.feature p{font-size:.8rem;line-height:1.5}

.stack>*+*{margin-top:18px}
.checks{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.checks li{
  display:grid;
  grid-template-columns:20px minmax(0,1fr);
  gap:10px;
  color:#41546b;
}
.checks svg{width:18px;height:18px;color:var(--blue)}

.steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  counter-reset:step;
}
.step{
  position:relative;
  min-height:180px;
  padding:54px 21px 22px;
  border:1px solid var(--line);
  border-radius:17px;
  background:#fff;
}
.step::before{
  position:absolute;
  top:18px;
  left:20px;
  display:grid;
  width:27px;
  height:27px;
  place-items:center;
  border-radius:9px;
  color:#fff;
  background:var(--blue);
  content:counter(step);
  counter-increment:step;
  font-size:.72rem;
  font-weight:850;
}
.step p{color:var(--muted);font-size:.84rem}

.content-section{display:grid;gap:16px}
.content-section p,
.content-section li{color:var(--muted)}
.content-section ul{
  display:grid;
  gap:9px;
  margin:0;
  padding-left:20px;
}

.faq-list{display:grid;gap:13px}
.faq-item{padding:22px}
.faq-item h3{margin-bottom:7px}
.faq-item p{color:var(--muted);font-size:.88rem}

.notice{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:13px;
  padding:18px;
  border:1px solid #cddfeb;
  border-radius:15px;
  background:#f2f8fd;
}
.notice>svg,
.notice>span:first-child{
  width:22px;
  height:22px;
  color:var(--blue);
}
.notice strong{display:block;margin-bottom:4px}
.notice p{color:var(--muted);font-size:.84rem}

/* About */
.profile-card,
.media-card{display:flex;min-height:100%;flex-direction:column;padding:28px}
.profile-card h2,
.media-card h2{font-size:clamp(1.7rem,2.6vw,2.25rem)}
.kicker{color:var(--blue-dark)!important;font-weight:750}
.trust-points{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:auto;
  padding-top:22px;
}
.trust-point{
  padding:13px;
  border-radius:13px;
  background:var(--surface);
}
.trust-point strong{display:block;margin-bottom:3px;font-size:.9rem}
.trust-point span{display:block;color:var(--muted);font-size:.7rem;line-height:1.4}
.media-card{justify-content:space-between;background:var(--navy);color:#fff}
.media-card h2{color:#fff}
.media-card p{color:#ccdae6}
.media-source{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
  color:#8edfff;
  font-size:.74rem;
  font-weight:800;
}
.media-source svg{width:19px;height:19px}
.media-card .link-arrow{color:#8edfff}

.media-link-card{
  display:flex;
  min-height:250px;
  flex-direction:column;
  padding:24px;
}
.media-link-card .link-arrow{margin-top:auto;padding-top:18px}

.team-contact-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:26px 28px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--surface);
}
.team-contact-panel-copy{max-width:800px}
.team-contact-panel h2{font-size:clamp(1.45rem,2.3vw,2rem)}
.team-contact-panel p{color:var(--muted)}

/* Testimonials */
.testimonial-section{background:#f7faff}
.testimonial-slider{max-width:880px;margin-inline:auto}
.testimonial-viewport{overflow:hidden;border-radius:22px}
.testimonial-track{display:flex}
.testimonial-slide{flex:0 0 100%;min-width:100%}
.testimonial-feature-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow);
}
.testimonial-copy{
  position:relative;
  min-height:230px;
  padding:38px 42px 32px;
}
.testimonial-copy::before{
  position:absolute;
  top:15px;
  left:20px;
  color:#dcecff;
  content:"“";
  font-family:Georgia,serif;
  font-size:4.7rem;
  line-height:1;
}
.testimonial-kicker{
  position:relative;
  display:inline-block;
  margin-bottom:18px;
  color:var(--blue-dark);
  font-size:.72rem;
  font-weight:850;
}
.testimonial-copy blockquote{
  position:relative;
  margin:0;
  color:var(--ink);
  font-size:clamp(1.05rem,1.8vw,1.32rem);
  line-height:1.65;
  text-wrap:pretty;
}
.testimonial-reviewer{
  display:flex;
  align-items:center;
  gap:14px;
  padding:19px 24px;
  border-top:1px solid var(--line);
  background:var(--surface);
}
.testimonial-initials{
  display:grid;
  width:48px;
  height:48px;
  flex:none;
  place-items:center;
  border-radius:14px;
  color:#fff;
  background:var(--blue);
  font-size:.78rem;
  font-weight:850;
}
.testimonial-reviewer strong,
.testimonial-person strong{display:block}
.testimonial-reviewer>div>span,
.testimonial-person>div>span{
  display:block;
  color:var(--muted);
  font-size:.8rem;
}
.testimonial-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:16px;
}
.testimonial-progress{color:var(--muted);font-size:.82rem;font-weight:750}
.testimonial-progress [data-slider-current]{color:var(--blue-dark);font-size:1.05rem}
.testimonial-buttons{display:flex;gap:8px}
.testimonial-buttons button{
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border:1px solid var(--line);
  border-radius:12px;
  color:var(--ink);
  background:#fff;
}
.testimonial-buttons button:hover{border-color:#aac2d8;color:var(--blue-dark)}
.testimonial-buttons svg{width:17px;height:17px}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.testimonial-card{
  display:flex;
  min-height:100%;
  flex-direction:column;
  padding:25px;
}
.testimonial-quote{
  color:#2c4058;
  font-size:.98rem;
  line-height:1.65;
}
.testimonial-person{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:auto;
  padding-top:22px;
}

/* CTA */
.cta{
  padding:32px;
  border-radius:22px;
  background:var(--navy-dark);
  box-shadow:0 20px 48px rgba(12,36,61,.15);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.cta h2{color:#fff}
.cta p{max-width:650px;color:#c7d6e3}
.cta .eyebrow{color:#8edfff}
.cta .eyebrow::before{background:#8edfff}
.cta .btn.secondary{
  border-color:#3b5d79;
  color:#fff;
  background:#1b3d5b;
}

/* Contact */
.contact-side{display:grid;gap:16px}
.contact-card,
.form-card{padding:25px}
.details{display:grid;gap:14px;margin-top:20px}
.detail{
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  gap:12px;
  align-items:center;
}
.detail>span{
  display:grid;
  width:40px;
  height:40px;
  place-items:center;
  border-radius:11px;
  background:#eaf4ff;
  color:var(--blue);
}
.detail>span svg{width:19px;height:19px}
.detail small{display:block;color:var(--muted);font-size:.7rem}
.detail a,.detail b{font-size:.84rem;text-decoration:none}

.form-card>p{color:var(--muted)}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}
.field{min-width:0}
.field.full{grid-column:1/-1}
.field label{
  display:block;
  margin-bottom:6px;
  color:#32475f;
  font-size:.77rem;
  font-weight:750;
}
.field input,
.field select,
.field textarea{
  width:100%;
  min-height:46px;
  padding:11px 12px;
  border:1px solid #cddbe7;
  border-radius:11px;
  color:var(--ink);
  background:#fff;
  outline:none;
}
.field textarea{min-height:140px;resize:vertical}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(40,127,229,.12);
}
.field-help{display:block;margin-top:5px;color:var(--muted);font-size:.69rem}
.form-actions{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:4px;
}
.form-note{max-width:540px;color:var(--muted);font-size:.73rem}
.status{
  display:none;
  margin-top:16px;
  padding:14px;
  border:1px solid #b9decf;
  border-radius:12px;
  color:#175c48;
  background:#edf9f4;
  font-size:.82rem;
}
.status.show{display:block}

/* Footer */
.footer{
  padding:62px 0 24px;
  color:#c8d6e3;
  background:var(--navy-dark);
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(280px,1.35fr) repeat(3,minmax(150px,.65fr));
  gap:40px;
}
.footer h3{margin-bottom:14px;color:#fff;font-size:.9rem}
.footer-brand img{
  width:142px;
  height:auto;
  margin-bottom:16px;
  padding:8px;
  border-radius:12px;
  background:#fff;
}
.footer-brand p{max-width:370px;color:#bdcddd;font-size:.83rem}
.footer-links,
.footer-contact{display:grid;gap:9px}
.footer-links a,
.footer-contact a{
  color:#c8d6e3;
  font-size:.8rem;
  text-decoration:none;
}
.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover{color:#fff}
.footer-contact p{color:#c8d6e3;font-size:.8rem}
.footer-social{display:grid;gap:8px;margin-top:18px}
.footer-social a{
  display:flex;
  align-items:center;
  gap:8px;
  color:#c8d6e3;
  font-size:.77rem;
  font-weight:700;
  text-decoration:none;
}
.footer-social svg{width:17px;height:17px;flex:none}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:44px;
  padding-top:20px;
  border-top:1px solid #29445d;
  color:#8fa3b5;
  font-size:.72rem;
}
.footer-bottom>div{display:flex;gap:16px}
.footer-bottom a{color:#aebfce;text-decoration:none}

/* Responsive */
@media(max-width:1100px){
  .nav-links{gap:14px}
  .nav-links>a{font-size:.77rem}
  .hero-grid{grid-template-columns:minmax(0,1fr) minmax(340px,.82fr);gap:36px}
  .page-hero-grid{grid-template-columns:minmax(0,1.35fr) minmax(270px,.65fr);gap:36px}
  .grid3,.seo-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .testimonial-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:960px){
  .nav-links{
    position:fixed;
    top:77px;
    right:0;
    bottom:0;
    left:0;
    display:none;
    align-content:start;
    align-items:stretch;
    gap:0;
    padding:20px;
    overflow:auto;
    background:#fff;
  }
  .nav-links.open{display:grid}
  .nav-links>a{
    padding:15px 4px;
    border-bottom:1px solid var(--line);
    font-size:.92rem;
  }
  .nav-links>a[aria-current="page"]::after{display:none}
  .nav-links .mobile-cta{
    display:inline-flex;
    width:100%;
    margin-top:18px;
    border:0;
    color:#fff;
  }
  .nav-actions>.btn{display:none}
  .menu-button{display:grid}

  .hero-grid,
  .page-hero-grid,
  .split,
  .proof-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .page-hero-grid{align-items:start}
  .page-hero .aside-box{max-width:680px}
  .hero-copy h1{max-width:14ch}
  .job-board{max-width:700px}
  .cta-inner{align-items:flex-start;flex-direction:column}
  .trust-points{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:720px){
  .container{width:min(100% - 32px,var(--content))}
  .navbar{min-height:70px}
  .nav-links{top:71px}
  .brand img{width:106px}

  h1{font-size:clamp(2.25rem,11vw,3.15rem)}
  h2{font-size:clamp(1.75rem,8vw,2.45rem)}
  .hero,.page-hero{padding:50px 0}
  .section{padding:58px 0}
  .section-head{align-items:flex-start;flex-direction:column;margin-bottom:26px}

  .job-type-links,
  .grid2,
  .grid3,
  .role-grid,
  .seo-link-grid,
  .media-link-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .job-type-link{
    grid-template-columns:42px minmax(0,1fr);
  }
  .job-type-link b{
    grid-column:2;
    justify-self:start;
  }

  .board{padding:18px}
  .board-head{align-items:flex-start;flex-direction:column;gap:8px}
  .mini-job{grid-template-columns:38px minmax(0,1fr)}
  .mini-icon{width:38px;height:38px}

  .grid3 .card{min-height:0}
  .steps{grid-template-columns:1fr}
  .step{min-height:0}
  .trust-points{grid-template-columns:1fr}
  .team-contact-panel{align-items:flex-start;flex-direction:column}
  .team-contact-panel .btn{width:100%}
  .testimonial-copy{min-height:0;padding:32px 26px 28px}
  .testimonial-copy::before{left:11px}
  .testimonial-reviewer{padding:16px 20px}
  .testimonial-controls{margin-top:13px}
  .form-grid{grid-template-columns:1fr}
  .field.full,.form-actions{grid-column:1}
  .form-actions{align-items:stretch;flex-direction:column}
  .form-actions .btn{width:100%}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{align-items:flex-start;flex-direction:column}
}

@media(max-width:420px){
  .container{width:calc(100% - 24px)}
  .hero-actions,
  .cta-actions{align-items:stretch;flex-direction:column}
  .hero-actions .btn,
  .cta-actions .btn{width:100%}
  .proof-line{display:grid;gap:9px}
  .board-note{padding:14px}
  .experience-stat{font-size:.88rem}
  .card,.role-card,.profile-card,.media-card,.media-link-card,.form-card,.contact-card{padding:20px}
  .dark-panel{padding:22px}
  .cta{padding:24px 20px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
  }
}

/* V15 responsive QA corrections */
.mini-job b{
  grid-column:2;
  margin-top:1px;
  line-height:1.35;
}

.trust-strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.trust-strip .container{
  display:flex;
  min-height:72px;
  align-items:center;
  justify-content:center;
  gap:12px 24px;
  flex-wrap:wrap;
}
.trust-strip strong{
  font-size:.86rem;
}
.trust-strip span:not(.dot){
  color:#4f6278;
  font-size:.8rem;
}
.trust-strip .dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:#b6c6d6;
}

@media(max-width:1040px){
  .nav-links{
    position:fixed;
    top:77px;
    right:0;
    bottom:0;
    left:0;
    display:none;
    align-content:start;
    align-items:stretch;
    gap:0;
    padding:20px;
    overflow:auto;
    background:#fff;
  }
  .nav-links.open{display:grid}
  .nav-links>a{
    padding:15px 4px;
    border-bottom:1px solid var(--line);
    font-size:.92rem;
  }
  .nav-links>a[aria-current="page"]::after{display:none}
  .nav-links .mobile-cta{
    display:inline-flex;
    width:100%;
    margin-top:18px;
    border:0;
    color:#fff;
  }
  .nav-actions>.btn{display:none}
  .menu-button{display:grid}
}

@media(max-width:720px){
  .trust-strip .container{
    min-height:0;
    align-items:flex-start;
    justify-content:flex-start;
    gap:8px;
    padding-block:18px;
  }
  .trust-strip strong{
    width:100%;
  }
  .trust-strip .dot{display:none}
  .trust-strip span:not(.dot){
    display:inline-flex;
    padding:5px 8px;
    border-radius:999px;
    background:var(--surface);
  }
}

/* V15 final visual QA */
.page-hero h1{
  max-width:22ch;
  font-size:clamp(2.45rem,4vw,3.45rem);
}

.testimonial-quote{
  margin:0;
}

.testimonial-person .testimonial-initials{
  display:grid;
  place-items:center;
  color:#fff;
  line-height:1;
}

.testimonial-person>div span{
  color:var(--muted);
}

/* V17 tested mobile navigation */
.menu-button{
  cursor:pointer;
  touch-action:manipulation;
}

@media(min-width:1041px){
  .nav-links{
    display:flex !important;
    position:static !important;
  }
  .menu-button{
    display:none !important;
  }
}

@media(max-width:1040px){
  .site-header{
    z-index:1000;
  }

  .nav-links{
    position:fixed !important;
    z-index:999;
    top:71px !important;
    right:0 !important;
    bottom:0 !important;
    left:0 !important;
    display:none !important;
    width:100% !important;
    max-width:none !important;
    align-content:start;
    align-items:stretch;
    gap:0 !important;
    margin:0 !important;
    padding:18px 20px 34px !important;
    overflow-y:auto;
    overscroll-behavior:contain;
    background:#fff;
    box-shadow:0 18px 40px rgba(16,35,63,.12);
  }

  .nav-links.open{
    display:flex !important;
    flex-direction:column;
  }

  .nav-links>a{
    display:flex;
    min-height:52px;
    align-items:center;
    padding:13px 4px !important;
    border-bottom:1px solid var(--line);
    font-size:.94rem !important;
  }

  .nav-links>a[aria-current="page"]::after{
    display:none !important;
  }

  .nav-links .mobile-cta{
    display:inline-flex !important;
    min-height:48px;
    margin-top:18px;
    padding-inline:18px !important;
    border:0;
    color:#fff;
  }

  .nav-actions>.btn{
    display:none !important;
  }

  .menu-button{
    position:relative;
    z-index:1001;
    display:grid !important;
    flex:none;
  }

  body.menu-open::after{
    position:fixed;
    z-index:998;
    top:71px;
    right:0;
    bottom:0;
    left:0;
    background:rgba(12,36,61,.18);
    content:"";
    pointer-events:none;
  }
}

/* Testimonials page uses the same component as the homepage */
.testimonial-page-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.testimonial-page-grid .testimonial-feature-card{
  display:flex;
  min-height:100%;
  flex-direction:column;
}

.testimonial-page-grid .testimonial-copy{
  flex:1;
}

.testimonial-page-grid .testimonial-feature-card:first-child{
  grid-column:1/-1;
}

@media(max-width:760px){
  .testimonial-page-grid{
    grid-template-columns:1fr;
  }

  .testimonial-page-grid .testimonial-feature-card:first-child{
    grid-column:auto;
  }
}

/* V18 testimonial initials — explicitly centred on every page */
.testimonial-reviewer>.testimonial-initials,
.testimonial-person>.testimonial-initials{
  display:grid !important;
  width:48px;
  height:48px;
  flex:0 0 48px;
  place-items:center !important;
  margin:0;
  padding:0;
  border-radius:14px;
  color:#fff !important;
  background:var(--blue);
  font-size:.78rem !important;
  font-weight:850;
  line-height:1 !important;
  text-align:center;
  letter-spacing:0;
}
.testimonial-reviewer>.testimonial-initials{align-self:center}
@media(max-width:420px){
  .testimonial-reviewer{gap:12px}
  .testimonial-reviewer>.testimonial-initials{
    width:44px;
    height:44px;
    flex-basis:44px;
  }
}

/* V18 mobile fixed-position containment correction */
@media(max-width:1040px){
  .site-header{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    overflow:visible !important;
    background:#fff;
  }
}
