/* ===================================================
   PhoneContracts.Online — Global Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1a2f45;
  --navy-light:  #244060;
  --gold:        #c9a84c;
  --gold-light:  #e8c872;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --grey-light:  #e8eaf0;
  --grey-mid:    #9aa3b2;
  --text-dark:   #1a1f2e;
  --text-body:   #3d4559;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 8px rgba(13,27,42,0.08);
  --shadow-md:   0 6px 24px rgba(13,27,42,0.13);
  --shadow-lg:   0 16px 48px rgba(13,27,42,0.18);
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; }

/* ── Layout Utilities ──────────────────────────────── */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.section { padding-block: clamp(48px, 8vw, 96px); }
.section--alt { background: var(--off-white); }
.flex { display: flex; }
.grid { display: grid; }
.text-center { text-align: center; }

/* ── Disclosure Banner ─────────────────────────────── */
.disclosure-top {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.disclosure-top strong { color: var(--gold-light); font-weight: 500; }

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav__logo-main span { color: var(--gold); }
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}
.nav__links a:hover { background: var(--off-white); color: var(--navy); }
.nav__links a.active { color: var(--gold); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background var(--transition) !important;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--navy-mid) !important; }
.nav__cta svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: 12px 0 20px;
}
.nav__mobile a {
  padding: 11px clamp(16px, 4vw, 40px);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--grey-light);
  display: block;
  transition: background var(--transition);
}
.nav__mobile a:hover { background: var(--off-white); }
.nav__mobile a.active { color: var(--gold); }
.nav__mobile--open { display: flex; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--call {
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  padding: 15px 32px;
}
.btn--call:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Section Label ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.25);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a5c 100%);
  color: var(--white);
  padding-block: clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero__badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 18px;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}
.hero__badge:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.09);
}
.hero__badge-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.hero__badge h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.hero__badge p { color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 300; }

/* ── Networks Strip ────────────────────────────────── */
.networks {
  background: var(--navy);
  padding-block: 22px;
}
.networks__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.networks__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  white-space: nowrap;
}
.networks__list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.networks__pill {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}

/* ── Deal Cards ────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.deal-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.deal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.deal-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-bottom-left-radius: var(--radius);
}
.deal-card__network {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 10px;
}
.deal-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}
.deal-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.deal-card__spec {
  background: var(--off-white);
  border-radius: 8px;
  padding: 10px 12px;
}
.deal-card__spec-label {
  font-size: 0.7rem;
  color: var(--grey-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.deal-card__spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.deal-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}
.deal-card__amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.deal-card__per {
  font-size: 0.85rem;
  color: var(--grey-mid);
  font-weight: 400;
}
.deal-card__cta {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.deal-card__cta:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow-md);
}

/* ── Info Block ────────────────────────────────────── */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-block--reverse { direction: rtl; }
.info-block--reverse > * { direction: ltr; }
.info-block__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.info-block__illustration {
  font-size: 5rem;
  opacity: 0.8;
}
.info-block__body { display: flex; flex-direction: column; gap: 18px; }
.info-block__body h2 { margin-bottom: 0; }
.info-block__body p { line-height: 1.75; }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.info-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%230d1b2a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ── Why Us Cards ──────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.why-card h4 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--grey-mid); line-height: 1.6; }

/* ── CTA Band ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding-block: clamp(48px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.1), transparent);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 32px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Info ──────────────────────────────────── */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.contact-detail:hover { box-shadow: var(--shadow-md); }
.contact-detail__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-detail h4 { margin-bottom: 4px; font-size: 0.9rem; }
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text-body);
}
.contact-detail a:hover { color: var(--navy); text-decoration: underline; }

/* ── Form ──────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.07);
}
.form-group input.error,
.form-group textarea.error { border-color: #e05555; }
.form-error { font-size: 0.78rem; color: #e05555; margin-top: 2px; }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Maps ──────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ── Hours Table ───────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--grey-light); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: 0.92rem; }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--navy); }

/* ── Team/About Cards ──────────────────────────────── */
.value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.value-card h4 { margin-bottom: 6px; }
.value-card p { font-size: 0.9rem; color: var(--grey-mid); line-height: 1.6; }

/* ── O2 Page Specific ──────────────────────────────── */
.o2-disclaimer {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.o2-disclaimer__icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

.o2-hero {
  background: linear-gradient(135deg, #0d2235 0%, #1a3a5c 100%);
}

.sim-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.sim-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.sim-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 99px;
  align-self: flex-start;
}
.sim-card__data {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.sim-card__data span { font-size: 1rem; font-weight: 400; color: var(--grey-mid); }
.sim-card__name { font-size: 0.95rem; font-weight: 500; color: var(--text-body); }
.sim-card__perks { display: flex; flex-direction: column; gap: 6px; }
.sim-card__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-body);
}
.sim-card__perk::before {
  content: '✓';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
}
.sim-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--grey-light);
}
.sim-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
}
.sim-card__per { font-size: 0.82rem; color: var(--grey-mid); }

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
}
.footer__main {
  padding-block: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__brand-name span { color: var(--gold); }
.footer__brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  margin-bottom: 10px;
}
.footer__contact-item a { transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 8px; }
.footer__col-links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer__col-links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}
.footer__disclaimer {
  background: rgba(201,168,76,0.08);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 14px clamp(16px, 4vw, 40px);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.7;
}

/* ── Stat Cards ────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
}
.stat-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__num span { color: var(--gold); }
.stat-card__label { font-size: 0.85rem; color: var(--grey-mid); }

/* ── Page Header (inner pages) ──────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding-block: clamp(48px, 6vw, 80px);
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.72); max-width: 560px; font-size: 1.05rem; }

/* ── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Toast/Alert ────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert--success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #1e6e3a; }
.alert--hidden { display: none; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__badge-grid { grid-template-columns: 1fr 1fr; }
  .info-block { grid-template-columns: 1fr; gap: 36px; }
  .info-block--reverse { direction: ltr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__badge-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeup {
  animation: fadeUp 0.6s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.22s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.34s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.46s; opacity: 0; }
