/* ===================================================
   BrokerGO — style.css
   =================================================== */

/* ── GOOGLE FONTS (loaded in HTML) ── */

:root {
  --red: #c41e24;
  --red-dark: #8b1219;
  --red-light: #e63946;
  --red-pale: #fdf2f2;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --text: #111111;
  --text-muted: #666666;
  --white: #ffffff;
  --off-white: #fafaf8;
  --border: rgba(196,30,36,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: .4;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.08); }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--text); padding: 4px; line-height: 1;
}

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(250,250,248,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 5% 24px;
  z-index: 499;
  flex-direction: column; gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--border); display: block;
}
.mobile-nav-ctas {
  display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap;
}
.mobile-nav-ctas .btn-nav-client,
.mobile-nav-ctas .btn-nav-broker { flex: 1; text-align: center; }

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 900;
  color: var(--red-dark); letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-brand span { color: var(--text); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.nav-link:hover { color: var(--red); }

.nav-ctas { display: flex; align-items: center; gap: 10px; }
.btn-nav-client {
  padding: 9px 20px; border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--text); cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.btn-nav-client:hover { border-color: var(--red); color: var(--red); }

.btn-nav-broker {
  padding: 9px 20px; border-radius: 8px;
  background: var(--red); border: none;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  color: #fff; cursor: pointer; text-decoration: none;
  transition: all .2s; box-shadow: 0 4px 14px rgba(196,30,36,.3);
}
.btn-nav-broker:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #fff 0%, var(--red-pale) 50%, #fff5f5 100%);
  z-index: 0;
}
.hero-accent-1 {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,36,.08) 0%, transparent 70%);
  z-index: 0;
}
.hero-accent-2 {
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  z-index: 0;
}
.hero-line {
  position: absolute; top: 0; left: 40%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(196,30,36,.12) 30%, rgba(196,30,36,.12) 70%, transparent);
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  animation: heroIn 1s cubic-bezier(.16,1,.3,1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(196,30,36,.08); border: 1px solid rgba(196,30,36,.2);
  font-size: 12px; font-weight: 600; color: var(--red);
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--red); }

.hero-subtitle {
  font-size: 18px; font-weight: 400; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 44px;
  max-width: 520px;
}

.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn-primary-lg {
  padding: 16px 32px; border-radius: 10px;
  background: var(--red); border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
  color: #fff; text-decoration: none;
  box-shadow: 0 8px 28px rgba(196,30,36,.35);
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-lg:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196,30,36,.4);
}

.btn-secondary-lg {
  padding: 16px 32px; border-radius: 10px;
  background: transparent; border: 1.5px solid rgba(17,17,17,.2);
  cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--text); text-decoration: none;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary-lg:hover { border-color: var(--red); color: var(--red); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid var(--border);
  animation: heroIn 1s .3s cubic-bezier(.16,1,.3,1) both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 900; color: var(--red-dark);
}
.hero-stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* Hero Visual Card */
.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 42%; max-width: 520px; z-index: 2;
  animation: heroIn 1s .2s cubic-bezier(.16,1,.3,1) both;
}
.hero-card-main {
  background: #fff; border-radius: 20px; padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.12), 0 1px 0 rgba(255,255,255,.9) inset;
  border: 1px solid rgba(255,255,255,.8);
}
.hero-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.hero-card-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hero-card-title { font-weight: 700; font-size: 15px; }
.hero-card-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.hero-card-badge {
  margin-left: auto; padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  background: rgba(22,163,74,.1); color: #16a34a;
  border: 1px solid rgba(22,163,74,.2);
}

.pol-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid #f5f5f5;
}
.pol-row:last-child { border-bottom: none; }
.pol-ico { font-size: 18px; width: 32px; text-align: center; flex-shrink: 0; }
.pol-info { flex: 1; }
.pol-name { font-size: 13px; font-weight: 600; }
.pol-date { font-size: 11px; color: var(--text-muted); }
.pol-status { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 8px; }
.ps-active { background: rgba(22,163,74,.1); color: #16a34a; }
.ps-soon   { background: rgba(196,30,36,.1); color: var(--red); }

.hero-card-float-1 {
  position: absolute; top: -20px; right: -20px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.8);
  animation: float1 4s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.hero-card-float-2 {
  position: absolute; bottom: -20px; left: -30px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.8);
  animation: float2 5s ease-in-out infinite;
}
@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(8px); }
}
.float-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--text-muted); margin-bottom: 4px;
}
.float-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; color: var(--red-dark);
}
.float-sub { font-size: 11px; color: var(--text-muted); }

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features {
  padding: 120px 5%;
  background: #fff;
  position: relative;
}
.features::before {
  content: '';
  position: absolute; top: 0; left: 5%; right: 5%;
  height: 1px; background: var(--border);
}

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; max-width: 480px;
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.feature-card {
  padding: 40px 36px;
  background: #fff;
  transition: background .2s;
  position: relative;
}
.feature-card:hover { background: var(--red-pale); }
.feature-card::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.feature-card:nth-child(3n)::after { display: none; }
.feature-card-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red-pale), #ffe8e8);
  border: 1px solid rgba(196,30,36,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how {
  padding: 120px 5%;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.how-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900;
  color: rgba(196,30,36,.12); line-height: 1;
  flex-shrink: 0; width: 60px;
  transition: color .3s;
}
.how-step:hover .how-step-num { color: var(--red); }
.how-step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how-step-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.how-card {
  background: #fff; border-radius: 20px; padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  border: 1px solid var(--border);
}
.how-card-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f5f5f5;
}
.how-card-row:last-child { border-bottom: none; }
.how-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; font-weight: 700; flex-shrink: 0;
}
.how-card-name  { font-size: 13px; font-weight: 600; }
.how-card-email { font-size: 11px; color: var(--text-muted); }
.how-card-tag   {
  margin-left: auto; font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 8px;
}
.tag-active { background: rgba(22,163,74,.1);  color: #16a34a; }
.tag-new    { background: rgba(196,30,36,.1);  color: var(--red); }
.tag-rate   { background: rgba(201,168,76,.1); color: #a0841e; }

.how-overlay-card {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 16px; padding: 20px 24px;
  color: #fff; box-shadow: 0 16px 48px rgba(196,30,36,.4);
}
.how-overlay-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; }
.how-overlay-lbl { font-size: 12px; opacity: .8; margin-top: 2px; }

/* ══════════════════════════════════════
   PLANS
══════════════════════════════════════ */
.plans {
  padding: 120px 5%;
  background: #fff;
  position: relative;
}
.plans::before {
  content: '';
  position: absolute; top: 0; left: 5%; right: 5%;
  height: 1px; background: var(--border);
}
.plans-header { text-align: center; margin-bottom: 64px; }

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.plan-card {
  border-radius: 20px; padding: 36px 32px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.plan-card.featured {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-color: transparent; color: #fff;
  box-shadow: 0 20px 60px rgba(196,30,36,.4);
}
.plan-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(196,30,36,.5);
}
.plan-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
}
.plan-name {
  font-size: 14px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 8px;
}
.plan-card.featured .plan-name { opacity: .8; }
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 4px;
}
.plan-period { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.plan-card.featured .plan-period { color: rgba(255,255,255,.6); }

.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.plan-card.featured .plan-features li { border-color: rgba(255,255,255,.12); }
.plan-features li:last-child { border-bottom: none; }
.plan-check { color: var(--red); font-weight: 700; flex-shrink: 0; }
.plan-card.featured .plan-check { color: var(--gold-light); }

.plan-cta {
  width: 100%; padding: 14px; border-radius: 10px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s; text-decoration: none;
  display: block; text-align: center; color: var(--text);
}
.plan-cta:hover { background: var(--red-pale); border-color: var(--red); color: var(--red); }
.plan-card.featured .plan-cta {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); color: #fff;
}
.plan-card.featured .plan-cta:hover { background: rgba(255,255,255,.3); }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #e63946 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -2px; margin-bottom: 20px; position: relative; z-index: 2;
}
.cta-sub {
  font-size: 18px; color: rgba(255,255,255,.75);
  margin-bottom: 44px; position: relative; z-index: 2;
}
.cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; position: relative; z-index: 2;
}
.btn-cta-white {
  padding: 16px 36px; border-radius: 10px;
  background: #fff; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--red-dark); text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.btn-cta-outline {
  padding: 16px 36px; border-radius: 10px;
  background: transparent; border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600;
  color: #fff; text-decoration: none; transition: all .25s;
}
.btn-cta-outline:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #111; color: rgba(255,255,255,.6);
  padding: 60px 5% 40px;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 48px; gap: 40px; flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; color: #fff;
  margin-bottom: 12px; display: block; text-decoration: none;
}
.footer-brand span { font-style: italic; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,.5);
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 680px; margin: 0 auto;
  background: #111; color: rgba(255,255,255,.85);
  border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  z-index: 9999;
  border: 1px solid rgba(255,255,255,.08);
  transform: translateY(120%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: 13px; line-height: 1.6; flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 9px 20px; border-radius: 8px;
  background: var(--red); border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  color: #fff; transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--red-dark); }
.btn-cookie-decline {
  padding: 9px 20px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  cursor: pointer; font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
  transition: all .2s;
}
.btn-cookie-decline:hover { background: rgba(255,255,255,.15); }

/* ══════════════════════════════════════
   INNER PAGES (T&C, Cookies)
══════════════════════════════════════ */
.page-hero {
  padding: 140px 5% 60px;
  background: linear-gradient(135deg, #fff, var(--red-pale));
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.page-hero-sub { font-size: 16px; color: var(--text-muted); }

.page-content {
  max-width: 780px; margin: 0 auto;
  padding: 64px 5% 100px;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 900;
  margin: 48px 0 14px; color: var(--text);
  border-left: 3px solid var(--red); padding-left: 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 15px; line-height: 1.8; color: var(--text-muted);
  margin-bottom: 14px;
}
.page-content ul {
  margin: 10px 0 18px 20px;
}
.page-content ul li {
  font-size: 15px; line-height: 1.8; color: var(--text-muted);
  margin-bottom: 6px;
}
.page-content a { color: var(--red); }
.page-content strong { color: var(--text); font-weight: 600; }

.cookie-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 30px; font-size: 14px;
}
.cookie-table th {
  background: var(--red-pale); color: var(--red-dark);
  padding: 10px 14px; text-align: left;
  font-weight: 700; border-bottom: 2px solid var(--border);
}
.cookie-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(2n)::after { display: none; }
  .feature-card:nth-child(2n-1)::after { display: block; }
  .how-inner { grid-template-columns: 1fr; }
  .how-visual { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ctas  { display: none; }
  .menu-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card::after { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .plans-grid { max-width: 100%; }
  #cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}