/* ============================================================
   Value4U — E&H Consulting
   style.css
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy-deep:    #080E1A;
  --panel-bg:     #0D1A2B;
  --navy-primary: #1E3A5F;
  --bright-blue:  #2E5C99;
  --light-blue:   #4A90E2;
  --slate:        #7A8FA6;
  --cream:        #F8F6F1;
  --muted-blue:   #8EA5BC;
  --gold-accent:  #D4AF37;
  --danger:       #E25C5C;
  --success:      #4AE2A0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', 'Segoe UI', sans-serif;

  --container:    1200px;
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;
}

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

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

body {
  background-color: var(--navy-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background-color: var(--panel-bg);
}

.section--navy {
  background-color: var(--navy-primary);
}

.section__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section__sub {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 620px;
  line-height: 1.8;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header .section__sub {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--bright-blue);
  color: var(--cream);
  border-color: var(--bright-blue);
}

.btn--primary:hover {
  background-color: var(--light-blue);
  border-color: var(--light-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--cream);
  border-color: var(--slate);
}

.btn--outline:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15, 30, 50, 0.88);
  border-bottom: 1px solid rgba(46, 92, 153, 0.2);
  transition: all var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
  transition: color var(--transition);
}

.nav__mobile-link:hover {
  color: var(--light-blue);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Animated dot-grid background */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(46, 92, 153, 0.35) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bgPan 20s linear infinite;
  z-index: 0;
}

@keyframes bgPan {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 14, 26, 0.92) 0%,
    rgba(8, 14, 26, 0.70) 50%,
    rgba(30, 58, 95, 0.50) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__title span {
  color: var(--light-blue);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted-blue);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.hero__pillars {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero__pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__pillar-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--light-blue);
  line-height: 1;
  min-width: 70px;
}

.hero__pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__pillar-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.2;
}

.hero__pillar-sub {
  font-size: 0.78rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__pillar-divider {
  width: 1px;
  height: 60px;
  background: rgba(74, 144, 226, 0.3);
  flex-shrink: 0;
}

/* ── AI Bridge ─────────────────────────────────────────────── */
.bridge__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.bridge__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-top: 1rem;
}

.bridge__title span {
  color: var(--light-blue);
}

.bridge__text {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.bridge__text em {
  color: var(--cream);
  font-style: normal;
  font-weight: 600;
}

.bridge__text--highlight {
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  background: rgba(46, 92, 153, 0.12);
  border-left: 3px solid var(--bright-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .bridge__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Dual Advantage ────────────────────────────────────────── */
.advantage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.advantage__card {
  background: var(--panel-bg);
  border: 1px solid rgba(46, 92, 153, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-blue), var(--light-blue));
  opacity: 0;
  transition: opacity var(--transition);
}

.advantage__card:hover {
  border-color: rgba(74, 144, 226, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(46, 92, 153, 0.2);
}

.advantage__card:hover::before {
  opacity: 1;
}

.advantage__icon {
  width: 56px;
  height: 56px;
  background: rgba(46, 92, 153, 0.15);
  border: 1px solid rgba(46, 92, 153, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.advantage__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.advantage__card-desc {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.advantage__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.advantage__bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted-blue);
}

.advantage__bullet::before {
  content: '▸';
  color: var(--light-blue);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.advantage__connector {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(46, 92, 153, 0.1), rgba(74, 144, 226, 0.1));
  border: 1px solid rgba(46, 92, 153, 0.25);
  border-radius: var(--radius-lg);
}

.advantage__connector-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream);
}

.advantage__connector-text span {
  color: var(--light-blue);
}

/* ── Problem Section ───────────────────────────────────────── */
.problem__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

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

.problem__col {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.problem__col--without {
  background: rgba(226, 92, 92, 0.06);
  border: 1px solid rgba(226, 92, 92, 0.2);
}

.problem__col--with {
  background: rgba(74, 226, 160, 0.05);
  border: 1px solid rgba(74, 226, 160, 0.2);
}

.problem__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem__col--without .problem__col-title { color: var(--danger); }
.problem__col--with .problem__col-title { color: var(--success); }

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted-blue);
  line-height: 1.5;
}

.problem__item-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.1rem;
}

/* ── Solutions ─────────────────────────────────────────────── */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution__card {
  background: var(--panel-bg);
  border: 1px solid rgba(46, 92, 153, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.solution__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(74, 144, 226, 0);
  transition: box-shadow var(--transition);
}

.solution__card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.45);
  box-shadow: 0 12px 40px rgba(46, 92, 153, 0.2);
}

.solution__card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(74, 144, 226, 0.2);
}

/* Center last two cards if grid has 5 items */
.solution__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.solution__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.solution__desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Solutions "And More" Banner ──────────────────────────── */
.solutions__more {
  margin-top: 3rem;
  background: rgba(46, 92, 153, 0.08);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.solutions__more-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
}

.solutions__more-text strong {
  color: var(--cream);
}

.solutions__more-cta {
  flex-shrink: 0;
  display: inline-block;
  background: var(--bright-blue);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.solutions__more-cta:hover {
  background: var(--light-blue);
  transform: translateX(3px);
}

/* ── Hero Security Badge ───────────────────────────────────── */
.hero__security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(46, 92, 153, 0.12);
  border: 1px solid rgba(74, 144, 226, 0.25);
  border-radius: 6px;
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  color: var(--muted-blue);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero__security-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Security Section ──────────────────────────────────────── */
.section--navy .section__sub strong {
  color: var(--cream);
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.security__card {
  background: rgba(15, 30, 50, 0.5);
  border: 1px solid rgba(74, 144, 226, 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}

.security__card:hover {
  border-color: rgba(74, 144, 226, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(46, 92, 153, 0.2);
}

.security__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.security__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.security__desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.7;
}

.security__banner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(46, 92, 153, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.25);
  border-left: 4px solid var(--light-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem;
  margin-top: 1rem;
}

.security__banner-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.security__banner-text {
  font-size: 1rem;
  color: var(--muted-blue);
  line-height: 1.75;
  font-style: italic;
}

/* ── Arsenal ───────────────────────────────────────────────── */
.arsenal__groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.arsenal__group-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.arsenal__tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.arsenal__tag {
  font-size: 0.8rem;
  color: var(--slate);
  padding: 0.35rem 0.75rem;
  background: rgba(46, 92, 153, 0.08);
  border: 1px solid rgba(46, 92, 153, 0.15);
  border-radius: 4px;
  transition: all var(--transition);
  cursor: default;
}

.arsenal__tag:hover {
  background: rgba(46, 92, 153, 0.2);
  color: var(--cream);
  border-color: rgba(74, 144, 226, 0.35);
}

.arsenal__note {
  text-align: center;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--slate);
}

/* ── Process ───────────────────────────────────────────────── */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--bright-blue), var(--light-blue));
  z-index: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.process__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--bright-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--light-blue);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.process__step:hover .process__num {
  background: var(--bright-blue);
  color: var(--cream);
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(46, 92, 153, 0.5);
}

.process__step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.process__step-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Why Value4U ───────────────────────────────────────────── */
.why__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why__stat {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--panel-bg);
  border: 1px solid rgba(46, 92, 153, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why__stat:hover {
  border-color: rgba(74, 144, 226, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46, 92, 153, 0.15);
}

.why__stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why__stat-label {
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 400;
}

.why__text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted-blue);
  line-height: 1.85;
  font-style: italic;
  padding: 2rem 2.5rem;
  background: rgba(46, 92, 153, 0.06);
  border-left: 3px solid var(--bright-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact__sub {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.contact__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted-blue);
}

.contact__badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(46, 92, 153, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.form__optional {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted-blue);
}

.form__input,
.form__select,
.form__textarea {
  background: var(--panel-bg);
  border: 1px solid rgba(46, 92, 153, 0.3);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--slate);
  opacity: 0.6;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8FA6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select option {
  background: var(--panel-bg);
  color: var(--cream);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.form__submit--sent {
  background: var(--success) !important;
}

.form__input--error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 2px rgba(226, 92, 92, 0.2) !important;
}

.form__error-msg {
  color: var(--danger);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  font-family: var(--font-body);
}

.form__status-msg {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.2em;
  font-family: var(--font-body);
}

.form__status-msg--error {
  color: var(--danger);
}

.form__status-msg--ok {
  color: var(--success);
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: btnSpin 0.75s linear infinite;
  flex-shrink: 0;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.form__open-modal {
  width: 100%;
  max-width: 500px;
}

.form--modal {
  max-height: 70vh;
  overflow-y: auto;
}

.form__turnstile-group {
  margin-top: 0.5rem;
}

.cf-turnstile {
  margin: 0 auto;
  transform: scale(0.9);
  transform-origin: center;
}

@media (max-width: 768px) {
  .cf-turnstile {
    transform: scale(0.85);
  }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(46, 92, 153, 0.15);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--cream);
}

.footer__logo-sub {
  font-size: 0.7rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--slate);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--light-blue); }

.footer__copy {
  font-size: 0.8rem;
  color: var(--slate);
  opacity: 0.6;
}

/* ── Responsive: 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: 2.25rem; }

  .hero__pillar-divider { display: none; }
  .hero__pillars { gap: 1.5rem; }

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

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

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

  .solutions__grid .solution__card:nth-child(4) {
    grid-column: auto;
  }

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

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

  .process__timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process__timeline::before { display: none; }

  .process__step {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }

  .process__num { margin-bottom: 0; flex-shrink: 0; }

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

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

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

/* ── Responsive: 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

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

  .solutions__more { flex-direction: column; gap: 1.25rem; }
  .solutions__more-cta { width: 100%; text-align: center; }

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

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

/* ── Call Confirmation Modal ─────────────────────────────────── */
.call-confirm-modal {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(8, 14, 26, 0.85) !important;
  z-index: 99999 !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(2px) !important;
  overflow: auto !important;
}

.call-confirm-modal.active {
  display: flex !important;
}

.call-modal-card {
  background: var(--panel-bg);
  border: 2px solid var(--light-blue);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  text-align: center;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.call-modal-card h2 {
  color: var(--light-blue);
  font-size: 2rem;
  margin-bottom: 1.25rem;
  font-family: Georgia, serif;
  font-weight: bold;
}

.call-modal-card p {
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.call-modal-card strong {
  color: var(--light-blue);
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.call-modal-btn-yes,
.call-modal-btn-no {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.call-modal-btn-yes {
  background: var(--bright-blue);
  color: white;
}

.call-modal-btn-yes:hover:not(:disabled) {
  background: var(--light-blue);
  transform: translateY(-2px);
}

.call-modal-btn-no {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--slate);
}

.call-modal-btn-no:hover:not(:disabled) {
  background: var(--navy-primary);
  border-color: var(--light-blue);
}

.call-modal-btn-yes:disabled,
.call-modal-btn-no:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.call-modal-btn-back {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  border: 2px solid var(--slate);
  background: transparent;
  color: var(--cream);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.call-modal-btn-back:hover {
  background: var(--navy-primary);
  border-color: var(--bright-blue);
  color: var(--cream);
  transform: translateY(-2px);
}

#callConfirmStatus {
  color: var(--danger);
  margin-top: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .call-modal-card {
    padding: 2rem;
    margin: 1rem;
  }

  .call-modal-card h2 {
    font-size: 1.5rem;
  }

  .call-modal-btn-yes,
  .call-modal-btn-no {
    display: block;
    width: 100%;
    margin: 0.75rem 0;
  }
}
