:root {
  --primary-950: #0b1a26;
  --primary-900: #1a365d;
  --primary-700: #2b6cb0;
  --primary-500: #4299e1;
  --secondary-500: #d69e2e;
  --secondary-400: #ecc94b;
  --text-dark: #1a202c;
  --text-muted: #4a5568;
  --cream: #ebf8ff;
  --paper: #ffffff;
  --ink: #2d3748;
  --line: rgba(26, 54, 93, 0.1);
  --shadow: 0 24px 70px rgba(26, 32, 44, 0.15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

p {
  margin-top: 0;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: radial-gradient(circle at 80% 20%, rgba(236, 201, 75, 0.15), transparent 40%),
              linear-gradient(135deg, var(--paper) 0%, var(--cream) 100%);
  text-align: center;
}

.hero__copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .hero {
    padding: 40px 0 40px;
  }
}

.hero__media {
  position: relative;
  border-radius: 16px;
  padding: 10px;
  margin: 20px 0 30px;
}

.hero__media img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-height: 50vh;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary-500);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__lead {
  font-size: 20px;
  color: var(--text-muted);
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: normal;
  text-align: center;
}

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

.button--primary {
  background: #16a34a;
  color: white;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.3);
}

.button--ghost {
  border: 2px solid #16a34a;
  color: #16a34a;
  background: transparent;
}

/* Ticker */
.ticker {
  background: var(--primary-900);
  color: var(--secondary-400);
  overflow: hidden;
  padding: 16px 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticker span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary-500);
  margin-right: 40px;
  vertical-align: middle;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Generic Section */
.section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-heading p {
  font-size: 18px;
  color: var(--text-muted);
}

/* Carousel */
.carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
  background: var(--cream);
}
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollCarousel 40s linear infinite;
}
.carousel-track img {
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: contain;
  background: white;
  padding: 10px;
}
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--cream);
  color: var(--secondary-500);
  border-radius: 50%;
  margin-bottom: 24px;
  font-size: 24px;
}

/* Offer */
.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 860px) {
  .offer {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background: white;
  border: 2px solid var(--secondary-500);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

@media (max-width: 600px) {
  .offer-card {
    padding: 24px 16px;
  }
  .price strong {
    font-size: 44px !important;
  }
  .offer-card h3 {
    font-size: 20px !important;
  }
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-500);
  color: var(--primary-950);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.offer-card li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  font-weight: 500;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-500);
  font-weight: 900;
  font-size: 18px;
}

.price {
  text-align: center;
  margin-bottom: 24px;
}

.price span {
  display: block;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 16px;
}

.price strong {
  display: block;
  font-size: 64px;
  font-family: 'Playfair Display', serif;
  color: var(--primary-900);
  line-height: 1;
}

/* FAQ */
.section--faq {
  background: var(--cream);
}
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq summary {
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
}
.faq p {
  padding: 0 20px 20px 20px;
  margin: 0;
  color: var(--text-muted);
}

/* Testimonials */
.section--testimonials {
  background: white;
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
  height: 8px;
}
.testimonials-grid::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 4px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
  background: var(--secondary-500);
  border-radius: 4px;
}

.testimonial-img {
  flex: 0 0 300px;
  max-width: 85vw;
  scroll-snap-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  object-fit: contain;
}

@media (min-width: 861px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
  }
  .testimonial-img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

