/* ============================================================
   REDBLOCK — styles.css
   ============================================================ */

:root {
  --red: #C8102E;
  --red-light: #FFF5F6;
  --red-dark: #a80d25;
  --bg: #FFFFFF;
  --text: #111827;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.18s;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #E8102E, var(--red));
  color: #fff;
  box-shadow: 0 3px 14px rgba(200,16,46,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d40f28, var(--red-dark));
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(200,16,46,0.4);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ── NAVIGATION ── */
/* ══════════════════════════════════════════
   NAVIGATION — Repulave Pill Style
══════════════════════════════════════════ */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.2s;
}
.nav-wrapper.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* outer bar: logo | pill | right-actions */
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

/* Logo — left anchor */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* Centre pill container */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f5f5f7;
  border: 1px solid #e8e8e8;
  border-radius: 100px;
  padding: 5px 6px;
  margin: 0 auto;
}

/* Links inside pill */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  border-radius: 100px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-link:hover { color: #111; background: #fff; }
.nav-link.active { color: var(--red); font-weight: 600; }

/* Solutions dropdown trigger — same pill style */
.nav-solutions-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-solutions-btn:hover { color: #111; background: #fff; }
.nav-solutions-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-solutions-wrap:hover .nav-solutions-btn svg,
.nav-solutions-wrap.open .nav-solutions-btn svg { transform: rotate(180deg); }

/* Solutions mega-dropdown */
.nav-solutions-wrap { position: relative; }
.nav-solutions-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  padding: 10px;
  /* invisible top padding acts as mouse bridge */
  padding-top: 16px;
  margin-top: -4px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 500;
}
/* Only JS-controlled open, no :hover — prevents menu closing mid-cursor */
.nav-solutions-wrap.open .nav-solutions-menu { display: flex; }

/* Second dropdown (Reputation Management) — align right so it doesn't overflow viewport */
#navRepWrap .nav-solutions-menu {
  left: auto;
  right: 0;
  transform: none;
  width: 420px;
}
.nav-solutions-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 11px;
  text-decoration: none;
  transition: background 0.12s;
}
.nav-solutions-item:hover { background: #fef2f2; }
.nav-sol-icon {
  width: 36px; height: 36px;
  background: #fef2f2;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.nav-sol-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
  margin-bottom: 1px;
}
.nav-sol-text small {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}
.nav-sol-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  background: #fef2f2;
  color: var(--red);
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-sol-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 4px 4px;
}
.nav-sol-group-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px 4px;
}

/* Right-side actions */
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-contact-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-contact-link:hover { color: #111; }

/* ── LANGUAGE SWITCHER ── */
.nav-lang-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: 2px;
}
.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 6px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
  opacity: 0.75;
}
.nav-lang-btn:hover { background: rgba(0,0,0,0.05); opacity: 1; }
.nav-lang-wrap.open .nav-lang-btn { background: rgba(0,0,0,0.05); opacity: 1; }
.nav-lang-flag { font-size: 18px; line-height: 1; display: block; }
.nav-lang-code { font-size: 11px; font-weight: 700; color: #555; letter-spacing: 0.3px; }
.nav-lang-chevron { transition: transform 0.2s; flex-shrink: 0; opacity: 0.5; width: 8px; height: 8px; }
.nav-lang-wrap.open .nav-lang-chevron { transform: rotate(180deg); }
.nav-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.05);
  padding: 5px;
  display: none;
  flex-direction: column;
  gap: 1px;
  min-width: 158px;
  z-index: 600;
}
.nav-lang-wrap.open .nav-lang-menu { display: flex; }
.nav-lang-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  transition: background 0.12s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.nav-lang-item:hover:not([style*="pointer-events:none"]) { background: #f5f5f7; }
.nav-lang-item.active { background: #fff0f0; color: var(--red); font-weight: 700; }
.nav-lang-item .lang-flag { font-size: 16px; line-height: 1; }
.nav-lang-item .lang-name { flex: 1; }
.nav-lang-item .lang-check { color: var(--red); font-size: 11px; font-weight: 700; }

/* Mobile lang switcher */
.nav-mobile-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0;
}
.nav-mobile-lang-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: all 0.15s;
}
.nav-mobile-lang-item:hover { border-color: var(--red); color: var(--red); }
.nav-mobile-lang-item.active { background: #fef2f2; border-color: var(--red); color: var(--red); }

/* CTA button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--red);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile menu — always hidden on desktop, shown only via JS on mobile */
.nav-mobile-menu { display: none; }

/* Burger — mobile only */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.22s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* legacy compat */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 8px; display: none; flex-direction: column; gap: 2px; z-index: 200;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown a { padding: 9px 14px; font-size: 13px; font-weight: 500; border-radius: 8px; color: var(--text); transition: background 0.12s, color 0.12s; }
.dropdown a:hover { background: var(--red-light); color: var(--red); }
.nav-cta { margin-left: 8px; flex-shrink: 0; }

/* ── SECTION COMMON ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  position: relative;
  padding: 0 4px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: none;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* ── HERO ── */
.hero {
  padding: 80px 0 100px;
  background: #FAFAFA;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,16,46,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 440px;
  gap: 56px;
  align-items: start;
  padding-bottom: 20px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFEEF1;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid rgba(200,16,46,0.15);
}

.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title-red { color: var(--red); }

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.bullet-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}

.bullet-icon-red {
  background: #FFEEF1;
  color: var(--red);
  border: 1px solid rgba(200,16,46,0.12);
}

.bullet-icon-orange {
  background: #FFF3E8;
  color: #D97706;
  border: 1px solid rgba(217,119,6,0.15);
}

.hero-review {
  background: #fff;
  border: 1.5px solid #E8ECF0;
  border-radius: 20px;
  padding: 28px 30px 24px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
}

/* big decorative quote mark */
.hero-review::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.hero-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-review-stars-row {
  display: flex;
  gap: 1px;
}

.star-gold {
  font-size: 18px;
  color: #F59E0B;
  line-height: 1;
}

.hero-review-score-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-review-quote {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 20px;
}

.quote-highlight {
  font-weight: 700;
  color: var(--red);
}

.hero-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #F0F2F5;
}

.reviewer-portrait-sm {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(200,16,46,0.12);
  flex-shrink: 0;
}

.hero-review-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.hero-review-author span { font-size: 12px; color: var(--text-muted); display: block; margin-top: 1px; }

/* Legacy compat */
.reviewer-portrait {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  outline: 2px solid rgba(200,16,46,0.12);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.reviewer span { font-size: 12px; color: var(--text-muted); display: block; }

/* ── HERO FORM CARD ── */
.hero-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 80px;
}

.hero-badges-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  min-width: 54px;
}

.award-badge-top {
  width: 100%;
  padding: 6px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 900;
  font-size: 11px;
}

.award-g2 { background: linear-gradient(135deg,#FF6B35,#FF3118); color:#fff; }
.award-cap { background: linear-gradient(135deg,#FF9D00,#FF7A00); color:#fff; }
.award-google { background:#F9FAFB; }

.award-stars-sm { font-size: 8px; color: #F59E0B; letter-spacing: 1px; padding: 2px 0 1px; }
.award-label { font-size: 8px; font-weight: 700; color: var(--text); padding: 2px 4px 4px; text-align: center; background: #fff; width: 100%; }

.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.form-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}

/* ── PHONE COUNTRY PICKER ── */
.phone-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #FAFAFA;
  overflow: visible;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.phone-input-wrap:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
  background: #fff;
}

.phone-country-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  height: 40px;
  background: none;
  border: none;
  border-right: 1.5px solid var(--border);
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.12s;
}
.phone-country-btn:hover { background: #F3F4F6; }

.phone-flag { font-size: 16px; line-height: 1; }
.phone-code { font-size: 13px; font-weight: 600; color: var(--text); min-width: 30px; }

.phone-country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 300;
  overflow: hidden;
}
.phone-country-dropdown.open { display: block; }

.phone-country-search { padding: 8px 10px; border-bottom: 1px solid #F3F4F6; }
.phone-country-search input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: var(--font);
  outline: none;
}
.phone-country-search input:focus { border-color: var(--red); }

.phone-country-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 4px;
}

.phone-country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  transition: background 0.1s;
}
.phone-country-option:hover { background: #F9FAFB; }
.phone-country-option .opt-flag { font-size: 18px; flex-shrink: 0; }
.phone-country-option .opt-name { flex: 1; font-weight: 500; }
.phone-country-option .opt-code { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.phone-number-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  outline: none;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text);
  box-shadow: none !important;
  min-width: 0;
}

/* ── FORMS ── */
.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text);
  background: #FAFAFA;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.form-group textarea {
  padding: 10px 12px;
  min-height: 72px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
  background: #fff;
}

.input-icon-wrap { position: relative; }

.input-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.6;
}

.req { color: var(--red); font-weight: 700; }

.field-optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

.form-success { text-align: center; padding: 32px 0; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #D1FAE5; color: #059669;
  font-size: 26px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 14px; }

/* ── FEATURED IN ── */
.featured-in {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid #EAECF0;
  border-bottom: 1px solid #EAECF0;
}

.featured-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.featured-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pub-logo {
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.pub-logo:hover { opacity: 0.75; }
.pub-logo svg { height: 24px; }

/* ── MOCKUP FEATURES SECTION ── */
.mockup-section {
  padding: 100px 0;
  background: #fff;
}

/* ── SOLUTIONS CARDS SECTION ── */
.solutions-section {
  padding: 80px 0;
  background: #FAFAFA;
}
.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.solutions-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.solutions-tab:hover { color: #111827; }
.solutions-tab.active {
  background: #111827;
  color: #fff;
}
.solutions-panel { display: none; }
.solutions-panel.active { display: block; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* 5-card grid: 3 top + 2 bottom centered */
.sol-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-grid-5 .sol-card:nth-child(4) {
  grid-column: 1;
}
.sol-grid-5 .sol-card:nth-child(5) {
  grid-column: 2;
}
.sol-card {
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.sol-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.sol-card-illus {
  width: 100%;
  line-height: 0;
}
.sol-card-body {
  padding: 20px 22px 24px;
}
.sol-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sol-arrow {
  color: #CC1033;
  font-weight: 700;
  flex-shrink: 0;
}
.sol-card-body p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* What We Do Tabs */
.wwd-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.wwd-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 50px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.wwd-tab:hover {
  border-color: var(--red);
  color: var(--red);
}
.wwd-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.wwd-panel { display: none; }
.wwd-panel.active { display: block; }

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mockup-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.mockup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.mockup-illus {
  width: 100%;
  line-height: 0;
  border-bottom: 1px solid #F3F4F6;
  overflow: hidden;
}
.mockup-illus svg { display: block; width: 100%; }

.mockup-card-body {
  padding: 24px 24px 28px;
}

.mockup-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mockup-icon-red { background: #FFEEF1; color: var(--red); }
.mockup-icon-orange { background: #FFF3E8; color: #D97706; }

.mockup-card-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.mockup-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── BUILT FOR ── */
.built-for-section {
  padding: 100px 0;
  background: #0D0F14;
  text-align: center;
}

.built-for-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.built-for-highlight { color: var(--red); }

.built-for-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Tab switcher */
.bf-tabs {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 5px;
  gap: 4px;
  margin-bottom: 56px;
}

.bf-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.bf-tab:hover { color: #fff; }
.bf-tab.active {
  background: var(--red);
  color: #fff;
}

/* Tab panels */
.bf-panel { display: none; }
.bf-panel.active { display: block; }

.bf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

/* Feature list */
.bf-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bf-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bf-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bf-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bf-list p {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin: 0;
}

.bf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.bf-cta-btn:hover {
  background: #a50e27;
  transform: translateY(-1px);
}

/* Illustration side */
.bf-illus {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  line-height: 0;
}
.bf-illus svg { display: block; width: 100%; }

/* Old grid classes kept for safety */
.built-for-grid { display: none; }
.built-for-card {}
.built-for-icon {}
.built-for-card h3 {}
.built-for-card p {}

/* ── WHO WE HELP ── */
.who-section {
  padding: 100px 0;
  background: #F9FAFB;
}

.who-section .section-sub,
.team-section .section-sub,
.services-section .section-sub {
  text-align: center;
}

.who-section .section-eyebrow,
.who-section .section-title,
.team-section .section-eyebrow,
.team-section .section-title,
.services-section .section-eyebrow,
.services-section .section-title,
.get-started-section .section-eyebrow,
.get-started-section .section-title,
.get-started-section .section-sub,
.testimonials-section .section-eyebrow,
.testimonials-section .section-title,
.testimonials-section .section-sub {
  text-align: center;
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #EAECF0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-illus { width: 100%; line-height: 0; }
.card-illus svg { display: block; width: 100%; }

.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── GET STARTED SECTION ── */
.get-started-section {
  padding: 100px 0;
  background: #F9FAFB;
  border-top: 1px solid #EAECF0;
  border-bottom: 1px solid #EAECF0;
}

.gs-outer {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 28px;
  align-items: start;
  margin-top: 48px;
}

.gs-left-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 36px 32px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.gs-card-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.gs-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
}

.gs-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.gs-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.gs-check { width: 18px; height: 18px; flex-shrink: 0; }

.gs-trusted-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  margin-top: auto;
}

.gs-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.gs-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  min-width: 60px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.gs-badge-top {
  width: 100%;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 900;
  font-size: 11px;
}

.gs-badge-g2 { background: linear-gradient(135deg,#FF6B35,#FF3118); color:#fff; }
.gs-badge-cap { background: linear-gradient(135deg,#FF9D00,#FF7A00); color:#fff; }
.gs-badge-white { background: #F9FAFB; gap: 4px; }

.gs-badge-bot {
  width: 100%;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--text);
  padding: 5px 4px;
  background: #fff;
  line-height: 1.3;
}

.gs-form-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.gs-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}

.gs-form-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}

.gs-title-highlight {
  color: var(--red);
  background: #FFEEF1;
  border-radius: 4px;
  padding: 1px 6px;
}

.gs-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.gs-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.gs-option {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  font-family: var(--font);
}
.gs-option:hover { border-color: var(--red); background: #FFF5F6; color: var(--red); }
.gs-option--active { border-color: var(--red); background: #FFEEF1; color: var(--red); font-weight: 600; }

.gs-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #E8102E, #C8102E);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: 0.01em;
  margin-top: 6px;
  box-shadow: 0 4px 18px rgba(200,16,46,0.35);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.gs-submit-btn:hover {
  background: linear-gradient(135deg, #C8102E, #a80d25);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,16,46,0.45);
}

/* Experts bar */
.gs-experts-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gs-experts-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.gs-experts-avatar { display: flex; align-items: center; flex-shrink: 0; }
.gs-experts-text { white-space: nowrap; }

.gs-experts-cta { color: var(--red); font-weight: 700; text-decoration: none; }
.gs-experts-cta:hover { text-decoration: underline; }

.gs-experts-right { display: flex; gap: 10px; flex-shrink: 0; }

.gs-experts-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  transition: all 0.15s;
}

.gs-experts-telegram { color: #229ED9; }
.gs-experts-telegram:hover { background: #EFF9FF; border-color: #229ED9; }
.gs-experts-whatsapp { color: #25D366; }
.gs-experts-whatsapp:hover { background: #EFFFEF; border-color: #25D366; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  background: #F9FAFB;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,16,46,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.t-stars { color: #F59E0B; font-size: 14px; letter-spacing: 1.5px; margin-bottom: 14px; }

.testimonial-card > p {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-portrait {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  outline: 2px solid rgba(200,16,46,0.12);
  flex-shrink: 0;
}

.reviewer strong { display: block; font-size: 14px; font-weight: 700; }
.reviewer span { font-size: 12px; color: var(--text-muted); display: block; }

/* ── TEAM ── */
.team-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #EAECF0;
}

.team-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-cta-link {
  align-self: flex-end;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1.5px solid #E5E7EB;
  border-radius: 999px;
  padding: 7px 18px;
  transition: all 0.15s;
  white-space: nowrap;
}
.team-cta-link:hover { border-color: var(--red); color: var(--red); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.team-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #E5E7EB;
  line-height: 0;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.4s, transform 0.4s;
}
.team-card:hover .team-portrait img {
  filter: grayscale(20%) contrast(1.02);
  transform: scale(1.03);
}

.team-info { padding: 18px 20px 22px; }

.team-info h3, .team-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.team-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.team-social { display: flex; gap: 8px; }

.team-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 7px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  color: #374151;
  text-decoration: none;
  transition: all 0.15s;
}
.team-social-btn:hover { border-color: var(--red); color: var(--red); background: #FFF5F6; }

/* ── CHOOSE THE RIGHT SOLUTION ── */
.choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #8B0000 0%, #CC1033 50%, #a00020 100%);
  position: relative;
  overflow: hidden;
}
.choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.choose-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.choose-left {
  color: #fff;
}
.choose-shield {
  margin-bottom: 24px;
  opacity: 0.9;
}
.choose-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.choose-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.choose-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 400px;
}
.choose-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choose-tab {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.choose-tab:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.choose-tab.active {
  background: #fff;
  border-color: #fff;
  color: #CC1033;
}
.choose-right {
  position: relative;
}
.choose-panel { display: none; }
.choose-panel.active { display: block; }
.choose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.choose-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.2s;
}
.choose-card:hover {
  background: rgba(255,255,255,0.13);
}
.choose-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.choose-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.choose-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .choose-inner { grid-template-columns: 1fr; gap: 40px; }
  .choose-cards { grid-template-columns: 1fr; }
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #A80D25 0%, #C8102E 40%, #8B0000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes ctaSweep {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; }

.cta-shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  margin: 0 auto 16px;
}

.cta-rating-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-review-card {
  display: inline-block;
  margin-top: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 520px;
  text-align: left;
}

.cta-review-stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }

.cta-review-card > p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 12px;
}

.cta-review-author { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); }

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 64px 0;
  background: #111827;
  text-align: center;
}

.newsletter-section h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.newsletter-section > .container > p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: rgba(200,16,46,0.6); }

/* ── FINAL CTA BANNER ── */
.cta-banner-section {
  background: linear-gradient(135deg, #8B0000 0%, #CC1033 55%, #a00020 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.cta-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.04) 0%, transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.03) 0%, transparent 45%);
  pointer-events: none;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-banner-left { color: #fff; }
.cta-banner-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.cta-banner-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #CC1033;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.cta-banner-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}
.cta-review-float {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 20px 22px;
  color: #fff;
  max-width: 220px;
  backdrop-filter: blur(8px);
}
.cta-review-float-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #FBBF24;
  margin-bottom: 10px;
}
.cta-review-float-stars span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.cta-review-float-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.cta-shield-wrap {
  opacity: 0.85;
}
@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-right { justify-content: flex-start; }
}

/* ── FOOTER ── */
.footer {
  background: #0D0D0F;
  overflow: hidden;
  font-family: inherit;
}


/* ── Newsletter bar ── */
.footer-newsletter-bar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 40px 0;
}
.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.footer-newsletter-inner h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  letter-spacing: -0.02em;
}
.footer-newsletter-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 360px;
  line-height: 1.65;
  margin: 0;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
}
.footer-newsletter-form input {
  padding: 11px 16px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13.5px;
  width: 230px;
  outline: none;
  font-family: inherit;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.38); }
.footer-newsletter-form input:focus { background: rgba(255,255,255,0.14); }
.footer-newsletter-form button {
  padding: 11px 20px;
  border: none;
  background: #fff;
  color: #111;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.footer-newsletter-form button:hover { background: #e8e8e8; }

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0;
}

/* ── Link columns ── */
.footer-links-section {
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 0.8fr 1.4fr;
  gap: 32px;
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.42);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col li a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1;
}
.footer-col li a:hover { color: #fff; }
.footer-address { gap: 6px !important; }
.footer-address li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.footer-address li strong {
  color: #fff;
  font-weight: 700;
  display: block;
  font-size: 14.5px;
  margin-bottom: 2px;
}


/* ── Bottom bar ── */
.footer-bottom-bar {
  padding: 28px 0 24px;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
/* Left: logo + description */
.footer-bottom-left {
  max-width: 310px;
}
.footer-logo-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.footer-logo-sm svg { flex-shrink: 0; }
.footer-bottom-left > p {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin: 0;
}
/* Right: social + links + copyright */
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-bottom-social {
  display: flex;
  gap: 7px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-copyright {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-links-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-newsletter-form { width: 100%; }
  .footer-newsletter-form input { flex: 1; width: auto; }
  .footer-rating-inner { justify-content: flex-start; }
  .footer-bottom-inner { flex-direction: column; gap: 24px; }
  .footer-bottom-right { align-items: flex-start; }
  .footer-bottom-links { justify-content: flex-start; }
}
@media (max-width: 540px) {
  .footer-hero { height: 200px; }
  .footer-links-inner { grid-template-columns: 1fr 1fr; }
  .footer-rating-score { flex-wrap: wrap; gap: 10px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner,
  .gs-outer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-form-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 1100px) {
  .mockup-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .built-for-grid { grid-template-columns: 1fr; max-width: 440px; }
  .mockup-grid { grid-template-columns: 1fr; }
  .bf-inner { grid-template-columns: 1fr; gap: 36px; }
  .bf-illus { order: -1; }
}

@media (max-width: 1000px) {
  /* Hide Contact Us text, keep only CTA button */
  .nav-contact-link { display: none; }
}

@media (max-width: 900px) {
  /* Shrink pill items slightly */
  .nav-pill { gap: 0; padding: 4px 4px; }
  .nav-link, .nav-solutions-btn { padding: 6px 10px; font-size: 13px; }
  .nav-cta-btn { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 768px) {
  /* Hide pill and right area, show burger */
  .nav-pill, .nav-right { display: none !important; }
  .nav-burger { display: flex; }

  /* Mobile menu overlay */
  .nav-mobile-menu {
    display: none !important;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 16px 16px env(safe-area-inset-bottom, 40px);
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }
  .nav-mobile-menu.open { display: flex !important; }

  /* Mobile nav links — large touch targets */
  .nav-mobile-menu .nav-link,
  .nav-mobile-menu .nav-solutions-btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    border-radius: 10px;
    text-align: left;
    justify-content: flex-start;
    background: none;
    transition: background 0.12s;
  }
  .nav-mobile-menu .nav-link:hover,
  .nav-mobile-menu .nav-solutions-btn:hover { background: #f9fafb; }

  /* Solutions sub-menu: accordion — hidden by default, shown when .open */
  .nav-mobile-menu .nav-solutions-menu {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    background: #fafafa;
    margin: 2px 0 6px;
    border-radius: 12px;
    padding: 6px;
    flex-direction: column;
  }
  .nav-mobile-menu .nav-solutions-wrap.open .nav-solutions-menu { display: flex; }
  .nav-mobile-menu .nav-solutions-wrap.open .nav-solutions-btn svg { transform: rotate(180deg); }
  .nav-mobile-menu .nav-solutions-item {
    padding: 10px 12px;
    border-radius: 8px;
  }
  .nav-mobile-menu .nav-solutions-item:hover { background: #fef2f2; }
  .nav-mobile-menu .nav-sol-icon { width: 32px; height: 32px; font-size: 15px; }
  .nav-mobile-menu .nav-sol-text strong { font-size: 13px; }
  .nav-mobile-menu .nav-sol-text small { font-size: 11.5px; }
  .nav-mobile-menu .nav-sol-divider { display: none; }

  /* Divider between nav groups */
  .nav-mobile-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 8px 4px;
  }

  /* CTA button full-width */
  .nav-mobile-cta {
    display: flex;
    margin-top: 12px;
    width: 100%;
    padding: 15px;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
  }

  .gs-experts-text { font-size: 13px; }
  .gs-experts-btn { padding: 8px 14px; font-size: 12px; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .gs-outer { gap: 20px; }
  .gs-card-title { font-size: 22px; }
  .gs-two-col { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  /* Solutions & WwD tabs: scrollable on mobile */
  .solutions-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
  }
  .solutions-tab { padding: 8px 14px; font-size: 13px; white-space: nowrap; }
  .wwd-tabs { flex-wrap: wrap; gap: 6px; }
  .wwd-tab { padding: 8px 16px; font-size: 13px; }

  /* Sol-grid-5: 2 cols on tablet */
  .sol-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .sol-grid-5 .sol-card:nth-child(4),
  .sol-grid-5 .sol-card:nth-child(5) { grid-column: auto; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA Banner right section: hide decorative elements */
  .cta-shield-wrap { display: none; }
  .cta-review-float { max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-form-card { padding: 24px 18px; }
  .form-title { font-size: 19px; }
  .hero-title { font-size: 26px; }
  .hero { padding: 48px 0 60px; }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 15px; }
  .who-section, .get-started-section, .testimonials-section, .team-section { padding: 56px 0; }
  .mockup-section, .solutions-section, .choose-section { padding: 56px 0; }
  .final-cta { padding: 56px 0; }
  .final-cta h2 { font-size: 28px; }
  .gs-left-card, .gs-form-card { padding: 24px 20px; }
  .gs-options { grid-template-columns: 1fr; }
  .gs-experts-bar { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px; }
  .gs-experts-right { width: 100%; }
  .gs-experts-btn { flex: 1; justify-content: center; }
  .gs-experts-text { white-space: normal; font-size: 13px; }
  .newsletter-form { flex-direction: column; }

  /* Sol-grid: single column */
  .sol-grid-5, .solutions-grid { grid-template-columns: 1fr; }
  .sol-grid-5 .sol-card:nth-child(4),
  .sol-grid-5 .sol-card:nth-child(5) { grid-column: auto; }

  /* Footer links: single column */
  .footer-links-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-newsletter-inner { flex-direction: column; gap: 20px; }
  .footer-newsletter-form { width: 100%; flex-direction: column; }
  .footer-newsletter-form input { width: 100%; box-sizing: border-box; }
  .footer-newsletter-form button { width: 100%; justify-content: center; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px 16px; justify-content: flex-start; }
  .footer-bottom-inner { flex-direction: column; gap: 28px; }
  .footer-bottom-right { align-items: flex-start; width: 100%; }
  .footer-bottom-left { max-width: 100%; }

  /* CTA Banner: stack fully */
  .cta-banner-right { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-shield-wrap { display: none; }

  /* Team CTA */
  .team-cta-link { align-self: flex-start; }

  /* Phone dropdown narrow */
  .phone-country-dropdown { width: calc(100vw - 40px); max-width: 320px; }

  /* Overflow-safe images */
  img, video, iframe, embed { max-width: 100%; height: auto; }

  /* Prevent any text from overflowing on very small screens */
  h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }
}
