/* ───── Members Only — VIP-First ───── */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --y: #FFD60A;
  --y-2: #FFE600;
  --y-deep: #F5C700;
  --y-bg: #FFFBE6;
  --y-soft: #FFF3B0;
  --ink: #0D0D0D;
  --ink-2: #1A1A1A;
  --ink-3: #262626;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --paper: #FFFFFF;
  --bg: #F8F7F2;
  --green: #16A34A;
  --serif: 'Playfair Display', Georgia, serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; font-weight: inherit; }
.hl { background: var(--y); padding: 0 6px; border-radius: 6px; color: var(--ink); }

/* Exclusive bar */
.exclusive-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 24px;
  font-size: 12px;
  display: flex; gap: 12px; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.lock { color: var(--y); }
.dot-sep { color: var(--gray-500); }
.online-num { color: var(--y); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: live 1.5s ease-in-out infinite;
}
@keyframes live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.invite-link { color: var(--y); font-weight: 600; }

/* Header */
.hd {
  background: var(--paper);
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0;
  z-index: 50;
}
.hd-back {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gray-100);
  transition: background .2s;
}
.hd-back:hover { background: var(--y); }
.hd-logo {
  display: flex; align-items: center; gap: 10px;
}
.hd-mark {
  width: 36px; height: 36px;
  background: var(--y);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700; font-size: 16px;
}
.hd-name { font-weight: 800; font-size: 16px; letter-spacing: 0.05em; }
.hd-tag {
  background: var(--ink); color: var(--y);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em;
}
.hd-nav {
  display: flex; gap: 24px;
  justify-self: center;
}
.hd-nav a {
  font-size: 13px; font-weight: 500;
  color: var(--gray-700);
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}
.hd-nav a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--y);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.hd-nav a:hover { color: var(--ink); }
.hd-nav a:hover::after, .hd-nav a.active::after { transform: scaleX(1); }
.hd-nav a.active { color: var(--ink); font-weight: 700; }
.hd-r { display: flex; gap: 8px; align-items: center; }
.hd-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid; place-items: center;
  transition: background .2s;
}
.hd-icon:hover { background: var(--y); }
.hd-login {
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-bottom: 1px solid currentColor;
  margin-left: 8px;
}
.hd-join {
  background: var(--ink); color: var(--y);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  transition: background .2s, transform .2s;
}
.hd-join:hover { background: var(--y); color: var(--ink); transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-tint {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(13,13,13,0.85) 70%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,214,10,0.15);
  border: 1px solid var(--y);
  color: var(--y);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}
.hero-content h1 em { font-style: italic; }
.hero-content p {
  margin-top: 28px;
  font-size: 17px;
  opacity: 0.85;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.hero-content p strong { color: var(--y); }
.hero-ctas {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}
.hero-btn {
  background: var(--y); color: var(--ink);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 800;
  transition: background .2s, transform .2s;
}
.hero-btn:hover { background: var(--paper); transform: translateY(-2px); }
.hero-btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.4);
}
.hero-btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.hero-stats em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 6px;
}

/* Section */
.section {
  max-width: 1440px;
  margin: 100px auto;
  padding: 0 40px;
}
.section-dark {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding: 100px 40px;
  margin: 100px 0;
}
.sect-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.section-dark .sect-head { border-bottom-color: var(--ink-3); }
.sect-head-center {
  flex-direction: column;
  text-align: center;
  border-bottom: 0;
  padding-bottom: 0;
  align-items: center;
  gap: 12px;
}
.sect-head-light { border-bottom-color: rgba(255,255,255,0.1); }
.kicker {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-500);
}
.kicker.dark { color: var(--gray-400); }
.sect-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.sect-head h2 em { font-style: italic; }
.sect-head-center p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-500);
  max-width: 540px;
}
.lock-info {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,214,10,0.1);
  border: 1px solid var(--y);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--y);
}

/* Tier grid */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 32px;
  cursor: pointer;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
}
.tier:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12); border-color: var(--y); }
.tier.gold {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-12px);
}
.tier.gold:hover { box-shadow: 0 30px 50px -12px rgba(0,0,0,0.4); }
.tier.gold::before {
  content: "EN POPÜLER";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--y);
  color: var(--ink);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.tier-medal {
  font-size: 56px;
  display: block;
  margin-bottom: 14px;
}
.tier-name {
  font-family: var(--serif);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
}
.tier-price {
  font-weight: 800;
  font-size: 32px;
  margin-top: 6px;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.tier.gold .tier-price { color: var(--y); }
.tier-perks {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  list-style: none;
}
.tier.gold .tier-perks { border-top-color: rgba(255,255,255,0.1); }
.tier-perks li {
  padding: 9px 0;
  font-size: 13px;
  display: flex; gap: 10px; align-items: start;
}
.tier-perks li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--y);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.tier-cta {
  display: block;
  margin-top: 24px;
  padding: 14px;
  background: var(--gray-100);
  color: var(--ink);
  border-radius: 12px;
  text-align: center;
  font-weight: 700; font-size: 13px;
  transition: background .2s, color .2s;
}
.tier-cta:hover { background: var(--y); }
.tier.gold .tier-cta { background: var(--y); color: var(--ink); }
.tier.gold .tier-cta:hover { background: var(--paper); }

/* Member campaigns with lock */
.member-camps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mc {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, border-color .25s;
}
.mc:hover { transform: translateY(-4px); border-color: var(--y); }
.mc-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-700);
}
.mc-img img { width: 100%; height: 100%; object-fit: cover; }
.mc-lock {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.65);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
  color: var(--y);
  flex-direction: column;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  display: flex; gap: 10px;
  align-items: center; justify-content: center;
}
.mc:hover .mc-lock { background: rgba(13,13,13,0.4); }
.mc-lock-icon { font-size: 28px; }
.mc-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--y); color: var(--ink);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px; font-weight: 700;
  z-index: 1;
}
.mc-info { padding: 22px; }
.mc-brand { font-size: 11px; letter-spacing: 0.12em; color: var(--gray-400); }
.mc-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em;
  margin-top: 6px;
  line-height: 1.1;
}
.mc-foot {
  margin-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.mc-disc {
  background: var(--y); color: var(--ink);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.mc-end { color: var(--gray-400); }

/* Price comparison row */
.price-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.pr {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform .25s;
  cursor: pointer;
}
.pr:hover { transform: translateY(-3px); border-color: var(--y); }
.pr-img {
  aspect-ratio: 1/1;
  background: var(--gray-100);
  overflow: hidden;
}
.pr-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.pr:hover .pr-img img { transform: scale(1.04); }
.pr-info { padding: 18px; }
.pr-brand { font-size: 11px; letter-spacing: 0.1em; color: var(--gray-500); text-transform: uppercase; font-weight: 700; }
.pr-title {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  margin-top: 4px;
  line-height: 1.25;
  min-height: 42px;
}
.pr-prices { margin-top: 14px; }
.pr-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 12px;
}
.pr-price-row:last-child { border-bottom: 0; }
.pr-price-label { color: var(--gray-500); display: flex; gap: 6px; align-items: center; }
.pr-price-num { font-weight: 800; font-variant-numeric: tabular-nums; }
.pr-price-row.member { background: var(--y-bg); margin: 0 -18px; padding: 12px 18px; border-radius: 8px; border: 0; margin-top: 6px; }
.pr-price-row.member .pr-price-label { color: var(--ink); font-weight: 700; }
.pr-price-row.member .pr-price-num { color: var(--ink); font-size: 18px; }
.pr-saving {
  margin-top: 10px;
  text-align: center;
  font-size: 12px; font-weight: 700;
  color: var(--green);
}

/* Invite section */
.invite-section {
  background: var(--paper);
  margin: 100px 0;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  margin: 100px auto;
  border-radius: 32px;
}
.invite-l h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.invite-l h2 em { font-style: italic; }
.invite-l p {
  margin-top: 24px;
  font-size: 15px;
  color: var(--gray-700);
  max-width: 460px;
  line-height: 1.6;
}
.invite-box {
  margin-top: 28px;
  display: flex; gap: 8px;
  background: var(--bg);
  padding: 6px;
  border-radius: 12px;
  max-width: 480px;
  border: 1px solid var(--gray-200);
}
.invite-box input {
  flex: 1; border: 0; background: transparent;
  padding: 12px 16px;
  font-family: ui-monospace, monospace;
  font-size: 13px; font-weight: 600;
}
.invite-box input:focus { outline: none; }
.invite-copy {
  background: var(--ink); color: var(--y);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700; font-size: 13px;
  transition: background .2s;
}
.invite-copy:hover { background: var(--y); color: var(--ink); }
.invite-status {
  margin-top: 18px;
  font-size: 13px;
  display: flex; gap: 10px; flex-wrap: wrap;
  color: var(--gray-700);
}
.invite-status strong { color: var(--ink); }

.invite-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.is {
  background: var(--bg);
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}
.is-y { background: var(--y); border-color: var(--y); }
.is strong {
  font-family: var(--serif);
  font-size: 38px; font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: block;
  line-height: 1;
}
.is em {
  font-style: normal;
  font-size: 12px;
  color: var(--gray-700);
  display: block;
  margin-top: 6px;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.testi {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.testi-rate { color: var(--y-deep); font-size: 16px; }
.testi-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-700);
}
.testi-by {
  margin-top: auto;
  display: flex; gap: 12px; align-items: center;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--y);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
}
.testi-name { font-weight: 700; font-size: 13px; }
.testi-role {
  display: inline-flex; gap: 4px; align-items: center;
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 2px;
}
.testi-role .gold { color: var(--y-deep); }

/* Benefits */
.benefits {
  max-width: 1440px;
  margin: 100px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.bn-l h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.bn-l h2 em { font-style: italic; }
.bn-l p {
  margin-top: 24px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 380px;
}
.bn-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px; font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.bn-r {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.bn-card {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 22px 20px;
  cursor: pointer;
  transition: transform .25s, border-color .25s, background .25s;
}
.bn-card:hover { transform: translateY(-3px); border-color: var(--y); background: var(--y-bg); }
.bn-emoji { font-size: 28px; }
.bn-card strong {
  display: block;
  font-size: 14px; font-weight: 800;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.bn-card em {
  font-style: normal;
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 4px;
  display: block;
}

/* Brands */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 50px;
}
.brand {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 22px 12px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
}
.brand:hover { background: var(--y); border-color: var(--y); transform: translateY(-2px); }

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 40px;
  text-align: center;
  margin: 100px 0 0;
}
.fc-tag {
  display: inline-block;
  background: rgba(255,214,10,0.15);
  border: 1px solid var(--y);
  color: var(--y);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.final-cta h2 em { font-style: italic; }
.final-cta p {
  margin-top: 18px;
  font-size: 16px;
  opacity: 0.7;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.fc-ctas {
  margin-top: 32px;
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}
.fc-btn {
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 800;
  transition: background .2s, color .2s, transform .2s;
}
.fc-btn-primary { background: var(--y); color: var(--ink); }
.fc-btn-primary:hover { background: var(--paper); transform: translateY(-2px); }
.fc-btn-link {
  color: var(--paper);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 16px 0;
}
.fc-trust {
  margin-top: 32px;
  font-size: 12px;
  color: var(--gray-400);
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.ft {
  background: var(--ink-2);
  color: var(--paper);
  padding: 60px 40px 24px;
}
.ft-cols {
  max-width: 1440px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.ft-brand p {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.55;
}
.ft-cols h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  color: var(--y);
}
.ft-cols a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: var(--gray-400);
  transition: color .2s;
}
.ft-cols a:hover { color: var(--y); }
.ft-base {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--gray-400);
}
.ft-base strong { color: var(--y); }

/* Responsive */
@media (max-width: 1100px) {
  .hd-nav { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier.gold { transform: none; }
  .member-camps { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr 1fr; }
  .invite-section { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; gap: 40px; }
  .bn-r { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .ft-cols { grid-template-columns: 1fr 1fr; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.reveal.in { opacity: 1; transform: translateY(0); }
