/* ================================================================
   PitchDeckKits.site — Master Stylesheet
   Stack : Bootstrap 5 CDN + Bootstrap Icons CDN + Custom CSS
   Design: Premium startup/SaaS — Blue · Dark Navy · White · Gray
   Ready : cPanel / public_html upload
   ================================================================ */

/* ------ Design Tokens ------ */
:root {
  --blue:         #2563eb;
  --blue-dark:    #1d4ed8;
  --blue-xdark:   #1e40af;
  --blue-light:   #eff6ff;
  --blue-ring:    rgba(37,99,235,.18);

  --navy:         #0f172a;
  --navy-2:       #1e293b;
  --navy-3:       #334155;
  --gray:         #64748b;
  --gray-lt:      #94a3b8;
  --light:        #f8fafc;
  --light-2:      #f1f5f9;
  --border:       #e2e8f0;
  --white:        #ffffff;

  --green:        #10b981;
  --amber:        #f59e0b;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.07);
  --shadow-md: 0 4px 18px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.16);
  --shadow-blue: 0 6px 24px rgba(37,99,235,.40);

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;

  --ease: .22s ease;
}

/* ------ Reset & Base ------ */
*,*::before,*::after { box-sizing: border-box; }
html                 { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, 'Inter', sans-serif;
  color: var(--navy-2);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
section { scroll-margin-top: 72px; }
a       { transition: color var(--ease); }
img     { max-width: 100%; height: auto; }

/* Shared utility */
.py-sec { padding-top: 5.5rem; padding-bottom: 5.5rem; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav-pdk {
  background: var(--navy) !important;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--ease);
}
.nav-pdk.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.38); }

.logo-text {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--white) !important;
  text-decoration: none;
  letter-spacing: -.5px;
}
.logo-text .dot { color: var(--blue); }

.nav-item-link {
  color: rgba(255,255,255,.68) !important;
  font-weight: 500;
  font-size: .875rem;
  padding: .44rem .88rem !important;
  border-radius: 7px;
  transition: color var(--ease), background var(--ease);
}
.nav-item-link:hover,
.nav-item-link.active { color: var(--white) !important; background: rgba(255,255,255,.07); }

.btn-nav-cta {
  background: var(--blue)  !important;
  color: var(--white)      !important;
  border: none             !important;
  border-radius: var(--r-sm) !important;
  padding: .44rem 1.3rem   !important;
  font-weight: 700         !important;
  font-size: .85rem        !important;
  transition: background var(--ease) !important;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--blue-dark) !important; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: linear-gradient(135deg,#080e1c 0%,#0d1d3c 45%,#162e5a 78%,#1a3b72 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
/* grid-dot overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.055) 1px, transparent 1px),
    linear-gradient(90deg,rgba(37,99,235,.055) 1px,transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}
/* glow orb */
.hero::after {
  content: '';
  position: absolute; top: -15%; right: -5%;
  width: 620px; height: 620px;
  background: radial-gradient(circle,rgba(37,99,235,.22) 0%,transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,99,235,.18);
  border: 1px solid rgba(96,165,250,.28);
  color: #93c5fd;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .37rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
}

.hero-h1 {
  font-size: clamp(2.1rem, 5vw, 3.85rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: normal; color: #60a5fa; }

.hero-lead {
  font-size: clamp(.96rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.63);
  max-width: 510px;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}

/* CTA buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: .9rem 2.2rem;
  font-size: .97rem;
  font-weight: 700;
  border-radius: var(--r);
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,99,235,.55);
  color: var(--white);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: rgba(255,255,255,.76);
  border: 1.5px solid rgba(255,255,255,.22);
  padding: .9rem 2.2rem;
  font-size: .97rem;
  font-weight: 600;
  border-radius: var(--r);
  text-decoration: none;
  transition: all var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  color: var(--white);
}

/* hero stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num { display: block; font-size: 1.7rem; font-weight: 900; color: var(--white); letter-spacing: -.5px; line-height: 1; }
.hero-stat .lbl { font-size: .76rem; color: rgba(255,255,255,.46); margin-top: .25rem; }

/* ---- Deck mockup (right column) ---- */
.deck-wrap {
  position: relative;
  z-index: 1;
}
.deck-card {
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.deck-pill {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .67rem;
  font-weight: 700;
  padding: .26rem .95rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}
/* slide preview inside the card */
.slide-preview {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.slide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.slide-logo-box { width: 26px; height: 26px; background: var(--blue); border-radius: 6px; flex-shrink: 0; }
.slide-brand    { font-size: .68rem; font-weight: 700; color: var(--navy-3); margin-left: .5rem; flex: 1; }
.slide-dots span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--border); margin-left: 3px; }
.slide-dots span.active { background: var(--blue); }

.slide-title-lines { margin-bottom: 1rem; }
.stl { height: 9px; border-radius: 4px; background: var(--navy); margin-bottom: 5px; }
.stl.w75 { width: 75%; }
.stl.w50 { width: 50%; background: var(--gray); opacity: .45; height: 6px; }
.stl.w35 { width: 35%; background: var(--gray); opacity: .3;  height: 5px; }

.slide-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}
.slide-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--blue-light);
  border-top: 2px solid var(--blue);
}

.deck-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .58rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.deck-row:last-of-type { border-bottom: none; }
.dr-left  { display: flex; align-items: center; gap: .55rem; font-size: .78rem; color: rgba(255,255,255,.65); }
.dr-dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.dr-dot.g { background: var(--green); }
.dr-dot.y { background: var(--amber); }
.dr-right { font-size: .78rem; font-weight: 700; color: var(--white); }

.deck-cta-btn {
  margin-top: 1.1rem;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  padding: .68rem;
  font-weight: 700;
  font-size: .86rem;
  cursor: pointer;
  transition: background var(--ease);
  font-family: inherit;
}
.deck-cta-btn:hover { background: var(--blue-dark); }

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .95rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .81rem;
  font-weight: 600;
  color: var(--navy-2);
  white-space: nowrap;
}
.trust-item i { color: var(--blue); font-size: .95rem; }

/* ================================================================
   SECTION LABELS
   ================================================================ */
.eyebrow {
  display: inline-block;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: .31rem 1rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}
.sec-h {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.17;
  margin-bottom: .9rem;
}
.sec-lead {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.product-card:hover {
  border-color: #93c5fd;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.product-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue-ring), var(--shadow-md);
}
.product-card.featured:hover {
  box-shadow: 0 0 0 2px var(--blue), var(--shadow-xl);
}

/* top floating badge */
.top-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.tb-blue  { background: var(--blue);  color: var(--white); }
.tb-amber { background: var(--amber); color: var(--white); }
.tb-green { background: var(--green); color: var(--white); }

.card-icon {
  width: 50px; height: 50px;
  background: var(--blue-light);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.15rem;
}
.card-title { font-size: 1.04rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; line-height: 1.3; }
.card-desc  { font-size: .86rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.1rem; flex-grow: 1; }

.instant-label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  padding: .19rem .7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.card-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 1.1rem;
}
.card-price .cur  { font-size: .98rem; font-weight: 700; vertical-align: top; margin-top: .42rem; display: inline-block; letter-spacing: 0; }
.card-price .once { font-size: .73rem; font-weight: 500; color: var(--gray); letter-spacing: 0; margin-left: .15rem; }

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  text-decoration: none;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r);
  padding: .7rem 1.5rem;
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--ease);
  margin-top: auto;
}
.btn-buy:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}
.product-card.featured .btn-buy              { background: var(--blue);      border-color: var(--blue); }
.product-card.featured .btn-buy:hover        { background: var(--blue-dark); border-color: var(--blue-dark); }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section { background: var(--light); }

.feature-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  height: 100%;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.feature-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}
.feat-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.feat-title { font-size: 1.02rem; font-weight: 800; color: var(--navy); margin-bottom: .45rem; }
.feat-desc  { font-size: .87rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-section { background: var(--white); }

.step-col { position: relative; text-align: center; padding: 0 .5rem; }
/* connector line between steps */
.step-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, #bfdbfe 100%);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
  position: relative;
  z-index: 1;
}
.step-title { font-size: 1.02rem; font-weight: 800; color: var(--navy); margin-bottom: .45rem; }
.step-desc  { font-size: .87rem; color: var(--gray); line-height: 1.7; max-width: 215px; margin: 0 auto; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { background: var(--navy); }

.t-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  height: 100%;
  transition: background var(--ease), border-color var(--ease);
}
.t-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.t-stars  { color: var(--amber); font-size: .93rem; letter-spacing: 1px; margin-bottom: 1.1rem; }
.t-quote  { font-size: .94rem; color: rgba(255,255,255,.76); line-height: 1.75; margin-bottom: 1.4rem; font-style: italic; }
.t-footer { display: flex; align-items: center; gap: .85rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.1); }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800; font-size: .93rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-avatar.c2 { background: #0891b2; }
.t-avatar.c3 { background: #7c3aed; }
.t-name { font-weight: 700; font-size: .9rem; color: var(--white); }
.t-role { font-size: .76rem; color: rgba(255,255,255,.46); }
.t-kit  { font-size: .72rem; color: #60a5fa; font-weight: 600; }

/* ================================================================
   FAQ PREVIEW (accordion)
   ================================================================ */
.faq-section { background: var(--light); }

.acc-pdk .accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  margin-bottom: .7rem;
  overflow: hidden;
}
.acc-pdk .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  padding: 1.2rem 1.5rem;
  box-shadow: none !important;
}
.acc-pdk .accordion-button:not(.collapsed) {
  background: var(--blue-light);
  color: var(--blue-xdark);
}
.acc-pdk .accordion-body {
  font-size: .89rem;
  color: var(--gray);
  line-height: 1.75;
  padding: .4rem 1.5rem 1.5rem;
  background: var(--white);
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-xdark) 0%, var(--blue) 60%, #3b82f6 100%);
  padding: 5rem 0;
}
.cta-band-h { font-size: clamp(1.8rem,4vw,2.75rem); font-weight: 900; color: var(--white); letter-spacing: -1px; margin-bottom: .9rem; }
.cta-band-p { font-size: 1.04rem; color: rgba(255,255,255,.73); margin-bottom: 2rem; line-height: 1.7; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--navy); padding-top: 4rem; }

.foot-logo { font-size: 1.25rem; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: -.4px; }
.foot-logo .dot { color: var(--blue); }
.foot-tag  { font-size: .85rem; color: rgba(255,255,255,.4); margin-top: .7rem; line-height: 1.65; max-width: 240px; }

.foot-col-title { font-size: .67rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.2rem; }
.foot-link      { display: block; color: rgba(255,255,255,.57); text-decoration: none; font-size: .875rem; margin-bottom: .55rem; transition: color var(--ease); }
.foot-link:hover { color: var(--white); }

.foot-ci { display: flex; align-items: flex-start; gap: .7rem; font-size: .85rem; color: rgba(255,255,255,.49); margin-bottom: .75rem; }
.foot-ci i { color: #60a5fa; flex-shrink: 0; margin-top: 2px; }

.foot-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.4rem 0; margin-top: 3rem; }
.foot-copy   { font-size: .8rem; color: rgba(255,255,255,.3); }
.foot-legal-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.foot-legal-link  { font-size: .8rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color var(--ease); }
.foot-legal-link:hover { color: var(--white); }

/* ================================================================
   INNER PAGE HERO
   ================================================================ */
.page-hero {
  background: var(--navy);
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero .eyebrow { background: rgba(37,99,235,.18); color: #93c5fd; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat-box {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
}
.about-stat-box .big { font-size: 2rem; font-weight: 900; color: var(--white); letter-spacing: -1px; display: block; line-height: 1; }
.about-stat-box .sm  { font-size: .75rem; color: rgba(255,255,255,.42); margin-top: .25rem; }

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow var(--ease), transform var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon  { font-size: 1.9rem; display: block; margin-bottom: .9rem; }
.value-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .45rem; }
.value-desc  { font-size: .875rem; color: var(--gray); line-height: 1.7; margin: 0; }

.about-feat { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.about-feat:last-child { margin-bottom: 0; }
.af-icon {
  width: 42px; height: 42px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #60a5fa;
}
.af-text h6 { font-weight: 700; color: var(--white); margin-bottom: .18rem; font-size: .94rem; }
.af-text p  { font-size: .84rem; color: rgba(255,255,255,.47); margin: 0; line-height: 1.6; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.4rem;
}
.ci-row       { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.ci-row:last-child { margin-bottom: 0; }
.ci-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.05rem; flex-shrink: 0;
}
.ci-text strong { display: block; font-size: .86rem; color: var(--navy); margin-bottom: .13rem; }
.ci-text span   { font-size: .83rem; color: var(--gray); }

.flbl  { font-size: .85rem; font-weight: 600; color: var(--navy-2); margin-bottom: .38rem; display: block; }
.finp  {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: .72rem 1rem; font-size: .9rem; color: var(--navy-2);
  background: var(--white); font-family: inherit;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.finp:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-ring); outline: none; }
textarea.finp { resize: vertical; min-height: 124px; }
.btn-submit {
  background: var(--blue); color: var(--white); border: none;
  border-radius: var(--r); padding: .82rem 2.2rem;
  font-weight: 700; font-size: .94rem; cursor: pointer;
  transition: all var(--ease); font-family: inherit;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ================================================================
   FAQ PAGE
   ================================================================ */
.faq-category-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  padding: .75rem 0 .5rem;
  border-bottom: 2px solid var(--blue-light);
  margin-bottom: 1rem;
}
.faq-category-title i { color: var(--blue); margin-right: .5rem; }

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-wrap { padding: 4rem 0 6rem; }
.legal-wrap h2 {
  font-size: 1.28rem; font-weight: 800; color: var(--navy);
  margin-top: 2.75rem; margin-bottom: .85rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.legal-wrap h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-wrap h3 { font-size: 1rem; font-weight: 700; color: var(--navy-2); margin-top: 1.7rem; margin-bottom: .55rem; }
.legal-wrap p  { font-size: .93rem; color: var(--gray); line-height: 1.85; margin-bottom: .95rem; }
.legal-wrap ul, .legal-wrap ol { padding-left: 1.4rem; margin-bottom: .95rem; }
.legal-wrap li { font-size: .93rem; color: var(--gray); line-height: 1.85; margin-bottom: .38rem; }
.legal-wrap strong { color: var(--navy-2); }
.legal-wrap a { color: var(--blue); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.hi-box {
  background: var(--blue-light);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--r);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.hi-box h3 { color: var(--blue-xdark); margin-top: 0; font-size: .98rem; margin-bottom: .4rem; }
.hi-box p  { color: #1e3a8a; margin: 0; font-size: .92rem; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .deck-wrap { margin-top: 2.5rem; }
  .step-col::after { display: none; }
}
@media (max-width: 767px) {
  .hero      { min-height: auto; padding: 5rem 0 4rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 1.4rem; }
  .py-sec    { padding-top: 4rem; padding-bottom: 4rem; }
  .product-card  { padding: 1.4rem 1.25rem; }
  .contact-card  { padding: 1.6rem; }
  .about-stat-grid { gap: .75rem; }
  .foot-bottom { flex-direction: column; gap: .7rem; }
}
