:root {
  --gold: #d6b08e;
  --gold-dark: #b8905f;
  --gold-deep: #8f6e3f;
  --gold-light: #e8cfb5;
  --gold-soft: #f5ebdf;
  --gold-soft-2: #faf3e8;
  --coral: #f38577;
  --coral-dark: #e06a5c;
  --cream: #fbf8f3;
  --ink: #222222;
  --charcoal: #3a3a3a;
  --muted: #6f6f6f;
  --line: #ead9c5;
  --white: #ffffff;
  --display: 'Montserrat', Arial, sans-serif;
  --body: 'Open Sans', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.accent { color: var(--gold-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 48px) clamp(70px, 12vw, 140px);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft-2) 0%, var(--gold-soft) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -200px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 176, 142, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 144, 95, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(10px, 1.5vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: clamp(20px, 3vw, 28px);
  padding-left: 44px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 2px;
  background: var(--gold-dark);
}
.hero h1 {
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.08;
  max-width: 920px;
  margin-bottom: clamp(24px, 3vw, 36px);
  font-weight: 700;
}
.hero-lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 780px;
  font-weight: 400;
  margin-bottom: clamp(32px, 4.5vw, 44px);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-btn {
  display: inline-block;
  background: var(--gold-dark);
  color: var(--white);
  padding: 18px 36px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px -8px rgba(184, 144, 95, 0.5);
}
.hero-btn:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: clamp(64px, 10vw, 110px) clamp(20px, 4vw, 48px);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--display);
  font-size: clamp(10px, 1.3vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}
.section-title {
  font-size: clamp(26px, 4vw, 48px);
  margin-bottom: 18px;
  max-width: 900px;
  font-weight: 700;
  line-height: 1.2;
}
.section-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  max-width: 720px;
  margin-bottom: clamp(44px, 6vw, 72px);
  line-height: 1.75;
  font-weight: 400;
}

/* ===== INTRO / WHY ===== */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.intro-text p {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 18px;
}
.intro-text p:last-child { margin-bottom: 0; }

.facts-card {
  background: var(--gold-soft-2);
  border: 1px solid var(--gold-light);
  padding: clamp(32px, 4vw, 48px);
  border-radius: 4px;
  position: relative;
}
.facts-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-dark);
  border-radius: 2px 0 0 2px;
}
.fact {
  padding: 18px 0;
  border-bottom: 1px solid var(--gold-light);
}
.fact:first-child { padding-top: 0; }
.fact:last-child { padding-bottom: 0; border-bottom: 0; }
.fact-number {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.fact-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.fact-text {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ===== FOR WHOM ===== */
.target { background: var(--cream); }
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.target-item {
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 2.8vw, 32px);
  background: var(--cream);
  transition: background 0.3s;
}
.target-item:hover { background: var(--white); }
.target-icon {
  width: clamp(44px, 5vw, 52px);
  height: clamp(44px, 5vw, 52px);
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  border-radius: 2px;
}
.target-item h3 {
  font-size: clamp(16px, 1.9vw, 19px);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.target-item p {
  font-size: clamp(13px, 1.4vw, 14.5px);
  color: var(--muted);
  line-height: 1.65;
}

/* ===== PACKAGES ===== */
.packages {
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-soft) 100%);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 20px;
}
.pkg {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 3vw, 36px) clamp(28px, 3.2vw, 36px);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.pkg:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(184, 144, 95, 0.35);
  border-color: var(--gold);
}
.pkg-featured {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px -20px rgba(184, 144, 95, 0.55);
}
.pkg-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 70px -20px rgba(143, 110, 63, 0.6);
  border-color: var(--gold-deep);
}
.pkg-featured .pkg-name,
.pkg-featured .pkg-price,
.pkg-featured li { color: var(--white); }
.pkg-featured .pkg-tier { color: var(--gold-soft); }
.pkg-featured .pkg-period { color: var(--gold-light); }
.pkg-featured li::before { background: var(--white); }
.pkg-featured .pkg-price-wrap { border-color: rgba(255,255,255,0.25); }
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 2px;
  white-space: nowrap;
}
.pkg-tier {
  font-family: var(--display);
  font-size: clamp(10px, 1.2vw, 11px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.pkg-name {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: clamp(16px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pkg-desc {
  font-size: clamp(13px, 1.5vw, 14.5px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  min-height: 48px;
}
.pkg-featured .pkg-desc { color: var(--gold-soft); }
.pkg-price-wrap {
  padding: clamp(18px, 2.2vw, 24px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(22px, 2.6vw, 28px);
}
.pkg-price {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--ink);
}
.pkg-period {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-top: 4px;
}
.pkg-list { list-style: none; margin-bottom: clamp(24px, 3vw, 32px); flex: 1; }
.pkg-list li {
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  padding: 10px 0 10px 22px;
  position: relative;
  line-height: 1.55;
  color: var(--charcoal);
}
.pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 2px;
  background: var(--gold-dark);
}
.pkg-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--gold-dark);
  color: var(--white);
  text-decoration: none;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s;
  border-radius: 2px;
}
.pkg-cta:hover { background: var(--gold-deep); }
.pkg-featured .pkg-cta { background: var(--white); color: var(--gold-dark); }
.pkg-featured .pkg-cta:hover { background: var(--ink); color: var(--white); }

/* ===== COMPARISON TABLE ===== */
.compare { background: var(--white); }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
  font-family: var(--body);
}
thead th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  padding: 22px 16px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
thead th:first-child {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 600;
}
.row-group td {
  background: var(--gold-soft);
  padding: 14px 16px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--line);
}
tbody td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  vertical-align: middle;
}
tbody td:first-child {
  text-align: left;
  color: var(--ink);
  font-weight: 500;
  max-width: 380px;
}
tbody td .sub {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.check { color: var(--gold-dark); font-size: 20px; font-weight: 700; }
.no { color: #d4c9b5; font-size: 14px; }
.price-row td {
  background: var(--gold-dark);
  color: var(--white);
  font-family: var(--display);
  font-size: 19px;
  padding: 24px 16px;
  font-weight: 700;
}
.price-row td:first-child {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.table-hint {
  display: none;
  font-size: 12px;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.note {
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--muted);
  margin-top: 28px;
  line-height: 1.7;
  padding: 20px 24px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold-dark);
  border-radius: 2px;
}

/* ===== PROCESS ===== */
.process { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 20px;
}
.step {
  position: relative;
  padding-top: 12px;
}
.step-num {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.7;
}
.step h3 {
  font-size: clamp(17px, 1.9vw, 20px);
  margin-bottom: 10px;
  font-weight: 700;
}
.step p {
  font-size: clamp(13.5px, 1.5vw, 15px);
  color: var(--muted);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 48px);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 176, 142, 0.3) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 144, 95, 0.22) 0%, transparent 70%);
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-section .section-label { color: var(--gold-light); }
.cta-section .section-title { color: var(--white); }
.cta-section h2 { font-size: clamp(28px, 4.2vw, 54px); }
.cta-section p {
  color: #d4d4d4;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold-dark);
  color: var(--white);
  padding: 18px 36px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--gold-deep); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 18px 36px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid #555;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 2px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 176, 142, 0.3);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 40px);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}
.contact-item {
  padding: clamp(16px, 2vw, 22px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-item:last-child { border-bottom: 0; }
.contact-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-value {
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--white);
  font-weight: 500;
  word-break: break-word;
}
.contact-value a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1100px) {
  .pkg-featured { transform: translateY(0); }
  .pkg-featured:hover { transform: translateY(-6px); }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .table-hint { display: block; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 56px 20px 72px; }
  section { padding: 64px 20px; }
  .target-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { width: 100%; }
  .hero-btn { display: inline-block; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; }
  .contact-value { font-size: 17px; }
  .eyebrow { padding-left: 36px; }
  .eyebrow::before { width: 24px; }
  .hero h1 { font-size: 34px; line-height: 1.15; }
  .section-title { font-size: 26px; line-height: 1.25; }
}

@media (max-width: 380px) {
  .hero { padding: 48px 16px 64px; }
  section { padding: 56px 16px; }
  .hero h1 { font-size: 30px; }
  .pkg, .target-item { padding: 28px 22px; }
}
