/* ============================================================
   MILTECH — GLOBAL STYLESHEET
   Brand: Charcoal / Safety Orange / Off-White
   ============================================================ */

/* ── Copy Protection ── */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
/* Re-enable pointer events on links/buttons that contain images */
a img, button img { pointer-events: auto; }

/* --- Variables --- */
:root {
  --orange:        #D35400;
  --orange-dark:   #B34500;
  --orange-light:  #E86A1A;
  --orange-glow:   rgba(211, 84, 0, 0.12);
  --charcoal:      #181818;
  --charcoal-mid:  #252525;
  --charcoal-alt:  #2F2F2F;
  --off-white:     #F6F4EF;
  --bg-alt:        #EDEAE3;
  --white:         #FFFFFF;
  --text-primary:  #1C1C1C;
  --text-muted:    #5A5A5A;
  --text-light:    #939393;
  --border:        #E0DDD6;
  --border-dark:   #363636;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.16);
  --shadow-orange: 0 6px 24px rgba(211,84,0,0.28);
  --font-head:     'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body:     'Open Sans', 'Lato', system-ui, sans-serif;
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     18px;
  --ease:          0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:         72px;
  --max-w:         1160px;
  --section-y:     5.5rem;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--charcoal); color: var(--off-white); }
.section--alt  { background: var(--off-white); }
.text-center   { text-align: center; }
.text-orange   { color: var(--orange); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.section--dark .section-sub { color: rgba(246,244,239,0.6); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211,84,0,0.38);
}
.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-outline-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.84rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(24,24,24,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  transition: all var(--ease);
}
.nav.scrolled {
  background: rgba(24,24,24,0.99);
  box-shadow: 0 4px 28px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo { display: flex; align-items: center; gap: 0.625rem; }
.nav__logo img { height: 34px; width: auto; }
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  word-spacing: -0.15em;
}
.nav__logo-text span { color: var(--orange); letter-spacing: -0.04em; margin-left: -0.02em; }

.nav__links { display: none; align-items: center; gap: 1.875rem; }
.nav__link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(246,244,239,0.7);
  transition: color var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__cta { display: none; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-right: -8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--charcoal-mid);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile-link {
  display: block;
  padding: 1.1rem 0.5rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--ease);
}
.nav__mobile-link:hover { color: var(--orange); }
.nav__mobile-cta { margin-top: 2rem; text-align: center; justify-content: center; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
}

/* ============================================================
   HERO (HOMEPAGE)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.18;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(24,24,24,0.96) 0%,
    rgba(24,24,24,0.80) 50%,
    rgba(24,24,24,0.94) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-glow);
  border: 1px solid rgba(211,84,0,0.35);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 { color: var(--white); max-width: 800px; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(246,244,239,0.68);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.72;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(246,244,239,0.5);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   PAGE BANNER (Inner Pages)
   ============================================================ */
.page-banner {
  background: var(--charcoal);
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80') center/cover;
  opacity: 0.08;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner__title { color: var(--white); margin-bottom: 1rem; }
.page-banner__sub {
  color: rgba(246,244,239,0.62);
  font-size: 1.08rem;
  max-width: 580px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.trust-bar__label {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-logo {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: all var(--ease);
}
.trust-logo:hover { border-color: var(--orange); color: var(--orange); }
.trust-logo--soon { opacity: 0.48; font-weight: 400; font-size: 0.82rem; }

/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */
.problem { background: var(--off-white); }
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.problem__pains { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.75rem; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.125rem 1.375rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.pain-item:hover {
  border-color: rgba(211,84,0,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.pain-icon {
  width: 40px; height: 40px;
  background: rgba(211,84,0,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pain-text strong { display: block; font-family: var(--font-head); font-weight: 600; margin-bottom: 0.15rem; font-size: 0.95rem; }
.pain-text p { margin: 0; font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

.solution-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--off-white);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.solution-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.solution-card > p { color: rgba(246,244,239,0.58); font-size: 0.92rem; margin-bottom: 1.5rem; }
.solution-list { display: flex; flex-direction: column; gap: 0.8rem; }
.solution-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(246,244,239,0.85);
}
.solution-item::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 900px) {
  .problem__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HOW IT WORKS (Homepage Steps)
   ============================================================ */
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(211,84,0,0.25);
  transform: translateY(-3px);
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -0.75rem; right: 1.25rem;
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.step-card h3 { margin-bottom: 0.6rem; }
.step-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--ease);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card--featured { border-color: var(--orange); box-shadow: var(--shadow-orange); }
.pricing-card--featured:hover { box-shadow: 0 16px 56px rgba(211,84,0,0.30); }

.pricing-badge {
  position: absolute;
  top: -1px; right: 1.75rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.7rem;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}
.pricing-price sup { font-size: 1.2rem; font-weight: 600; vertical-align: super; margin-right: 0.1em; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin: 0.75rem 0 1.5rem; min-height: 3.5em; line-height: 1.6; }
.pricing-divider { height: 1px; background: var(--border); margin: 0 0 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.7rem; flex: 1; margin-bottom: 2rem; text-align: left; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.pricing-feature .check { color: var(--orange); font-size: 0.95rem; flex-shrink: 0; margin-top: 0.1rem; font-weight: 700; }
.pricing-feature > span:not(.check) { flex: 1; min-width: 0; }
.pricing-feature > span:not(.check):empty { display: none; }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* Full Pricing Comparison Table */
.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pricing-table th, .pricing-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-table th:first-child, .pricing-table td:first-child { text-align: left; font-weight: 500; }
.pricing-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.pricing-table thead th.col-featured { background: var(--orange); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) td { background: var(--off-white); }
.pricing-table .check-yes { color: var(--orange); font-size: 1.05rem; font-weight: 700; }
.pricing-table .check-no { color: #CCC; }

@media (min-width: 768px) { .pricing-cards { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   WHY MILTECH
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-top: 3rem;
}
.why-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.625rem;
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  transition: all var(--ease);
}
.why-item:hover {
  background: rgba(211,84,0,0.07);
  border-color: rgba(211,84,0,0.28);
}
.why-icon {
  width: 46px; height: 46px;
  background: var(--orange-glow);
  border: 1px solid rgba(211,84,0,0.28);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.why-item h4 { color: var(--white); margin-bottom: 0.35rem; font-size: 1rem; }
.why-item p { color: rgba(246,244,239,0.55); font-size: 0.875rem; margin: 0; line-height: 1.6; }

@media (min-width: 640px)  { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--orange);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-ghost-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }

/* ============================================================
   TOOLS SECTION (How It Works page)
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-top: 3rem;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--ease);
}
.tool-card:hover { box-shadow: var(--shadow-md); border-color: rgba(211,84,0,0.22); }
.tool-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.tool-card h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.tool-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

@media (min-width: 640px)  { .tools-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .tools-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   SUBSCRIPTION MODEL (How It Works)
   ============================================================ */
.model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.model-visual {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.model-step {
  background: var(--charcoal-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--off-white);
  font-size: 0.9rem;
  transition: all var(--ease);
}
.model-step:hover { border-color: rgba(211,84,0,0.3); }
.model-step-icon {
  width: 36px; height: 36px;
  background: var(--orange-glow);
  border: 1px solid rgba(211,84,0,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.model-step span { font-family: var(--font-head); font-weight: 500; }
.model-step .arrow {
  margin-left: auto;
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-family: var(--font-head);
  font-weight: 600;
}

@media (min-width: 900px) { .model-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   ONBOARDING PROCESS (How It Works)
   ============================================================ */
.onboarding-steps { display: flex; flex-direction: column; margin-top: 3rem; }
.onboard-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}
.onboard-step:last-child { padding-bottom: 0; }
.onboard-step__left { display: flex; flex-direction: column; align-items: center; }
.onboard-step__circle {
  width: 52px; height: 52px;
  background: var(--charcoal);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--orange);
  flex-shrink: 0;
}
.onboard-step__line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--border), transparent);
  margin-top: 0.5rem;
}
.onboard-step:last-child .onboard-step__line { display: none; }
.onboard-step__content { padding-top: 0.7rem; }
.onboard-step__content h3 { margin-bottom: 0.5rem; }
.onboard-step__content p { color: var(--text-muted); font-size: 0.92rem; margin: 0; line-height: 1.65; }
.onboard-step__tag {
  display: inline-block;
  background: rgba(211,84,0,0.1);
  color: var(--orange);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ============================================================
   REQUEST PROCESS VISUAL
   ============================================================ */
.request-flow {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
.request-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.request-step-icon {
  font-size: 2rem;
  width: 64px; height: 64px;
  background: var(--orange-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.request-step h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.request-step p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

@media (min-width: 640px) { .request-flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .request-flow { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.375rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-primary);
  background: var(--white);
  transition: background var(--ease);
  cursor: pointer;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { color: var(--orange); background: var(--off-white); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--ease);
  line-height: 1;
}
.faq-question.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.75rem;
  background: var(--off-white);
}
.faq-answer.open { max-height: 500px; padding: 1.25rem 1.75rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; margin: 0; line-height: 1.72; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.375rem; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}
.form-label span { color: var(--orange); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.825rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.6; }
select.form-control { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.btn-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 0.98rem; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}
.form-success {
  display: none;
  background: #F0FAF0;
  border: 1px solid #6AC46A;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: #2E7D32;
}
.form-success h3 { color: #2E7D32; margin-bottom: 0.5rem; }
.form-success p { color: #4CAF50; margin: 0; }
.form-success.show { display: block; }

.contact-sidebar {}
.contact-info-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.375rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--orange-glow);
  border: 1px solid rgba(211,84,0,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-info-item span { color: rgba(246,244,239,0.58); font-size: 0.88rem; line-height: 1.5; }

.calendar-card {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
}
.calendar-card .cal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.calendar-card h4 { margin-bottom: 0.5rem; }
.calendar-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.calendly-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   TESTIMONIALS PLACEHOLDER
   ============================================================ */
.testimonials-placeholder {
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  margin-top: 3rem;
}
.testimonials-placeholder p { color: var(--text-light); font-size: 0.9rem; margin: 0.5rem 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 4.5rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 2.5rem;
}
.footer__brand p {
  color: rgba(246,244,239,0.48);
  font-size: 0.875rem;
  margin-top: 0.875rem;
  max-width: 285px;
  line-height: 1.65;
}
.footer__heading {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.35);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(246,244,239,0.6);
  transition: color var(--ease);
  line-height: 1.5;
}
.footer__link:hover { color: var(--orange); }
.footer__socials { display: flex; gap: 0.625rem; margin-top: 1.25rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,244,239,0.5);
  transition: all var(--ease);
  text-decoration: none;
}
.social-link svg { display: block; flex-shrink: 0; }
.social-link:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); }

/* Footer form */
.footer__form-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-dark);
  margin-bottom: 2rem;
}
.footer-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer__form-info p { color: rgba(246,244,239,0.45); font-size: 0.875rem; margin-top: 0.5rem; }
.form-control--dark {
  background: rgba(255,255,255,0.06) !important;
  border-color: var(--border-dark) !important;
  color: var(--off-white) !important;
}
.form-control--dark::placeholder { color: rgba(246,244,239,0.35) !important; }
.form-control--dark:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(211,84,0,0.15) !important;
}
.footer-inline-form { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  text-align: center;
}
.footer__copy { font-size: 0.8rem; color: rgba(246,244,239,0.3); }
.footer__copy a { color: var(--orange); }
.footer__copy a:hover { text-decoration: underline; }

@media (min-width: 640px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-form-grid { grid-template-columns: 1fr 2fr; align-items: start; }
}
@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 2.5fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.65s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ── Language Switcher ─────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 3px;
  margin-left: 0.5rem;
}
.lang-btn {
  font-size: 1.1rem;
  line-height: 1;
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 0.2rem 0.3rem;
  cursor: pointer;
  transition: all var(--ease);
  opacity: 0.5;
  filter: grayscale(0.3);
}
.lang-btn:hover { opacity: 0.85; filter: grayscale(0); background: rgba(255,255,255,0.08); }
.lang-btn--active { opacity: 1; filter: grayscale(0); background: rgba(255,255,255,0.1); }
.lang-btn--active:hover { background: rgba(255,255,255,0.15); }

/* Breadcrumb / page progress */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(246,244,239,0.45);
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
}
.page-breadcrumb a { color: rgba(246,244,239,0.45); }
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb span { color: var(--orange); }
