/* ============================================================
   Experttakeyourprocotorexam — Main Stylesheet
   Design: Orange + White, bold modern layout
   ============================================================ */

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

:root {
  --orange:        #FF6B2B;
  --orange-hover:  #E85A1A;
  --orange-light:  #FFF0EA;
  --orange-mid:    rgba(255,107,43,.12);
  --black:         #111111;
  --dark:          #1C1C1C;
  --gray:          #6B7280;
  --gray-light:    #F3F4F6;
  --white:         #FFFFFF;
  --bg:            #FFF8F4;
  --border:        #E5E7EB;
  --green:         #16A34A;
  --green-bg:      #DCFCE7;
  --red:           #DC2626;
  --red-bg:        #FEE2E2;
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     28px;
  --shadow:        0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:     0 12px 48px rgba(0,0,0,.13);
  --transition:    all .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── Announcement Bar ─────────────────────────────────────── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 500;
}
.announcement-bar a {
  color: var(--orange);
  font-weight: 700;
  margin-left: 6px;
}
.announcement-bar a:hover { text-decoration: underline; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand-top {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-logo-text .brand-bottom {
  font-size: .88rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); background: var(--orange-light); }

/* ── Nav Auth Buttons ─────────────────────────────────────── */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-nav-login {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: .86rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-login:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.btn-nav-signup {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: .86rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-signup:hover { background: var(--orange); transform: translateY(-1px); }

.btn-chat-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-chat-live:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,43,.4); }

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

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); background: var(--orange-light); }
.mobile-menu .btn-chat-live { margin-top: 12px; justify-content: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,43,.35); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

/* ── Orange badge pill ────────────────────────────────────── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--orange);
}
.badge-pill .shield-icon { font-size: 1rem; }

/* ── Section helpers ──────────────────────────────────────── */
section { padding: 80px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange);
  color: var(--orange);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}
.text-orange { color: var(--orange); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 64px 0 40px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px 300px;
  gap: 40px;
  align-items: center;
}

/* Hero left */
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-desc strong { color: var(--black); }

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--dark);
  font-weight: 500;
}
.hero-checklist li .chk {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
  font-size: .7rem;
}
.hero-checklist li strong { color: var(--black); }

/* Email form */
.hero-form {
  display: flex;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 18px;
  max-width: 500px;
  transition: var(--transition);
}
.hero-form:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,43,.15); }
.hero-form .form-icon {
  display: flex;
  align-items: center;
  padding: 0 16px 0 20px;
  color: var(--gray);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .93rem;
  padding: 15px 0;
  background: transparent;
  color: var(--black);
}
.hero-form input::placeholder { color: #aaa; }
.hero-form .btn-primary {
  border-radius: 50px;
  margin: 5px;
  padding: 11px 24px;
  font-size: .9rem;
  white-space: nowrap;
}

.hero-trust-tags {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
}
.hero-trust-tags span::before {
  content: '✔';
  color: var(--orange);
  font-size: .75rem;
}

/* Hero phone (center) */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.hero-phone-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--orange);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  opacity: .12;
  z-index: 0;
}
.phone-mockup {
  position: relative;
  z-index: 1;
  width: 260px;
  background: #1c1c1e;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.1);
}
.phone-speaker {
  width: 48px; height: 5px;
  background: #333;
  border-radius: 3px;
  margin: 0 auto 8px;
}
.phone-screen-inner {
  background: #ECE5DD;
  border-radius: 38px;
  overflow: hidden;
  height: 500px;
  display: flex;
  flex-direction: column;
}
.phone-statusbar {
  background: #054C41;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 18px;
  font-size: .6rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.phone-wa-head {
  background: #075E54;
  padding: 7px 12px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.phone-wa-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.phone-wa-name  { font-size: .75rem; font-weight: 700; color: white; }
.phone-wa-status { font-size: .6rem; color: rgba(255,255,255,.75); }
.phone-wa-icons { display: flex; gap: 12px; color: rgba(255,255,255,.8); font-size: .85rem; margin-left: auto; }
.phone-wa-msgs {
  flex: 1;
  padding: 10px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
  background: #ECE5DD;
}
.phone-date-chip-small {
  text-align: center;
  font-size: .6rem;
  background: rgba(255,255,255,.6);
  color: #555;
  padding: 2px 10px;
  border-radius: 10px;
  align-self: center;
  margin-bottom: 4px;
}
.wa-msg-in, .wa-msg-out {
  max-width: 82%;
  padding: 6px 9px 4px;
  border-radius: 8px;
  font-size: .7rem;
  line-height: 1.45;
  color: #111;
  position: relative;
}
.wa-msg-in {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.wa-msg-out {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.wa-time {
  font-size: .55rem;
  color: rgba(0,0,0,.38);
  float: right;
  margin-left: 8px;
  margin-top: 2px;
}
/* ── Typing indicator (animated dots) ── */
.wa-typing {
  background: white;
  border-radius: 18px 18px 18px 3px;
  padding: 10px 14px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
  margin: 2px 0;
}
.wa-typing span {
  width: 6px;
  height: 6px;
  background: #aaa;
  border-radius: 50%;
  display: block;
  animation: waDot 1.3s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes waDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .6; }
  30%            { transform: translateY(-5px); opacity: 1; }
}
.phone-wa-input-bar {
  background: #F0F0F0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-input-box {
  flex: 1;
  background: white;
  border-radius: 24px;
  padding: 8px 14px;
  font-size: .68rem;
  color: #aaa;
}
.wa-send-btn {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .75rem;
  flex-shrink: 0;
}

/* Hero right */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 18px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-feature-pill:hover { border-color: var(--orange); color: var(--orange); transform: translateX(4px); }
.hero-feature-pill .fp-icon {
  width: 32px; height: 32px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.trust-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-top: 4px;
}
.trust-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.trust-card-avatars {
  display: flex;
}
.trust-card-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  margin-left: -8px;
}
.trust-card-avatars img:first-child { margin-left: 0; }
.trust-card-label { font-size: .82rem; font-weight: 700; color: var(--black); }
.trust-card-label span { color: var(--orange); }
.trust-card-stars { color: #FBBF24; font-size: .85rem; }
.trust-card-rating { font-size: .72rem; color: var(--gray); margin-top: 2px; }
.trust-card-body { font-size: .78rem; color: #555; line-height: 1.6; }

/* ── Platform Ticker ──────────────────────────────────────── */
.platforms-section {
  background: var(--white);
  padding: 44px 0 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.platforms-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.platforms-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
}

/* Ticker rows */
.ticker-wrap {
  overflow: hidden;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--white) 20%, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--white) 20%, transparent); }

.ticker-track {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: max-content;
  padding: 8px 0;
  will-change: transform;
  transform: translateZ(0);
}
.ticker-left  { animation: tickLeft  55s linear infinite; }
.ticker-right { animation: tickRight 60s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }

@keyframes tickLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tickRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Individual logo badge */
.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: default;
  transition: transform .2s ease;
}
.logo-badge:hover { transform: translateY(-3px); }

.logo-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.logo-badge:hover .logo-circle {
  box-shadow: 0 6px 20px rgba(255,107,43,.15);
  border-color: var(--orange);
}
.logo-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Text-only logos (for certs without SVG icons) */
.logo-circle-text {
  font-size: .72rem;
  font-weight: 900;
  color: var(--lt-color, var(--dark));
  letter-spacing: -.01em;
  text-align: center;
  padding: 0 6px;
  line-height: 1.2;
}

.logo-badge span {
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray);
  text-align: center;
  max-width: 90px;
  white-space: nowrap;
}

/* ── How It Works ─────────────────────────────────────────── */
.how-section { background: var(--bg); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 64px;
  left: calc(16.66% + 30px);
  right: calc(16.66% + 30px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
  pointer-events: none;
}

.step-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.step-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(255,107,43,.12); transform: translateY(-4px); }

.step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.step-num-box {
  background: var(--orange);
  color: white;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.step-num-box .step-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .85;
  margin-bottom: 2px;
}
.step-num-box .step-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}
.step-desc {
  font-size: .88rem;
  color: #555;
  line-height: 1.75;
}
.step-desc strong { color: var(--black); }

.step-arrow {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--orange);
  z-index: 2;
  background: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card:last-child .step-arrow { display: none; }

/* ── Comparison Table ─────────────────────────────────────── */
.comparison-section { background: var(--white); }
.comparison-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.comp-table-wrap {
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
}
.comp-table thead tr {
  background: var(--gray-light);
}
.comp-table thead th {
  padding: 18px 24px;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.comp-table thead th:first-child { text-align: left; }
.comp-th-bad {
  color: var(--red);
}
.comp-th-bad sub { display: block; font-size: .7rem; color: #888; text-transform: none; font-weight: 500; margin-top: 4px; }
.comp-th-good {
  color: var(--green);
  background: #F0FDF4;
}
.comp-th-good sub { display: block; font-size: .7rem; color: #888; text-transform: none; font-weight: 500; margin-top: 4px; }

.comp-table tbody tr {
  border-top: 1px solid var(--border);
  transition: background .15s;
}
.comp-table tbody tr:hover { background: #FAFAFA; }

.comp-table td {
  padding: 16px 24px;
  font-size: .9rem;
  vertical-align: middle;
}
.comp-table td:first-child {
  font-weight: 700;
  color: var(--black);
}
.comp-table td:first-child sub {
  display: block;
  font-size: .77rem;
  color: var(--gray);
  font-weight: 400;
  margin-top: 2px;
}
.comp-table td:not(:first-child) { text-align: center; }
.comp-table td:last-child { background: #F0FDF4; }

.comp-bad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-bg);
  color: var(--red);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 700;
}
.comp-good {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 700;
}
.comp-good sub,
.comp-bad sub {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  opacity: .75;
  margin-top: 2px;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: var(--orange);
  border-radius: 50%;
  top: -150px; right: -80px;
  opacity: .15;
}
.cta-banner-text .cta-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.cta-banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-head {
  margin-bottom: 40px;
}
.testimonials-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 500px;
}
.testimonials-head p {
  font-size: .95rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.review-platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-badge:hover { border-color: var(--orange); transform: translateY(-2px); }
.review-badge .rb-icon { font-size: 1.4rem; }
.review-badge .rb-info .rb-name { font-size: .78rem; font-weight: 700; color: var(--black); }
.review-badge .rb-info .rb-stars { color: #FBBF24; font-size: .72rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.testi-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(255,107,43,.1); transform: translateY(-4px); }
.testi-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--orange-light);
}
.testi-name { font-weight: 800; font-size: .9rem; color: var(--black); }
.testi-role { font-size: .75rem; color: var(--gray); }
.testi-stars { color: #FBBF24; font-size: .85rem; margin-top: 3px; }
.testi-exam {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.testi-text {
  font-size: .86rem;
  color: #555;
  line-height: 1.7;
}

.testimonials-cta { text-align: center; margin-top: 40px; }

/* ── About Section ────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255,107,43,.4);
}

.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.about-content > p { font-size: .95rem; color: #555; line-height: 1.75; margin-bottom: 14px; }
.about-content > p strong { color: var(--black); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-feat {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.about-feat h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.about-feat h4 .feat-ico {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .75rem;
  flex-shrink: 0;
}
.about-feat p { font-size: .78rem; color: var(--gray); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.faq-left p  { font-size: .95rem; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  color: var(--black);
  gap: 12px;
  user-select: none;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: .88rem;
  color: #555;
  line-height: 1.75;
}
.faq-a a { color: var(--orange); font-weight: 600; }
.faq-item.open .faq-a { display: block; }

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta-section { background: var(--white); padding: 48px 0 80px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .brand-top { color: white; }
.footer-brand .brand-bottom { color: var(--orange); }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  color: rgba(255,255,255,.75);
}
.footer-social-btn:hover { background: var(--orange); color: white; }

.footer-col h4 {
  font-size: .88rem;
  font-weight: 800;
  color: white;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item .fc-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2a1a0e 100%);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: var(--orange);
  border-radius: 50%;
  top: -200px; right: -100px;
  opacity: .08;
}
.page-hero .section-tag { justify-content: center; }
.page-hero h1 { color: white; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 16px; max-width: 700px; margin-left: auto; margin-right: auto; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.page-breadcrumb a { color: var(--orange); }
.page-breadcrumb span { color: rgba(255,255,255,.3); }

/* ── Services page ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(255,107,43,.1); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--black); }
.service-card p  { font-size: .86rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.service-link {
  color: var(--orange);
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 16px; }
.contact-info p  { font-size: .92rem; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--orange); }
.contact-method .cm-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.contact-method .cm-label { font-size: .75rem; color: var(--gray); margin-bottom: 3px; }
.contact-method .cm-value { font-size: .9rem; font-weight: 700; color: var(--black); }

.contact-form-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--black);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Blog page ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.blog-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(255,107,43,.1); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 22px; }
.blog-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: .84rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: .75rem; color: var(--gray); display: flex; align-items: center; gap: 14px; }
.blog-meta span::before { content: '•'; margin-right: 6px; }
.blog-meta span:first-child::before { content: ''; }

/* ── About page ───────────────────────────────────────────── */
.about-page-section { background: var(--white); }
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.value-card .vc-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 { font-size: 1rem; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.value-card p  { font-size: .82rem; color: var(--gray); line-height: 1.65; }

/* ── Stats strip ──────────────────────────────────────────── */
.stats-strip {
  background: var(--orange);
  padding: 44px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-box { color: white; }
.stat-box .stat-n { font-size: 2.2rem; font-weight: 900; display: block; margin-bottom: 6px; }
.stat-box .stat-l { font-size: .82rem; font-weight: 500; opacity: .85; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 300px; }
  .hero-right { display: none; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-phone-wrap {
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
  }
  /* Scale phone down on tablet so it doesn't dominate */
  .phone-mockup { width: 220px; }
  .phone-screen-inner { height: 400px; }
  .hero-right { display: none; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .step-arrow { display: none !important; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 32px 28px; }
  .cta-banner-actions { justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .comp-table td, .comp-table th { padding: 12px 14px; font-size: .82rem; }
  .comparison-head { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-chat-live { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-form { flex-direction: column; border-radius: 16px; overflow: visible; background: transparent; border: none; }
  .hero-form input { border: 2px solid var(--border); border-radius: 50px; padding: 15px 20px; background: white; }
  .hero-form .btn-primary { border-radius: 50px; margin: 0; padding: 15px 28px; width: 100%; }
  .hero-form .form-icon { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  /* Smaller phone on mobile */
  .phone-mockup { width: 200px; }
  .phone-screen-inner { height: 360px; }
  .hero-phone-wrap { margin-bottom: 28px; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .about-grid { gap: 24px; }
  .about-img-wrap img { height: 280px; object-fit: cover; border-radius: var(--radius-xl); width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .platforms-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .review-platforms { gap: 10px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-trust-tags { gap: 10px; font-size: .75rem; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
  .comp-table-wrap { overflow-x: auto; }
  /* Compact phone on small mobile */
  .phone-mockup { width: 180px; }
  .phone-screen-inner { height: 320px; }
  .phone-wa-msgs { font-size: .72rem; }
  .wa-msg-in, .wa-msg-out { font-size: .72rem; padding: 8px 10px; }
  .hero-checklist { gap: 10px; }
  .hero-checklist li { font-size: .85rem; }
  .hero-badge { font-size: .75rem; padding: 7px 14px; }
  .value-card, .about-feat { padding: 20px 18px; }
  .testi-card { padding: 20px 18px; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .section-tag { font-size: .75rem; padding: 6px 14px; }
  .announcement-bar { font-size: .78rem; padding: 8px 12px; }
}
