
:root {
  --ivory: #fbf8f2;
  --cream: #fffdf8;
  --blush: #d9979a;
  --blush-dark: #ad6c70;
  --sage: #8b9a82;
  --sage-dark: #3f4a3c;
  --olive: #5c674f;
  --charcoal: #2d2d2d;
  --muted: #6f6a63;
  --line: #eadfd6;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(63, 74, 60, 0.12);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--ivory), #fff);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 242, 0.86);
  border-bottom: 1px solid rgba(234, 223, 214, 0.75);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 750; letter-spacing: -0.02em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.95rem; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--sage-dark); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 13px 19px;
  border-radius: 999px; text-decoration: none; font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--sage-dark); color: #fff; box-shadow: 0 12px 25px rgba(63, 74, 60, 0.22); }
.button:disabled { cursor: not-allowed; opacity: 0.62; transform: none; box-shadow: none; }
.button.secondary { background: #fff; color: var(--sage-dark); border-color: var(--line); }
.hero { padding: 82px 0 56px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; }
.kicker { color: var(--blush-dark); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 800; margin-bottom: 16px; }
h1, h2, h3 { margin: 0; color: var(--sage-dark); line-height: 1.08; letter-spacing: -0.045em; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.1rem, 7vw, 6.7rem); font-weight: 500; }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 500; }
h3 { font-size: 1.12rem; letter-spacing: -0.02em; }
.lede { color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.35rem); margin: 24px 0 30px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.small-note { color: var(--muted); font-size: 0.95rem; margin-top: 18px; }
.hero-card {
  position: relative; background: rgba(255,255,255,0.78); border: 1px solid var(--line);
  border-radius: 36px; padding: 26px; box-shadow: var(--shadow);
}
.mockup {
  border-radius: 30px; background: linear-gradient(145deg, #fff, #faf3ee); border: 1px solid #efe4dc; padding: 22px;
}
.app-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.app-title { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--sage-dark); }
.app-title img { width: 36px; height: 36px; }
.status-pill { font-size: 0.78rem; background: #edf1e9; color: var(--olive); padding: 6px 10px; border-radius: 999px; font-weight: 700; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 18px; margin-bottom: 14px; }
.quote-card .row { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; color: var(--muted); font-size: 0.95rem; }
.quote-card strong { color: var(--charcoal); }
.total { display: flex; justify-content: space-between; padding: 18px; border-radius: 22px; background: var(--sage-dark); color: white; font-weight: 800; margin-top: 16px; }
.section { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 16px 0 0; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 8px 28px rgba(63, 74, 60, 0.06); }
.icon-dot { width: 42px; height: 42px; border-radius: 14px; background: #f6e5e4; color: var(--blush-dark); display: grid; place-items: center; margin-bottom: 18px; font-weight: 900; }
.feature p { color: var(--muted); margin: 10px 0 0; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: 32px; padding: 28px; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; color: var(--muted); }
.check-list li::before { content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: #edf1e9; color: var(--olive); display: grid; place-items: center; font-weight: 900; font-size: 0.78rem; }
.privacy-band { background: var(--sage-dark); color: white; border-radius: 38px; padding: 44px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.privacy-band h2 { color: white; }
.privacy-band p { color: rgba(255,255,255,0.82); max-width: 740px; }
.footer { padding: 44px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer a { color: var(--muted); text-decoration: none; }
.page { padding: 70px 0; }
.page-card { background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: clamp(24px, 5vw, 52px); box-shadow: var(--shadow); max-width: 900px; }
.page-card h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 18px; }
.page-card h2 { font-size: 1.6rem; margin-top: 34px; margin-bottom: 10px; }
.page-card p, .page-card li { color: var(--muted); }
.page-card ul { padding-left: 22px; }
.notice { background: #fff7ef; border: 1px solid #f0dfcc; border-radius: 20px; padding: 18px; color: #705943; }
@media (max-width: 860px) {
  .hero-grid, .split, .privacy-band { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 54px; }
  .privacy-band { padding: 30px; }
}

/* Forms */
.brand-logo {
  width: 210px;
  height: auto;
  border-radius: 0 !important;
}
.support-form {
  margin: 30px 0 36px;
  display: grid;
  gap: 18px;
}
.support-form label {
  display: grid;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 750;
}
.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
  width: fit-content;
}
.required {
  color: var(--sage-dark);
  font-weight: 850;
  line-height: 1;
}
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
}
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(139, 154, 130, 0.18);
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.spam-check {
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}
.form-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.form-error {
  min-height: 1.4em;
  margin: 0;
  color: var(--blush-dark) !important;
  font-weight: 750;
}
@media (max-width: 860px) {
  .brand-logo { width: 180px; }
  .form-grid.two,
  .form-grid.three { grid-template-columns: 1fr; }
}
.brand img.brand-logo {
  width: 210px;
  height: auto;
  border-radius: 0;
}
@media (max-width: 860px) {
  .brand img.brand-logo { width: 180px; }
}
