/* =============================================
   Texas Data Guardians – Main Stylesheet
   Theme: Cyber-Professional  |  Deep Navy + Electric Blue + Amber
   ============================================= */

:root {
  /* Brand Colors */
  --navy:        #091728;   /* deepest dark — footer, hero bg */
  --navy-mid:    #122742;   /* slightly lighter navy */
  --navy-light:  #1A3A5C;   /* card backgrounds on dark sections */
  --blue:        #D7263D;   /* primary brand red (matches logo) */
  --blue-light:  #E84860;   /* hover / lighter red */
  --teal:        #0891B2;   /* cyber accent — circuit / tech feel */
  --amber:       #E87520;   /* Lone Star warmth — CTAs */
  --amber-dark:  #C4601A;   /* hover state */

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F5F8FC;   /* alternating section bg */
  --gray-light:  #EBF1FA;   /* card bg, inputs */
  --border:      #C4D4E8;   /* form borders, dividers */
  --text:        #0E1D2F;   /* primary text — near-black navy */
  --text-muted:  #4D6478;   /* secondary text — enough contrast */
  --text-light:  rgba(255,255,255,0.80); /* text on dark backgrounds */

  /* Utilities */
  --radius:  14px;
  --radius-sm: 8px;
  --shadow:  0 4px 24px rgba(9,23,40,0.12);
  --shadow-md: 0 8px 32px rgba(9,23,40,0.18);
  --font:    'Nunito', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ===== LOGO ===== */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.logo-img-full {
  height: 64px;
  max-width: 280px;
  object-fit: contain;
}

.hero-logo-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

@keyframes floatBadge {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(232,117,32,0.40);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  box-shadow: 0 6px 24px rgba(232,117,32,0.50);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
  padding: 0.55rem 1.3rem;
  font-size: 0.95rem;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #0B1D33 0%, var(--navy) 100%);
  border-bottom: 2px solid var(--blue);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  z-index: 100;
  padding: 0.55rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo span { color: var(--navy); }
.logo span strong { color: var(--blue); font-weight: 800; }
.logo-text-stack {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.05;
}
.logo-text-stack .brand-main {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--white);
}
.logo-text-stack .brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: #FF8A95;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: #FF8A95; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.35rem;
  cursor: pointer;
  color: var(--white);
  line-height: 0;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0D2540 100%);
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
/* Cyber grid removed — felt gimmicky. Replaced with subtle radial accent. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(215,38,61,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(8,145,178,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 480px; min-width: 300px; }
.hero-art  { flex: 0 1 420px; min-width: 260px; text-align: center; display: flex; align-items: center; justify-content: center; }

/* Centered single-column variant (no hero-art) */
.hero-centered { padding: 6.5rem 0 6rem; }
.hero-centered .hero-inner { justify-content: center; }
.hero-centered .hero-text {
  flex: 0 1 760px;
  text-align: center;
  max-width: 760px;
}
.hero-centered .hero-text h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; max-width: 620px; }
.hero-centered .hero-cta { justify-content: center; }
.hero-centered .hero-points {
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  display: flex;
  gap: 0.85rem 1.75rem;
  margin-top: 2rem;
  padding: 0;
}
.hero-centered .hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 0;
}
.hero-centered .hero-points li::before {
  position: static;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  top: auto;
  left: auto;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,138,149,0.10);
  border: 1px solid rgba(255,138,149,0.28);
  color: #FFB3BC;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-transform: none;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.1rem;
  color: var(--white);
  letter-spacing: -0.025em;
}
.highlight {
  color: #FF6B7A;
  position: relative;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--text-light);
  margin-bottom: 2.2rem;
  max-width: 500px;
  line-height: 1.75;
}

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

/* Replaced gimmicky floating badges with quiet hero-points list */
.hero-points {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-points li {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  font-weight: 500;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FF6B7A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8.5 6.5 12 13 4.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== THREAT LANDSCAPE ===== */
.threats {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(180deg, #F1F5F9 0%, #E8EFF6 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.threats .credentials-eyebrow { color: var(--blue); }
.threats .section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.05rem);
  max-width: 760px;
  margin: 0 auto 0.85rem;
}
.threats .section-sub {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(9,23,40,0.06);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.stat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(215,38,61,0.14);
  transform: translateY(-3px);
}
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(215,38,61,0.10);
  color: var(--blue);
  margin-bottom: 0.35rem;
}
.stat-number {
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
  flex-grow: 1;
}
.stat-source {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  width: 100%;
}
.stat-card:hover .stat-source { color: var(--blue); }

/* ===== CYBER INSURANCE ===== */
.insurance {
  background: var(--white);
  padding: 5rem 0 4.5rem;
  border-top: 1px solid var(--border);
}
.insurance-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(9,23,40,0.06);
}
.insurance-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(215,38,61,0.10);
  color: var(--blue);
  margin-top: 0.25rem;
}
.insurance-body { flex: 1; min-width: 0; }
.insurance .credentials-eyebrow {
  text-align: left;
  margin-bottom: 0.6rem;
  color: var(--blue);
}
.insurance .section-title {
  text-align: left;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0 0 0.85rem;
  max-width: none;
}
.insurance .section-sub {
  text-align: left;
  margin: 0 0 1.5rem;
  max-width: none;
  font-size: 1rem;
}
.insurance-lead {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.insurance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
}
.insurance-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.insurance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}
.insurance-foot {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  margin: 0;
}
.insurance-foot a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.insurance-foot a:hover { text-decoration: underline; }
.insurance-sources {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 1rem 0 0;
}
.insurance-sources strong { color: var(--navy); margin-right: 0.25rem; }
.insurance-sources a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(77,100,120,0.35);
  text-underline-offset: 2px;
}
.insurance-sources a:hover { color: var(--blue); text-decoration-color: var(--blue); }

@media (max-width: 720px) {
  .insurance-card { flex-direction: column; padding: 2rem 1.5rem; }
  .insurance-list { grid-template-columns: 1fr; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--teal);
  padding: 0.9rem 0;
  color: var(--white);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.trust-item {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 0 0.5rem;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: -0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* ===== CREDENTIALS ===== */
.credentials {
  padding: 5rem 0 4.5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.credentials-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.credentials .section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.05rem);
  max-width: 760px;
  margin: 0 auto 0.85rem;
}
.credentials .section-sub {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}
.cred-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cred-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(215,38,61,0.10);
  transform: translateY(-2px);
}
.cred-abbr {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.cred-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
  min-height: 2.5em;
}
.cred-issuer {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 0.25rem;
}
.cred-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 2.5rem auto 0;
  font-style: italic;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 5.5rem 0;
  background: var(--off-white);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.1rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.card-featured {
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(215,38,61,0.3), var(--shadow-md);
}
.card-featured h3 { color: var(--white) !important; }
.card-featured p  { color: rgba(255,255,255,0.78) !important; }
.card-featured .card-list li { color: rgba(255,255,255,0.88) !important; }

.card-badge {
  position: absolute;
  top: -0.8rem;
  right: 1.5rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(215,38,61,0.10), rgba(8,145,178,0.10));
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.card-featured .card-icon {
  background: rgba(255,255,255,0.10);
  color: #FFB3BC;
  border: 1px solid rgba(255,255,255,0.12);
}
.card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.card p {
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.card-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.card-list li {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(8,145,178,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230891B2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3.5 8.5 6.5 11.5 12.5 5'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.card-featured .card-list li::before {
  background-color: rgba(255,174,112,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFAE70' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3.5 8.5 6.5 11.5 12.5 5'/%3E%3C/svg%3E");
}

/* ===== WHY US ===== */
.why-us {
  padding: 5.5rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.why-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(215,38,61,0.10), rgba(8,145,178,0.10));
  color: var(--blue);
  margin: 0 auto 1rem;
}
.why-item h4 {
  font-size: 1.07rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.why-item p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing {
  padding: 5.5rem 0 5rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.pricing .credentials-eyebrow { color: var(--blue); }
.pricing .section-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 0.85rem;
}
.pricing .section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.85rem 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.price-card-featured {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(215,38,61,0.3), var(--shadow-md);
}
.price-card-featured:hover {
  border-color: #FF6B7A;
}
.price-card-head { margin-bottom: 1.25rem; }
.price-card-head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.price-card-featured .price-card-head h3 { color: var(--white); }
.price-tag-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.price-card-featured .price-tag-line { color: rgba(255,255,255,0.7); }

.price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.price-card-featured .price-amount { color: var(--white); }
.price-amount-text {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.6rem 0;
  letter-spacing: -0.01em;
}
.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: 0.7rem;
  margin-right: 0.1rem;
  color: var(--text-muted);
}
.price-card-featured .price-currency { color: rgba(255,255,255,0.65); }
.price-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price-card-featured .price-unit { color: rgba(255,255,255,0.7); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.price-features li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 1.65rem;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23D7263D' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8.5 6.5 12 13 4.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-card-featured .price-features li {
  color: rgba(255,255,255,0.85);
}
.price-card-featured .price-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FF6B7A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8.5 6.5 12 13 4.5'/%3E%3C/svg%3E");
}

.pricing-footnote {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 2.75rem auto 0;
  line-height: 1.7;
}
.pricing-footnote strong { color: var(--navy); font-weight: 800; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub   { color: rgba(255,255,255,0.65); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  flex: 1;
  min-width: 210px;
  max-width: 290px;
  transition: background 0.2s, border-color 0.2s;
}
.step:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(215,38,61,0.6);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(215,38,61,0.4);
}
.step h4 {
  font-weight: 800;
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.step p { font-size: 0.93rem; color: rgba(255,255,255,0.68); line-height: 1.7; }
.step-arrow {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.3);
  align-self: center;
  flex: 0;
}

/* ===== CONTACT ===== */
.contact {
  padding: 5.5rem 0;
  background: var(--off-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.contact-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.contact-item svg {
  color: var(--blue);
  flex-shrink: 0;
}
.contact-item a { color: var(--blue); text-decoration: none; font-weight: 700; }
.contact-item a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-light);
}

.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(215,38,61,0.12);
}
.form-group select { appearance: none; cursor: pointer; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.5;
}

/* Honeypot field — visible to bots, invisible to humans */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Cloudflare Turnstile widget spacing */
.cf-turnstile {
  margin: 0.75rem 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid var(--blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.footer-brand-row strong { color: var(--white); font-size: 1.1rem; }
.footer-brand p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.footer-contact {
  font-size: 0.93rem !important;
  line-height: 1.85 !important;
}
.footer-contact a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
}
.footer-contact a:hover { color: var(--white); text-decoration: underline; }

.footer-areas {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-fineprint { font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 1.75rem;
    border-bottom: 2px solid var(--blue);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    gap: 1.1rem;
  }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .hero-cta { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-art { display: none; }

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

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step { max-width: 100%; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; text-align: center; }

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

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 1rem; }
  .hero-tag { font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
