:root {
  --bg: #0b0b0b;
  --card-bg: #161616;
  --text: #ffffff;
  --text-muted: #cfcfcf;
  --accent: #ff6a00;
  --border: #2a2a2a;
  --radius: 12px;
  --container: 1100px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Added smooth scroll behavior for anchor links */
  scroll-behavior: smooth;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  padding: 80px 20px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Coupon Card */
.coupon-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.coupon-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.badge {
  background: #1a2e1a;
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.discount-pill {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.coupon-body h3 {
  margin-bottom: 10px;
}

.coupon-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.coupon-action {
  display: flex;
  gap: 15px;
  background: #000;
  padding: 8px;
  border-radius: 8px;
  border: 1px dashed var(--border);
}

.code-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.coupon-footer {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #666;
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Updated card styling for better depth */
.card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  /* Added subtle hover effect for interactivity */
  transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.card h3 {
  margin: 15px 0 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* Sections */
section {
  padding: 60px 0;
}

.cta-card {
  background: linear-gradient(rgba(255, 106, 0, 0.1), rgba(255, 106, 0, 0.05));
  border: 1px solid var(--accent);
  padding: 60px;
  border-radius: var(--radius);
  text-align: center;
}

.cta-card h2 {
  margin-bottom: 15px;
}
.cta-card p {
  margin-bottom: 30px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 60px;
}

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

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  .hero {
    padding: 40px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .coupon-action {
    flex-direction: column;
  }
}

/* Pricing Table Styles */
.table-container {
  overflow-x: auto;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: #1a1a1a;
  color: var(--text);
  font-weight: 700;
}

.comparison-table td.highlight,
.comparison-table th.highlight {
  background: rgba(255, 106, 0, 0.05);
  border-left: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}

/* Review Styles */
.review {
  padding: 80px 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.pros,
.cons {
  padding: 20px;
  border-radius: 8px;
  background: #111;
}

.pros h4 {
  color: #4ade80;
  margin-bottom: 10px;
}
.cons h4 {
  color: #f87171;
  margin-bottom: 10px;
}

.pros ul,
.cons ul {
  list-style: none;
}

.pros li::before {
  content: "✓ ";
  color: #4ade80;
}
.cons li::before {
  content: "× ";
  color: #f87171;
}

.score-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  position: sticky;
  top: 20px;
}

.score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

/* Guide Styles */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 800;
}
