:root {
  --ink: #0d1424;
  --ink-soft: #172238;
  --paper: #f6f3eb;
  --white: #ffffff;
  --lime: #d9ff4d;
  --lime-deep: #c4f21f;
  --orange: #ff7452;
  --muted: #657083;
  --line: #dcd8cd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 11px 11px 4px 11px; background: var(--ink); color: var(--lime); font-size: 18px;
}
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.desktop-nav a { opacity: .68; transition: opacity .2s ease; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
  background: var(--ink); color: white; padding: 12px 19px; border-radius: 100px;
  font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--ink-soft); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  margin: 0 auto 30px;
  border-radius: 38px;
  overflow: hidden;
  background: var(--ink);
  color: white;
  position: relative;
  padding: 86px 74px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 62px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 460px; height: 460px; background: rgba(217,255,77,.09); top: -260px; right: 20%; }
.hero-glow-two { width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.07); bottom: -170px; right: -80px; }
.hero-copy, .hero-product { position: relative; z-index: 2; }
.eyebrow { color: #d6dce7; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 24px; height: 2px; background: var(--lime); display: inline-block; }
.hero h1 {
  margin: 23px 0 23px; font-size: clamp(48px, 6vw, 78px); line-height: 1.08;
  letter-spacing: -3.4px; max-width: 650px; font-weight: 800;
}
.hero h1 em { display: block; color: var(--lime); font-style: normal; }
.hero-lead { margin: 0; max-width: 610px; color: #bac3d1; font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.primary-button {
  min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 30px;
  background: var(--lime); color: var(--ink); border-radius: 14px; font-weight: 900; font-size: 14px;
  box-shadow: 0 8px 24px rgba(217,255,77,.14); transition: transform .2s ease, background .2s ease;
}
.primary-button:hover { transform: translateY(-2px); background: var(--lime-deep); }
.primary-button span { font-size: 20px; }
.text-button { color: white; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 4px; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 17px; margin: 36px 0 0; padding: 0; list-style: none; color: #929eae; font-size: 11px; }
.micro-trust li { display: flex; align-items: center; gap: 6px; }
.micro-trust i { font-style: normal; color: var(--lime); }

.hero-product { min-height: 520px; display: grid; place-items: center; }
.phone-shell {
  width: 292px; min-height: 530px; background: #fff; color: var(--ink); border-radius: 34px;
  border: 7px solid #2a3446; box-shadow: 0 38px 80px rgba(0,0,0,.37); overflow: hidden; transform: rotate(-2deg);
}
.phone-bar { height: 30px; display: flex; align-items: center; gap: 4px; padding: 0 13px; direction: ltr; }
.phone-bar span { width: 5px; height: 5px; border-radius: 50%; background: #d6d9df; }
.demo-cover { margin: 0 9px; min-height: 310px; border-radius: 23px; padding: 20px; color: white; background: linear-gradient(150deg,#8c3e2b 0%,#512016 100%); position: relative; overflow: hidden; }
.demo-cover::after { content: ""; position: absolute; width: 190px; height: 190px; border: 38px solid rgba(255,255,255,.05); border-radius: 50%; left: -80px; bottom: -95px; }
.demo-label { position: absolute; left: 13px; top: 13px; background: rgba(255,255,255,.12); padding: 5px 8px; border-radius: 20px; font-size: 8px; }
.demo-logo { width: 35px; height: 35px; display: grid; place-items: center; background: #f4d6a5; color: #4b2018; border-radius: 10px; font-weight: 900; }
.demo-cover p { font-size: 11px; margin: 12px 0 32px; opacity: .75; }
.demo-cover h2 { max-width: 180px; font-size: 30px; line-height: 1.3; margin: 0 0 25px; }
.demo-cover button { border: 0; border-radius: 10px; background: #f2ce94; color: #472117; padding: 11px 16px; font-size: 10px; font-weight: 900; }
.demo-list { padding: 13px 14px 18px; }
.demo-list > div { display: grid; grid-template-columns: 36px 1fr auto; gap: 9px; align-items: center; padding: 9px 0; border-bottom: 1px solid #eee; }
.demo-list > div:last-child { border: 0; }
.drink-icon { width: 34px; height: 34px; border-radius: 9px; background: #f4ead8; display: grid; place-items: center; font-size: 15px; }
.drink-icon.dark { background: #e0d8d3; color: #42271e; font-size: 9px; }
.demo-list p { margin: 0; display: flex; flex-direction: column; gap: 2px; }
.demo-list strong { font-size: 10px; }
.demo-list small { color: #8b8f99; font-size: 8px; }
.demo-list b { font-size: 10px; }
.floating-note {
  position: absolute; z-index: 5; min-width: 205px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px; background: rgba(35,47,67,.92); backdrop-filter: blur(10px); box-shadow: 0 16px 35px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 11px; color: #aeb7c5; font-size: 9px;
}
.floating-note strong { display: block; color: white; font-size: 11px; margin-bottom: 3px; }
.note-top { top: 70px; right: 0; }
.note-bottom { bottom: 56px; left: -14px; }
.note-icon { width: 31px; height: 31px; border-radius: 9px; display: grid; place-items: center; background: var(--lime); color: var(--ink); font-size: 17px; font-weight: 900; }
.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: #63e59d; box-shadow: 0 0 0 6px rgba(99,229,157,.12); }

.proof-strip {
  width: min(1100px, calc(100% - 60px)); margin: 0 auto; min-height: 96px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; color: #6f746f; font-size: 12px; font-weight: 700;
}
.proof-strip span { color: var(--orange); }

.comparison-section { width: min(1120px, calc(100% - 40px)); margin: 100px auto 120px; }
.section-intro { display: grid; grid-template-columns: auto 1fr .8fr; gap: 30px; align-items: end; margin-bottom: 55px; }
.section-number { width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 11px; color: var(--muted); }
.kicker { margin: 0 0 11px; font-size: 12px; font-weight: 900; color: #6f7784; }
.section-intro h2, .offer-heading h2, .request-copy h2, .faq-section h2 { margin: 0; font-size: clamp(34px,5vw,56px); line-height: 1.15; letter-spacing: -2px; }
.section-copy { margin: 0; color: var(--muted); font-size: 14px; line-height: 2; }
.before-after { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; }
.state-card { min-height: 510px; padding: 30px; border-radius: 26px; }
.before-card { background: #ebe7df; color: #7b7d7f; }
.after-card { background: white; box-shadow: 0 18px 55px rgba(22,31,48,.08); }
.state-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.state-heading span { padding: 7px 11px; border-radius: 30px; background: rgba(13,20,36,.07); font-size: 10px; font-weight: 900; }
.after-card .state-heading span { background: var(--lime); color: var(--ink); }
.state-heading b { font-size: 13px; }
.messy-feed, .clean-site { min-height: 294px; background: #d9d5cd; border-radius: 18px; padding: 22px; filter: grayscale(.7); }
.feed-header { display: flex; gap: 10px; align-items: center; }
.feed-header > i { width: 34px; height: 34px; border-radius: 50%; background: #b9b6af; }
.feed-header p { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.feed-header b, .feed-header small, .feed-lines i { height: 7px; border-radius: 10px; background: #b9b6af; display: block; }
.feed-header b { width: 36%; }.feed-header small { width: 56%; }
.feed-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin-top: 20px; }
.feed-grid i { aspect-ratio: 1; background: #c6c2ba; display: block; }
.feed-grid i:nth-child(2), .feed-grid i:nth-child(6) { background: #aaa8a3; }
.feed-lines { display: flex; flex-direction: column; gap: 7px; margin-top: 17px; }
.feed-lines i:nth-child(1) { width: 90%; }.feed-lines i:nth-child(2) { width: 70%; }.feed-lines i:nth-child(3) { width: 80%; }
.clean-site { background: var(--ink); color: white; filter: none; padding: 23px; position: relative; overflow: hidden; }
.clean-site::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: rgba(217,255,77,.1); left: -60px; bottom: -70px; }
.clean-nav { display: flex; justify-content: space-between; align-items: center; font-size: 10px; }
.clean-nav span { background: var(--lime); color: var(--ink); padding: 7px 9px; border-radius: 7px; font-weight: 900; }
.clean-site h3 { font-size: 28px; line-height: 1.35; margin: 48px 0 12px; }
.clean-site > p { width: 60%; height: 7px; background: #3f4a5c; border-radius: 10px; }
.clean-site button { margin-top: 20px; border: 0; border-radius: 8px; padding: 10px 14px; background: var(--lime); color: var(--ink); font-size: 9px; font-weight: 900; }
.clean-stats { position: absolute; left: 20px; bottom: 18px; display: flex; gap: 5px; }
.clean-stats i { width: 30px; height: 25px; border-radius: 6px; background: rgba(255,255,255,.08); }
.state-card ul { list-style: none; padding: 0; margin: 23px 0 0; display: grid; gap: 11px; font-size: 12px; }
.state-card li::before { content: "✓"; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-left: 8px; border-radius: 50%; background: rgba(13,20,36,.08); font-size: 9px; }
.after-card li::before { background: var(--lime); }
.change-arrow { width: 42px; height: 42px; margin: 0 auto; border-radius: 50%; background: var(--orange); color: white; display: grid; place-items: center; font-size: 19px; }

.process-section { background: var(--ink); color: white; padding: 110px max(30px, calc((100vw - 1120px) / 2)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.section-number.light { border-color: #394357; color: #a6b0bf; margin-bottom: 45px; }
.kicker.light { color: var(--lime); }
.process-heading h2 { margin: 0; font-size: clamp(38px,5vw,58px); line-height: 1.25; letter-spacing: -2px; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 27px 0; border-bottom: 1px solid #313b4d; }
.process-list li:first-child { padding-top: 0; }
.process-list > li > span { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--lime); color: var(--ink); font-weight: 900; }
.process-list h3 { margin: 1px 0 8px; font-size: 17px; }
.process-list p { margin: 0; color: #9da8b8; line-height: 1.85; font-size: 12px; }

.offer-section { width: min(1120px, calc(100% - 40px)); margin: 120px auto; }
.offer-heading { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 30px; margin-bottom: 52px; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 25px; overflow: hidden; background: white; }
.feature-grid article { min-height: 255px; padding: 29px 25px; border-left: 1px solid var(--line); }
.feature-grid article:last-child { border-left: 0; }
.feature-symbol { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 11px; background: var(--paper); color: #848c98; font-size: 9px; font-weight: 900; }
.feature-grid h3 { margin: 56px 0 12px; font-size: 16px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }
.price-panel { margin-top: 25px; padding: 38px 42px; border-radius: 25px; background: var(--lime); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.price-badge { display: inline-block; background: var(--ink); color: white; border-radius: 30px; padding: 7px 11px; font-size: 9px; font-weight: 900; }
.price-copy h3 { font-size: 30px; margin: 18px 0 10px; letter-spacing: -1px; }
.price-copy p { margin: 0; max-width: 500px; color: #465029; font-size: 12px; line-height: 1.8; }
.price-lines { border-right: 1px solid rgba(13,20,36,.18); padding-right: 42px; }
.price-lines > div { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(13,20,36,.14); }
.price-lines > div > span { font-size: 12px; font-weight: 800; }
.price-lines strong { font-size: 30px; }
.price-lines strong small { font-size: 10px; }
.price-lines > p { margin: 11px 0 0; font-size: 9px; color: #53602c; }

.request-section { background: var(--ink); color: white; padding: 110px max(30px, calc((100vw - 1120px) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.request-copy { position: sticky; top: 35px; }
.request-copy .section-number { margin-bottom: 48px; }
.request-copy > p:not(.kicker) { max-width: 420px; color: #a3adbb; font-size: 13px; line-height: 2; margin: 25px 0 35px; }
.request-promise { width: max-content; display: flex; align-items: center; gap: 16px; padding-top: 25px; border-top: 1px solid #303a4c; }
.request-promise > span { color: var(--lime); font-size: 48px; line-height: 1; font-weight: 900; }
.request-promise p { margin: 0; display: flex; flex-direction: column; gap: 5px; }
.request-promise strong { font-size: 12px; }.request-promise small { color: #8f9aaa; font-size: 9px; }
.request-form { background: white; color: var(--ink); padding: 38px; border-radius: 25px; display: grid; gap: 19px; box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.request-form label { display: grid; gap: 8px; }
.request-form label > span { font-size: 10px; font-weight: 900; color: #5d6674; }
.request-form input, .request-form select, .request-form textarea { width: 100%; border: 1px solid #dfe2e6; background: #f8f8f6; color: var(--ink); border-radius: 11px; padding: 13px 14px; outline: none; font-size: 12px; transition: border-color .2s ease, box-shadow .2s ease; }
.request-form input, .request-form select { min-height: 47px; }
.request-form textarea { resize: vertical; line-height: 1.7; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: #92ad24; box-shadow: 0 0 0 3px rgba(217,255,77,.32); }
.request-form input::placeholder, .request-form textarea::placeholder { color: #a2a8b0; }
.submit-button { border: 0; min-height: 56px; border-radius: 13px; background: var(--lime); color: var(--ink); padding: 0 20px; font-weight: 900; font-size: 13px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.submit-button:hover { background: var(--lime-deep); transform: translateY(-1px); }
.submit-button span { font-size: 20px; }
.form-note { margin: -8px 0 0; text-align: center; color: #8b929e; font-size: 9px; }
.prepared-request { margin-top: 5px; padding: 20px; border: 1px solid #d6dfad; background: #f7fbe8; border-radius: 14px; }
.prepared-request > strong { font-size: 15px; }.prepared-request > p { color: #667044; font-size: 10px; line-height: 1.7; }
.prepared-request textarea { background: white; font-size: 10px; }
.prepared-request button { width: 100%; margin-top: 10px; min-height: 42px; border: 0; border-radius: 10px; background: var(--ink); color: white; cursor: pointer; font-size: 11px; font-weight: 900; }

.faq-section { width: min(1120px, calc(100% - 40px)); margin: 120px auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 15px; font-size: 14px; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 20px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -8px 0 24px; color: var(--muted); font-size: 12px; line-height: 1.9; max-width: 650px; }

footer { min-height: 150px; padding: 35px max(25px, calc((100vw - 1120px) / 2)); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; color: #7c8490; font-size: 10px; }
.footer-brand { color: var(--ink); font-size: 15px; }
footer > p { margin: 0; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding: 68px 38px; gap: 55px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .micro-trust { justify-content: center; }
  .hero h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-product { min-height: 560px; }
  .section-intro { grid-template-columns: auto 1fr; }
  .section-copy { grid-column: 2; }
  .before-after { grid-template-columns: 1fr; gap: 18px; }
  .change-arrow { transform: rotate(-90deg); }
  .process-section { grid-template-columns: 1fr; gap: 60px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid article:nth-child(2) { border-left: 0; }
  .feature-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .price-panel { grid-template-columns: 1fr; gap: 30px; }
  .price-lines { border-right: 0; border-top: 1px solid rgba(13,20,36,.18); padding: 20px 0 0; }
  .request-section { grid-template-columns: 1fr; gap: 60px; }
  .request-copy { position: static; }
  .faq-section { grid-template-columns: 1fr; gap: 45px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 600px) {
  .site-header { width: calc(100% - 28px); height: 70px; }
  .brand { font-size: 15px; }.brand-mark { width: 31px; height: 31px; }
  .header-cta { padding: 10px 14px; font-size: 11px; }
  .hero { width: calc(100% - 20px); margin-bottom: 10px; min-height: auto; border-radius: 25px; padding: 55px 20px 45px; }
  .hero h1 { font-size: 45px; letter-spacing: -2.3px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .primary-button { width: 100%; max-width: 310px; }
  .micro-trust { font-size: 9px; gap: 12px; }
  .hero-product { min-height: 500px; }
  .phone-shell { width: 250px; min-height: 485px; }
  .demo-cover { min-height: 285px; }.demo-cover h2 { font-size: 26px; }
  .floating-note { min-width: 180px; }.note-top { right: -4px; }.note-bottom { left: -3px; }
  .proof-strip { width: calc(100% - 40px); overflow: hidden; justify-content: flex-start; white-space: nowrap; min-height: 78px; }
  .comparison-section { margin: 75px auto 90px; }
  .section-intro { gap: 16px; align-items: start; margin-bottom: 36px; }
  .section-intro h2, .offer-heading h2, .request-copy h2, .faq-section h2 { font-size: 36px; }
  .section-copy { grid-column: 1 / -1; padding-right: 59px; }
  .state-card { min-height: 480px; padding: 22px; }
  .process-section { padding-top: 80px; padding-bottom: 80px; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 16px; }
  .process-list > li > span { width: 42px; height: 42px; }
  .offer-section { margin: 85px auto; }
  .offer-heading { gap: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 210px; border-left: 0; border-bottom: 1px solid var(--line); }
  .feature-grid article:last-child { border-bottom: 0; }
  .feature-grid h3 { margin-top: 35px; }
  .price-panel { padding: 28px 23px; }
  .price-copy h3 { font-size: 25px; }
  .price-lines strong { font-size: 24px; }
  .request-section { padding-top: 80px; padding-bottom: 80px; }
  .request-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-section { margin: 85px auto; }
  footer { grid-template-columns: 1fr; gap: 18px; text-align: center; justify-items: center; padding-top: 45px; padding-bottom: 45px; }
  footer > p { grid-column: auto; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
