/* ============================================================
   YTP Solutions — Clean Stylesheet
   ============================================================ */

/* ── Variables ── */
:root {
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --blue-light: #eff6ff;
  --navy:       #0f172a;
  --dark:       #1e293b;
  --body:       #334155;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --light:      #f8fafc;
  --lighter:    #f1f5f9;
  --white:      #ffffff;
  --green:      #22c55e;
  --yellow:     #f59e0b;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 20px rgba(15,23,42,.08);
  --shadow-lg:  0 16px 48px rgba(15,23,42,.14);
  --ease:       .2s ease;
  --font:       'Inter', system-ui, sans-serif;
  --font-h:     'Outfit', system-ui, sans-serif;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  /* NO overflow-x here — it breaks position:fixed in Chrome */
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: 64px; /* fixed nav height */
  /* NO overflow-x here either — breaks position:fixed */
}

/* Clip horizontal overflow on the page wrapper, never on html/body */
.page-clip {
  overflow-x: clip;
  width: 100%;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; transition: var(--ease); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}

p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   NAVBAR
============================================================ */
#siteNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: #1d4ed8;
  box-shadow: 0 2px 16px rgba(15,23,42,.18);
  transition: background .25s ease, box-shadow .25s ease;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  min-height: 64px;
}
#siteNav.scrolled {
  background: #1845c0;
  box-shadow: 0 4px 24px rgba(15,23,42,.28);
}

/* Override Bootstrap 5 .navbar padding */
#siteNav.navbar { padding: 0; }

/* Header row — brand + toggle side by side */
#siteNav .navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Brand */
#siteNav .nav-brand {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -.02em;
  text-decoration: none;
  line-height: 1;
  float: none;
}
#siteNav .nav-brand span { color: #93c5fd; }

/* ── Hamburger — hidden on desktop ── */
#siteNav .navbar-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 7px;
  padding: 8px 10px;
  cursor: pointer;
  width: 42px;
  height: 38px;
  float: none;
}
#siteNav .navbar-toggle .icon-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
/* Animated X when open */
#siteNav .navbar-toggle.is-open .icon-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#siteNav .navbar-toggle.is-open .icon-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
#siteNav .navbar-toggle.is-open .icon-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Desktop nav links ── */
#siteNav .nav-collapse {
  display: flex;
  align-items: center;
}

#siteNav .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  float: none;
}
#siteNav .navbar-nav li a {
  display: block;
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
#siteNav .navbar-nav li a:hover {
  color: #fff;
  background: rgba(255,255,255,.14);
}

/* Get a Quote CTA */
#siteNav .appointment-btn a {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  padding: 8px 18px;
  margin-left: 6px;
}
#siteNav .appointment-btn a:hover {
  background: rgba(255,255,255,.3);
  color: #fff;
}

/* ── Mobile ── */
@media (max-width: 991.98px) {
  /* Full-width header row so space-between pushes burger to far right */
  #siteNav .navbar-header { width: 100%; }

  /* Show hamburger */
  #siteNav .navbar-toggle { display: flex; }

  /* Dropdown panel — always rendered, transitions in/out */
  #siteNav .nav-collapse {
    display: block;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #1840ab;
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 12px 32px rgba(15,23,42,.28);
    padding: 4px 0 14px;
    z-index: 999;
    /* Closed state */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .22s ease,
                transform .22s ease,
                visibility 0s linear .22s;
    pointer-events: none;
  }
  #siteNav .nav-collapse.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .22s ease,
                transform .22s ease,
                visibility 0s linear 0s;
    pointer-events: auto;
  }

  #siteNav .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    float: none;
  }

  /* Menu items — stagger out on close (reverse order, snappy) */
  #siteNav .navbar-nav li {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .14s ease, transform .14s ease;
  }
  #siteNav .navbar-nav li:nth-child(1) { transition-delay: .1s;  }
  #siteNav .navbar-nav li:nth-child(2) { transition-delay: .07s; }
  #siteNav .navbar-nav li:nth-child(3) { transition-delay: .04s; }
  #siteNav .navbar-nav li:nth-child(4) { transition-delay: .02s; }
  #siteNav .navbar-nav li:nth-child(5) { transition-delay: 0s;   }
  #siteNav .navbar-nav li:nth-child(6) { transition-delay: 0s;   }

  /* Stagger in on open */
  #siteNav .nav-collapse.is-open .navbar-nav li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease;
  }
  #siteNav .nav-collapse.is-open .navbar-nav li:nth-child(1) { transition-delay: .06s; }
  #siteNav .nav-collapse.is-open .navbar-nav li:nth-child(2) { transition-delay: .1s;  }
  #siteNav .nav-collapse.is-open .navbar-nav li:nth-child(3) { transition-delay: .14s; }
  #siteNav .nav-collapse.is-open .navbar-nav li:nth-child(4) { transition-delay: .18s; }
  #siteNav .nav-collapse.is-open .navbar-nav li:nth-child(5) { transition-delay: .22s; }
  #siteNav .nav-collapse.is-open .navbar-nav li:nth-child(6) { transition-delay: .26s; }

  #siteNav .navbar-nav li a {
    padding: 8px 22px;
    border-radius: 0;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
  }
  #siteNav .navbar-nav li a:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
  }
  #siteNav .navbar-nav li:last-child a { border-bottom: none; }

  /* Mobile CTA — inline pill, text width only */
  #siteNav .appointment-btn {
    padding: 8px 22px 12px;
    border-bottom: none;
  }
  #siteNav .appointment-btn a {
    display: inline-block;
    padding: 3px 10px;
    font-size: .85rem;
    font-weight: 600;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 6px;
    color: #fff;
    margin: 0;
  }
  #siteNav .appointment-btn a:hover {
    background: rgba(255,255,255,.24);
  }
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
  background: linear-gradient(145deg, #0a1628 0%, #0f2246 50%, #0f172a 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.18);
  border: 1px solid rgba(96,165,250,.3);
  color: #93c5fd;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-section h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero-highlight {
  background: linear-gradient(90deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

/* Buttons */
.btn-white-solid {
  background: #fff;
  color: var(--blue-dark);
  padding: 13px 30px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .92rem;
  border: 2px solid #fff;
  transition: var(--ease);
  display: inline-block;
}
.btn-white-solid:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid rgba(255,255,255,.4);
  transition: var(--ease);
  display: inline-block;
}
.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
}
.hstat { flex: 1; min-width: 100px; padding: 0 24px; }
.hstat:first-child { padding-left: 0; }
.hstat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hstat-lbl {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.45);
  margin-top: 5px;
}
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* ============================================================
   SECTIONS — SHARED
============================================================ */
.site-section { padding: 96px 0; }
.mb-section { margin-bottom: 56px; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow-light { color: #60a5fa !important; }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.section-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.section-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.bg-dark-sect  { background: var(--navy); }
.bg-light-sect { background: var(--lighter); }

/* ============================================================
   ABOUT
============================================================ */
.about-visual {
  position: relative;
  height: 400px;
}
.av-box {
  position: absolute;
  border-radius: var(--radius-lg);
}
.av-box-1 {
  width: 72%; height: 72%;
  top: 0; left: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.av-box-2 {
  width: 60%; height: 60%;
  bottom: 0; right: 0;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,.07);
}
.av-stat-card {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  z-index: 2;
  border: 1px solid var(--border);
}
.av-stat-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.av-stat-txt { font-size: .82rem; color: var(--muted); line-height: 1.5; }

.pillar-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--body);
}
.pillar p { margin: 0; }
.pillar strong { color: var(--navy); }
.pillar-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 3px;
}

/* ============================================================
   SERVICES
============================================================ */
.svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  transition: border-color var(--ease), transform var(--ease);
}
.svc-card:hover { border-color: rgba(96,165,250,.4); transform: translateY(-4px); }
.svc-card-featured {
  background: rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.3);
}
.svc-badge {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 100px;
}
.svc-icon {
  width: 50px; height: 50px;
  background: rgba(37,99,235,.16);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  margin-bottom: 18px;
}
.svc-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 4px; }
.svc-price {
  font-family: var(--font-h);
  font-size: 1.85rem;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 14px;
}
.svc-price span { font-size: .9rem; font-weight: 400; color: rgba(255,255,255,.4); }
.svc-desc { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 18px; line-height: 1.7; }
.svc-list { margin-bottom: 24px; }
.svc-list li {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.svc-link { color: #60a5fa; font-weight: 600; font-size: .875rem; }
.svc-link:hover { color: #fff; }

.bundle-bar {
  margin-top: 40px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(96,165,250,.22);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bundle-bar p { color: rgba(255,255,255,.82); font-size: .95rem; margin: 0; }
.bundle-bar strong { color: #fff; }
.bundle-bar em { font-style: normal; color: #93c5fd; }

.btn-accent-sm {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
  display: inline-block;
}
.btn-accent-sm:hover { background: var(--blue-dark); color: #fff; }

.btn-accent {
  background: var(--blue);
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  display: inline-block;
  border: none;
}
.btn-accent:hover { background: var(--blue-dark); color: #fff; }

/* ============================================================
   PORTFOLIO
============================================================ */
.port-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  color: inherit;
  height: 100%;
}
.port-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.port-thumb {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--lighter);
}
.port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.port-card:hover .port-thumb img { transform: scale(1.05); }

.port-hover {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  opacity: 0;
  transition: opacity .25s ease;
  backdrop-filter: blur(2px);
}
.port-card:hover .port-hover { opacity: 1; }

.port-info { padding: 18px 20px 20px; }
.port-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 5px;
}
.port-info h4 { font-size: .96rem; color: var(--navy); margin-bottom: 2px; }
.port-info p  { font-size: .78rem; color: var(--muted); }

.port-cta {
  background: var(--lighter);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 28px;
  min-height: 280px;
}
.port-cta h4 { font-size: 1rem; margin-bottom: 10px; }
.port-cta p  { font-size: .88rem; color: var(--muted); margin-bottom: 20px; }

/* ── Portfolio Carousel ── */
.port-carousel {
  position: relative;
  padding: 0 52px;
}
.port-viewport {
  overflow: hidden;
  width: 100%;
}
.port-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  user-select: none;
  align-items: stretch;
}
.port-track .port-card {
  flex-shrink: 0;
  /* width set by JS */
}

/* Arrow buttons */
.port-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, border-color .2s;
}
.port-arr:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.port-arr-prev { left: 0; }
.port-arr-next { right: 0; }

@media (max-width: 767px) {
  .port-carousel { padding: 0 40px; }
  .port-arr { width: 36px; height: 36px; }
}

/* ============================================================
   BEFORE / AFTER SLIDER
============================================================ */
.ba-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  background: var(--navy);
}

/* Both panels fill the container */
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  pointer-events: none;
}

/* After panel is clipped — JS controls the width via clip-path */
.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s; /* no transition — direct drag feel */
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.ba-label-before {
  left: 14px;
  background: rgba(15,23,42,.6);
  color: rgba(255,255,255,.85);
}
.ba-label-after {
  right: 14px;
  background: rgba(37,99,235,.75);
  color: #fff;
}

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  pointer-events: none;
  z-index: 10;
}
.ba-line {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: .9;
}
.ba-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15,23,42,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

/* The invisible range input sits over everything and drives interaction */
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: col-resize;
  margin: 0;
  z-index: 20;
  -webkit-appearance: none;
}

/* Mobile — fixed height so website screenshots show properly */
@media (max-width: 991.98px) {
  .ba-slider {
    aspect-ratio: unset;
    height: 520px;
  }
}
@media (max-width: 480px) {
  .ba-slider { height: 420px; }
}

/* ============================================================
   PRICING
============================================================ */
.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  text-align: center;
  position: relative;
  transition: transform var(--ease);
}
.price-card:hover { transform: translateY(-4px); }
.price-card-featured {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(37,99,235,.4);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  margin: 0 auto 16px;
}
.price-name {
  font-family: var(--font-h);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.price-amount {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.price-amount sup { font-size: 1.3rem; vertical-align: 8px; }
.price-period {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  margin-bottom: 20px;
}
.price-card-featured .price-period { color: rgba(255,255,255,.75); }
.price-hr { border-color: rgba(255,255,255,.12); margin: 20px 0; }
.price-list { text-align: left; margin-bottom: 28px; }
.price-list li {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.price-list li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.price-card-featured .price-list li { color: rgba(255,255,255,.9); }

.price-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .9rem;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.22);
  transition: background var(--ease);
  text-align: center;
}
.price-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
.price-btn-featured {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .9rem;
  background: #fff;
  color: var(--blue);
  border: none;
  transition: background var(--ease);
  text-align: center;
}
.price-btn-featured:hover { background: #dbeafe; color: var(--blue-dark); }
.price-note { text-align: center; margin-top: 32px; font-size: .82rem; color: rgba(255,255,255,.35); }

/* ============================================================
   WHY
============================================================ */
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.why-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 46px; height: 46px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-card h4 { font-size: .98rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   FAQ — Bootstrap Accordion Overrides
============================================================ */
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
}
.faq-item + .faq-item { margin-top: 0; }

.faq-btn {
  font-family: var(--font-h) !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background: #fff !important;
  padding: 18px 22px !important;
  box-shadow: none !important;
  border: none;
}
.faq-btn:not(.collapsed) { color: var(--blue) !important; background: #fff !important; }
.faq-btn::after {
  filter: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
}
.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232563eb' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
}
.accordion-button:focus { box-shadow: none !important; }

.faq-body {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.78;
  padding: 0 22px 18px !important;
  background: #fff !important;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-info-panel {
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.ci-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--body);
}
.ci-item strong { display: block; font-size: .8rem; color: var(--navy); margin-bottom: 1px; }
.ci-item span { color: var(--muted); font-size: .88rem; }
.ci-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.cf-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  letter-spacing: .02em;
}
.cf-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--navy);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.cf-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.cf-input::placeholder { color: #94a3b8; }
textarea.cf-input { resize: vertical; min-height: 108px; }

.cf-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .96rem;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  display: block;
  text-align: center;
}
.cf-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.cf-note { font-size: .75rem; color: #94a3b8; text-align: center; margin-top: 8px; margin-bottom: 0; }

.form-res {
  margin-top: 12px;
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}
.form-res.ok  { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.form-res.err { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy);
  padding: 60px 0 28px;
}
.footer-brand { margin-bottom: 12px; }
.footer-logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -.02em;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-logo span { color: #60a5fa; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.65; }
.site-footer h6 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul li a { font-size: .85rem; color: rgba(255,255,255,.52); }
.site-footer ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.22); margin: 0; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .site-section { padding: 72px 0; }
  .hero-section { min-height: auto; padding: 60px 0 52px; }
}

@media (max-width: 767px) {
  .site-section { padding: 56px 0; }
  .mb-section { margin-bottom: 40px; }
  .hero-section h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-white-solid,
  .hero-btns .btn-white-outline { text-align: center; width: 100%; }
  .hero-stats { gap: 12px; padding-top: 28px; }
  .hstat { min-width: 40%; }
  .hstat-div { display: none; }
  .section-title { font-size: 1.7rem; }
  .contact-info-panel { padding: 24px 20px; }
  .contact-form-panel { padding: 28px 20px; }
  .svc-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  body { padding-top: 60px; }
  .site-section { padding: 48px 0; }
  .price-card { padding: 32px 20px; }

}

/* ============================================================
   PAGE ENTRANCE ANIMATIONS
   Hero & nav use CSS keyframes (AOS can't reliably fire on
   above-fold / position:fixed elements on first paint).
   All other sections use AOS (data-aos attributes in HTML).
============================================================ */

/* ── Keyframes ── */
@keyframes ytpSlideDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Easing: spring-like — fast in, cushioned stop */
:root { --spring: cubic-bezier(.16, 1, .3, 1); }

/* ── Nav slides in from top ── */
#siteNav {
  animation: ytpSlideDown .55s var(--spring) both;
}

/* ── Hero elements stagger up ── */
.hero-badge {
  animation: ytpSlideDown .62s var(--spring) .18s both;
}

.hero-section h1 {
  animation: ytpSlideUp .72s var(--spring) .30s both;
}

.hero-lead {
  animation: ytpSlideUp .72s var(--spring) .44s both;
}

.hero-btns {
  animation: ytpSlideUp .72s var(--spring) .56s both;
}

.hero-stats {
  animation: ytpSlideUp .72s var(--spring) .68s both;
}
