:root {
  --sa-primary: #0D50AA;
  --sa-primary-hover: #0B4596;
  --sa-primary-light: #2F8CFF;
  --sa-cyan: #35D4FF;
  --sa-navy: #10233F;
  --sa-navy-dark: #0B2348;
  --sa-bg: #F5FAFF;
  --sa-surface: #FFFFFF;
  --sa-border: #D8E8FA;
  --sa-muted: #7E96B8;
  --sa-shadow: 0 8px 24px rgba(13, 37, 76, 0.06);

  --brand: var(--sa-primary);
  --brand-dark: var(--sa-navy-dark);
  --brand-mid: var(--sa-primary-light);
  --brand-soft: #EAF4FF;
  --brand-light: var(--sa-bg);
  --ink: var(--sa-navy);
  --ink-soft: var(--sa-muted);
  --bg: var(--sa-bg);
  --surface: var(--sa-surface);
  --line: var(--sa-border);
  --shadow: var(--sa-shadow);
  --font-display: "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

/* Header */
.landing-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--sa-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--sa-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: env(safe-area-inset-top);
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--sa-border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

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

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.landing-logo {
  display: flex;
  align-items: center;
}

.landing-logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.logo-dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--brand-mid), #60a5fa);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.landing-nav-desktop {
  display: none !important;
}

.landing-nav-mobile {
  display: none !important;
}

.landing-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0 20px 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-btn-desk {
  display: none;
}

.landing-nav a {
  color: var(--sa-muted);
  font-weight: 600;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.landing-nav a:hover { color: var(--sa-primary); }

.lang-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: var(--sa-bg);
  border: 1px solid var(--sa-border);
}

.lang-btn {
  padding: 6px 10px !important;
  border-radius: 8px !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  color: var(--sa-muted) !important;
}

.lang-btn:hover {
  background: var(--sa-active-soft, #EAF4FF);
  color: var(--sa-primary) !important;
}

.lang-btn.active {
  background: var(--sa-primary) !important;
  color: #fff !important;
}

.nav-btn {
  background: var(--sa-primary) !important;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 14px;
}

.nav-btn:hover { background: var(--sa-primary-hover, #0B4596) !important; }

/* Hero banner */
.hero-banner {
  background:
    radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.25), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(29, 111, 212, 0.3), transparent 35%),
    linear-gradient(160deg, var(--brand-dark) 0%, #153a7a 55%, var(--brand) 100%);
  color: #fff;
  padding-bottom: 48px;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 0;
  display: grid;
  gap: 36px;
}

.hero-tag {
  color: #93c5fd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 8px 0 16px;
  color: #fff;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
}

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

.hero-actions .btn {
  min-height: 48px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover { background: var(--brand-soft); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.hero-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 24px;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}

.hero-card:hover { transform: translateY(-3px); }

.hero-card span { font-size: 1.8rem; }
.hero-card strong { display: block; margin-top: 8px; color: var(--brand-dark); }
.hero-card p { color: var(--ink-soft); margin: 6px 0 0; font-size: 0.9rem; }

/* Sections */
.section { max-width: 1100px; margin: 0 auto; padding: 20px 32px 40px; }

.panel-block {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-block h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  color: var(--brand-dark);
}

.panel-block p { margin: 0; color: var(--ink-soft); line-height: 1.6; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.18s;
}

.feature-card:hover {
  border-color: rgba(29, 111, 212, 0.3);
  transform: translateY(-2px);
}

.feature-card h3 { margin: 0 0 8px; color: var(--brand-dark); }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }

/* Contact */
.contact-block {
  background: var(--brand-dark);
  border-radius: 20px;
  padding: 28px 32px;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-block h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 18px;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.contact-value { font-size: 1rem; font-weight: 700; color: #fff; }
.contact-value[href] { color: #bfdbfe; }
.contact-value[href]:hover { color: #fff; }

.contact-call {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  word-break: break-word;
}

/* Footer */
.landing-footer {
  text-align: center;
  padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  background: var(--brand-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer a { color: #93c5fd; font-weight: 600; }
.landing-footer a:hover { color: #fff; }
.footer-contact { margin-top: 6px; }

/* Vendor portal */
.portal-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(29, 111, 212, 0.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(12, 45, 107, 0.12), transparent 35%),
    var(--bg);
}

.portal-shell {
  width: min(720px, 92vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.portal-shell-narrow { width: min(420px, 92vw); }

.portal-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.portal-shell h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: var(--brand-dark);
}

.portal-lead { color: var(--ink-soft); margin: 0 0 24px; line-height: 1.5; }

.portal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.portal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.2s;
}

.portal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 111, 212, 0.35);
  box-shadow: 0 8px 24px rgba(12, 45, 107, 0.1);
}

.portal-icon { font-size: 1.6rem; }
.portal-card strong { display: block; margin-top: 8px; color: var(--brand-dark); }
.portal-card p { margin: 6px 0 0; color: var(--ink-soft); font-size: 0.88rem; }
.portal-link { display: inline-block; margin-top: 18px; color: var(--brand); font-weight: 700; }
.portal-back { color: var(--ink-soft); font-size: 0.88rem; }

.portal-form { display: grid; gap: 14px; }
.portal-form label { display: grid; gap: 6px; font-size: 0.88rem; font-weight: 600; }

.portal-form input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.portal-form input:focus {
  outline: none;
  border-color: rgba(29, 111, 212, 0.55);
  box-shadow: 0 0 0 4px rgba(29, 111, 212, 0.12);
}

.portal-dashboard { width: min(860px, 92vw); }

.portal-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.portal-dash-head p { margin: 4px 0 0; color: var(--ink-soft); font-size: 0.85rem; }

.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.dash-card {
  background: var(--brand-light);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.dash-card span { display: block; color: var(--ink-soft); font-size: 0.82rem; }
.dash-card strong { font-size: 1.6rem; margin-top: 6px; display: block; color: var(--brand-dark); }
.portal-note { color: var(--ink-soft); margin-top: 20px; font-size: 0.9rem; }

.portal-alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: #fdecea;
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 600;
}

.portal-alert-ok {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.portal-panel {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.portal-panel h2 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

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

.portal-category-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-light);
  cursor: pointer;
  font-weight: 600;
}

.portal-category-chip:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.portal-category-chip input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

@media (max-width: 768px) {
  .portal-category-grid { grid-template-columns: 1fr; }
}

@media (min-width: 861px) {
  .landing-header {
    padding: 0 28px;
  }

  .header-bar {
    max-width: 1180px;
    padding: 14px 0;
    gap: 20px;
  }

  .landing-nav-desktop {
    display: flex !important;
    flex: 1;
    justify-content: flex-end;
    padding: 0;
    max-width: none;
    margin: 0;
    gap: 22px;
  }

  .landing-nav-mobile {
    display: none !important;
  }

  .nav-btn-desk {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .landing-nav-desktop {
    display: none !important;
  }

  .header-bar {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .landing-nav-mobile {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 0 16px 16px;
    border-top: 1px solid var(--sa-border);
    margin-top: 0;
  }

  body.menu-open .landing-nav-mobile {
    display: flex !important;
  }

  .landing-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    background: #F5FAFF;
    color: var(--sa-navy);
  }

  body.lp .landing-nav a {
    background: #E8E0D2;
    color: #0B2348;
  }

  .landing-nav .nav-btn {
    justify-content: center;
    margin-top: 4px;
  }

  .lang-switcher {
    flex-shrink: 0;
  }

  .lang-btn {
    padding: 8px 10px !important;
    min-width: 40px;
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero-banner {
    padding-bottom: 32px;
  }

  .hero {
    padding: 32px 16px 0;
    gap: 24px;
  }

  .hero-tag {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    line-height: 1.15;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 20px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding: 16px 18px;
  }

  .hero-card span {
    grid-row: 1 / span 2;
    font-size: 1.6rem;
  }

  .hero-card strong {
    margin-top: 0;
  }

  .hero-card p {
    margin: 2px 0 0;
    font-size: 0.85rem;
  }

  .section {
    padding: 14px 16px 24px;
  }

  .panel-block,
  .contact-block {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .panel-block h2,
  .contact-block h2 {
    font-size: 1.35rem;
  }

  .feature-card {
    padding: 18px;
  }

  .contact-item-phone {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(147, 197, 253, 0.35);
  }

  .contact-call {
    font-size: 1.15rem;
  }

  .landing-footer {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .footer-contact {
    padding: 0 8px;
  }

  .portal-shell,
  .portal-dashboard {
    width: min(720px, calc(100vw - 24px));
    padding: 24px 18px;
    border-radius: 18px;
  }

  .portal-cards,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .portal-dash-head {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .landing-logo strong {
    font-size: 1rem;
  }

  .logo-dot {
    width: 28px;
    height: 28px;
  }

  .lang-btn {
    padding: 7px 8px !important;
    font-size: 0.65rem !important;
  }
}

/* ===== Public site (saudagent.com) ===== */
body.lp {
  background: #F2EDE4;
  color: #1A2433;
}

body.lp .landing-header {
  background: rgba(242, 237, 228, 0.92);
  border-bottom: 1px solid #E2D8C8;
  box-shadow: none;
}

body.lp .lang-switcher {
  background: #E8E0D2;
  border-color: #D8CFC0;
}

body.lp .landing-nav-desktop a {
  color: #4A5568;
}

body.lp .landing-nav-desktop a:hover {
  color: #0B2348;
}

body.lp .menu-toggle {
  border-color: #D8CFC0;
  background: #F2EDE4;
}

.lp-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0D50AA;
}

.lp-kicker-light {
  color: #8EB6E8;
}

.lp-h2 {
  margin: 0 0 18px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0B2348;
}

.lp-h2-light {
  color: #F2EDE4;
}

.lp-lead,
.lp-prose {
  margin: 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4A5568;
}

.lp-hero {
  padding: 48px 0 20px;
  overflow: hidden;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px 40px;
  align-items: end;
}

.lp-hero-copy h1 {
  margin: 0 0 16px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0B2348;
}

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

body.lp .btn {
  border-radius: 10px;
  font-size: 0.95rem;
}

body.lp .btn-primary {
  background: #0B2348;
  color: #fff;
  box-shadow: none;
}

body.lp .btn-primary:hover {
  background: #0D50AA;
}

body.lp .btn-ghost {
  background: transparent;
  border: 1px solid #0B2348;
  color: #0B2348;
}

body.lp .btn-ghost:hover {
  background: #0B2348;
  color: #fff;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid #C9BFAE;
  color: #0B2348;
  background: #fff;
}

.lp-hero-note {
  margin: 16px 0 0;
  font-size: 0.82rem;
  color: #7A6F5F;
}

.lp-hero-phones {
  position: relative;
  min-height: 520px;
  overflow: visible;
}

.lp-phone {
  margin: 0;
  background: #111827;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(11, 35, 72, 0.18);
}

.lp-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #fff;
}

.lp-phone-back {
  position: absolute;
  width: 54%;
  right: 4%;
  top: 48px;
  transform: rotate(6deg);
  opacity: 0.88;
}

.lp-phone-front {
  position: relative;
  width: 58%;
  left: 6%;
  z-index: 2;
  transform: rotate(-3deg);
}

.lp-phone-sm {
  max-width: 280px;
  margin-left: auto;
}

.lp-section,
.lp-web,
#about,
#features,
#who,
#contact {
  scroll-margin-top: 84px;
}

.lp-section {
  padding: 64px 0;
}

.lp-section-ink {
  background: #0B2348;
  color: #E8EEF6;
}

.lp-section-ink .lp-feat-text p {
  color: #B7C5D8;
}

.lp-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #D8CFC0;
}

.lp-steps li {
  padding: 22px 22px 0 0;
  border-right: 1px solid #D8CFC0;
}

.lp-steps li:last-child {
  border-right: 0;
  padding-right: 0;
}

.lp-step-n {
  display: block;
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: #0D50AA;
}

.lp-steps strong {
  display: block;
  margin-bottom: 8px;
  color: #0B2348;
  font-size: 1.05rem;
}

.lp-steps p {
  margin: 0;
  color: #5B6573;
  line-height: 1.5;
  font-size: 0.95rem;
}

.lp-feat {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 40px;
  align-items: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-feat:first-of-type {
  border-top: 0;
  padding-top: 12px;
}

.lp-feat-rev {
  grid-template-columns: minmax(220px, 280px) 1fr;
}

.lp-feat-rev .lp-feat-text {
  order: 2;
}

.lp-feat-text h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  font-weight: 550;
  color: #F2EDE4;
}

.lp-feat-text p {
  margin: 0;
  line-height: 1.6;
  font-size: 1.02rem;
}

.lp-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.lp-who-col {
  padding: 26px 28px;
  background: #fff;
  border: 1px solid #E2D8C8;
}

.lp-who-col-alt {
  background: #0B2348;
  border-color: #0B2348;
  color: #F2EDE4;
}

.lp-who-col h3 {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 550;
}

.lp-who-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-who-col li {
  position: relative;
  padding: 9px 0 9px 18px;
  border-top: 1px solid #EDE6DA;
  line-height: 1.45;
}

.lp-who-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 1px;
  background: #0D50AA;
}

.lp-who-col-alt li {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.lp-who-col-alt li::before {
  background: #8EB6E8;
}

.lp-web {
  padding: 64px 0;
  background: #E8E0D2;
}

.lp-web-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: center;
}

.lp-web .lp-prose {
  margin-bottom: 22px;
}

.lp-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.lp-contact-meta {
  display: flex;
  gap: 40px;
  margin: 0;
}

.lp-contact-meta dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A6F5F;
}

.lp-contact-meta dd {
  margin: 4px 0 0;
  font-weight: 700;
  color: #0B2348;
}

body.lp .landing-footer {
  background: #0B2348;
}

@media (max-width: 900px) {
  .lp-hero-grid,
  .lp-feat,
  .lp-feat-rev,
  .lp-who,
  .lp-web-grid {
    grid-template-columns: 1fr;
  }

  .lp-feat-rev .lp-feat-text {
    order: 0;
  }

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

  .lp-steps li {
    border-right: 0;
    border-bottom: 1px solid #D8CFC0;
    padding: 18px 0;
  }

  .lp-hero-phones {
    min-height: 0;
    display: flex;
    justify-content: center;
    padding: 10px 0 0;
  }

  .lp-phone-back {
    display: none;
  }

  .lp-phone-front {
    width: min(280px, 72vw);
    transform: none;
  }

  .lp-feat .lp-phone,
  .lp-phone-sm {
    max-width: 260px;
    margin: 0 auto;
  }

  .lp-section,
  .lp-web,
  .lp-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .lp-wrap {
    width: min(1120px, calc(100% - 28px));
  }

  .lp-hero-copy h1 {
    font-size: 1.85rem;
  }

  .lp-hero-actions,
  .lp-contact-row {
    flex-direction: column;
  }

  .lp-hero-actions .btn,
  .lp-contact-row .btn,
  .lp-contact-row .btn-ghost-dark {
    width: 100%;
  }

  .lp-contact-meta {
    flex-direction: column;
    gap: 14px;
  }

  .lp-who-col {
    padding: 20px 18px;
  }
}
