:root {
  --ink: #122023;
  --muted: #607076;
  --line: #dfe7ea;
  --soft: #f4f7f8;
  --white: #ffffff;
  --petrol: #07313a;
  --petrol-2: #0d4652;
  --orange: #f97316;
  --orange-dark: #dc5f08;
  --green: #168457;
  --shadow: 0 18px 45px rgba(7, 49, 58, 0.18);
  --shadow-soft: 0 14px 34px rgba(18, 32, 35, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #edf5f7;
  box-shadow: 0 10px 26px rgba(7, 49, 58, 0.12);
}

.brand-mark img {
  display: block;
  width: 38px;
  height: 38px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #415157;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a:hover {
  color: var(--orange);
}

.nav a[aria-current="page"] {
  color: var(--petrol);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.15), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 58%, #08242c 100%);
}

.hero-content {
  max-width: 780px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 6.3vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 26px;
  color: #dce9ec;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.68;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.check {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #eff8fa;
  font-weight: 800;
  line-height: 1.35;
}

.benefit-list li::before,
.check::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.local-note {
  max-width: 700px;
  margin: 0;
  color: #bcd2d8;
  line-height: 1.6;
}

.form-card {
  width: 100%;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.form-card-header h2,
.section-heading h2,
.split h2,
.final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.form-card-header p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.split p,
.final-cta p {
  color: var(--muted);
  line-height: 1.68;
}

.lead-form {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: #2d4147;
  font-size: 0.9rem;
  font-weight: 850;
}

label small {
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfdade;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.page-hero .button-secondary,
.contact-hero .button-secondary {
  color: var(--petrol);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 13px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-success {
  display: block;
  color: #0d5138;
  background: #e8f7ef;
}

.form-status.is-error {
  display: block;
  color: #7a271a;
  background: #fff1ed;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  color: #31464c;
  font-weight: 900;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 4vw, 56px);
}

.muted-section {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.cards {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.four-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.five-columns {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.three-columns,
.sector-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.sector-grid,
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
}

.text-link:hover {
  color: var(--orange-dark);
}

.page-hero {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(249, 115, 22, 0.16), transparent 30%),
    linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 60%, #08242c 100%);
}

.page-hero-inner {
  max-width: 920px;
}

.page-hero h1,
.contact-copy h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5.6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-hero p:not(.eyebrow),
.contact-copy p {
  max-width: 760px;
  color: #dce9ec;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.content-block {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.content-block p {
  color: var(--muted);
  line-height: 1.72;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.accent-block {
  color: var(--white);
  background: var(--petrol);
  border-color: transparent;
}

.accent-block p {
  color: #d8e9ed;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq.section {
  max-width: none;
}

.faq.section > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.68;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 71px);
  padding: clamp(50px, 7vw, 92px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.16), transparent 28%),
    linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 58%, #08242c 100%);
}

.contact-copy {
  max-width: 760px;
}

.contact-direct {
  display: inline-grid;
  gap: 6px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-direct strong {
  color: #d8e9ed;
}

.contact-direct a {
  color: #ffd2b2;
  font-weight: 900;
}

.section-dark {
  background: #092f38;
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.split p {
  color: #c9dde2;
}

.checklist {
  display: grid;
  gap: 12px;
}

.check {
  color: #f5fbfc;
}

.check::before {
  background: var(--green);
}

.clarity-section {
  background: linear-gradient(180deg, #f4f7f8 0%, #ffffff 100%);
}

.clarity-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.clarity-grid {
  display: grid;
  gap: 14px;
}

.clarity-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.clarity-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--orange);
  background: #fff3e8;
  font-weight: 900;
}

.clarity-card h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.clarity-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.confidence-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--petrol);
  box-shadow: var(--shadow-soft);
}

.confidence-note strong {
  font-size: 1.05rem;
}

.confidence-note span {
  max-width: 680px;
  color: #d8e9ed;
  line-height: 1.55;
}

.sector-section {
  background: var(--white);
}

.sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.sectors span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: #31464c;
  font-weight: 850;
}

.final-cta {
  max-width: 1060px;
  margin: clamp(58px, 8vw, 100px) auto;
  padding: clamp(42px, 7vw, 82px) clamp(22px, 6vw, 76px);
  border-radius: 8px;
  color: var(--white);
  text-align: center;
  background: var(--petrol);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #d8e9ed;
}

.final-cta a:not(.button) {
  color: #ffd2b2;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

.site-footer span {
  margin-top: 5px;
}

@media (max-width: 1020px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .clarity-wrap,
  .content-grid,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .four-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .five-columns,
  .three-columns,
  .sector-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confidence-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    width: 35px;
    height: 35px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.7rem);
  }

  .hero {
    padding-top: 34px;
  }

  .benefit-list,
  .form-grid,
  .four-columns,
  .five-columns,
  .three-columns,
  .sector-grid,
  .pricing-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .nav {
    font-size: 0.88rem;
  }

  .nav a {
    white-space: nowrap;
  }

  .page-hero,
  .contact-hero {
    padding-top: 42px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .form-card {
    padding: 20px;
  }

  .clarity-card {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}
