* { box-sizing: border-box; }

:root {
  --navy: #07101a;
  --navy-2: #0a1623;
  --navy-3: #0e1b29;
  --paper: #f3f1ed;
  --white: #f8f6f2;
  --text: #e9e7e2;
  --muted: #a5afb9;
  --blue: #7894b2;
  --blue-soft: #93abc3;
  --line: rgba(138, 164, 190, .42);
  --line-soft: rgba(255,255,255,.12);
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: "Montserrat", "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 10%, rgba(55,91,125,.10), transparent 32%),
    radial-gradient(circle at 15% 60%, rgba(62,91,119,.06), transparent 28%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--navy);
  z-index: 60;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(7,16,26,.45);
}

.container {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,16,26,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  letter-spacing: .04em;
}

.brand-text {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #aab4bf;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--white); }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: .2s ease;
}

/* Improved focus visibility for keyboard users */
.btn:focus-visible {
  outline: 3px solid rgba(120,148,178,.18);
  outline-offset: 3px;
}

.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 40px; padding: 0 18px; }
.btn-outline { border-color: var(--line); color: var(--blue-soft); }
.btn-outline:hover { border-color: var(--blue-soft); color: var(--white); }
.btn-primary { background: var(--paper); color: var(--navy); padding: 0 28px; min-height:56px; font-size:13px; border-radius:8px; box-shadow: 0 6px 24px rgba(7,16,26,.18); }
.btn-primary:hover { background: white; transform: translateY(-2px); }
.btn-primary.primary-cta { padding: 14px 36px; font-size:14px; letter-spacing: .09em; }
.btn-light { background: var(--paper); color: var(--navy); }

.hero {
  min-height: calc(100vh - 78px);
  padding: 92px 0 88px;
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 76px;
  align-items: center;
}

.hero-copy { position: relative; }

.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  color: var(--blue);
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.credibility-copy h2,
.cta-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(56px, 6.4vw, 88px);
  line-height: .98;
}

/* Slightly reduce hero H1 size on very small screens to avoid shift */
@media (max-width:420px) {
  .hero h1 { font-size: 36px; }
}

.hero-lead {
  max-width: 670px;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #b7c0c8;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(244,242,237,.65);
  padding: 38px 34px 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  box-shadow: inset 0 0 35px rgba(64,91,118,.04);
}

.panel-image { margin-bottom: 18px; }
.panel-image img { width: 100%; height: auto; display: block; border-radius: 6px; }

.hero-panel::before {
  content: "ND";
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  color: rgba(248,246,242,.08);
  letter-spacing: -.04em;
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.status-dot { width: 6px; height: 6px; border: 1px solid var(--blue); border-radius: 50%; }

.mini-flow { padding-top: 30px; }
.flow-item { display: grid; grid-template-columns: 42px 1fr; gap: 15px; }
.flow-num { color: #677b90; font-size: 10px; padding-top: 4px; letter-spacing: .08em; }
.flow-item strong {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 25px;
}
.flow-item p { margin: 4px 0 0; color: #909da9; font-size: 12px; line-height: 1.55; }
.flow-line { width: 1px; height: 30px; margin: 6px 0 6px 20px; background: var(--line); }

.pain-strip {
  border-block: 1px solid var(--line-soft);
  background: rgba(255,255,255,.018);
}

.pain-grid {
  min-height: 176px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 60px;
  align-items: center;
}

.pain-grid > p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; }
.pain-list span { color: #9ba8b4; font-size: 12px; }
.pain-list span::before { content: "|"; color: var(--blue); margin-right: 12px; }

.section { padding: 118px 0; }
.section-heading { max-width: 790px; margin-bottom: 60px; }
.section-heading.compact { max-width: 620px; margin-bottom: 0; }
.section-heading h2,
.credibility-copy h2,
.cta-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 4.6vw, 62px);
  line-height: 1.04;
}
.section-heading > p:last-child {
  max-width: 640px;
  margin-top: 22px;
  color: #9ca7b2;
  font-size: 14px;
  line-height: 1.75;
}



/* Services list for SMEs */
.services-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-top: 24px; padding-bottom: 24px; }
.services-list li { padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.services-list h3 { margin: 0 0 8px; color: var(--white); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-weight: 400; }
.services-list p { margin: 0; color: #9aa6b0; font-size: 14px; line-height: 1.6; }


.alt {
  background: var(--paper);
  color: var(--navy);
  border-block: 0;
}
.alt .eyebrow { color: #6e89a6; }
.alt .section-heading h2 { color: var(--navy); }
.process-wrap { display: grid; grid-template-columns: .86fr 1.14fr; gap: 92px; }
.steps { border-top: 1px solid rgba(7,16,26,.25); }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid rgba(7,16,26,.18); }
.step > span { color: #6c87a3; font-size: 10px; padding-top: 5px; letter-spacing: .12em; }
.step h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}
.step p { max-width: 550px; margin: 0; color: #59616a; font-size: 13px; line-height: 1.65; }

.credibility-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: start; }
.credibility-copy > p:not(.eyebrow) { margin: 25px 0; color: #99a5b0; font-size: 14px; line-height: 1.75; }
 .credibility-cards { border-top: 1px solid var(--line); }
/* client logos removed */
.stat-card { padding: 25px 0; border-bottom: 1px solid var(--line); }
.stat-label { display: block; margin-bottom: 11px; color: var(--blue); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.stat-card strong { color: var(--white); font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; font-weight: 400; }
.stat-card p { margin: 4px 0 0; color: #8f9ba6; font-size: 12px; }
.muted-link { color: #69798a; cursor: default; }

.cta-section { padding-bottom: 96px; }
.cta-card {
  min-height: 360px;
  padding: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  border: 1px solid rgba(244,242,237,.75);
  background: var(--navy-2);
  box-shadow: inset 0 0 42px rgba(71,98,124,.035);
}
.cta-card > div { max-width: 770px; }
.eyebrow.light { color: var(--blue); }
.cta-card p:not(.eyebrow) { max-width: 620px; margin: 18px 0 0; color: #9ca7b2; font-size: 13px; line-height: 1.7; }



.footer {
  padding: 38px 0 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  color: #83909c;
  font-size: 10px;
  letter-spacing: .05em;
}
.footer strong { color: var(--white); font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; font-weight: 400; }
.footer p { margin: 3px 0 0; color: #708090; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.copyright { white-space: nowrap; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 86px; }
  .hero-panel { max-width: 560px; }
  .pain-grid, .process-wrap, .credibility-grid { grid-template-columns: 1fr; }
  .pain-grid { padding: 42px 0; }
  .pain-list { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  
  .cta-card { padding: 42px 34px; flex-direction: column; align-items: flex-start; }
  .footer { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .nav { height: 68px; }
  .brand-text { display: none; }
  .hero { padding: 72px 0 68px; gap: 46px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .section { padding: 84px 0; }
  .section-heading h2, .credibility-copy h2, .cta-card h2 { font-size: 42px; }
  .hero-panel, .cta-card { padding: 30px 24px; }
}
