:root {
  --accent: #F0F564;
  --taupe: #756968;
  --olive: #9EA077;
  --blue: #64B4F5;
  --coral: #F56964;
  --slate: #687075;
  --ink: #171717;
  --muted: #5b6068;
  --line: rgba(23,23,23,.13);
  --surface: #f7f7f2;
  --surface-2: #efefe8;
  --white: #fff;
  --shadow: 0 24px 70px rgba(0,0,0,.08);
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: #fff; line-height: 1.55; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: #fff; color: #000; padding: .75rem 1rem; border: 2px solid #000; border-radius: 999px; }
.skip-link:focus { top: 1rem; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.topbar { background: var(--ink); color: white; font-size: .94rem; }
.topbar .container { min-height: 42px; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.topbar strong { color: var(--accent); }
.topbar a { font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.55); }
.site-header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .85rem; min-width: 245px; }
.brand-logo { width: 62px; height: 62px; object-fit: contain; }
.brand-kicker { display: block; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.brand-name { display: block; font-size: 1.13rem; font-weight: 900; line-height: 1.15; }
.nav { display: flex; align-items: center; justify-content: center; gap: .15rem; }
.nav a { padding: .66rem .82rem; color: #353535; border-radius: 999px; font-weight: 760; font-size: .96rem; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--surface-2); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.btn, .btn-secondary, .btn-dark, .header-cta { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 44px; padding: .78rem 1.08rem; border-radius: 999px; border: 1px solid transparent; font-weight: 850; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover, .btn-secondary:hover, .btn-dark:hover, .header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.btn, .header-cta { background: var(--accent); color: #111; }
.btn-secondary { background: white; border-color: var(--line); color: #222; }
.btn-dark { background: var(--ink); color: white; }
.mobile-toggle { display: none; background: white; border: 1px solid var(--line); border-radius: 14px; padding: .65rem .8rem; font-weight: 850; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 14% 10%, rgba(240,245,100,.46), transparent 30%), radial-gradient(circle at 90% 4%, rgba(100,180,245,.22), transparent 28%), linear-gradient(180deg, #f8f8ef 0%, #fff 82%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 2.5rem; padding: 5rem 0 4.2rem; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 850; color: var(--slate); letter-spacing: .13em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { text-wrap: balance; }
.hero h1, .page-hero h1 { margin: 1rem 0 1.05rem; font-size: clamp(2.45rem, 6vw, 5rem); line-height: .98; letter-spacing: -.06em; }
.hero .lead, .page-hero .lead { color: #454950; font-size: clamp(1.08rem, 2vw, 1.32rem); max-width: 70ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-visual { border-radius: 38px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.08); background: var(--ink); }
.hero-visual img { width: 100%; }
.fact-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .75rem; margin-top: 1.7rem; }
.fact { background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 18px; padding: .95rem; font-weight: 850; }
.fact span { display: block; color: var(--muted); font-weight: 650; font-size: .9rem; margin-top: .2rem; }
.section { padding: 4.6rem 0; }
.section-soft { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 2rem; max-width: 790px; }
.section-head h2 { margin: .55rem 0 .85rem; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; letter-spacing: -.04em; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.55rem; box-shadow: 0 10px 38px rgba(0,0,0,.045); }
.card h3 { margin: .2rem 0 .65rem; font-size: 1.28rem; }
.card p { color: var(--muted); margin: 0; }
.card-icon { width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: var(--accent); font-weight: 900; margin-bottom: 1.05rem; }
.page-hero { background: linear-gradient(180deg, var(--surface) 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.page-hero .container { padding: 4rem 0 3.2rem; }
.breadcrumb { color: var(--muted); font-weight: 700; font-size: .92rem; }
.breadcrumb a { border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 2rem; align-items: start; }
.callout { background: var(--ink); color: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.callout p { color: rgba(255,255,255,.78); }
.notice { border-left: 5px solid var(--accent); background: #fffef0; padding: 1rem 1.2rem; border-radius: 12px; color: #414141; }
.feature-list { display: grid; gap: .8rem; }
.feature-item { display: flex; gap: .82rem; align-items: flex-start; padding: 1rem; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.feature-item strong { display: block; margin-bottom: .16rem; }
.feature-item p { margin: 0; color: var(--muted); }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); margin-top: .45rem; flex: 0 0 auto; }
.badge { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: .25rem .6rem; font-size: .78rem; font-weight: 850; background: white; color: var(--slate); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--surface); font-size: .86rem; text-transform: uppercase; letter-spacing: .08em; }
tr:last-child td { border-bottom: 0; }
.form-panel { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .94rem; }
input, textarea, select { width: 100%; border: 1px solid rgba(0,0,0,.18); border-radius: 14px; padding: .9rem 1rem; background: white; color: var(--ink); }
textarea { min-height: 140px; resize: vertical; }
.form-help { color: var(--muted); font-size: .92rem; }
.form-status { margin-top: 1rem; padding: .95rem 1rem; border-radius: 14px; display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { background: #effbe8; border: 1px solid #c8edb8; }
.form-status.error { background: #fff0f0; border: 1px solid #ffc7c7; }
.visual-card { min-height: 320px; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; box-shadow: 0 14px 50px rgba(0,0,0,.055); }
.visual-card img { width: 100%; height: 100%; object-fit: cover; }
.logo-panel { display: grid; place-items: center; min-height: 300px; background: #111; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.logo-panel img { width: min(310px, 86%); }
.site-footer { background: #111; color: white; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; padding: 3.4rem 0 2.4rem; }
.footer-logo { width: 82px; margin-bottom: 1rem; }
.footer-title { font-size: 1.35rem; font-weight: 900; margin-bottom: .5rem; }
.footer-text, .footer a, .site-footer p { color: rgba(255,255,255,.73); }
.footer h3 { font-size: .88rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 1rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 0; color: rgba(255,255,255,.58); font-size: .92rem; }
.footer a:hover { color: white; }
@media (max-width: 980px) {
  .nav, .header-actions { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-inner { min-height: 78px; }
  .nav.is-open { display: grid; position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); background: white; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 22px; padding: .8rem; }
  .nav.is-open a { display: block; border-radius: 14px; }
  .hero-grid, .split, .grid-2 { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 3.2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .fact-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar .container { flex-direction: column; align-items: flex-start; padding-block: .55rem; }
  .grid-3, .form-grid, .fact-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .brand-name { font-size: 1rem; }
  .brand-logo { width: 54px; height: 54px; }
  .hero h1, .page-hero h1 { font-size: 2.45rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn, .btn-secondary, .btn-dark { width: 100%; }
  .section { padding: 3.1rem 0; }
}
