/* =============================================
   RheinKabel – German Cable Solutions
   Main Stylesheet
   ============================================= */

/* --- Custom Properties --- */
:root {
  --navy:        #00357A;
  --navy-dark:   #002358;
  --navy-light:  #1A4E9F;
  --gray-dark:   #5F6062;
  --gray-mid:    #8A8C8E;
  --gray-light:  #D4D6D8;
  --orange:      #FF7A1A;
  --orange-dark: #E06510;
  --bg-light:    #F6F8FB;
  --bg-white:    #FFFFFF;
  --text-dark:   #1A1C1E;
  --text-body:   #3A3C3E;

  --font-heading: 'Barlow', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);

  --transition:  0.3s ease;
  --section-pad: clamp(64px, 8vw, 120px) 0;
  --util-bar-h: 40px;
  --header-h:   108px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* --- Layout --- */
.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--bg-white);
  border-color: var(--orange);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,122,26,.35);
}

.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border-color: rgba(255,255,255,.55);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--bg-white);
  border-color: var(--navy);
}

.btn-navy:hover, .btn-navy:focus-visible {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =============================================
   UTILITY BAR
   ============================================= */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  height: var(--util-bar-h);
  background: #f0f2f5;
  border-bottom: 1px solid var(--gray-light);
}

.utility-items {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--util-bar-h);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
}

.utility-item + .utility-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-light);
}

.utility-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.utility-icon svg {
  width: 16px;
  height: 16px;
}

.utility-icon--orange { color: var(--orange); }
.utility-icon--wa { color: #25d366; }

.utility-item--whatsapp { padding: 0; }

.utility-wa-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.5rem;
  height: var(--util-bar-h);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.utility-wa-link:hover,
.utility-wa-link:focus-visible {
  background: rgba(37, 211, 102, 0.1);
  color: #1a9e4e;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: var(--util-bar-h);
  left: 0;
  right: 0;
  z-index: 900;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 53, 122, 0.1);
  box-shadow: 0 10px 30px rgba(0, 20, 60, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.site-header .logo-wrap .site-logo {
  display: block;
  width: auto;
  max-width: min(480px, 63vw);
  max-height: 78px;
  height: auto;
  object-fit: contain;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.3rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  line-height: 1;
}

.lang-btn:hover { color: var(--navy); background: var(--bg-light); }
.lang-btn.active { color: var(--navy); }
.lang-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.lang-sep {
  font-size: 0.65rem;
  color: var(--gray-light);
  user-select: none;
  line-height: 1;
}

.lang-switcher--mobile {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-light);
  justify-content: flex-start;
  gap: 4px;
}

.lang-switcher--mobile .lang-btn {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

/* --- Logo Mark --- */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .04em;
}

.logo-tagline {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-top: 2px;
}

/* --- Main Nav --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  padding: .5rem .85rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-dark);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--navy);
  background: var(--bg-light);
}

.nav-link.active { color: var(--navy); }

.nav-cta {
  margin-left: .5rem;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  background: var(--navy);
  color: var(--bg-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.site-header .main-nav .nav-link.nav-cta,
.site-header .main-nav .nav-link.nav-cta:visited,
.site-header .main-nav .nav-link.nav-cta:hover,
.site-header .main-nav .nav-link.nav-cta:focus,
.site-header .main-nav .nav-link.nav-cta:focus-visible,
.site-header .main-nav .nav-link.nav-cta.active {
  color: var(--bg-white);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover { background: var(--bg-light); }

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: calc(var(--util-bar-h) + var(--header-h));
}

/* Geometric cable-grid background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Stats strip */
.hero-stats {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-white);
  letter-spacing: -.02em;
}

.hero-stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Orange line divider at bottom of hero */
.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
}

/* =============================================
   INTRO SUMMARY
   ============================================= */
.intro-summary {
  padding: clamp(3.2rem, 6vw, 4.8rem) 0;
  background:
    linear-gradient(180deg, rgba(0, 53, 122, 0.06) 0%, rgba(0, 53, 122, 0) 55%),
    var(--bg-light);
}

.intro-summary__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.1rem;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  border: 1px solid rgba(0, 53, 122, 0.1);
  box-shadow: 0 14px 34px rgba(0, 20, 60, 0.08);
  overflow: hidden;
}

.intro-summary__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(0, 53, 122, 0.35) 58%, rgba(0, 53, 122, 0.08) 100%);
}

.intro-summary__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.95rem;
}

.intro-summary h2 {
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.intro-summary__text {
  color: #4a4c50;
  max-width: 54ch;
  line-height: 1.72;
}

.intro-summary__values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.intro-value {
  background: #fff;
  border: 1px solid rgba(0, 53, 122, 0.09);
  border-radius: 10px;
  padding: 0.95rem 0.95rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 20, 60, 0.05);
}

.intro-value__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  background:
    radial-gradient(circle at center, var(--orange) 0 38%, transparent 42%),
    rgba(0, 53, 122, 0.1);
  border: 1px solid rgba(0, 53, 122, 0.18);
}

.intro-value h3 {
  font-size: 0.94rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.intro-value p {
  font-size: 0.83rem;
  color: #515458;
  line-height: 1.55;
  max-width: none;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--section-pad);
  background: var(--bg-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-graphic {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-dark);
  border: 1px solid rgba(0, 53, 122, 0.18);
  box-shadow: 0 12px 40px rgba(0, 20, 60, 0.1);
}

.about-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  max-width: min(12rem, 46%);
  padding: 0.4rem 0.75rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a1a 0%, #e06510 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.about-badge__line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.58rem, 1.1vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.25;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10.5rem, 32%);
  gap: 0;
  min-height: 280px;
}

.about-panel__diagram {
  position: relative;
  background: linear-gradient(180deg, #001a42 0%, #002358 100%);
}

.about-diagram-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: left center;
}

.about-panel__legend {
  background: #0d1f3d;
  border-left: 1px solid rgba(255, 122, 26, 0.25);
  padding: 2rem 0.95rem 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-legend__title {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.95rem;
  max-width: none;
}

.about-panel__legend p {
  max-width: none;
}

.about-legend__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-legend__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 1.15vw, 0.82rem);
  font-weight: 700;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.93);
}

.about-legend__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 0.35em;
}

.about-text h2 { margin-bottom: 1.25rem; }

.about-text p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   SOLUTIONS
   ============================================= */
.solutions {
  position: relative;
  padding: clamp(5rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% -20%, rgba(0, 53, 122, 0.07) 0%, transparent 52%),
    linear-gradient(180deg, #eceff4 0%, var(--bg-light) 42%, #f3f5f8 100%);
  overflow: hidden;
}

.solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 53, 122, 0.03) 1px, transparent 1px);
  background-size: 100% 72px;
  opacity: 0.45;
  pointer-events: none;
}

.solutions .container {
  position: relative;
  z-index: 1;
}

/* Section header — solutions only (process / other sections keep generic .section-header) */
.solutions .section-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.solutions .section-header .section-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  margin-bottom: 1.4rem;
  color: var(--navy);
  opacity: 0.88;
}

.solutions .section-header .section-label::after {
  width: 40px;
  height: 1px;
  margin-inline: auto;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
}

.solutions .section-header h2 {
  font-size: clamp(2.05rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  margin-bottom: 1.35rem;
  color: var(--navy);
}

.solutions .section-header p {
  max-width: 48ch;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-dark);
  font-weight: 500;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-label::before { display: none; }
.section-header .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.section-header h2 { margin-bottom: .75rem; }
.section-header p {
  color: var(--gray-dark);
  margin-inline: auto;
  font-size: 1.05rem;
}

.solutions-grid {
  display: grid;
  gap: clamp(1.35rem, 2.8vw, 1.85rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr));
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 720px) and (max-width: 1099px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 880px;
  }
}

@media (min-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
    max-width: 1200px;
  }

  .solution-card:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .solution-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .solution-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 1099px) {
  .solution-card:nth-child(n) {
    grid-column: auto;
  }
}

.solution-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.35rem 2.05rem 2.2rem;
  border: 1px solid rgba(0, 53, 122, 0.09);
  box-shadow:
    0 1px 1px rgba(0, 20, 60, 0.03),
    0 14px 36px rgba(0, 20, 60, 0.055);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.75) 0%, rgba(0, 53, 122, 0.35) 55%, rgba(0, 53, 122, 0.08) 100%);
  opacity: 0.55;
  transition: opacity 0.32s ease;
}

.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s ease;
  opacity: 0.9;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-5px);
  box-shadow:
    0 2px 4px rgba(0, 20, 60, 0.04),
    0 22px 50px rgba(0, 20, 60, 0.11);
  border-color: rgba(0, 53, 122, 0.16);
}

.solution-card:hover::before,
.solution-card:focus-within::before {
  opacity: 0.95;
}

.solution-card:hover::after,
.solution-card:focus-within::after {
  transform: scaleX(1);
}

.solution-card .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 53, 122, 0.065);
  border: 1px solid rgba(0, 53, 122, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.solution-card:hover .card-icon,
.solution-card:focus-within .card-icon {
  background: rgba(255, 122, 26, 0.1);
  border-color: rgba(255, 122, 26, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.08);
}

.solution-card .card-icon svg {
  width: 27px;
  height: 27px;
  stroke: var(--navy);
  transition: stroke 0.32s ease;
}

.solution-card:hover .card-icon svg,
.solution-card:focus-within .card-icon svg {
  stroke: var(--orange);
}

.solution-card h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.solution-card p {
  font-size: 0.9rem;
  color: #4a4c50;
  line-height: 1.72;
  font-weight: 500;
  max-width: none;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why {
  padding: clamp(5rem, 9vw, 7rem) 0;
  background:
    radial-gradient(130% 80% at 50% -18%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(120% 90% at 100% 110%, rgba(255, 122, 26, 0.09) 0%, rgba(255, 122, 26, 0) 54%),
    linear-gradient(180deg, #002a66 0%, #002358 54%, #001d4a 100%);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(255, 122, 26, 0.45) 30%, transparent 72%);
}

.why::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 74px, 74px 100%;
}

.why .container {
  position: relative;
  z-index: 1;
}

.why .section-header {
  margin-bottom: clamp(2.4rem, 5vw, 3.5rem);
}

.why .section-header .section-label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.67rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.1rem;
}

.why .section-header .section-label::after {
  width: 42px;
  height: 1px;
  margin-inline: auto;
  margin-top: 0.8rem;
  background: linear-gradient(90deg, transparent, var(--orange) 18%, var(--orange) 82%, transparent);
}

.why .section-header h2 {
  color: var(--bg-white);
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.why .section-header p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1120px;
  margin-inline: auto;
}

.why-card {
  position: relative;
  padding: 1.85rem 1.7rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.045) 100%);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.2),
    0 18px 32px rgba(0, 0, 0, 0.16);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.82) 0%, rgba(255, 122, 26, 0.16) 100%);
}

.why-card:hover,
.why-card:focus-within {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-4px);
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.22),
    0 24px 44px rgba(0, 0, 0, 0.22);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.05rem;
}

.why-card h3 {
  color: var(--bg-white);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.72rem;
  line-height: 1.32;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: none;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, rgba(255, 122, 26, 0.22) 0%, rgba(255, 122, 26, 0.1) 100%);
  border: 1px solid rgba(255, 122, 26, 0.24);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover .why-icon,
.why-card:focus-within .why-icon {
  background: linear-gradient(145deg, rgba(255, 122, 26, 0.28) 0%, rgba(255, 122, 26, 0.14) 100%);
  border-color: rgba(255, 122, 26, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.13);
}

.why-icon svg {
  width: 23px;
  height: 23px;
  stroke: var(--orange);
  transition: stroke 0.3s ease;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.05rem;
  height: 1.52rem;
  padding: 0 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

@media (min-width: 1200px) {
  .why-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 820px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: var(--section-pad);
  background: var(--bg-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3.5rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0, var(--orange) 8px,
    transparent 8px, transparent 18px
  );
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.process-step:hover .step-circle {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 0 0 6px rgba(0, 53, 122, .1);
}

.step-circle svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  transition: stroke var(--transition);
}

.process-step:hover .step-circle svg { stroke: var(--bg-white); }

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .5rem;
}

.process-step p {
  font-size: .85rem;
  color: var(--gray-dark);
  line-height: 1.65;
  text-align: center;
}

/* =============================================
   CONTACT CTA
   ============================================= */
.contact {
  padding: clamp(5.5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(120% 80% at 0% 12%, rgba(0, 53, 122, 0.09) 0%, rgba(0, 53, 122, 0) 55%),
    radial-gradient(80% 60% at 100% 100%, rgba(255, 122, 26, 0.09) 0%, rgba(255, 122, 26, 0) 55%),
    linear-gradient(180deg, #f7f9fd 0%, #edf2f8 100%);
}

.contact .container {
  width: min(1220px, calc(100% - 48px));
}

.contact-shell {
  border-radius: 20px;
  background: linear-gradient(160deg, #002f70 0%, #002358 40%, #001c47 100%);
  box-shadow: 0 30px 65px rgba(0, 20, 60, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  align-items: start;
}

.contact-info {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff7a1a 0%, rgba(255, 122, 26, 0.2) 70%, transparent 100%);
}

.contact-info .section-label {
  color: #ff9b50;
}

.contact-info .section-label::before {
  background: #ff9b50;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.contact-info > p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.2rem;
  max-width: 38ch;
  line-height: 1.72;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 1px 1px rgba(0, 20, 60, 0.08),
    0 8px 20px rgba(0, 10, 30, 0.12);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.contact-item:hover {
  box-shadow:
    0 2px 6px rgba(0, 20, 60, 0.12),
    0 14px 32px rgba(0, 10, 30, 0.18);
  border-color: rgba(255, 122, 26, 0.52);
  transform: translateY(-3px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, rgba(255, 122, 26, 0.32) 0%, rgba(255, 122, 26, 0.12) 100%);
  border: 1px solid rgba(255, 122, 26, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.contact-item-text strong {
  display: block;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.25rem;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.94rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.5;
}

.contact-item-text a:hover { color: #ffb172; }

/* Contact form */
.contact-form {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 18px;
  padding: clamp(2.15rem, 4vw, 2.8rem);
  border: 1px solid rgba(0, 53, 122, 0.13);
  box-shadow:
    0 2px 3px rgba(0, 20, 60, 0.03),
    0 22px 48px rgba(0, 20, 60, 0.11);
  overflow: hidden;
  margin: clamp(1.1rem, 2.8vw, 1.5rem);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(0, 53, 122, 0.35) 70%, rgba(0, 53, 122, 0.08) 100%);
}

.contact-form h3 {
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
  font-size: clamp(1.4rem, 2vw, 1.58rem);
}

.contact-form__helper {
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  color: #4f5256;
  line-height: 1.6;
  max-width: 62ch;
}

.form-feedback {
  margin-bottom: 1.05rem;
  padding: 0.92rem 1.05rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-feedback.is-success {
  color: #0e5132;
  background: #e8f7ee;
  border-color: #98d5b1;
}

.form-feedback.is-error {
  color: #7a1f1f;
  background: #fdeeee;
  border-color: #efb1b1;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #5f6062;
  margin-bottom: 0.46rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  min-height: 3.15rem;
  padding: 0.98rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1.5px solid var(--gray-light);
  border-radius: 9px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.13);
  background: var(--bg-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 165px;
}

.field-error {
  min-height: 1.2em;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #b42318;
  display: block;
  visibility: hidden;
}

.field-error.is-visible {
  visibility: visible;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea,
.form-group.is-invalid select {
  border-color: #e5484d;
  box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.12);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem 1rem;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.3rem;
  min-height: 3.1rem;
  border-radius: 11px;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 30px rgba(0, 53, 122, 0.24);
}

.form-submit-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-wrap { margin-bottom: 1rem; }
.footer-brand .logo-name { color: var(--bg-white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.45); }

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bg-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

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

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

.cert-badge {
  padding: .3rem .75rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 850;
  padding: calc(var(--util-bar-h) + var(--header-h) + 24px) 1.5rem 2rem;
  flex-direction: column;
  gap: .5rem;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  font-size: 1.25rem;
  padding: .875rem 1rem;
  border-bottom: 1px solid var(--bg-light);
  color: var(--text-dark);
}

.mobile-nav .nav-cta {
  margin: 1rem 0 0;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}

/* =============================================
   SKIP LINK (Accessibility)
   ============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: var(--bg-white);
  padding: .75rem 1.5rem;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus { top: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 1.85rem 1.45rem 1.7rem;
    margin: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .intro-summary__panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .intro-summary__text {
    max-width: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .hero-stats {
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-panel__legend {
    border-left: none;
    border-top: 1px solid rgba(255, 122, 26, 0.22);
    padding: 1.25rem 1.15rem 1.4rem;
  }

  .about-diagram-img {
    min-height: 200px;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
  }

  .about-badge {
    max-width: min(14rem, 58%);
    top: 8px;
    right: 8px;
  }

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

  .contact-info {
    padding-top: 1.6rem;
    padding-bottom: 1.45rem;
  }

  .contact-info > p {
    margin-bottom: 1.45rem;
    max-width: none;
  }

  .contact-form {
    margin: 0;
    border-radius: 0;
    border-top: 1px solid rgba(0, 53, 122, 0.1);
    padding: 1.75rem 1.5rem 1.55rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process-steps::before { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px 0; }

  .contact .container {
    width: min(1180px, calc(100% - 26px));
  }

  .contact-shell {
    border-radius: 14px;
  }

  .contact-item {
    padding: 1rem 1rem;
    gap: 0.85rem;
  }

  .contact-item-text a,
  .contact-item-text span {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 1.35rem 1.05rem 1.2rem;
    border-radius: 0;
  }

  .contact-form h3 {
    font-size: 1.25rem;
  }

  .contact-form__helper {
    font-size: 0.87rem;
    margin-bottom: 0.85rem;
  }

  .intro-summary__panel {
    padding: 1.2rem;
  }

  .intro-summary__eyebrow {
    letter-spacing: 0.12em;
  }

  .intro-summary__values {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-stats { grid-template-columns: 1fr; }

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

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

  .process-steps { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .about-features { grid-template-columns: 1fr; }
}
