/* ============================================================
   Tide Referral Offer — Main Stylesheet
   Site: www.tidereferraloffer.co.uk
   Design: Clean white / dark-blue / sky-blue — professional fintech
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --blue-dark: #1a3a8f;
  --blue: #2563eb;
  --blue-mid: #3b82f6;
  --blue-light: #93c5fd;
  --blue-pale: #dbeafe;
  --blue-bg: #eff6ff;
  --navy: #0f1f4a;
  --emerald: #16a34a;
  --bg: #ffffff;
  --bg-soft: #f8faff;
  --bg-mid: #eef3ff;
  --border: #c7d7f5;
  --text: #0f1f4a;
  --text-muted: #4a5d8a;
  --shadow: 0 4px 24px rgba(26, 58, 143, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 58, 143, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
.no-scroll { overflow: hidden; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.05rem; margin-bottom: 8px; }
p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.75; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 700; }

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; transition: all var(--transition);
  white-space: nowrap; text-decoration: none; cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff; box-shadow: 0 4px 16px rgba(26, 58, 143, 0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 58, 143, 0.5); color: #fff; }
.btn--teal { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3); }
.btn--teal:hover { background: var(--blue-dark); transform: translateY(-2px); color: #fff; }
.btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--white { background: #fff; color: var(--blue-dark); border: 2px solid rgba(255,255,255,0.4); }
.btn--white:hover { background: rgba(255,255,255,0.9); color: var(--blue-dark); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--copy { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--copy:hover { background: rgba(255,255,255,0.25); color: #fff; }
.btn--copy.copied { background: var(--emerald); border-color: var(--emerald); }

/* --- Announcement Bar --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy), var(--blue-dark), var(--blue));
  color: #fff; text-align: center; padding: 10px 16px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.01em;
}
.code-pill {
  display: inline-block; background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4); border-radius: 6px;
  padding: 1px 8px; font-family: monospace; font-size: 0.9em;
  letter-spacing: 0.05em; margin: 0 3px;
}

/* --- Navigation --- */
.nav {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--border); transition: box-shadow var(--transition);
}
.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 20px; height: 72px;
}
.nav__logo { flex-shrink: 0; overflow: visible; }
.nav__logo img { height: 60px; width: auto; max-width: none; display: block; }
.nav__links {
  display: flex; align-items: center; justify-content: center;
  gap: 2px; flex: 1;
}
.nav__links a {
  padding: 8px 13px; border-radius: 8px; font-size: 0.86rem;
  font-weight: 600; color: var(--text-muted); transition: all var(--transition);
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--blue); background: var(--bg-mid); }
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: #fff; flex-direction: column; padding: 80px 24px 32px;
  gap: 4px; overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 14px 16px; font-size: 1.1rem; font-weight: 600; color: var(--navy); border-radius: 10px; }
.nav__mobile a:hover { background: var(--bg-soft); color: var(--blue); }
.nav__mobile .btn { margin-top: 16px; text-align: center; }
.nav__mobile-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 1.4rem; color: var(--text-muted); padding: 8px;
  border-radius: 8px; line-height: 1;
}
.nav__mobile-close:hover { background: var(--bg-soft); }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }
  .nav__inner { height: 64px; }
  .nav__logo img { height: 48px; }
}

/* --- Breadcrumb --- */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.breadcrumb__inner {
  max-width: 1160px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
}
.breadcrumb__inner a { color: var(--blue); font-weight: 600; }
.breadcrumb__inner span { color: var(--text-muted); }

/* --- Section Header --- */
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-header p { max-width: 680px; }
.section-header.text-center p { margin: 0 auto; }
.section-label {
  display: inline-block; background: var(--bg-mid); color: var(--blue);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 12px; border: 1px solid rgba(37, 99, 235, 0.2);
}

/* --- Hero Reward Row (£75 + £125 = £200) --- */
.hero__reward-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 32px; flex-wrap: nowrap;
}
.hero__reward-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 16px 18px;
  flex: 1; text-align: center;
}
.hero__reward-amount {
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: 6px;
}
.hero__reward-desc {
  font-size: 0.7rem; color: rgba(255,255,255,0.7); line-height: 1.4;
}
.hero__reward-plus, .hero__reward-equals {
  font-size: 1.8rem; font-weight: 800;
  color: var(--blue-light); flex-shrink: 0; line-height: 1;
  padding: 0 2px;
}
.hero__reward-card--total {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 0 6px 24px rgba(37,99,235,0.5);
}
.hero__reward-total-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}
.hero__reward-total-amount {
  font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: 4px;
}
.hero__reward-total-sub {
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .hero__reward-row { flex-wrap: wrap; gap: 8px; }
  .hero__reward-card { min-width: calc(50% - 24px); }
  .hero__reward-plus { order: 2; }
  .hero__reward-card:nth-child(3) { order: 3; }
  .hero__reward-equals { order: 4; width: 100%; text-align: center; }
  .hero__reward-card--total { order: 5; width: 100%; }
  .hero__reward-amount { font-size: 1.6rem; }
  .hero__reward-total-amount { font-size: 2rem; }
}

/* --- Hero Offer Pills (legacy, kept for safety) --- */
.hero__offer-breakdown {
  display: flex; align-items: stretch; gap: 8px;
  flex-wrap: nowrap; margin-bottom: 32px;
}
.hero__offer-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px; padding: 16px 18px; text-align: center;
  flex: 1; min-width: 80px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero__offer-pill .amount { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero__offer-pill .label { font-size: 0.68rem; color: rgba(255,255,255,0.7); margin-top: 5px; line-height: 1.3; }
.hero__offer-pill--operator {
  background: transparent; border: none; flex: 0 0 auto;
  min-width: 32px; padding: 0;
}
.hero__offer-pill--operator .amount {
  font-size: 1.6rem; font-weight: 800;
  color: var(--blue-light); line-height: 1;
}
.hero__offer-pill--total {
  background: rgba(147,197,253,0.15);
  border: 2px solid var(--blue-light);
}
.hero__offer-pill--total .amount {
  font-size: 1.8rem; font-weight: 800;
  color: var(--blue-light); line-height: 1;
}
.hero__offer-pill--total .label { color: rgba(255,255,255,0.8); }
@media (max-width: 480px) {
  .hero__offer-breakdown { flex-wrap: wrap; }
  .hero__offer-pill { min-width: 70px; padding: 12px 10px; }
  .hero__offer-pill .amount { font-size: 1.3rem; }
  .hero__offer-pill--total .amount { font-size: 1.5rem; }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2060 50%, var(--blue-dark) 100%);
  padding: 72px 0 90px; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.25) 0%, transparent 60%);
}
.hero__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero__badge {
  display: inline-block; background: rgba(147,197,253,0.15);
  border: 1px solid rgba(147,197,253,0.4); color: var(--blue-light);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero__title { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 20px; }
.hero__title .highlight { color: var(--blue-light); }
.hero__title .amount { color: var(--blue-light); display: inline-block; }
.hero__subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.hero__offer-breakdown {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.hero__offer-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 14px 18px; text-align: center; flex: 1; min-width: 90px;
}
.hero__offer-pill .amount { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hero__offer-pill .label { font-size: 0.7rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 600;
}
.hero__trust-item svg { color: var(--blue-light); flex-shrink: 0; }
.hero__visual { position: relative; }
.hero__image-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1);
}
.hero__image-wrap img { width: 100%; object-fit: cover; }
.hero__code-card {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border-radius: 14px; padding: 14px 20px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.hero__code-card .code-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.hero__code-card .code-value { font-size: 1.4rem; font-weight: 800; color: var(--blue); font-family: monospace; letter-spacing: 0.06em; }
.hero__stats-card {
  position: absolute; top: -16px; right: -16px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  border-radius: 14px; padding: 14px 20px; text-align: center;
  box-shadow: 0 8px 24px rgba(26,58,143,0.4);
}
.hero__stats-card .stat-value { font-size: 1.3rem; font-weight: 800; color: #fff; }
.hero__stats-card .stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.85); font-weight: 600; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero__offer-breakdown { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 56px; }
  .hero__offer-pill { min-width: 70px; padding: 10px 12px; }
  .hero__offer-pill .amount { font-size: 1.2rem; }
  .hero__ctas .btn--lg { padding: 14px 24px; font-size: 0.9rem; width: 100%; }
}

/* --- Code Section --- */
.code-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 56px 0; text-align: center;
}
.code-section__inner { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.code-section h2 { color: #fff; margin-bottom: 8px; }
.code-section p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.code-copy-box {
  display: flex; align-items: stretch; gap: 0;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 20px;
}
.code-display {
  flex: 1; padding: 18px 20px; font-size: 1.6rem; font-weight: 800;
  font-family: monospace; letter-spacing: 0.1em; color: var(--blue);
  text-align: center;
}
.copy-btn {
  padding: 0 28px; background: var(--navy); color: #fff;
  font-weight: 700; font-size: 0.9rem; transition: all var(--transition);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  min-height: 64px; border-left: 3px solid rgba(255,255,255,0.2);
}
.copy-btn:hover { background: #0a1530; }
.copy-btn.copied { background: var(--emerald); }
.code-section .btn--white { margin-top: 4px; }

@media (max-width: 480px) {
  .code-copy-box { flex-direction: column; }
  .copy-btn { min-height: 52px; padding: 14px; }
  .code-display { font-size: 1.4rem; padding: 16px; }
}

/* --- Stats Bar --- */
.stats-bar { background: var(--navy); padding: 48px 0; }
.stats-bar__grid {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stats-bar__item { text-align: center; }
.stats-bar__item .value { font-size: 2rem; font-weight: 800; color: var(--blue-light); line-height: 1.1; }
.stats-bar__item .label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

@media (max-width: 700px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-bar { padding: 36px 0; }
}

/* --- Feature Cards --- */
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.3); transform: translateY(-3px); }
.feature-card__icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h4 { color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; margin-bottom: 0; }

/* --- Offer Grid --- */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.offer-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; position: relative; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.offer-card:hover { box-shadow: var(--shadow); }
.offer-card.featured { border-color: var(--blue); box-shadow: 0 8px 32px rgba(37,99,235,0.2); }
.offer-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 18px; border-radius: 50px; white-space: nowrap;
}
.offer-card__title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.offer-card__price { font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.offer-card__price span { font-size: 0.9rem; font-weight: 700; color: var(--blue-dark); }
.offer-card__sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.offer-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.offer-card__features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text); }
.offer-card__features li::before { content: '✓'; color: var(--emerald); font-weight: 800; flex-shrink: 0; }

@media (max-width: 640px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 28px 20px; }
}

/* --- Testimonials --- */
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card__stars { color: var(--blue-mid); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card__text { font-size: 0.9rem; color: var(--text); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-card__role { font-size: 0.78rem; color: var(--text-muted); }

/* --- Trustpilot Row --- */
.trustpilot-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trustpilot-stars { color: #00b67a; font-size: 1.1rem; }
.trustpilot-text { font-size: 0.85rem; color: var(--text-muted); }

/* --- Comparison Table --- */
.comparison-table, .pricing-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.comparison-table th, .pricing-table th {
  background: var(--navy); color: #fff; padding: 14px 18px;
  text-align: left; font-weight: 700;
}
.comparison-table th.tide-col, .pricing-table th.highlight {
  background: var(--blue); color: #fff;
}
.comparison-table td, .pricing-table td {
  padding: 13px 18px; border-bottom: 1px solid var(--border);
  background: #fff; color: var(--text);
}
.comparison-table tr:last-child td, .pricing-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td, .pricing-table tr:nth-child(even) td { background: var(--bg-soft); }
.comparison-table td.yes, .pricing-table td.check { color: var(--emerald); font-weight: 700; }
.comparison-table td.no, .pricing-table td.cross { color: #e53e3e; }
.pricing-table td.plan-price { font-weight: 800; color: var(--blue); font-size: 1rem; }

@media (max-width: 640px) {
  .comparison-table, .pricing-table { font-size: 0.78rem; }
  .comparison-table th, .pricing-table th,
  .comparison-table td, .pricing-table td { padding: 10px 10px; }
}

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 1rem; font-weight: 700; color: var(--navy);
  text-align: left; gap: 16px; transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question.open { color: var(--blue); }
.faq-icon {
  font-size: 1.4rem; font-weight: 400; color: var(--blue);
  flex-shrink: 0; transition: transform var(--transition); line-height: 1;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.92rem; color: var(--text-muted); }

/* --- Info Box --- */
.info-box {
  background: var(--bg-mid); border: 1px solid rgba(37, 99, 235, 0.25);
  border-left: 4px solid var(--blue); border-radius: var(--radius);
  padding: 18px 22px;
}
.info-box.gold {
  background: var(--blue-bg); border-color: rgba(37, 99, 235, 0.2);
  border-left-color: var(--blue-mid);
}
.info-box p { font-size: 0.9rem; color: var(--text); margin-bottom: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(147,197,253,0.1) 0%, transparent 60%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 28px; }
.cta-banner__code {
  display: inline-block; font-size: 2.4rem; font-weight: 800;
  font-family: monospace; letter-spacing: 0.12em; color: var(--blue-light);
  background: rgba(255,255,255,0.08); border: 2px solid rgba(147,197,253,0.4);
  border-radius: 14px; padding: 12px 32px; margin-bottom: 28px;
}
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 480px) {
  .cta-banner { padding: 48px 0; }
  .cta-banner__code { font-size: 1.8rem; padding: 10px 20px; }
  .cta-banner__btns .btn { width: 100%; }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 56px 0; text-align: center;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

/* --- Content + Sidebar Layout --- */
.content-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.main-content h2 { margin-top: 40px; }
.main-content h2:first-child { margin-top: 0; }
.sidebar-sticky { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.sidebar-widget.featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-color: transparent; color: #fff;
}
.sidebar-widget.featured h4 { color: #fff; margin-bottom: 4px; }
.sidebar-widget.featured p { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 12px; color: var(--navy); }

@media (max-width: 900px) {
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
}

/* --- Steps --- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.step-item:last-child { border-bottom: none; }
.step-number {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.step-content h3 { color: var(--navy); margin-bottom: 10px; }
.step-content p { font-size: 0.92rem; }
.tip {
  background: var(--bg-mid); border-radius: 8px; padding: 10px 14px;
  font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-top: 12px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

@media (max-width: 480px) {
  .step-item { gap: 14px; }
  .step-number { width: 36px; height: 36px; font-size: 0.95rem; }
}

/* --- Footer --- */
.footer { background: var(--navy); padding: 64px 0 0; color: rgba(255,255,255,0.7); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .logo-text { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer__brand .logo-text span { color: var(--blue-light); }
.footer__brand p { font-size: 0.85rem; line-height: 1.7; }
.footer__col h5 { color: #fff; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--blue-light); }
.footer__bottom { padding: 24px 0; }
.footer__disclaimer { font-size: 0.75rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.footer__disclaimer strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 48px 0 0; }
}

/* --- Pricing Table Extra --- */
.pricing-table th { text-align: center; }
.pricing-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.pricing-table td { text-align: center; }
.pricing-table th.highlight { background: var(--blue); }
.pricing-table td.check { color: var(--emerald); font-weight: 700; }
.pricing-table td.cross { color: #ccc; }

/* --- Mobile utility --- */
@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 16px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  .btn--lg { padding: 14px 24px; font-size: 0.92rem; }
  .section-header { margin-bottom: 32px; }
  .announcement-bar { font-size: 0.78rem; padding: 8px 12px; }
}
