main { padding-bottom: 40px; }

/* HERO */

.hero {
  padding: 40px 0 40px;
}

.hero-shell {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(circle at top left, rgba(240,179,118,0.16) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(80,128,255,0.16) 0, transparent 60%),
    rgba(5,7,10,0.96);
}

.hero-inner {
  position: relative;
  padding: 32px 26px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2rem, 2.4vw + 1.2rem, 2.7rem);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}

.lead {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 18px;
}

.eyeline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.chip {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(5,7,10,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(245,245,245,0.9);
  font-size: 0.78rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.9rem;
  min-height: 44px;
  transition: 0.18s ease;
  cursor: pointer;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #ffe1b5 0, #f0b376 38%, #e29c5d 100%);
  color: #1a120b;
  box-shadow: 0 14px 34px rgba(240,179,118,0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px rgba(240,179,118,0.65);
}

.btn-secondary {
  background: rgba(5,7,10,0.96);
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.26);
}

/* CONTENT SECTIONS */

section.block {
  padding: 30px 0 0;
}

.section-title {
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.section-sub {
  color: var(--muted);
  max-width: 78ch;
  margin: 0 0 18px;
  font-size: 0.94rem;
}

.card {
  background:
    radial-gradient(circle at 0 0, rgba(240,179,118,0.10) 0, transparent 55%),
    linear-gradient(145deg, rgba(9,11,16,0.96), rgba(7,10,15,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.7);
  font-size: 0.9rem;
  color: var(--muted);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.card p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

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

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

/* OFFER PANEL */

.panel {
  background:
    radial-gradient(circle at 0 0, rgba(240,179,118,0.16) 0, transparent 40%),
    rgba(8,10,14,0.98);
  color: #f6f1ea;
  border-radius: 30px;
  padding: 24px 20px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 10px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.panel .section-sub {
  color: #c7b8a8;
  margin-bottom: 10px;
}

.price {
  font-size: 2.2rem;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--accent-strong);
}

.panel .eyeline {
  margin-bottom: 12px;
}

.panel .cta {
  margin-top: 4px;
}

/* LIGHT THEME OVERRIDES — теплий cream / caramel */

html[data-theme="light"] .hero-shell{
  border-color: rgba(104,82,62,.20);
  background:
    radial-gradient(circle at top left, rgba(245,198,150,.30) 0, transparent 48%),
    radial-gradient(circle at bottom right, rgba(232,165,92,.20) 0, transparent 55%),
    linear-gradient(135deg,#fffdf9 0,#f7efe4 55%,#f2e4d5 100%);
  box-shadow: 0 22px 56px rgba(98,76,56,.18);
}

html[data-theme="light"] .eyebrow{
  color:#7f6f62;
}

html[data-theme="light"] .eyebrow::before{
  background:#d58034;
}

html[data-theme="light"] .hero h1{
  color:#2b2119;
}

html[data-theme="light"] .lead{
  color:#5f5146;
}

html[data-theme="light"] .chip{
  background:#fffaf4;
  border-color:rgba(104,82,62,.24);
  color:#2b2119;
}

/* cards */

html[data-theme="light"] .card{
  background:linear-gradient(180deg,#fffdf9 0%,#fff7ef 100%);
  border-color:rgba(104,82,62,.20);
  box-shadow:0 14px 32px rgba(98,76,56,.16);
  color:#5f5146;
}

html[data-theme="light"] .card h3{
  color:#2b2119;
}

html[data-theme="light"] .card p,
html[data-theme="light"] .card li{
  color:#5f5146;
}

/* pricing panel */

html[data-theme="light"] .panel{
  background:linear-gradient(180deg,#fffaf2 0%,#f7eee4 100%);
  border-color:rgba(104,82,62,.24);
  box-shadow:0 18px 42px rgba(98,76,56,.18);
  color:#2b2119;
}

html[data-theme="light"] .panel .section-sub{
  color:#5f5146;
}

html[data-theme="light"] .price{
  color:#d87932;
}

/* buttons */

html[data-theme="light"] .btn{
  background:#fffaf4;
  border-color:rgba(104,82,62,.22);
  color:#2b2119;
  box-shadow:0 8px 20px rgba(98,76,56,.10);
}

html[data-theme="light"] .btn-primary{
  background:linear-gradient(135deg,#f5c696 0%,#e8a55c 52%,#d58034 100%);
  color:#21150d;
  box-shadow:0 18px 34px rgba(216,134,61,.24);
}

html[data-theme="light"] .btn-secondary{
  background:#fffdf9;
  border-color:rgba(104,82,62,.22);
  color:#2b2119;
}

html[data-theme="light"] .btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:0 18px 40px rgba(216,134,61,.30);
}

html[data-theme="light"] .btn-secondary:hover{
  background:#fff2e3;
  border-color:rgba(213,128,52,.60);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 28px;
  }
  .hero-inner {
    padding: 22px 16px 18px;
  }
  .hero-shell {
    border-radius: 24px;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.2rem);
  }
  .lead {
    font-size: 0.94rem;
  }
  .icon-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .card, .panel {
    border-radius: 20px;
    padding: 16px 14px 14px;
  }
  .btn {
    width: 100%;
  }
}