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

:root {
  --primary:    #8F0F24;
  --primary-h:  #A51631;
  --gold:       #D6A456;
  --bg:         #FFFCF7;
  --white:      #FFFFFF;
  --text:       #1C1715;
  --muted:      #6F625B;
  --border:     #EFE5DA;
  --card-bg:    #FFFFFF;
  --shadow:     0 10px 30px rgba(82,42,24,.08);
  --radius:     8px;
  --transition: .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214,164,86,.12), transparent 38vw),
    linear-gradient(180deg, #fffaf3 0%, #fffdf9 42%, #fff9f1 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 4.7vw, 4.35rem); letter-spacing: 0; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.35rem); letter-spacing: 0; }
h3 { font-size: 1.25rem; }

p { color: var(--muted); line-height: 1.7; }

/* Utility */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: .95rem; max-width: 560px; margin: 0 auto; }
.divider-heart {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; margin: 8px 0 0;
}
.divider-heart::before,
.divider-heart::after {
  content: ''; display: block; width: 48px; height: 1px; background: var(--border);
}
.divider-heart span { color: var(--primary); font-size: .72rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-h); border-color: var(--primary-h); box-shadow: 0 10px 22px rgba(143,15,36,.2); }

.btn-outline {
  background: rgba(255,255,255,.68);
  color: var(--gold);
  border-color: rgba(214,164,86,.55);
}
.btn-outline:hover { background: #fff6e8; color: var(--primary); border-color: var(--gold); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8893e; border-color: #b8893e; }

.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* Badge */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-primary { background: #fce8ee; color: var(--primary); }
.badge-gold    { background: #fdf3e3; color: #9a6b2a; }
.badge-new     { background: var(--primary); color: var(--white); }

/* Stars */
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 1px; }

/* Tag list */
.tag-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 16px; margin-top: 14px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .74rem;
  color: #5f514a;
}
.tag svg {
  width: 16px; height: 16px;
  color: var(--primary);
  background: #fbebe5;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

/* View-all link */
.view-all-wrap { text-align: center; margin-top: 40px; }
.view-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border);
  border-color: rgba(214,164,86,.7);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--transition), color var(--transition);
}
.view-all-link:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,252,247,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 14px rgba(82,42,24,.05);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav-logo .logo-heart { color: var(--primary); font-size: 1.45rem; line-height: 1; }
.nav-logo .logo-text  {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex: 1;
}
.nav-links a {
  padding: 6px 2px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 0;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: transparent; }
.nav-links a.active { box-shadow: inset 0 -2px 0 var(--primary); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: ' ▾'; font-size: .7rem; }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, #fffaf3 0%, #fff8ef 43%, rgba(255,248,239,.56) 54%, rgba(255,248,239,0) 68%),
    linear-gradient(180deg, #fffaf3 0%, #fffdfa 100%);
  display: flex; align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
  padding: 56px 24px;
  width: 100%; max-width: 1280px; margin: 0 auto;
}
.hero-eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 14px;
}
.hero h1 { margin-bottom: 22px; max-width: 580px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-sub {
  font-size: 1rem; color: #5f514a;
  margin-bottom: 30px; max-width: 420px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 500; color: var(--muted);
}
.hero-trust-item .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff2dc; color: var(--gold);
  border: 1px solid #f0d9b6;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; flex-shrink: 0;
}

/* Hero image side */
.hero-media { position: relative; margin-right: -56px; }
.hero-img-wrap {
  border-radius: 0; overflow: hidden;
  box-shadow: none;
  position: relative;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  z-index: 1;
  background: linear-gradient(90deg, #fffaf3 0%, rgba(255,250,243,.74) 50%, rgba(255,250,243,0) 100%);
  pointer-events: none;
}
.hero-img-wrap img { width: 100%; height: 520px; object-fit: cover; object-position: center right; }
.hero-badge {
  position: absolute; bottom: 74px; right: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 132px; height: 132px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 10px 24px rgba(143,15,36,.36);
  border: 3px solid rgba(255,255,255,.42);
  z-index: 2;
  padding: 10px;
}
.hero-badge .badge-label { font-size: .6rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; opacity: .85; }
.hero-badge .badge-pct   { font-size: 1.8rem; font-weight: 700; line-height: 1; font-family: 'Playfair Display', serif; }
.hero-badge .badge-off   { font-size: .65rem; font-weight: 600; opacity: .9; }

/* ============================================================
   BRAND CARDS
   ============================================================ */
.brands-section { background: #fffdf9; }
.brand-card {
  display: grid;
  grid-template-columns: 35% 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 8px 28px rgba(82,42,24,.07);
  margin-bottom: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.brand-card:hover { box-shadow: 0 14px 38px rgba(82,42,24,.1); transform: translateY(-2px); }
.brand-card:last-child { margin-bottom: 0; }

.brand-img {
  position: relative; overflow: hidden;
  min-height: 238px;
  background: #141016;
}
.brand-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.brand-card:hover .brand-img img { transform: scale(1.04); }

.brand-body {
  padding: 24px 22px 22px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  gap: 24px;
  align-items: center;
}
.brand-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.brand-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.brand-icon.candy   { background: #E84393; }
.brand-icon.dream   { background: #7B5EA7; }
.brand-icon.crushon { background: var(--primary); }
.brand-icon.hera    { background: #C47B2B; }
.brand-icon.fantasy { background: #2B7BC4; }

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(82,42,24,.1);
}

.brand-name { font-size: 1.45rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
.brand-rating { display: flex; align-items: center; gap: 6px; margin-top: 2px; font-size: .82rem; color: var(--muted); }
.brand-desc { font-size: .86rem; color: var(--muted); margin-bottom: 12px; line-height: 1.65; }

.brand-deal-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: #fff8ef;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 16px;
  margin-bottom: 0;
  min-height: 166px;
}
.deal-pct { font-size: 1.75rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; line-height: 1.1; }
.deal-label { font-size: .75rem; color: var(--muted); line-height: 1.3; }
.deal-sub   { font-size: .68rem; color: var(--muted); margin-bottom: 12px; }

.brand-actions { display: flex; gap: 10px; flex-wrap: wrap; width: 100%; }
.brand-actions .btn { flex: 1; min-width: 120px; justify-content: center; padding: 10px 18px; font-size: .82rem; }

.brand-visit-link {
  display: block; text-align: center;
  font-size: .78rem; color: var(--primary); margin-top: 8px;
  opacity: .8; transition: opacity var(--transition);
}
.brand-visit-link:hover { opacity: 1; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section { background: #fffaf3; }
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(82,42,24,.07);
  min-width: 700px;
}
.compare-table thead th {
  background: #f4eadc;
  color: #4e4038;
  padding: 14px 18px;
  text-align: left;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.compare-table thead th:first-child { border-radius: 10px 0 0 0; }
.compare-table thead th:last-child  { border-radius: 0 10px 0 0; }

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: #fdf5f8; }

.compare-table tbody td {
  padding: 14px 18px;
  font-size: .84rem;
  vertical-align: middle;
}
.compare-brand {
  display: flex; align-items: center; gap: 12px; min-width: 160px;
}
.compare-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff8ef;
  box-shadow: 0 2px 8px rgba(82,42,24,.08);
}
.compare-brand .icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.compare-brand .icon.candy   { background: #E84393; }
.compare-brand .icon.dream   { background: #7B5EA7; }
.compare-brand .icon.crushon { background: var(--primary); }
.compare-brand .icon.hera    { background: #C47B2B; }
.compare-brand .icon.midj    { background: #2B7BC4; }

.compare-brand strong { font-size: .9rem; }
.compare-brand small  { font-size: .72rem; color: var(--muted); display: block; }

.rating-cell { display: flex; align-items: center; gap: 6px; }
.rating-num  { font-weight: 700; font-size: .88rem; }

.discount-cell { color: var(--primary); font-weight: 700; }

/* ============================================================
   COUPON CARDS
   ============================================================ */
.coupons-section { background: #fffdf9; }
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.coupon-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.coupon-card:hover { box-shadow: 0 12px 30px rgba(82,42,24,.1); transform: translateY(-3px); }

.coupon-logo {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin: 0 auto 14px;
  border: 1px solid rgba(143,15,36,.16);
  box-shadow: 0 8px 18px rgba(82,42,24,.14), inset 0 1px 0 rgba(255,255,255,.3);
}
.coupon-logo.candy { background: linear-gradient(135deg, #ff5f8e 0%, #b6123c 100%); }
.coupon-logo.dream { background: linear-gradient(135deg, #8b5cf6 0%, #4f1d95 100%); }
.coupon-logo.crushon { background: linear-gradient(135deg, #8f0f24 0%, #3b0710 100%); }
.coupon-logo.hera { background: linear-gradient(135deg, #d6a456 0%, #8f0f24 100%); }
.coupon-brand  { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.coupon-pct    { font-size: 1.7rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.coupon-label  { font-size: .72rem; color: var(--muted); margin-bottom: 16px; }
.coupon-code-wrap { margin-bottom: 16px; }
.coupon-code {
  display: inline-block;
  background: #fff7ed;
  border: 1.5px dashed var(--primary);
  border-radius: 6px;
  padding: 7px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .08em;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.coupon-code:hover { background: #fce8ee; }
.coupon-code .copied-tip {
  display: none; position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: var(--white);
  font-size: .7rem; padding: 3px 8px; border-radius: 4px;
  white-space: nowrap;
}
.coupon-code.copied .copied-tip { display: block; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: #fffaf3; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.why-img-wrap {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(82,42,24,.11);
}
.why-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.why-content h2 { margin-bottom: 12px; }
.why-content > p { margin-bottom: 36px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-item {}
.why-icon {
  width: 56px; height: 56px;
  background: #f8eee6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.why-item h4 { font-size: .95rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.why-item p  { font-size: .82rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-section { background: #fffdf9; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; flex-shrink: 0;
}
.review-meta strong { display: block; font-size: .9rem; }
.review-meta span   { font-size: .75rem; color: var(--muted); }
.review-stars { margin-bottom: 10px; }
.review-text  { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-section { background: #fffaf3; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(139,21,56,.1); transform: translateY(-3px); }
.blog-img {
  position: relative; overflow: hidden;
  height: 200px;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: var(--white);
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
}
.blog-body { padding: 22px 20px; }
.blog-meta { font-size: .72rem; color: var(--muted); margin-bottom: 8px; }
.blog-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.blog-body p  { font-size: .83rem; margin-bottom: 16px; }
.blog-read {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; font-weight: 600; color: var(--primary);
  transition: gap var(--transition);
}
.blog-card:hover .blog-read { gap: 8px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: transparent;
  padding: 58px 24px;
}
.newsletter-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(135deg, #8f0f24 0%, #a7122f 72%, #7c0c1f 100%);
  border-radius: 8px;
  padding: 28px 38px;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  box-shadow: 0 16px 34px rgba(143,15,36,.18);
}
.newsletter-inner h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.newsletter-inner p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.newsletter-form {
  display: flex; gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.newsletter-form input {
  flex: 1;
  border: none; outline: none;
  padding: 14px 20px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text);
}
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 14px 28px;
  font-size: .88rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: #b8893e; }
.newsletter-note { grid-column: 2; font-size: .72rem; color: rgba(255,255,255,.55); margin-top: -22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fffaf3;
  color: var(--muted);
  padding: 34px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-col .footer-logo {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.footer-brand-col .logo-heart { color: var(--primary); font-size: 1.4rem; }
.footer-brand-col .logo-text  { font-family: 'Inter', sans-serif; font-size: .98rem; font-weight: 700; color: var(--primary); }
.footer-brand-col p { font-size: .83rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff2dc;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--primary);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .83rem; color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-stars { color: var(--gold); font-size: .75rem; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .75rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .75rem; color: var(--muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }
.faq-list    { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 600; color: var(--text);
  transition: background var(--transition);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--bg); }
.faq-q .faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--primary);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-q .faq-icon,
.faq-item[open] .faq-q .faq-icon {
  transform: rotate(45deg); background: var(--primary); color: var(--white); border-color: var(--primary);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a,
.faq-item[open] .faq-a { max-height: 520px; }
.faq-a-inner { padding: 0 22px 18px; font-size: .88rem; color: var(--muted); line-height: 1.75; }
