/* ============================================================
   THE COUPON FINDER - Global Styles
   Aesthetic: Sharp editorial meets warm commerce
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

:root {
  --bg: #0f0e0d;
  --bg2: #161412;
  --bg3: #1e1b18;
  --surface: #242018;
  --surface2: #2e2922;
  --border: #333028;
  --accent: #f5a623;
  --accent2: #e8891a;
  --accent-glow: rgba(245,166,35,0.15);
  --red: #e84545;
  --green: #3fcf6e;
  --text: #f0ece4;
  --text2: #b0a898;
  --text3: #706860;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,14,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #0f0e0d;
  font-family: 'Clash Display', sans-serif;
  font-weight: 800;
  font-size: 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.logo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.logo-text strong {
  font-weight: 800;
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: 8px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface2);
}

.nav-links a.active {
  color: var(--accent);
}

.stores-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--accent);
  color: #0f0e0d;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.stores-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 32px 24px;
  gap: 4px;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;

  background:
    linear-gradient(
      rgba(15,14,13,0.75),
      rgba(15,14,13,0.75)
    ),
    url('images/7saaX.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 580px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.accent { color: var(--accent); }

.hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.stat span {
  font-size: 12px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-visual {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 1.2s ease both;
}

.floating-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.floating-card.c1 { transform: rotate(-3deg); background: var(--surface2); }
.floating-card.c2 { transform: rotate(2deg); }
.floating-card.c3 { transform: rotate(-1deg); }

.fc-pct {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.fc-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--accent);
  overflow: hidden;
  padding: 10px 0;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 13px;
  font-weight: 600;
  color: #0f0e0d;
  letter-spacing: 0.3px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg2);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.section-header p {
  font-size: 15px;
  color: var(--text3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all .3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 12px;
}

.blog-content p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text3);
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0f0e0d;
  font-weight: 700;
}

/* ============================================================
   DEALS GRID (LIST TILES)
   ============================================================ */
.deals-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deal-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.2s;
}

.deal-tile:hover {
  border-color: var(--accent);
  background: var(--surface2);
  transform: translateX(4px);
}

.deal-tile.hidden { display: none; }

.tile-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.tile-logo {
  width: 60px;
  height: 60px;
  background: var(--bg3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.tile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-left .brand-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  text-align: center;
}

.tile-left h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tile-left p {
  font-size: 13px;
  color: var(--text2);
}

.tile-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.tile-pct {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 60px;
  text-align: center;
}

.tile-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
}

.tile-btn:hover {
  background: var(--accent);
  color: #0f0e0d;
}

/* ============================================================
   FEATURED COMPARISON
   ============================================================ */

.comparison-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px;
}

.comparison-tag {
  display: inline-block;
  background: rgba(245,166,35,.15);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,.3);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.comparison-content h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.comparison-content p {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
}

.comparison-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0f0e0d;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: .25s;
}

.comparison-btn:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.comparison-image {
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .comparison-feature {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .comparison-content h2 {
    font-size: 28px;
  }

  .comparison-image {
    height: 220px;
  }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.newsletter-text h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 15px;
  color: var(--text2);
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 480px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.newsletter-form:focus-within { border-color: var(--accent); }

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
}

.newsletter-form input::placeholder { color: var(--text3); }

.newsletter-form button {
  background: var(--accent);
  color: #0f0e0d;
  border: none;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--accent2); }

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text3);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text3);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 0px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  text-align: center;
}

.page-hero h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   CATEGORIES PAGE
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.cat-card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;

  border: 1px solid var(--border);
  transition: all .35s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.85) 0%,
      rgba(0,0,0,.55) 45%,
      rgba(0,0,0,.15) 100%
    );
}

.cat-overlay {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.cat-card:hover::before {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.9) 0%,
      rgba(0,0,0,.45) 50%,
      rgba(0,0,0,.1) 100%
    );
}

.cat-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.cat-card p {
  color: rgba(255,255,255,.8);
}

.cat-count {
  display: inline-block;
  margin-top: 14px;
  background: var(--accent);
  color: #0f0e0d;
  border: none;
}

/* ============================================================
   STORES PAGE
   ============================================================ */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: block;
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.store-img {
  height: 130px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.store-card:hover .store-img img { opacity: 1; }

.store-img .brand-fallback {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text3);
}

.store-info {
  padding: 20px;
}

.store-info h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.store-info p {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 12px;
}

.store-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.store-link:hover { gap: 8px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat {
  text-align: center;
}

.about-stat strong {
  font-family: 'Clash Display', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 13px;
  color: var(--text3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.value-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--surface2);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cd-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.cd-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.cd-text span {
  font-size: 14px;
  color: var(--text2);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23706860' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  background: var(--accent);
  color: #0f0e0d;
  border: none;
  border-radius: var(--radius);
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.form-submit:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* ============================================================
   PRIVACY / TERMS / AFFILIATE PAGES
   ============================================================ */
.legal-content {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.legal-content h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; }
  .hero-visual { position: static; transform: none; flex-direction: row; justify-content: center; margin-top: 40px; }
  .floating-card { padding: 20px 28px; }
  .fc-pct { font-size: 28px; }
  .newsletter-inner { flex-direction: column; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links, .nav-search { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 90px 24px 60px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .tile-right { gap: 12px; }
  .tile-pct { font-size: 22px; min-width: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .deals-featured { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-visual { padding: 28px; }
}



/* ============================================================
   Blogsx
   ============================================================ */
.hero-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(245,166,35,.25);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-category {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.featured-content h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 38px;
  margin: 18px 0;
}

.featured-content p {
  color: var(--text2);
  margin-bottom: 24px;
}

.featured-btn {
  display: inline-flex;
  width: fit-content;
  padding: 14px 24px;
  background: var(--accent);
  color: #111;
  border-radius: var(--radius);
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: .3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.blog-image {
  height: 220px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-category {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-content h3 {
  font-family: 'Clash Display', sans-serif;
  margin: 12px 0;
  font-size: 22px;
  line-height: 1.35;
}

.blog-content p {
  color: var(--text2);
}

@media (max-width:900px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .featured-content h2 {
    font-size: 30px;
  }
}

/* ============================================================
   PROMO BANNER
   ============================================================ */

/* ============================================================
   PROMO BANNERS
   ============================================================ */

.promo-banner-section {
  padding: 10px 0 80px;
}

.promo-banner-section .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.promo-banner {
  display: block;
  width: 100%;
  max-width: 1200px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #111;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* SMOOTH HOVER EFFECT */
.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.promo-banner:hover img {
  transform: scale(1.03);
}