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

@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('/fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('/fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --primary: #013778;
  --secondary: #000000;
  --body-text: #000000;
  --accent: #279b51;
  --bright-green: #2ecc71;
  --blue: #0f57af;
  --deep-blue: #0b4da2;
  --process-blue: #1f5392;
  --pale-blue: #eaf1fb;
  --surface: #f8fbff;
  --card-blue: #083b7a;
  --footer-blue: #0f2548;
  --copy: #444444;
  --muted-blue: #cce0ff;
  --line: #e3eaf7;
  --container: 1200px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body-text);
  background: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.fa-solid,
.fa-regular {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fa-solid {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.fa-regular {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

.fa-award::before { content: '\f559'; }
.fa-bolt::before { content: '\f0e7'; }
.fa-bullseye::before { content: '\f140'; }
.fa-calendar-check::before { content: '\f274'; }
.fa-check::before { content: '\f00c'; }
.fa-check-circle::before { content: '\f058'; }
.fa-chevron-down::before { content: '\f078'; }
.fa-chevron-up::before { content: '\f077'; }
.fa-clipboard-check::before { content: '\f46c'; }
.fa-comments::before { content: '\f086'; }
.fa-envelope::before { content: '\f0e0'; }
.fa-hand-holding-heart::before { content: '\f4be'; }
.fa-handshake::before { content: '\f2b5'; }
.fa-mobile-alt::before { content: '\f3cd'; }
.fa-phone::before { content: '\f095'; }
.fa-phone-alt::before { content: '\f879'; }
.fa-pound-sign::before { content: '\f154'; }
.fa-shield-alt::before { content: '\f3ed'; }
.fa-times::before { content: '\f00d'; }
.fa-user-tie::before { content: '\f508'; }
.fa-users::before { content: '\f0c0'; }
.fa-bars::before { content: '\f0c9'; }

.site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-shell {
  width: min(calc(100% - 80px), var(--container));
  min-height: 84px;
  margin: 0 auto;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 20% minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.brand {
  display: block;
  width: 100%;
  max-width: 235px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav a,
.footer a,
.button,
.text-link {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone .fa-solid,
.header-actions .header-icon {
  color: var(--accent);
}

.header-icon {
  display: none;
  font-size: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

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

.button-green {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.button-green:hover,
.button-green:focus-visible {
  background: #238a46;
  border-color: #238a46;
}

.button-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
}

.button-blue {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.button-blue:hover,
.button-blue:focus-visible {
  background: #0f57af;
  border-color: #0f57af;
}

.mobile-menu-button {
  display: none;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 22px;
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #eef2f7;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.06);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid #eef2f7;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--surface);
  color: var(--accent);
}

.section {
  position: relative;
}

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

.eyebrow {
  margin: 0 0 4px;
  color: var(--bright-green);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: none;
}

.section-title {
  margin: 0 0 16px;
  color: var(--primary);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.section-copy {
  margin: 0;
  color: var(--body-text);
  font-size: 16px;
  line-height: 26px;
}

.section-copy + .section-copy {
  margin-top: 16px;
}

.hero {
  overflow: hidden;
  padding: 80px 40px;
  background-image: linear-gradient(90deg, rgba(15, 87, 175, 0.94) 0%, rgba(1, 55, 120, 0.9) 40%, rgba(1, 55, 120, 0.45) 74%, rgba(1, 55, 120, 0.12) 100%), url('/assets/hero-consultation.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .section-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 372px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
}

.hero-title {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}

.inline-benefits,
.check-list,
.contact-list,
.trust-list {
  padding: 0;
  list-style: none;
}

.inline-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.inline-benefits li,
.check-list li,
.trust-list li {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.inline-benefits .fa-solid,
.check-list .fa-solid,
.trust-list .fa-solid {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--bright-green);
  font-size: 13px;
}

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

.hero-actions .button {
  min-height: 54px;
  padding: 14px 22px;
  border-width: 2px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
}

.about {
  padding: 80px 10px;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 10px;
}

.about-copy {
  padding-right: 28px;
}

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

.stat-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f4f7fc;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

.stat-card span {
  color: var(--body-text);
  font-size: 15px;
  line-height: 24px;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.feature-icon,
.process-icon,
.reason-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f5e9;
  font-size: 18px;
}

.feature-box h3,
.process-card h3,
.reason-card h3 {
  margin: 0;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.feature-box p,
.process-card p,
.reason-card p {
  margin: 0;
  color: var(--body-text);
  font-size: 14px;
  line-height: 24px;
}

.services {
  padding: 80px 20px;
  background: var(--surface);
}

.services-grid,
.documentation-grid {
  display: grid;
  align-items: center;
  gap: 20px;
}

.services-grid {
  grid-template-columns: 55% 45%;
}

.services-copy {
  padding-right: 20px;
}

.services-copy .button {
  margin-top: 20px;
}

.benefit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  color: var(--copy);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.check-list .fa-solid {
  font-size: 15px;
}

.media-frame {
  overflow: hidden;
  border-radius: 10px;
}

.media-frame img {
  width: 100%;
  height: auto;
}

.documentation {
  padding: 80px 20px;
  background: var(--pale-blue);
}

.documentation-grid {
  grid-template-columns: 45% 55%;
}

.documentation-copy {
  padding-left: 20px;
}

.application-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.application-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid #dde8f5;
  border-radius: 6px;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.application-item .application-emoji {
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
}

.process {
  padding: 80px 20px;
  background: var(--blue);
}

.process .section-title,
.process .eyebrow {
  color: #ffffff;
  text-align: center;
}

.process .section-title {
  margin-bottom: 24px;
}

.process-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 20px;
  border-radius: 14px;
  background: var(--process-blue);
}

.process-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.process-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 20px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.process-card h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
}

.process-card p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}

.reasons {
  padding: 80px 20px;
  background: #ffffff;
}

.reasons-heading {
  text-align: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.reason-card {
  min-height: 190px;
  padding: 20px;
  border-radius: 10px;
  background: var(--surface);
}

.reason-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #e8f0fb;
  color: var(--primary);
  font-size: 30px;
}

.reason-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.reason-card p {
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
}

.faq {
  padding: 80px 20px;
  background: var(--pale-blue);
}

.faq-heading {
  text-align: center;
}

.accordion {
  width: 100%;
  margin-top: 28px;
  border: 1px solid var(--blue);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--blue);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border: 0;
  background: var(--blue);
  color: #ffffff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  background: #0b4da2;
}

.accordion-trigger .fa-solid {
  flex: 0 0 auto;
  margin-left: 14px;
  color: #ffffff;
  font-size: 14px;
}

.accordion-panel {
  display: none;
  padding: 30px;
  background: #eaeaea;
  color: #000000;
  font-size: 16px;
  line-height: 26px;
}

.accordion-panel p {
  margin: 0;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.contact {
  padding: 80px 20px;
  background: var(--deep-blue);
}

.contact-heading {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.contact-heading .eyebrow,
.contact-heading .section-title,
.contact-heading p {
  color: #ffffff;
}

.contact-heading p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 14px;
  background: var(--card-blue);
}

.contact-card h3,
.form-card h3 {
  margin: 0 0 2px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

.contact-card h3 {
  color: #ffffff;
}

.contact-panel {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-list,
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  color: var(--muted-blue);
  font-size: 14px;
  line-height: 24px;
}

.contact-list li {
  align-items: center;
}

.contact-list .fa-solid,
.trust-list .fa-solid {
  width: 18px;
  color: var(--bright-green);
  font-size: 14px;
  text-align: center;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: #ffffff;
}

.trust-list {
  gap: 8px;
  font-size: 13px;
}

.form-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-card h3 {
  color: var(--primary);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.step-form label {
  color: #000000;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.form-field input,
.form-field select,
.form-field textarea,
.step-form input,
.step-form textarea {
  width: 100%;
  border: 1px solid #a0a0a0;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  padding: 12px 15px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.step-form input::placeholder,
.step-form textarea::placeholder {
  color: #aabbcc;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.step-form input:focus,
.step-form textarea:focus {
  border-color: var(--primary);
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
}

.form-actions .button {
  width: 100%;
  min-height: 50px;
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.form-actions .button:hover,
.form-actions .button:focus-visible {
  background: #238a46;
  border-color: #238a46;
}

.form-note {
  margin: 12px 0 0;
  color: #6b7b8f;
  font-size: 12px;
  line-height: 18px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 13px;
  line-height: 20px;
}

.form-status.is-error {
  color: #b42318;
}

.consultation-section {
  padding: 80px 20px;
  background: var(--blue);
}

.consultation-section .section-inner {
  max-width: 800px;
}

.consultation-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  line-height: 62px;
  text-align: center;
}

.step-form {
  padding: 50px;
  border-radius: 10px;
  background: #ffffff;
}

.step {
  display: none;
}

.step.is-active {
  display: block;
}

.step-title {
  margin: 0 0 18px;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.service-options {
  display: grid;
  gap: 10px;
}

.service-option {
  position: relative;
}

.service-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.service-option label {
  display: block;
  padding: 15px;
  border: 1px solid #334155;
  border-radius: 10px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
}

.service-option label:hover,
.service-option input:focus-visible + label {
  border-color: var(--blue);
}

.service-option input:checked + label {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

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

.step-grid .form-field.full {
  grid-column: 1 / -1;
}

.step-form .form-field label {
  font-size: 16px;
}

.step-form .form-field input,
.step-form .form-field textarea {
  border-color: #a0a0a0;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.step-actions .button {
  min-width: 150px;
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.step-actions .button:hover,
.step-actions .button:focus-visible {
  background: #12d966;
  border-color: #12d966;
}

.step-actions .button-previous {
  background: transparent;
  border-color: transparent;
  color: #64748b;
}

.step-actions .button-previous:hover,
.step-actions .button-previous:focus-visible {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
}

.thank-you-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.thank-you-section .section-inner {
  max-width: 760px;
}

.thank-you-section h1 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 52px;
  font-weight: 800;
  line-height: 62px;
}

.thank-you-section p {
  margin: 0 auto 14px;
  color: #000000;
  font-size: 16px;
  line-height: 26px;
}

.thank-you-section p + p {
  max-width: 680px;
  font-size: 15px;
  line-height: 27px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.footer {
  padding: 24px 20px;
  background: var(--footer-blue);
  color: var(--muted-blue);
  text-align: center;
}

.footer h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.footer p {
  margin: 8px 0 0;
  color: var(--muted-blue);
  font-size: 14px;
  line-height: 1.8;
}

.footer p:last-child {
  margin-top: 10px;
  color: #9eb3d0;
  font-size: 12px;
}

.footer a {
  color: #ffffff;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--bright-green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .header-shell {
    width: min(calc(100% - 40px), var(--container));
    min-height: 70px;
    padding: 12px 0;
    grid-template-columns: 35% minmax(0, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    gap: 8px;
  }

  .header-phone {
    font-size: 13px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero .section-inner {
    grid-template-columns: 90% 10%;
  }

  .hero-title {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .services-media {
    order: -1;
  }

  .services-copy {
    padding-right: 0;
  }

  .documentation-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr 1.35fr;
  }

  .consultation-section {
    padding: 50px 20px;
  }

  .consultation-title,
  .thank-you-section h1 {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .header-shell {
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 10px 0;
    grid-template-columns: 54% minmax(0, 1fr) auto;
  }

  .brand {
    max-width: 200px;
  }

  .header-phone {
    display: none;
  }

  .header-actions .header-icon {
    display: inline-block;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .mobile-menu-button {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .section-inner {
    width: calc(100% - 20px);
  }

  .hero {
    padding: 50px 10px;
    background-position: 60% center;
  }

  .hero .section-inner {
    display: block;
    min-height: 0;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-copy {
    line-height: 24px;
  }

  .inline-benefits {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .about,
  .services,
  .documentation,
  .process,
  .reasons,
  .faq,
  .contact,
  .thank-you-section {
    padding: 50px 10px;
  }

  .about-grid,
  .documentation-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .documentation-copy {
    padding: 0;
  }

  .section-title {
    font-size: 26px;
    line-height: 36px;
  }

  .stats-grid {
    margin-top: 20px;
  }

  .feature-stack {
    margin-top: 20px;
  }

  .benefit-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-grid .services-media {
    order: -1;
  }

  .documentation-grid .documentation-media {
    order: -1;
  }

  .process-panel {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .accordion-trigger {
    padding: 16px;
    font-size: 15px;
    line-height: 24px;
  }

  .accordion-panel {
    padding: 22px;
    font-size: 15px;
    line-height: 25px;
  }

  .contact-heading {
    margin-bottom: 28px;
  }

  .contact-card h3,
  .form-card h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .form-card {
    padding: 18px;
  }

  .form-grid,
  .step-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-field.full,
  .step-grid .form-field.full {
    grid-column: auto;
  }

  .consultation-section {
    padding: 40px 15px;
  }

  .consultation-section .section-inner {
    width: 100%;
  }

  .consultation-title,
  .thank-you-section h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .step-form {
    padding: 26px 20px;
  }

  .step-title {
    font-size: 22px;
    line-height: 30px;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .step-actions .button {
    width: 100%;
  }

  .thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .footer {
    padding: 24px 10px;
  }

  .footer p {
    font-size: 13px;
  }
}
