/* Coupondealers - Modern Dark Theme, Mobile-First, No Hover Effects */

:root {
  --bg-dark: #1B202D;
  --bg-dark-card: #252B3B;
  --bg-light: #FFFFFF;
  --text-light: #FFFFFF;
  --text-muted: #B8BFC9;
  --text-dark: #2D3342;
  --accent: #E91E8C;
  --accent-soft: #F06292;
  --border-light: #E8EAED;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --container: min(1200px, 100% - 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  background: var(--bg-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: var(--bg-dark);
  padding: 3rem 0 4rem;
  text-align: center;
}

.hero-logo {
  margin-bottom: 1rem;
}

.hero-logo img {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

.hero-subtitle {
  color: #FFFFFF;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

/* Buttons - no hover effects per user request */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: none;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}

/* Ensure button text stays visible (override .section a link color) */
a.btn,
a.btn-primary,
a.btn-secondary {
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--bg-dark-card);
  color: var(--text-light);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-dark h2,
.section-dark p,
.section-dark li,
.section-dark a {
  color: #FFFFFF;
}

.section-light {
  background: var(--bg-light);
}

.section-light h2 {
  color: var(--text-dark);
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.section p,
.section ul {
  margin-bottom: 1rem;
}

.section-light p,
.section-light ul {
  color: var(--text-dark);
}

.section-light a {
  color: var(--accent);
  text-decoration: none;
}

/* Two-column layout */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.two-col-text p {
  margin-bottom: 1rem;
}

.illustration-placeholder {
  background: var(--bg-dark-card);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #FFFFFF;
  min-height: 180px;
  font-size: 0.95rem;
}

.illustration-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--bg-dark-card);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin: 0;
}

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.category-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.category-card h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: #5F6773;
  font-size: 0.9rem;
  margin: 0;
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.info-card h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #5F6773;
  font-size: 0.9rem;
  margin: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #5F6773;
  font-size: 0.9rem;
  margin: 0;
}

/* Benefit list */
.benefit-list {
  margin: 1rem 0 1.5rem 1.5rem;
}

.benefit-list li {
  margin-bottom: 0.5rem;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 3rem 0;
  color: #FFFFFF;
}

.cta-section p,
.cta-section a {
  color: #FFFFFF;
}

.cta-text {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem !important;
  line-height: 1.5;
}

/* Page hero (Privacy, Terms, Contact) */
.page-hero {
  background: var(--bg-dark);
  padding: 2.5rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--text-light);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #FFFFFF;
  margin: 0;
}

/* Content page */
.content-page h2 {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.content-page h2:first-of-type {
  margin-top: 0;
}

.content-page ul {
  margin: 1rem 0 1rem 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.back-link {
  margin-top: 2.5rem !important;
}

/* Contact form */
.contact-intro {
  margin-bottom: 2rem;
}

.contact-intro p {
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

.contact-info {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.contact-info h2 {
  margin-bottom: 0.75rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 2rem 0;
  color: #FFFFFF;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.footer-brand .logo img {
  height: 32px;
}

.footer-brand p {
  color: #FFFFFF;
  font-size: 0.9rem;
  margin: 0;
}

.footer-links h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Tablet */
@media (min-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-logo {
    font-size: 3rem;
  }

  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-links {
    align-items: flex-end;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .two-col-text {
    flex: 1;
  }

  .two-col-visual {
    flex: 1;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

/* Mobile nav */
@media (max-width: 599px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}

/* Coupon activation - button and redirecting text */
.btn-activation-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.redirecting-text {
  color: #FFFFFF;
  font-size: 1rem;
  margin: 0;
  min-height: 1.5em;
}

.hero .redirecting-text,
.cta-section .redirecting-text {
  color: #FFFFFF;
}
