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

:root {
  --navy:         #0A1F3D;
  --navy-mid:     #0D2645;
  --navy-card:    #112952;
  --navy-border:  #1E3F6E;
  --green:        #2E7D32;
  --green-bright: #4CAF50;
  --green-light:  #81C784;
  --white:        #FFFFFF;
  --off-white:    #F4F7F4;
  --muted:        #6B8A9A;
  --text-dark:    #1A2B3C;
  --card-bg:      rgba(11, 31, 61, 0.88);
  --card-border:  rgba(30, 63, 110, 0.7);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }

.gradient-text {
  background: linear-gradient(135deg, #4CAF50, #81C784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.green-text { color: var(--green-bright); }

/* ─── BUTTONS ─── */
.btn-green {
  display: inline-block;
  padding: 14px 32px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-green:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.4); }
.btn-full { width: 100%; text-align: center; }

.btn-outline-white {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-nav {
  padding: 10px 22px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--green-bright); }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ─── LOGO ─── */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-main { height: 52px; width: auto; object-fit: contain; flex-shrink: 0; }

/* ─── NAVIGATION ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E0E8E0;
  padding: 0 24px;
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); transition: color var(--transition); }
.nav-links a:hover { color: var(--green); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid #E0E8E0; padding: 8px 0;
}
.mobile-menu a { padding: 14px 24px; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); border-bottom: 1px solid #F0F4F0; }
.mobile-menu a:hover { color: var(--green); background: #F8FDF8; }
.mobile-menu.open { display: flex; }

/* ─── HERO — FULL BACKGROUND ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(5,13,26,0.88) 0%,
    rgba(10,31,61,0.75) 50%,
    rgba(5,13,26,0.45) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 80px 60px;
}

.hero-content-inner {
  max-width: 640px;
}

.hero-content-inner h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-green { color: var(--green-bright); -webkit-text-fill-color: var(--green-bright); }

.hero-content-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--green-bright);
}
.stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.55); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ─── QUICK ACTION TILES ─── */
#features {
  background: var(--navy-mid);
  padding: 0 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.action-tile {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 14px;
  padding: 22px 20px;
  background: transparent;
  border: none; border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.25s;
  width: 100%;
}
.action-tile:last-child { border-right: none; }
.action-tile:hover { background: rgba(46,125,50,0.1); }
.action-tile:hover .action-tile-glow { opacity: 1; }
.action-tile:hover .action-tile-arrow { opacity: 1; transform: translateX(0); color: var(--green-bright); }
.action-tile:hover .action-tile-icon { transform: scale(1.15); }

.action-tile-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,125,50,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}

.action-tile-icon {
  font-size: 1.8rem; line-height: 1; flex-shrink: 0;
  transition: transform 0.25s;
}

.action-tile-body { flex: 1; }
.action-tile-body h4 {
  font-size: 0.9rem; font-weight: 700;
  color: #fff; margin-bottom: 3px;
  font-family: 'Space Grotesk', sans-serif;
}
.action-tile-body p { font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

.action-tile-arrow {
  font-size: 1rem; color: rgba(255,255,255,0.2);
  opacity: 0; transform: translateX(-4px);
  transition: all 0.25s; flex-shrink: 0;
}

.action-tile-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 100px;
}
.action-tile-badge-green {
  background: rgba(46,125,50,0.2); color: var(--green-bright);
}

/* First tile — Risk quiz — always slightly highlighted */
.action-tile:first-child {
  background: rgba(46,125,50,0.07);
  border-top: 2px solid rgba(76,175,80,0.35);
}
.action-tile:first-child .action-tile-badge {
  background: rgba(76,175,80,0.2); color: var(--green-bright);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .action-tile { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .action-tile:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .action-tile { border-right: none; }
}

/* ─── TAGLINE BANNER ─── */
#tagline-banner { background: var(--green); padding: 18px 0; }
.banner-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.banner-item { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); }
.banner-icon { font-size: 1.2rem; }
.banner-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ─── PROBLEMS ─── */
#problems { padding: 100px 0; background: var(--navy-mid); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.problem-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.problem-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.problem-card-img:hover img { transform: scale(1.05); }

.problem-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,61,0.97) 40%, rgba(10,31,61,0.2) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: var(--transition);
}
.problem-card-img:hover .problem-card-overlay { background: linear-gradient(to top, rgba(10,31,61,0.99) 50%, rgba(10,31,61,0.4) 100%); }
.problem-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.problem-card-overlay h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.problem-card-overlay p { font-size: 0.825rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

.problem-card-zoom {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); color: #fff;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 20px;
  opacity: 0; transition: opacity 0.25s ease;
  pointer-events: none;
}
.problem-card-img:hover .problem-card-zoom { opacity: 1; }

/* ─── LIGHTBOX ─── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-box {
  position: relative; background: #0A1F3D;
  border-radius: 16px; overflow: hidden;
  max-width: 900px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: lbIn 0.28s ease;
}
@keyframes lbIn { from { opacity:0; transform: scale(0.92); } to { opacity:1; transform: scale(1); } }
.lightbox-box img {
  width: 100%; max-height: 480px; object-fit: cover; display: block;
}
.lightbox-info {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 32px;
}
.lightbox-icon { font-size: 2.4rem; flex-shrink: 0; line-height: 1; }
.lightbox-text h3 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.lightbox-text p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.lightbox-close {
  position: absolute; top: 14px; right: 16px;
  background: rgba(0,0,0,0.5); border: none; color: #fff;
  font-size: 1.6rem; line-height: 1; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
@media (max-width: 640px) {
  .lightbox-info { flex-direction: column; padding: 20px; }
  .lightbox-box img { max-height: 240px; }
  .lightbox-text h3 { font-size: 1.15rem; }
}

.problems-cta { text-align: center; }
.problems-cta p { font-size: 1.1rem; margin-bottom: 20px; color: var(--off-white); }

/* ─── SERVICES ─── */
#services { padding: 80px 0 40px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Expertise strip */
.expertise-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 40px;
}
.expertise-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 100px; padding: 8px 20px;
  font-size: 0.875rem; font-weight: 600; color: var(--off-white);
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.expertise-item:hover { border-color: rgba(76,175,80,0.5); background: rgba(76,175,80,0.07); color: #fff; }
.expertise-item span { font-size: 1rem; }
.expertise-hint { font-size: 0.7rem; opacity: 0.5; margin-left: 2px; }

/* ─── EXPERTISE MODALS ─── */
.ex-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.82); align-items: center; justify-content: center; padding: 20px;
}
.ex-overlay.active { display: flex; }

.ex-box {
  position: relative; background: #0D2040;
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 18px; overflow: hidden;
  max-width: 720px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: exIn 0.28s ease;
}
@keyframes exIn { from { opacity:0; transform: scale(0.93) translateY(16px); } to { opacity:1; transform: scale(1) translateY(0); } }

.ex-close {
  position: absolute; top: 14px; right: 16px; z-index: 10;
  background: rgba(255,255,255,0.08); border: none; color: #fff;
  font-size: 1.5rem; width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ex-close:hover { background: rgba(255,255,255,0.18); }

.ex-header {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ex-icon { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.ex-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 4px; }
.ex-header h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0; }

/* Video area */
.ex-video-wrap { width: 100%; background: #060f1e; position: relative; }
.ex-video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #060f1e 0%, #0d2240 100%);
}
.ex-video-inner { text-align: center; padding: 24px; }
.ex-play-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(76,175,80,0.15); border: 2px solid rgba(76,175,80,0.4);
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--green-bright);
}
.ex-video-inner p { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ex-video-inner span { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.ex-iframe { width: 100%; aspect-ratio: 16/9; display: block; }

/* Body */
.ex-body { padding: 28px 32px 32px; }
.ex-body > p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; }
.ex-whatyouget h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 14px; }
.ex-whatyouget ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.ex-whatyouget li { font-size: 0.875rem; color: rgba(255,255,255,0.78); padding-left: 20px; position: relative; line-height: 1.5; }
.ex-whatyouget li::before { content: "✓"; position: absolute; left: 0; color: var(--green-bright); font-weight: 700; }
.ex-cta { display: inline-block; text-decoration: none; }

@media (max-width: 640px) {
  .ex-header { padding: 20px; }
  .ex-body { padding: 20px; }
  .ex-header h3 { font-size: 1.1rem; }
}

/* ─── PRICING ─── */
#pricing { padding: 60px 0 100px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start; margin-bottom: 48px;
}
.pricing-card {
  position: relative;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 36px 28px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(5,13,26,0.5); }
.pricing-featured {
  border-color: rgba(76,175,80,0.55);
  background: linear-gradient(160deg, rgba(46,125,50,0.12), rgba(10,31,61,0.6));
  box-shadow: 0 8px 32px rgba(46,125,50,0.18);
}
.pricing-featured:hover { box-shadow: 0 24px 60px rgba(46,125,50,0.28); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-tier-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 12px;
}
.pricing-icon { font-size: 2.2rem; margin-bottom: 12px; line-height: 1; }
.pricing-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }

.pricing-price { margin-bottom: 12px; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--white); font-family: 'Space Grotesk', sans-serif; }
.price-note { font-size: 0.8rem; color: var(--muted); margin-left: 6px; }

.pricing-tagline { font-size: 0.875rem; color: var(--off-white); line-height: 1.55; margin-bottom: 20px; font-style: italic; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pricing-features li { font-size: 0.845rem; color: var(--off-white); line-height: 1.4; }
.pricing-features li.muted { color: var(--muted); }

.btn-pricing {
  display: block; text-align: center;
  background: transparent; border: 2px solid var(--green);
  color: var(--green); font-weight: 700; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 100px;
  text-decoration: none; transition: background var(--transition), color var(--transition);
  margin-bottom: 12px;
}
.btn-pricing:hover { background: var(--green); color: #fff; }
.btn-pricing-featured { background: var(--green); color: #fff; }
.btn-pricing-featured:hover { background: var(--green-dark); border-color: var(--green-dark); }

.pricing-disclaimer { font-size: 0.68rem; color: var(--muted); text-align: center; line-height: 1.5; margin: 0; }

/* Trust bar */
.pricing-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 20px 32px;
}
.trust-item { font-size: 0.82rem; font-weight: 600; color: var(--off-white); padding: 6px 20px; }
.trust-divider { width: 1px; height: 24px; background: var(--card-border); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .trust-divider { display: none; }
  .trust-item { width: 100%; text-align: center; }
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-color: rgba(76,175,80,0.4); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(5,13,26,0.5); }
.service-card.featured { border-color: rgba(76,175,80,0.5); background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.06)); }
.service-card.featured:hover { box-shadow: 0 20px 40px rgba(46,125,50,0.2); }

.featured-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--green); color: var(--white);
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase;
}
.service-icon-wrap { width: 48px; height: 48px; background: rgba(46,125,50,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon { font-size: 1.4rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ─── PAYMENT OPTIONS ─── */
.payment-options {
  margin-top: 48px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 40px;
}
.payment-options-header { text-align: center; margin-bottom: 36px; }
.payment-options-header h4 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.payment-options-header p { font-size: 0.9rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.6; }

.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.payment-method {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 24px;
}
.payment-method-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.payment-method-info h5 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payment-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; background: rgba(76,175,80,0.15); color: var(--green-bright); padding: 2px 8px; border-radius: 100px; }
.payment-method-info p { font-size: 0.845rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.bank-details { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.bank-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 0.82rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bank-row span { color: var(--muted); flex-shrink: 0; }
.bank-row strong { color: var(--white); font-weight: 600; text-align: right; }
.bank-note { font-size: 0.75rem; color: var(--muted); font-style: italic; line-height: 1.5; margin: 0; }

.btn-pay {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  color: var(--green-bright); text-decoration: none;
  border: 1px solid rgba(76,175,80,0.35); border-radius: 100px;
  padding: 8px 16px; transition: background var(--transition), color var(--transition);
}
.btn-pay:hover { background: var(--green); color: #fff; border-color: var(--green); }

@media (max-width: 768px) {
  .payment-methods { grid-template-columns: 1fr; }
  .payment-options { padding: 24px; }
}

/* ─── HOW IT WORKS ─── */
#how-it-works { padding: 100px 0; background: var(--navy-mid); }
.steps { display: flex; align-items: flex-start; max-width: 900px; margin: 0 auto; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-number { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 800; color: var(--green-bright); margin-bottom: 16px; line-height: 1; }
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step-content p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.step-connector { width: 80px; height: 1px; background: var(--green); margin-top: 28px; flex-shrink: 0; opacity: 0.4; }

/* ─── ABOUT ─── */
#about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; }

.about-photo-frame { width: 280px; height: 280px; border-radius: 50%; overflow: hidden; border: 3px solid var(--green); box-shadow: 0 0 40px rgba(46,125,50,0.25); margin: 0 auto 28px; }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-credentials { display: flex; flex-direction: column; gap: 10px; }
.credential { font-size: 0.8rem; color: var(--muted); padding: 10px 16px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; font-weight: 500; }

.about-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 4px; }
.about-title { color: var(--green-bright); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 24px; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.75; }
.about-text blockquote { margin-top: 28px; padding: 24px 28px; border-left: 3px solid var(--green); background: rgba(46,125,50,0.07); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--off-white); font-size: 0.95rem; line-height: 1.7; }

/* ─── MISSION ─── */
#mission { position: relative; padding: 100px 0; overflow: hidden; }
.mission-bg { position: absolute; inset: 0; }
.mission-bg-img { width: 100%; height: 100%; object-fit: cover; }
.mission-overlay { position: absolute; inset: 0; background: rgba(10,31,61,0.88); }
.mission-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.mission-shield { width: 70px; height: 70px; object-fit: contain; margin-bottom: 24px; filter: drop-shadow(0 4px 16px rgba(76,175,80,0.5)); }
.mission-inner h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; color: var(--white); line-height: 1.6; font-style: italic; margin-bottom: 20px; }
.mission-attribution { color: var(--muted); font-size: 0.875rem; font-weight: 500; margin-bottom: 16px; }
.mission-tagline { color: var(--green-bright); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; }

/* ─── CONTACT ─── */
#contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 16px; }
.contact-text > p { color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); }
.contact-icon { font-size: 1.1rem; }
.contact-tagline p { font-size: 0.95rem; color: var(--off-white); font-weight: 600; }

.contact-form { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--off-white); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(10,31,61,0.8); border: 1px solid var(--navy-border);
  border-radius: 8px; padding: 12px 16px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color var(--transition); outline: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(107,138,154,0.5); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(76,175,80,0.1); }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 12px; }

/* ─── FOOTER ─── */
footer { padding: 60px 0 32px; border-top: 1px solid var(--navy-border); background: var(--navy-mid); }
.footer-inner { display: flex; gap: 64px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 240px; }
.footer-tag-line { color: var(--green-bright); font-size: 0.9rem; font-weight: 700; margin-top: 14px; }
.footer-sub { color: var(--muted); font-size: 0.825rem; margin-top: 8px; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--off-white); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(30,63,110,0.5); flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-copy-tag { color: var(--green-bright) !important; font-weight: 600; }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RISK QUIZ ─── */

/* Floating button */
.quiz-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 1500;
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  border: none; border-radius: 100px;
  padding: 14px 22px; cursor: pointer;
  box-shadow: 0 8px 32px rgba(46,125,50,0.45);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fabPulse 2.5s ease-in-out infinite;
}
.quiz-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(46,125,50,0.55); animation: none; }
.quiz-fab-icon { font-size: 1.1rem; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(46,125,50,0.45); }
  50% { box-shadow: 0 8px 48px rgba(46,125,50,0.75); }
}

/* Overlay */
.quiz-overlay {
  display: none; position: fixed; inset: 0; z-index: 2100;
  background: rgba(0,0,0,0.85);
  align-items: center; justify-content: center; padding: 16px;
}
.quiz-overlay.active { display: flex; }

/* Box */
.quiz-box {
  background: #0A1F3D; border: 1px solid rgba(76,175,80,0.25);
  border-radius: 20px; width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: quizIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes quizIn { from { opacity:0; transform: scale(0.9) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }

/* Header */
.quiz-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px 16px;
}
.quiz-header-left { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 700; color: var(--green-bright); letter-spacing: 0.06em; text-transform: uppercase; }
.quiz-logo-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }
.quiz-close { background: rgba(255,255,255,0.08); border: none; color: #fff; font-size: 1.4rem; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.quiz-close:hover { background: rgba(255,255,255,0.18); }

/* Progress */
.quiz-progress-wrap { height: 4px; background: rgba(255,255,255,0.07); margin: 0 24px; border-radius: 4px; overflow: hidden; }
.quiz-progress-bar { height: 100%; width: 20%; background: linear-gradient(90deg, var(--green), var(--green-bright)); border-radius: 4px; transition: width 0.4s ease; }
.quiz-progress-label { font-size: 0.7rem; color: var(--muted); text-align: right; padding: 6px 24px 0; }

/* Questions */
.quiz-q { display: none; padding: 28px 24px 24px; animation: qFade 0.35s ease; }
.quiz-q.active { display: block; }
@keyframes qFade { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
.quiz-q-icon { font-size: 2.8rem; margin-bottom: 14px; line-height: 1; }
.quiz-q h3 { font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 10px; }
.quiz-q p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 24px; }

/* Options */
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; border-radius: 12px; padding: 14px 20px;
  font-size: 0.9rem; font-weight: 600; text-align: left;
  cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.quiz-opt:hover { background: rgba(76,175,80,0.15); border-color: rgba(76,175,80,0.45); }
.quiz-opt.selected { background: rgba(46,125,50,0.25); border-color: var(--green); color: #fff; }
.quiz-opt-unsure { color: rgba(255,255,255,0.6); }
.quiz-opt-unsure:hover { color: #fff; }

/* Result */
.quiz-result-inner { padding: 24px; }
.quiz-result-gauge { text-align: center; margin-bottom: 28px; }
.gauge-svg { width: 200px; height: 115px; }
.gauge-score-text { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; fill: #fff; }
.quiz-risk-label {
  font-size: 1.4rem; font-weight: 800; margin-top: 4px;
  font-family: 'Space Grotesk', sans-serif;
}
.risk-low { color: #66BB6A; }
.risk-medium { color: #FFA726; }
.risk-high { color: #EF5350; }

.quiz-result-content h4 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.quiz-result-content p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.quiz-flags { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.quiz-flag { display: flex; align-items: flex-start; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px 14px; font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.quiz-flag-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.flag-red { background: #EF5350; }
.flag-orange { background: #FFA726; }
.flag-green { background: #66BB6A; }

.quiz-result-cta { display: flex; flex-direction: column; gap: 10px; }
.quiz-cta-primary { display: block; text-align: center; background: var(--green); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 24px; border-radius: 100px; text-decoration: none; transition: background 0.2s; }
.quiz-cta-primary:hover { background: var(--green-dark); }
.quiz-cta-secondary { display: block; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none; padding: 8px; }
.quiz-cta-secondary:hover { color: #fff; }
.quiz-retake { background: none; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); font-size: 0.78rem; padding: 8px 16px; border-radius: 100px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s; width: 100%; margin-top: 4px; }
.quiz-retake:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

@media (max-width: 480px) {
  .quiz-fab-label { display: none; }
  .quiz-fab { padding: 14px 16px; border-radius: 50%; }
  .quiz-fab-icon { font-size: 1.3rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero { min-height: 100vh; }
  .hero-content { padding: 100px 32px 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 1px; height: 40px; background: var(--green); margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 90px 24px 48px; }
  .hero-content-inner h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .stat-div { display: none; }
  .hero-stats { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 24px; }
  .banner-dot { display: none; }
  .banner-inner { gap: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── BEFORE / AFTER SLIDERS ─── */
.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  cursor: ew-resize;
  user-select: none;
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: box-shadow 0.25s, transform 0.25s;
}
.ba-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.5); transform: translateY(-3px); }

/* BEFORE layer — full card, contains problem photo */
.ba-before {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ba-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.ba-before-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,30,0.92) 0%, rgba(5,15,30,0.25) 55%, transparent 100%);
  z-index: 1;
}
.ba-before-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 22px;
  z-index: 2;
}
.ba-icon { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.ba-before-info h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ba-before-info p { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* AFTER layer — clipped to right of handle */
.ba-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 0 0 50%); /* starts at 50% — JS updates this */
  background: linear-gradient(145deg, #0A2340 0%, #0D3D2A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-after-panel {
  padding: 24px 24px 24px 36px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.ba-after-check {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ba-after-panel h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.ba-after-panel p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.ba-after-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
  margin-top: 4px;
}
.ba-after-btn:hover { background: #1b5e20; }

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; /* JS updates */
  width: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 2px;
  background: #fff;
  opacity: 0.85;
}
.ba-handle-btn {
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
  z-index: 1;
  transition: transform 0.15s;
}
.ba-card:hover .ba-handle-btn { transform: scale(1.12); }

/* BEFORE / AFTER labels */
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 6;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  pointer-events: none;
}
.ba-tag-before {
  left: 14px;
  background: rgba(239,83,80,0.85);
  color: #fff;
}
.ba-tag-after {
  right: 14px;
  background: rgba(46,125,50,0.9);
  color: #fff;
}

/* Drag hint */
.ba-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.55);
  padding: 5px 12px;
  border-radius: 100px;
  pointer-events: none;
  transition: opacity 0.4s;
  white-space: nowrap;
}
.ba-card.dragging .ba-hint,
.ba-card.interacted .ba-hint { opacity: 0; }

/* Expand button */
.ba-expand {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 12;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ba-expand:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 640px) {
  .ba-before-info h3 { font-size: 0.9rem; }
  .ba-after-panel { padding: 20px 20px 20px 32px; }
  .ba-after-panel h3 { font-size: 0.9rem; }
  .ba-handle-btn { width: 32px; height: 32px; font-size: 0.78rem; }
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--navy-mid); padding: 100px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.testimonial-card--featured {
  border-color: rgba(76,175,80,0.45);
  background: linear-gradient(145deg, #112952 0%, #0d3020 100%);
  box-shadow: 0 4px 24px rgba(46,125,50,0.18);
}

.testimonial-stars {
  color: #FFB300;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #1b5e20);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-info strong { font-size: 0.9rem; font-weight: 700; color: #fff; }
.testimonial-info span  { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.testimonial-project {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 100px;
  width: fit-content;
}

.testimonials-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.testimonials-note a {
  color: var(--green-bright);
  font-weight: 600;
  transition: color 0.2s;
}
.testimonials-note a:hover { color: #fff; }
.testimonials-note span { margin-right: 6px; }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: auto; }
}

/* ─── WHATSAPP FAB ─── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.wa-fab:hover {
  background: #1ebe5d;
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}
.wa-fab-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.wa-fab-label { white-space: nowrap; }

/* Pulse ring */
.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid rgba(37,211,102,0.6);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-fab-label { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; }
}

/* ─── FAQ ─── */
#faq { background: var(--navy); padding: 100px 0; }

.faq-grid {
  max-width: 820px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open {
  border-color: rgba(76,175,80,0.4);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-item.open .faq-q { background: rgba(76,175,80,0.06); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s, border-color 0.25s, color 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-a p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 18px;
  margin: 0;
}
.faq-a p strong { color: rgba(255,255,255,0.9); }

.faq-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 640px) {
  .faq-q { font-size: 0.9rem; padding: 18px 20px; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; }
}

/* ─── INTAKE LINK BUTTON ─── */
.btn-pricing-secondary {
  background: transparent;
  border: 1.5px solid rgba(76,175,80,0.4);
  color: var(--green-bright);
  margin-bottom: 10px;
}
.btn-pricing-secondary:hover {
  background: rgba(76,175,80,0.1);
  border-color: var(--green-bright);
  color: #fff;
}

/* ─── SEASONAL SERVICES ─── */
#seasonal-services { background: var(--navy-mid); padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.06); }

.seasonal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }

.seasonal-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.seasonal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.seasonal-card--orange { border-top: 4px solid #F97316; }
.seasonal-card--blue   { border-top: 4px solid #3B82F6; }

.seasonal-card-header { display: flex; align-items: flex-start; gap: 16px; }
.seasonal-card-icon { font-size: 2.2rem; flex-shrink: 0; }
.seasonal-card-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.seasonal-card-header h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.seasonal-price { font-size: 1.3rem; font-weight: 800; color: var(--green-bright); }
.seasonal-card > p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.seasonal-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.seasonal-list li { font-size: 0.83rem; color: rgba(255,255,255,0.7); }

/* ─── SPECIALIST SERVICE CARDS ─── */
.specialist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }

.specialist-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.specialist-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.specialist-card--blue { border-top: 4px solid #3B82F6; }
.specialist-card--teal { border-top: 4px solid #0891B2; }

.specialist-card-header {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 28px 0;
}
.specialist-icon { font-size: 2rem; }
.specialist-card-header h3 { font-size: 1.05rem; font-weight: 800; color: #fff; }
.specialist-card > p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.75; padding: 16px 28px; }

.specialist-includes {
  margin: 0 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 18px;
}
.specialist-includes strong { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-bright); display: block; margin-bottom: 10px; }
.specialist-includes ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.specialist-includes li { font-size: 0.8rem; color: rgba(255,255,255,0.65); padding-left: 14px; position: relative; }
.specialist-includes li::before { content: '▸'; position: absolute; left: 0; color: var(--green-bright); }

.specialist-tier { font-size: 0.75rem; color: rgba(255,255,255,0.35); padding: 0 28px 16px; font-style: italic; }
.specialist-card .btn-green { margin: 0 28px 28px; display: inline-block; }

/* ─── PRICING IDEAL FOR ─── */
.pricing-ideal-for {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px 0;
}
.pricing-ideal-for strong { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #60A5FA; display: block; margin-bottom: 8px; }
.pricing-ideal-for ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pricing-ideal-for li { font-size: 0.78rem; color: rgba(255,255,255,0.6); padding-left: 14px; position: relative; }
.pricing-ideal-for li::before { content: '▸'; position: absolute; left: 0; color: #60A5FA; }

/* ─── RISK CHECK SECTION ─── */
#risk-check { background: var(--navy); padding: 100px 0; }

.rc-tabs {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.rc-tab {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  border-radius: 100px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.rc-tab:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.rc-tab--active { background: var(--green); border-color: var(--green); color: #fff; }

.rc-quiz { display: none; max-width: 720px; margin: 0 auto; }
.rc-quiz--active { display: block; }
.rc-quiz-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 28px; text-align: center; }

.rc-questions { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.rc-q {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.rc-q p { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 14px; line-height: 1.5; }
.rc-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.rc-opts button {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.rc-opts button:hover { border-color: rgba(76,175,80,0.5); color: #fff; }
.rc-opts button.rc-selected { background: rgba(46,125,50,0.25); border-color: var(--green); color: #fff; }

.rc-submit {
  display: block;
  width: 100%;
  background: var(--green);
  border: none;
  color: #fff;
  border-radius: 100px;
  padding: 15px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.rc-submit:hover { background: #1b5e20; }

.rc-result { margin-top: 24px; }
.rc-result--visible .rc-result-inner {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 24px 24px 28px;
}
.rc-result-label { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; }
.rc-result-inner p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.rc-retake {
  background: none; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45); border-radius: 100px;
  padding: 8px 20px; font-family: 'Inter', sans-serif;
  font-size: 0.78rem; cursor: pointer; margin-top: 12px; margin-left: 12px;
  transition: all 0.2s;
}
.rc-retake:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

@media (max-width: 900px) {
  .seasonal-grid   { grid-template-columns: 1fr; }
  .specialist-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .rc-tabs { gap: 8px; }
  .rc-tab  { font-size: 0.78rem; padding: 10px 16px; }
  .rc-opts { flex-direction: column; }
  .rc-opts button { width: 100%; }
}
