/* ============================================================
   ScontiValidi — Foglio di stile principale
   Palette: Navy #1B2A4A | Salvia #6B8F71 | BG #F8F9FB
   ============================================================ */

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #F8F9FB;
  color: #2D2D2D;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #1B2A4A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #6B8F71;
}

ul {
  list-style: none;
}

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --navy: #1B2A4A;
  --navy-light: #253a63;
  --sage: #6B8F71;
  --sage-light: #8aad90;
  --sage-pale: #e8f0e9;
  --bg: #F8F9FB;
  --bg-alt: #EFF1F5;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-muted: #6B7280;
  --border: #E2E6EA;
  --shadow-sm: 0 1px 4px rgba(27,42,74,0.07);
  --shadow-md: 0 4px 16px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 32px rgba(27,42,74,0.13);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --max-width: 1140px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
p  { margin-bottom: 1rem; }

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

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

.section--white {
  background-color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  margin-bottom: 0.6rem;
}

.section__header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- ALERT BAR ---------- */
.alert-bar {
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.alert-bar a {
  color: #a8d5ae;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.alert-bar a:hover {
  color: var(--white);
}

/* ---------- HEADER & NAVIGATION ---------- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  text-decoration: none;
}

.logo__icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--navy), var(--sage));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.logo:hover {
  color: var(--sage);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link.active {
  background: var(--sage-pale);
  color: var(--navy);
}

.nav__cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
}

.nav__cta:hover {
  background: var(--navy-light);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav--mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  gap: 0.25rem;
}

.nav--mobile.open {
  display: flex;
}

.nav--mobile .nav__link {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #253a63 60%, #2e4a7a 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,143,113,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107,143,113,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(107,143,113,0.25);
  border: 1px solid rgba(107,143,113,0.5);
  color: #a8d5ae;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #a8d5ae;
}

.hero .lead {
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero for brand pages */
.hero--brand {
  padding: 3rem 0 2.5rem;
}

.hero--brand h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107,143,113,0.35);
}

.btn--secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--copy {
  background: var(--sage);
  color: var(--white);
  font-size: 0.88rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.btn--copy:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}

.btn--copy.copied {
  background: #2e7d32;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ---------- COUPON CARD ---------- */
.coupon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.coupon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.coupon-card__header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coupon-card__brand {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.coupon-card__badge {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coupon-card__badge--active {
  background: #22c55e;
  color: var(--white);
}

.coupon-card__badge--expired {
  background: #ef4444;
  color: var(--white);
}

.coupon-card__badge--limited {
  background: #f59e0b;
  color: var(--white);
}

.coupon-card__body {
  padding: 1.5rem;
}

.coupon-card__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.coupon-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.coupon-card__code-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.coupon-code {
  flex: 1;
  background: var(--sage-pale);
  border: 2px dashed var(--sage);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-align: center;
  user-select: all;
}

.coupon-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.coupon-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.coupon-card__meta-item svg {
  flex-shrink: 0;
  color: var(--sage);
}

.coupon-card__footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coupon-card__savings {
  font-size: 0.875rem;
  color: #22c55e;
  font-weight: 600;
}

/* ---------- GRID LAYOUTS ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ---------- STEP CARDS ---------- */
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-card__number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- OFFER CARD ---------- */
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.offer-card__icon {
  width: 44px;
  height: 44px;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.offer-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.offer-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.offer-card__tag {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---------- GUIDE CARD ---------- */
.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.guide-card__category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.guide-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
}

.guide-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
  flex: 1;
}

.guide-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

.guide-card__link:hover {
  color: var(--sage);
}

/* ---------- TRATTA LINKS ---------- */
.tratte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.tratta-link {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}

.tratta-link:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
  color: var(--navy);
  transform: translateX(3px);
}

.tratta-link::before {
  content: '→';
  color: var(--sage);
  font-weight: 700;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 0.85rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.breadcrumb__item a {
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb__item a:hover {
  color: var(--navy);
}

.breadcrumb__item--current {
  color: var(--navy);
  font-weight: 600;
}

.breadcrumb__sep {
  color: var(--border);
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question.active {
  background: var(--sage-pale);
  color: var(--navy);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
}

.faq-question.active .faq-icon {
  background: var(--sage);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  margin-bottom: 0;
  padding-top: 1rem;
}

/* ---------- HOW-TO STEPS ---------- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-item__num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-item__content h4 {
  margin-bottom: 0.25rem;
}

.step-item__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- INFO BOX ---------- */
.info-box {
  background: var(--sage-pale);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
}

.info-box strong {
  color: var(--navy);
}

.warning-box {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
}

/* ---------- TIP LIST ---------- */
.tip-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.tip-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.tip-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ---------- TABLE ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin: 1.25rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
}

th {
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: var(--bg);
}

/* ---------- ARTICLE CONTENT (Guide) ---------- */
.article-content {
  max-width: 780px;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

.article-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li { margin-bottom: 0.4rem; }

.article-content .info-box,
.article-content .warning-box {
  margin: 1.5rem 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------- SIDEBAR ---------- */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.sidebar-card h4 {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--sage-pale);
  padding-bottom: 0.5rem;
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-nav-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: all var(--transition);
}

.sidebar-nav-list a:hover {
  background: var(--sage-pale);
  color: var(--navy);
  padding-left: 0.85rem;
}

/* ---------- BADGE ---------- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge--navy { background: var(--navy); color: var(--white); }
.badge--sage { background: var(--sage-pale); color: var(--sage); }
.badge--green { background: #dcfce7; color: #16a34a; }

/* ---------- DIVIDER ---------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.footer__brand .logo:hover {
  color: #a8d5ae;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: rgba(255,255,255,0.6);
}

.footer__col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #a8d5ae;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer__disclaimer {
  max-width: 600px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__list,
  .hamburger ~ .nav__list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .coupon-card__code-row {
    flex-direction: column;
  }

  .coupon-code {
    width: 100%;
  }

  .btn--copy {
    width: 100%;
    justify-content: center;
  }

  .coupon-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --max-width: 100%;
  }

  .container {
    padding: 0 1rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .tratte-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- PRINT ---------- */
@media print {
  .header, .alert-bar, .footer, .btn { display: none; }
}
