.premium-home {
  --navy: #0d1b2a;
  --navy-light: #16293d;
  --gold: #e8b24a;
  --gold-dark: #c8922a;
  --cream: #f7f3ec;
  --text: #1a1a1a;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #ece4d8;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
}

.premium-home h1,
.premium-home h2,
.premium-home h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin-top: 0;
}

.premium-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

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

.premium-home .btn-solid {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(200, 146, 42, 0.25);
}

.premium-home .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.premium-home .hero {
  background: var(--navy);
  padding: 6.2rem 0 4.2rem;
  position: relative;
  overflow: hidden;
}

.premium-home .hero::after {
  content: none;
}

.premium-home .hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3rem;
  align-items: center;
}

.premium-home .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.premium-home .hero h1 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.04;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.5px;
  max-width: 760px;
}

.premium-home .hero h1 span {
  color: var(--gold);
}

.premium-home .lead {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  max-width: 650px;
  line-height: 1.75;
}

.premium-home .hero-cta {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.premium-home .hero-proof {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.premium-home .hero-proof span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.premium-home .hero-proof span::before {
  content: "✓";
  color: var(--gold);
  margin-right: 0.55rem;
  font-weight: 700;
}

.premium-home .panel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 2rem;
  color: var(--white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.premium-home .panel-badge {
  display: inline-block;
  background: rgba(232, 178, 74, 0.15);
  border: 1px solid rgba(232, 178, 74, 0.25);
  color: var(--gold);
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font-size: 0.73rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.premium-home .panel-card h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 1.35rem;
}

.premium-home .metric-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-home .metric-row:last-child {
  border-bottom: 0;
}

.premium-home .metric-row span {
  color: rgba(255, 255, 255, 0.72);
}

.premium-home .metric-row strong {
  color: var(--white);
}

.premium-home .problem-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.premium-home .problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-home .problem-item {
  padding: 1.85rem;
  border-right: 1px solid var(--border);
}

.premium-home .problem-item:last-child {
  border-right: 0;
}

.premium-home .problem-item h3 {
  font-size: 1.06rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.premium-home .problem-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.premium-home .section {
  padding: 4.8rem 0;
}

.premium-home .section-light {
  background: var(--cream);
}

.premium-home .section-dark {
  background: var(--navy);
  color: var(--white);
}

.premium-home .section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.premium-home .section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.14;
  color: var(--navy);
  margin: 0.35rem 0 0;
}

.premium-home .section-dark .section-heading h2 {
  color: var(--white);
}

.premium-home .section-sub {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-top: 0.9rem;
}

.premium-home .section-dark .section-sub {
  color: rgba(255, 255, 255, 0.72);
}

.premium-home .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.premium-home .card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1ece4;
  transition: transform 0.3s ease;
}

.premium-home .card:hover {
  transform: translateY(-4px);
}

.premium-home .card h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.28;
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.premium-home .card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0;
}

.premium-home .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.premium-home .step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.6rem;
}

.premium-home .step span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.premium-home .step h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.premium-home .step p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  margin: 0;
}

.premium-home .emotional-box {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 2.8rem;
  border-radius: 8px;
  color: var(--white);
  text-align: center;
}

.premium-home .emotional-box h2 {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  margin-bottom: 0.9rem;
}

.premium-home .emotional-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
}

.premium-home .cta-section {
  background: var(--white);
  text-align: center;
}

.premium-home .cta-section h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  line-height: 1.16;
  color: var(--navy);
  max-width: 900px;
  margin: 0 auto 1rem;
}

.premium-home .cta-section p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
  margin: 0 auto 1.8rem;
}

.premium-home .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.premium-home .cta-section .btn-ghost {
  color: var(--navy);
  border-color: #d6d6d6;
  background: var(--white);
}

@media (max-width: 980px) {
  .premium-home .hero {
    padding-top: 5.3rem;
  }

  .premium-home .hero-grid,
  .premium-home .cards,
  .premium-home .steps,
  .premium-home .problem-grid {
    grid-template-columns: 1fr;
  }

  .premium-home .problem-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .premium-home .problem-item:last-child {
    border-bottom: 0;
  }
}
