:root {
  --ink: #15232b;
  --ink-soft: #40515a;
  --muted: #6e7d83;
  --line: #dce5e2;
  --paper: #ffffff;
  --sand: #f5f4ef;
  --mint: #e9f7f1;
  --teal: #0b806d;
  --teal-dark: #075f52;
  --amber: #efaa55;
  --navy: #163447;
  --shadow: 0 22px 60px rgba(19, 44, 54, 0.12);
  --shadow-sm: 0 10px 30px rgba(19, 44, 54, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--sand); }
.section-mint { background: var(--mint); }
.section-dark { background: var(--navy); color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; color: var(--teal-dark); font-weight: 750; font-size: 13px;
  letter-spacing: .09em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 99px; }
.section-dark .eyebrow { color: #aee7d6; }
.display { margin: 0; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -0.055em; font-weight: 780; }
.h1 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -0.05em; font-weight: 770; }
.h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.038em; font-weight: 740; }
.h3 { margin: 0; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; }
.lead { font-size: 20px; color: var(--ink-soft); max-width: 680px; margin: 22px 0 0; }
.section-dark .lead { color: #ccdbdf; }
.small { color: var(--muted); font-size: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(220,229,226,.8); backdrop-filter: blur(16px);
}
.navbar { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.brand img { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--ink-soft); font-size: 15px; font-weight: 650; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.mobile-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 26px rgba(11,128,109,.2); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { box-shadow: var(--shadow-sm); }
.btn-ghost { color: var(--teal-dark); padding-inline: 0; min-height: auto; }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 14px; }

.hero { padding: 58px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.hero-copy .lead { max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { content: "✓"; color: var(--teal); font-weight: 900; }
.hero-visual { position: relative; }
.photo-shell { position: relative; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); background: #d8e2df; }
.photo-shell.hero-photo { aspect-ratio: 4 / 5; }
.photo-shell.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-card {
  position: absolute; left: -28px; bottom: 28px; width: 270px; background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.75); border-radius: 20px; padding: 18px; box-shadow: var(--shadow);
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); }
.hero-card strong { display: block; font-size: 32px; letter-spacing: -0.04em; margin: 8px 0 2px; }
.progress { height: 8px; background: #eaf0ee; border-radius: 99px; overflow: hidden; margin-top: 14px; }
.progress > span { display: block; height: 100%; width: 72%; background: var(--teal); border-radius: inherit; }
.float-chip {
  position: absolute; top: 30px; right: -18px; background: var(--navy); color: white;
  padding: 12px 15px; border-radius: 14px; font-size: 13px; font-weight: 700; box-shadow: var(--shadow-sm);
}

.audience-strip { border-block: 1px solid var(--line); background: #fbfcfb; }
.audience { display: grid; grid-template-columns: 1.2fr repeat(4,1fr); gap: 12px; align-items: center; padding: 22px 0; }
.audience strong { font-size: 14px; }
.audience span { color: var(--muted); font-size: 13px; text-align: center; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.section-head .lead { margin-top: 0; font-size: 17px; max-width: 500px; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card {
  padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #cbdad5; }
.icon-box { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--mint); margin-bottom: 24px; }
.icon-box img { width: 25px; height: 25px; }
.feature-card p { color: var(--muted); margin: 12px 0 0; font-size: 15px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.media-card { border-radius: var(--radius-lg); overflow: hidden; min-height: 540px; box-shadow: var(--shadow); background: #d7e1df; }
.media-card img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.check-list li::before { content: "✓"; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--teal); font-weight: 900; }
.check-list strong { display: block; margin-bottom: 2px; }
.check-list span { color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step { padding: 28px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line); }
.step-no { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: #fff; font-weight: 800; margin-bottom: 40px; }
.step p { color: var(--muted); margin-bottom: 0; }

.mini-dashboard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.dash-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.dash-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.metric { background: var(--sand); padding: 16px; border-radius: 14px; }
.metric span { color: var(--muted); font-size: 12px; }
.metric strong { display: block; font-size: 22px; margin-top: 4px; }
.service-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid var(--line); gap: 16px; }
.service-row:last-child { border-bottom: 0; }
.service-row small { color: var(--muted); }
.badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: var(--mint); color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.badge.amber { background: #fff2df; color: #8b5617; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.price-card { position: relative; padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--line); background: #fff; }
.price-card.featured { border: 2px solid var(--teal); box-shadow: var(--shadow-sm); }
.price-card .popular { position: absolute; top: 18px; right: 18px; }
.price { font-size: 44px; letter-spacing: -0.045em; font-weight: 800; margin: 22px 0 2px; }
.price small { font-size: 15px; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.price-card ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 11px; color: var(--ink-soft); font-size: 14px; }
.price-card li::before { content: "✓"; color: var(--teal); font-weight: 900; margin-right: 10px; }

.quote-band { border-radius: 30px; padding: 44px; background: var(--navy); color: #fff; display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.quote-band p { font-size: 27px; line-height: 1.35; letter-spacing: -0.025em; margin: 0; }
.quote-band .small { color: #c9d8dc; }

.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--ink); text-align: left; font-weight: 750; }
.faq-q span:last-child { font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

.cta-panel { background: var(--mint); border: 1px solid #cfeade; border-radius: 32px; padding: 54px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.cta-panel .lead { margin-top: 12px; font-size: 17px; }

.page-hero { padding: 78px 0 64px; background: linear-gradient(180deg,#f7faf8 0%,#fff 100%); }
.page-hero .lead { max-width: 760px; }
.page-hero.center .lead { margin-inline: auto; }
.photo-banner { min-height: 480px; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.photo-banner img { width: 100%; height: 480px; object-fit: cover; }

.feature-rows { display: grid; gap: 90px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.feature-row:nth-child(even) .feature-row-media { order: 2; }
.feature-row-media { border-radius: 26px; overflow: hidden; background: var(--sand); min-height: 400px; }
.feature-row-media img { width: 100%; height: 400px; object-fit: cover; }
.feature-row .icon-box { margin-bottom: 18px; }

.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.compare-table th, .compare-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table th { background: #f8faf9; font-size: 14px; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--teal); font-weight: 900; }

.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.value-card strong { display: block; font-size: 21px; margin-bottom: 9px; }
.value-card p { color: var(--muted); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.team-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; }
.avatar { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: var(--mint); color: var(--teal-dark); font-weight: 850; letter-spacing: .04em; margin-bottom: 20px; }
.team-card p { color: var(--muted); margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: start; }
.contact-card { background: var(--sand); border-radius: 22px; padding: 30px; }
.contact-card + .contact-card { margin-top: 16px; }
.contact-card address { font-style: normal; color: var(--ink-soft); }
.form-card { border: 1px solid var(--line); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #cfdad7; background: #fff; border-radius: 12px; padding: 13px 14px; outline: none; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,128,109,.1); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 12px; margin-top: 12px; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--teal-dark); min-height: 22px; }

.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.tool-card { border: 1px solid var(--line); border-radius: 22px; padding: 28px; background: #fff; }
.tool-card h2, .tool-card h3 { margin-top: 0; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-results { background: var(--navy); color: #fff; border-radius: 18px; padding: 24px; margin-top: 22px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.calc-results span { color: #b8ccd2; font-size: 12px; }
.calc-results strong { display: block; font-size: 24px; margin-top: 4px; }
.planner-form { display: grid; grid-template-columns: 1.3fr .9fr .8fr auto; gap: 10px; align-items: end; }
.planner-list { display: grid; gap: 10px; margin-top: 20px; }
.planner-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: var(--sand); }
.planner-item small { color: var(--muted); }
.icon-btn { border: 0; background: transparent; color: #8a3f3f; font-weight: 800; padding: 8px; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 44px; font-size: 26px; }
.legal p, .legal li { color: var(--ink-soft); }

.site-footer { background: #f7f8f6; border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 44px; }
.footer-brand p { color: var(--muted); max-width: 330px; font-size: 14px; }
.footer-col strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col { color: var(--muted); font-size: 14px; }
.footer-col a { display: block; margin: 9px 0; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }

.sale-overlay { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(16,31,38,.62); backdrop-filter: blur(5px); }
.sale-overlay.show { display: flex; animation: fadeIn .2s ease; }
.sale-modal { width: min(100%, 560px); background: #fff; border-radius: 24px; padding: 34px; box-shadow: 0 30px 100px rgba(0,0,0,.28); position: relative; animation: rise .25s ease; }
.sale-modal h2 { margin: 0 38px 12px 0; font-size: 30px; line-height: 1.1; letter-spacing: -0.035em; }
.sale-modal p { color: var(--ink-soft); margin: 0 0 24px; }
.sale-close { position: absolute; right: 16px; top: 14px; border: 0; background: #f0f3f2; width: 38px; height: 38px; border-radius: 50%; font-size: 24px; line-height: 1; color: var(--ink); }
.sale-modal .btn { width: 100%; min-height: 52px; }
@keyframes fadeIn { from {opacity:0} to {opacity:1} }
@keyframes rise { from {opacity:0;transform:translateY(12px) scale(.98)} to {opacity:1;transform:none} }

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; left: 20px; right: 20px; top: 68px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 18px; flex-direction: column; align-items: stretch; gap: 8px; }
  .nav-links.open a { padding: 10px 6px; }
  .hero-grid, .split, .feature-row, .contact-grid, .tool-grid, .quote-band { grid-template-columns: 1fr; }
  .hero-visual { max-width: 700px; margin-inline: auto; }
  .photo-shell.hero-photo { aspect-ratio: 16 / 11; }
  .hero-card { left: 20px; }
  .float-chip { right: 20px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .audience { grid-template-columns: 1fr 1fr; }
  .audience strong { grid-column: 1 / -1; text-align: center; }
  .pricing-grid, .values, .team-grid { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-row-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 40px; }
  .display, .h1 { font-size: clamp(40px, 13vw, 58px); }
  .h2 { font-size: 34px; }
  .lead { font-size: 18px; }
  .nav-actions .btn-primary { display: none; }
  .feature-grid, .steps, .dash-cards, .calc-results, .calc-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .section-head { align-items: start; flex-direction: column; }
  .hero-card { position: relative; left: auto; bottom: auto; width: calc(100% - 24px); margin: -34px 12px 0; }
  .float-chip { top: 16px; right: 14px; }
  .media-card, .media-card img { min-height: 380px; }
  .photo-banner, .photo-banner img { min-height: 340px; height: 340px; }
  .cta-panel { padding: 34px 24px; flex-direction: column; align-items: flex-start; }
  .quote-band { padding: 30px 24px; }
  .quote-band p { font-size: 23px; }
  .planner-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .sale-modal { padding: 28px 22px 22px; border-radius: 20px; }
  .sale-modal h2 { font-size: 26px; }
}
