:root {
  --bg: #fffaf3;
  --card: rgba(255,255,255,.86);
  --text: #132234;
  --muted: #5d6b7d;
  --accent: #ff8a00;
  --accent-soft: #fff0d9;
  --border: rgba(19,34,52,.12);
  --shadow: 0 24px 70px rgba(29, 39, 54, .12);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(99,153,54,.14), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(255,138,0,.15), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.page { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 54px 0 28px; }
.hero { text-align: center; padding: 8px 16px 34px; }
.logo-wrap { display: inline-flex; padding: 10px; border-radius: 34px; background: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.logo { display: block; width: clamp(150px, 22vw, 245px); height: auto; border-radius: 26px; }
.eyebrow { margin: 30px 0 12px; color: var(--accent); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 14px; }
h1 { margin: 0; font-size: clamp(44px, 7vw, 82px); line-height: .95; letter-spacing: .04em; }
.divider { width: 64px; height: 3px; background: var(--accent); border-radius: 999px; margin: 30px auto; }
h2 { margin: 0 0 18px; font-size: clamp(26px, 4vw, 42px); line-height: 1.12; }
.lead, .sublead { max-width: 820px; margin: 0 auto; color: var(--muted); font-size: 19px; line-height: 1.65; }
.sublead { margin-top: 10px; font-size: 17px; }
.features { margin-top: 30px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--card); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; backdrop-filter: blur(10px); }
.feature { padding: 34px 28px; text-align: center; border-right: 1px solid var(--border); }
.feature:last-child { border-right: 0; }
.icon { width: 54px; height: 54px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 18px; background: var(--accent-soft); color: var(--accent); font-size: 28px; }
.feature h3 { margin: 0 0 12px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.55; }
.contact { margin-top: 32px; display: flex; gap: 20px; align-items: center; justify-content: space-between; padding: 26px 32px; border-radius: 20px; background: linear-gradient(90deg, rgba(255,240,217,.95), rgba(255,255,255,.9)); border: 1px solid var(--border); }
.contact h3 { margin: 0 0 6px; }
.contact p { margin: 0; color: var(--muted); }
.contact a { color: var(--accent); font-weight: 800; font-size: 20px; text-decoration: none; }
.footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 22px 0 34px; color: var(--muted); display: flex; justify-content: space-between; border-top: 1px solid var(--border); }
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } .feature:nth-child(2) { border-right: 0; } .feature:nth-child(-n+2) { border-bottom: 1px solid var(--border); } .contact { flex-direction: column; text-align: center; } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } .feature { border-right: 0; border-bottom: 1px solid var(--border); } .feature:last-child { border-bottom: 0; } .footer { flex-direction: column; gap: 8px; text-align: center; } }

.email-box { text-align: right; }
.email-link { cursor: pointer; }
.email-noscript { color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .email-box { text-align: center; } }
