:root {
  --bg: #0f1115;
  --bg-soft: #171b21;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --text: #12151b;
  --text-soft: #5b6472;
  --line: #e5e7eb;
  --brand: #f4c400;
  --brand-strong: #d9ad00;
  --brand-contrast: #111111;
  --success: #14210f;
  --shadow: 0 24px 60px rgba(9, 14, 24, 0.12);
  --shadow-soft: 0 16px 40px rgba(9, 14, 24, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

img,
iframe {
  max-width: 100%;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(244, 196, 0, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: var(--surface);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

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

.narrow {
  width: min(calc(100% - 32px), 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(15, 17, 21, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #ffd95e);
  color: var(--brand-contrast);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.header-nav a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 196, 0, 0.18), transparent 26%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #0f1115 0%, #12161d 100%);
  color: #ffffff;
  padding: 88px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(244, 196, 0, 0.08);
  filter: blur(16px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.plan-label,
.segment-tag,
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow,
.hero-card-badge {
  background: rgba(244, 196, 0, 0.14);
  color: #ffe27a;
  border: 1px solid rgba(244, 196, 0, 0.2);
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-lead {
  margin: 0;
  max-width: 60ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ffd84f);
  color: var(--brand-contrast);
  box-shadow: 0 16px 30px rgba(244, 196, 0, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 34px rgba(244, 196, 0, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(18, 21, 27, 0.14);
}

.btn-outline:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.96rem;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 16px 0 14px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li,
.plan-features li,
.sync-pro-card li,
.benefit-list li {
  position: relative;
  padding-left: 28px;
}

.hero-card li + li,
.plan-features li + li,
.sync-pro-card li + li,
.benefit-list li + li {
  margin-top: 12px;
}

.hero-card li::before,
.plan-features li::before,
.sync-pro-card li::before,
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(244, 196, 0, 0.15);
  color: #8a6800;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: #7a5f00;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.video-section,
.plans,
.faq {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
}

.section-kicker,
.plan-label,
.segment-tag {
  background: rgba(244, 196, 0, 0.12);
  color: #7a5f00;
}

.section-heading h2,
.sync-pro h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p,
.sync-pro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d1015;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.segment-card,
.plan-card,
.crm-box-inner,
.sync-pro-card {
  background: var(--surface);
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.segment-card {
  padding: 28px;
}

.segment-card h3 {
  margin: 16px 0 12px;
  font-size: 1.38rem;
  line-height: 1.2;
}

.segment-card p {
  margin: 0;
  color: var(--text-soft);
}

.segment-card p + p {
  margin-top: 14px;
}

.segment-problem strong,
.segment-card strong,
.plan-summary strong,
.lead-bonus strong {
  color: var(--text);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.benefit-list {
  margin: 0;
  padding: 28px;
  list-style: none;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.plan-card {
  position: relative;
  padding: 28px;
}

.plan-card-featured {
  border-color: rgba(244, 196, 0, 0.38);
  box-shadow: 0 26px 50px rgba(244, 196, 0, 0.16);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--brand-contrast);
  font-weight: 800;
  font-size: 0.78rem;
}

.plan-head h3 {
  margin: 14px 0 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.plan-price,
.sync-price {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plan-price span,
.sync-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
}

.plan-note {
  margin-top: 8px;
  color: #7a5f00;
  font-weight: 700;
}

.plan-summary {
  margin: 18px 0 18px;
  color: var(--text-soft);
}

.plan-features {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.sync-pro-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: start;
  padding: 32px;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(244, 196, 0, 0.12), rgba(255, 255, 255, 0) 45%),
    #11151c;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.sync-pro-box p {
  color: rgba(255, 255, 255, 0.78);
}

.sync-pro-box .section-kicker {
  background: rgba(244, 196, 0, 0.16);
  color: #ffe27a;
}

.sync-pro-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.sync-pro-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: start;
}

.lead-bonus {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(244, 196, 0, 0.12), rgba(244, 196, 0, 0.05));
  border: 1px solid rgba(244, 196, 0, 0.2);
}

.lead-bonus h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.crm-box-inner {
  padding: 28px;
  position: sticky;
  top: 100px;
}

.crm-box-inner h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.crm-box-inner p {
  margin: 0;
  color: var(--text-soft);
}

.crm-placeholder {
  margin-top: 22px;
  min-height: 290px;
  border-radius: var(--radius-sm);
  border: 2px dashed rgba(18, 21, 27, 0.16);
  background:
    linear-gradient(180deg, rgba(246, 247, 249, 0.9), rgba(255, 255, 255, 1));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.crm-placeholder p {
  font-weight: 700;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid rgba(18, 21, 27, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: #7a5f00;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.site-footer {
  background: var(--bg);
  color: #ffffff;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-inner nav a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner nav a:hover {
  color: var(--brand);
}

@media (max-width: 1080px) {
  .hero-grid,
  .benefits-layout,
  .lead-grid,
  .sync-pro-box,
  .segment-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card-featured {
    transform: none;
  }

  .crm-box-inner {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-card,
  .segment-card,
  .plan-card,
  .crm-box-inner,
  .sync-pro-card,
  .benefit-list {
    padding: 24px;
  }

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

  .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-text small {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-points {
    flex-direction: column;
  }

  .popular-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .plan-price,
  .sync-price {
    font-size: 2rem;
  }
}
.brand{display:flex;align-items:center;text-decoration:none}
.brand-logo{height:64px;width:auto;display:block}
@media (max-width:640px){.brand-logo{height:52px}}
