:root {
  --red: #d90019;
  --red-dark: #8a0010;
  --ink: #171515;
  --muted: #665f5a;
  --cream: #fff7ee;
  --sand: #f4e9dc;
  --paper: #fffdf8;
  --line: rgba(23, 21, 21, 0.12);
  --shadow: 0 22px 70px rgba(39, 10, 10, 0.14);
  --shadow-soft: 0 14px 42px rgba(39, 10, 10, 0.10);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

.section-pad {
  padding: 88px 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 21, 21, 0.08);
}

.nav-shell {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: 0 10px 30px rgba(217, 0, 25, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.main-nav a {
  text-decoration: none;
  color: #443d38;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a:hover {
  background: #f1e6db;
  color: var(--ink);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  text-decoration: none;
  color: #fff;
  background: #161616;
  border: 1px solid #161616;
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(217, 0, 25, 0.15), transparent 32%),
    linear-gradient(145deg, #fffdf8 0%, #fff2e3 48%, #f5e2d6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -40% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(217,0,25,0.09);
  filter: blur(10px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.ad-disclosure {
  max-width: 840px;
  padding: 16px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(217, 0, 25, 0.28);
  background: rgba(255, 255, 255, 0.82);
  border-left: 6px solid var(--red);
  border-radius: 18px;
  color: #332b28;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
}

.ad-disclosure strong {
  color: #121212;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 950;
}

.eyebrow.light {
  color: #ffcf39;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(48px, 6.8vw, 86px);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero-lead {
  max-width: 680px;
  color: #4e4540;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.hero-actions,
.final-cta .cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 38px rgba(217, 0, 25, 0.24);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23,21,21,0.13);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(23,21,21,0.09);
  border-radius: 999px;
  color: #514842;
  font-size: 13px;
  font-weight: 800;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--red);
}

.hero-card {
  position: relative;
}

.hero-card > img,
.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.82);
}

.call-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.call-card strong {
  display: block;
  margin-bottom: 4px;
}

.call-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #20a957;
  box-shadow: 0 0 0 8px rgba(32, 169, 87, 0.14);
  margin-top: 7px;
}

.trust-strip {
  background: #171515;
  color: #fff;
  padding: 30px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strip-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
}

.strip-grid span {
  grid-row: span 2;
  color: #ffcf39;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.strip-grid strong {
  font-size: 16px;
}

.strip-grid p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 60px;
}

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

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.intro p:not(.eyebrow),
.section-head p,
.practical-grid p,
.feature-card p,
.ticket-card p,
.faq-layout p,
.terms-grid p,
.final-cta p {
  color: var(--muted);
}

.intro .two-col > div > p:not(.eyebrow) {
  font-size: 18px;
  max-width: 670px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.info-list article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-list article p {
  margin: 0;
}

.soft-bg {
  background:
    linear-gradient(180deg, #fffaf3 0%, #f8ece0 100%);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.wide {
  max-width: 860px;
}

.section-head p:not(.eyebrow) {
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 18px;
}

.feature-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
}

.feature-card.large-card {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.feature-card.large-card div {
  padding: 26px;
}

.feature-card.large-card img {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 950;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(217,0,25,0.18);
}

.ticket-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.sticky-head {
  position: sticky;
  top: 120px;
}

.ticket-cards {
  display: grid;
  gap: 18px;
}

.ticket-card {
  padding: 30px;
  border: 1px solid rgba(23,21,21,0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ticket-top h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.ticket-top span {
  min-width: max-content;
  color: var(--red-dark);
  background: #fff0ea;
  border: 1px solid rgba(217,0,25,0.16);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.ticket-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ticket-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #342d2a;
  font-weight: 750;
}

.ticket-card li::before {
  content: "✓";
  color: var(--red);
  font-weight: 950;
}

.dark-section {
  background: #121111;
  color: #fff;
  overflow: hidden;
}

.dark-section h2 {
  color: #fff;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 24px 24px 24px 76px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.76);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #121111;
  background: #ffcf39;
  font-weight: 950;
}

.steps strong {
  color: #fff;
}

.practical {
  background: #fffaf3;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.practical-grid article {
  min-height: 214px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-section {
  background: linear-gradient(180deg, #fff 0%, #fff7ee 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 26px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

details p {
  padding: 0 26px 24px;
  margin: 0;
}

.terms-section {
  background: #171515;
  color: #fff;
}

.terms-box {
  padding: 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 0%, rgba(217,0,25,0.24), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
}

.terms-section h2,
.terms-section h3 {
  color: #fff;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.terms-grid article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.terms-grid p {
  color: rgba(255,255,255,0.76);
  margin-bottom: 10px;
}

.terms-grid a {
  color: #fff;
  font-weight: 900;
}

.final-cta {
  background:
    radial-gradient(circle at right top, rgba(217,0,25,0.14), transparent 32%),
    #fff7ee;
}

.cta-box {
  flex-direction: column;
  align-items: flex-start !important;
  max-width: 820px;
  padding: 44px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 36px 0 92px;
  background: #111;
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.62);
}

.site-footer a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 800;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .two-col,
  .ticket-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .sticky-head {
    position: static;
  }

  .feature-grid,
  .practical-grid,
  .terms-grid,
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.large-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 58px 0;
  }

  .nav-shell {
    height: auto;
    padding: 14px 0;
  }

  .brand small {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .ad-disclosure {
    font-size: 13px;
  }

  .hero-actions,
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .call-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .feature-grid,
  .practical-grid,
  .terms-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .ticket-top {
    flex-direction: column;
  }

  .terms-box,
  .cta-box {
    padding: 24px;
    border-radius: 26px;
  }

  .site-footer a {
    margin: 10px 18px 0 0;
  }

  .mobile-call-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(17,17,17,0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  }

  .mobile-call-bar a {
    color: #fff;
    background: var(--red);
    text-decoration: none;
    font-weight: 950;
    padding: 10px 13px;
    border-radius: 999px;
  }
}
