/* ── Variables ── */
:root {
  --bg-deep: #0c0f14;
  --bg-card: #141820;
  --bg-elevated: #1a2030;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #f0f2f5;
  --text-muted: #9aa3b2;
  --accent: #e8872a;
  --accent-hover: #f09840;
  --accent-glow: rgba(232, 135, 42, 0.25);
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --green: #7ec636;
  --green-dark: #5a9420;
  --radius: 16px;
  --radius-lg: 24px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

/* ── Reset & base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d4701a);
  color: #fff;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 18px;
  font-weight: 500;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.btn-cta {
  background: var(--bg-deep);
  color: #fff;
  padding: 18px 36px;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-cta:hover {
  background: #161b24;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Navbar ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 15, 20, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  width: 170px;
  height: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 135, 42, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(126, 198, 54, 0.05) 0%, transparent 50%),
    var(--bg-deep);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 60px 6% 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stats li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-stats strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-image {
  position: relative;
}

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.float-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-float-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hero-float-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 6%;
}

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

.trust-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-header--light h2,
.section-header--light p {
  color: inherit;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

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

/* ── Benefits ── */
.benefits {
  padding: 120px 6%;
  background: var(--bg-deep);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Plans ── */
.plans {
  padding: 120px 6%;
  background: linear-gradient(180deg, #12161e 0%, var(--bg-deep) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card--featured {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.08) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.1), var(--shadow);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 100px;
}

.plan-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-price strong {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.plans-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Feature ── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 6%;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.feature-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
}

.steps {
  list-style: none;
  margin-bottom: 36px;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 135, 42, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── Gallery & phone sections ── */
.gallery-section,
.phone-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 6%;
  background: linear-gradient(135deg, #c4a574 0%, #d4b88a 50%, #b8956a 100%);
  color: #1a1410;
}

.gallery-card img,
.phone-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-text h2,
.phone-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

.gallery-text p {
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.85;
  max-width: 440px;
}

.checklist {
  list-style: none;
  margin: 28px 0 36px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 600;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d6a1e;
  font-weight: 800;
}

.gallery-section .btn-primary,
.phone-section .btn-primary {
  background: var(--bg-deep);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.gallery-section .btn-primary:hover,
.phone-section .btn-primary:hover {
  background: #1a2030;
}

/* ── CTA ── */
.cta {
  padding: 120px 6%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #0a1204;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  opacity: 0.85;
}

/* ── Footer ── */
footer {
  padding: 48px 6%;
  background: #080a0e;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 140px;
  opacity: 0.7;
}

footer p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

footer a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

footer a:hover {
  color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-content,
  .feature,
  .gallery-section,
  .phone-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    order: -1;
  }

  .hero-float-card {
    left: auto;
    right: 16px;
    bottom: -16px;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    gap: 20px;
  }

  .phone-section .phone-text {
    order: 1;
  }

  .phone-section .phone-image {
    order: 2;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 40px 5% 80px;
  }

  .benefits,
  .plans,
  .feature,
  .gallery-section,
  .phone-section,
  .cta {
    padding: 80px 5%;
  }

  .plan-card {
    padding: 32px 24px;
  }

  .btn-ghost {
    display: none;
  }
}
