/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C1A0E;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   TOKENS
   =========================== */
:root {
  --accent:     #B8722A;
  --accent-lt:  #CE8A42;
  --accent-bg:  #FEF0DC;
  --cream:      #FDF5E6;
  --cream-dark: #F5E8CC;
  --white:      #FFFFFF;
  --dark:       #2C1A0E;
  --dark-2:     #3D2314;
  --gray:       #7D6B56;
  --border:     #E8D5B0;
  --green:      #5A8A5E;
  --yellow:     #C8913A;
  --red:        #C0513A;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(44,26,14,.07);
  --shadow-md:  0 4px 20px rgba(44,26,14,.10);
  --shadow-lg:  0 12px 40px rgba(184,114,42,.18);

  --transition: 0.2s ease;
}

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

section { overflow: hidden; }

/* ===========================
   TYPOGRAPHY HELPERS
   =========================== */
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 32px;
}

.gradient-text {
  background: linear-gradient(135deg, #B8722A 0%, #E8A060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  color: var(--dark);
  background: transparent;
}
.btn--ghost:hover { color: var(--accent); }

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent-bg);
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

/* ===========================
   LOGO
   =========================== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}
.logo--white { color: #fff; }

/* Override hardcoded SVG fill on logos */
.logo rect { fill: var(--accent); }
.logo--white rect { fill: rgba(255,255,255,.25); }

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}
.nav__link:hover { color: var(--dark); background: var(--cream); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 8px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 55%, var(--cream-dark) 100%);
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--yellow); font-size: 12px; }

.hero__title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__note {
  font-size: 13px;
  color: #A89078;
}

.hero__note strong {
  color: var(--dark);
  font-weight: 700;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-main-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(44,26,14,.15);
  display: block;
}

/* Hero Cards */
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 32px rgba(44,26,14,.18);
  max-width: 320px;
  animation: float 4s ease-in-out infinite;
}

.hero-card--xfinity {
  top: 12%;
  right: -40px;
  z-index: 3;
  animation-delay: 0s;
}

.hero-card--chase {
  bottom: 8%;
  left: -60px;
  z-index: 3;
  animation-delay: 2s;
}

.hero-card__badge {
  display: inline-block;
  background: #6C47FF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.hero-card__brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-card__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}

.hero-card__text .highlight {
  color: var(--green);
  font-weight: 700;
}

.hero-card__header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.hero-card__card-image {
  width: 48px;
  height: 32px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 6px;
  flex-shrink: 0;
}

.hero-card__card-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.hero-card__card-meta {
  font-size: 11px;
  color: var(--gray);
}

.hero-card__earnings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--cream);
  border-radius: 8px;
}

.hero-card__earnings-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}

.hero-card__earnings-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}

/* Sparkles */
.hero__sparkle {
  position: absolute;
  font-size: 20px;
  color: var(--accent);
  opacity: 0.4;
  z-index: 1;
  animation: sparkle 3s ease-in-out infinite;
}

.hero__sparkle--1 { top: 8%; right: 10%; animation-delay: 0s; }
.hero__sparkle--2 { bottom: 12%; right: 5%; animation-delay: 1s; font-size: 16px; }
.hero__sparkle--3 { bottom: 20%; left: -10px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes sparkle {
  0%, 100% { 
    opacity: 0.4;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* ===========================
   PRESS
   =========================== */
.press {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.press__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #A89078;
  margin-bottom: 24px;
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.press__logo {
  font-size: 20px;
  font-weight: 800;
  color: #C4AA8A;
  letter-spacing: -.03em;
  transition: color var(--transition);
}
.press__logo:hover { color: var(--accent); }

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.features .section-sub { margin: 0 auto 56px; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg), var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__icon { font-size: 32px; margin-bottom: 20px; }
.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===========================
   FEATURE DETAIL
   =========================== */
.feature-detail { padding: 100px 0; }
.feature-detail--left  { background: #fff; }
.feature-detail--right { background: var(--cream); }

.feature-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-detail__inner--reversed { direction: rtl; }
.feature-detail__inner--reversed > * { direction: ltr; }

/* Checkout Mockup */
.detail-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.detail-mockup__header {
  display: flex;
  gap: 6px;
  padding: 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.detail-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.detail-mockup__dot:nth-child(1) { background: #C0513A; }
.detail-mockup__dot:nth-child(2) { background: var(--yellow); }
.detail-mockup__dot:nth-child(3) { background: var(--green); }

.detail-mockup__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }

.checkout-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.checkout-item__img {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E8D5B0, #F5E8CC);
  border-radius: 10px;
  flex-shrink: 0;
}
.checkout-item__name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.checkout-item__price { color: var(--gray); font-size: 14px; }

.best-card-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0F7F0;
  border: 1px solid #A8D4A8;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #2D5A2D;
}
.best-card-reward {
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
}

.card-options { display: flex; flex-direction: column; gap: 8px; }
.card-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.card-option--active {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent);
}
.reward-badge {
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
}
.card-option--active .reward-badge { background: var(--accent); color: #fff; }

/* Benefits Mockup */
.benefits-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.benefit-item { display: flex; align-items: flex-start; gap: 16px; }
.benefit-item__icon { font-size: 28px; flex-shrink: 0; }
.benefit-item__info { flex: 1; }
.benefit-item__name { font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.benefit-item__progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.progress-bar--yellow { background: var(--yellow); }
.progress-bar--green  { background: var(--green); }
.benefit-item__meta { font-size: 12px; color: var(--gray); }

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='%23B8722A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===========================
   STATS
   =========================== */
.stats {
  padding: 80px 0;
  background: var(--dark-2);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__value {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FDF5E6 0%, #CE8A42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  font-size: 15px;
  color: rgba(253,245,230,.5);
}

/* ===========================
   AI INSIGHTS
   =========================== */
.insights {
  padding: 100px 0;
  background: #fff;
}

.insights__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.insights-card {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.insights-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}

.insight-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.insight-row__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.insight-row__icon--red    { background: rgba(192,81,58,.2);  color: #E87A5A; }
.insight-row__icon--purple { background: rgba(184,114,42,.2); color: var(--accent-lt); }
.insight-row__icon--green  { background: rgba(90,138,94,.2);  color: #7DBF82; }

.insight-row__text {
  font-size: 14px;
  color: rgba(253,245,230,.65);
  line-height: 1.5;
}
.insight-row__text strong { color: var(--cream); }

.insights-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(184,114,42,.18);
  border: 1px solid rgba(184,114,42,.35);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(253,245,230,.65);
}
.insights-total__value {
  font-size: 20px;
  font-weight: 800;
  color: #7DBF82;
}

/* ===========================
   CARD DISCOVERY
   =========================== */
.discovery {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.discovery .section-sub { margin: 0 auto 56px; }

.discovery__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.discovery-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: left;
  transition: var(--transition);
}
.discovery-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.discovery-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg), var(--shadow-lg);
  transform: translateY(-8px);
}

.discovery-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--gray);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.discovery-card__badge--featured {
  background: var(--accent);
  color: #fff;
}

.discovery-card__visual {
  height: 80px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.discovery-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.discovery-card__perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.discovery-card__perks li {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  gap: 8px;
}
.discovery-card__perks li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}
.discovery-card__fee {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.pricing .section-sub { margin: 0 auto 56px; }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: left;
  position: relative;
}
.pricing-card--featured {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg), var(--shadow-lg);
}

.pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 16px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.pricing-card__price {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-card__price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
}
.pricing-card__features li.yes::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-card__features li.no {
  color: #A89078;
  text-decoration: line-through;
}
.pricing-card__features li.no::before {
  content: '×';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: #C4AA8A;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: left;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}
.testimonial-card__role { font-size: 12px; color: var(--gray); }

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #7A3D10 0%, var(--accent) 50%, var(--accent-lt) 100%);
  text-align: center;
}

.final-cta__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.final-cta__sub {
  font-size: 18px;
  color: rgba(253,245,230,.8);
  margin-bottom: 40px;
}
.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* override btn--white icon color in CTA */
.final-cta .btn--white path { fill: var(--accent); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(253,245,230,.1);
}

.footer__brand .logo { margin-bottom: 12px; }
.footer__tagline {
  font-size: 14px;
  color: rgba(253,245,230,.4);
  margin-bottom: 24px;
}

.footer__socials { display: flex; gap: 8px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(253,245,230,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,245,230,.5);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent);
  color: #fff;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(253,245,230,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a {
  font-size: 14px;
  color: rgba(253,245,230,.45);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--cream); }

.footer__bottom { padding: 20px 0; }
.footer__bottom p {
  font-size: 13px;
  color: rgba(253,245,230,.25);
  text-align: center;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav, .header__actions { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0 0;
    background: #fff;
    padding: 24px;
    gap: 4px;
    z-index: 99;
    border-top: 1px solid var(--border);
  }
  .nav.open .nav__link { padding: 14px; font-size: 17px; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 60px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero-image-wrapper { max-width: 400px; margin: 0 auto; }
  .hero-card--xfinity { 
    right: -20px; 
    top: 8%;
    max-width: 280px;
  }
  .hero-card--chase { 
    left: -30px; 
    bottom: 5%;
    max-width: 260px;
  }
  .hero__sparkle--1 { right: 5%; }
  .hero__sparkle--3 { left: 5%; }

  .feature-detail__inner,
  .feature-detail__inner--reversed,
  .insights__inner { grid-template-columns: 1fr; gap: 48px; direction: ltr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .discovery__cards { grid-template-columns: 1fr; }
  .discovery-card--featured { transform: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
  .hero-card {
    padding: 12px 14px;
    font-size: 12px;
  }
  .hero-card--xfinity {
    right: -10px;
    top: 5%;
    max-width: 240px;
  }
  .hero-card--chase {
    left: -10px;
    bottom: 5%;
    max-width: 220px;
  }
  .hero-card__text {
    font-size: 12px;
  }
  .hero__sparkle {
    font-size: 16px;
  }
  .final-cta__buttons { flex-direction: column; align-items: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .press__logos { gap: 24px; }
  .press__logo { font-size: 16px; }
}
