:root{
  --bg:#f7f1e6;
  --bg-2:#fffaf1;
  --text:#1f2937;
  --muted:#6b7280;
  --line:rgba(31,41,55,.12);
  --accent:#d97706; /* orange */
  --accent-2:#f59e0b;
  --teal:#2aa7a5;
  --shadow: 0 18px 40px rgba(17,24,39,.10);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(217,119,6,.12), transparent 60%),
    radial-gradient(900px 450px at 90% 0%, rgba(42,167,165,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 55%, var(--bg));
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 14px; background:#fff; border-radius:12px; box-shadow:var(--shadow); z-index:9999}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background: rgba(247,241,230,.72);
  border-bottom:1px solid var(--line);
}
.navbar{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:12px; align-items:center}
.brand .mark{
  width:54px; height:34px;
  display:grid; place-items:center;
  border-radius:10px;
  background:rgba(31,41,55,.08);
  border:1px solid rgba(255,255,255,.55);
  box-shadow: 0 10px 20px rgba(17,24,39,.06) inset;
  overflow:hidden;
}
.brand .mark img{width:72px; height:auto; opacity:.95}
.brand .title{display:flex; flex-direction:column}
.brand .title b{font-size:14px; letter-spacing:.08em}
.brand .title span{font-size:12px; color:var(--muted); margin-top:1px}

.nav-links{display:flex; gap:18px; align-items:center}
.nav-links a{
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
  color:rgba(31,41,55,.86);
}
.nav-links a:hover{background:rgba(217,119,6,.10)}
.nav-cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(217,119,6,.22);
  background: rgba(217,119,6,.10);
  color: rgba(31,41,55,.92);
  font-size:13px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px); background: rgba(217,119,6,.14); border-color: rgba(217,119,6,.35)}
.btn.primary{
  background: linear-gradient(135deg, rgba(217,119,6,.95), rgba(245,158,11,.92));
  border: none;
  color: #1a1307;
  box-shadow: 0 16px 30px rgba(217,119,6,.22);
}
.btn.primary:hover{transform:translateY(-2px)}
.lang{
  display:flex; gap:6px; padding:6px;
  border:1px solid rgba(31,41,55,.10);
  background:rgba(255,255,255,.55);
  border-radius:14px;
}
.lang button{
  border:0;
  background:transparent;
  padding:7px 10px;
  border-radius:10px;
  font-size:12px;
  cursor:pointer;
  color:rgba(31,41,55,.78);
}
.lang button.active{
  background:rgba(217,119,6,.14);
  color:rgba(31,41,55,.95);
}
.burger{display:none; border:0; background:transparent; padding:10px; border-radius:12px; cursor:pointer}
.burger:hover{background:rgba(31,41,55,.06)}
.burger span{display:block; width:20px; height:2px; background:rgba(31,41,55,.72); margin:4px 0; border-radius:2px}

@media (max-width: 920px){
  .nav-links{display:none}
  .burger{display:block}
}
.mobile-menu{
  display:none;
  padding: 0 0 14px 0;
}
.mobile-menu.open{display:block}
.mobile-menu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,41,55,.10);
  background:rgba(255,255,255,.55);
  margin-top:10px;
  font-size:14px;
}
.mobile-menu a:hover{background:rgba(217,119,6,.10)}
.mobile-actions{display:flex; gap:10px; align-items:center; margin-top:12px; flex-wrap:wrap}

.hero{
  padding: 38px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:stretch;
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
}
.card{
  background: rgba(255,255,255,.62);
  border:1px solid rgba(31,41,55,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-copy{padding:26px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(42,167,165,.12);
  border:1px solid rgba(42,167,165,.22);
  color:rgba(31,41,55,.85);
  font-size:12px;
}
h1{
  font-size:44px;
  line-height:1.08;
  margin:14px 0 12px;
  letter-spacing:-0.02em;
}
@media (max-width: 520px){
  h1{font-size:34px}
}
.lead{font-size:16px; color:rgba(31,41,55,.78); margin:0 0 16px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.stats{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:10px; margin-top:18px;
}
@media (max-width: 520px){.stats{grid-template-columns:1fr}}
.stat{
  padding:14px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(31,41,55,.10);
}
.stat b{display:block; font-size:18px}
.stat span{display:block; color:var(--muted); font-size:12px; margin-top:4px}

.hero-media{position:relative; min-height:420px}
.hero-media img{width:100%; height:100%; object-fit:cover; min-height:420px}
.hero-media .overlay{
  position:absolute; inset:auto 16px 16px 16px;
  padding:14px 14px;
  border-radius:16px;
  background: rgba(247,241,230,.84);
  border: 1px solid rgba(31,41,55,.10);
  box-shadow: 0 20px 40px rgba(17,24,39,.12);
}
.overlay b{display:block}
.overlay span{display:block; color:var(--muted); font-size:12px; margin-top:2px}

.section{padding: 30px 0}
.section h2{
  font-size:30px; margin:0 0 10px;
  letter-spacing:-0.01em;
}
.section p{color:rgba(31,41,55,.78); margin:0 0 14px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
@media (max-width: 980px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
}
.feature{padding:18px}
.icon{
  width:42px; height:42px;
  border-radius:14px;
  background: rgba(217,119,6,.12);
  border:1px solid rgba(217,119,6,.25);
  display:grid; place-items:center;
  margin-bottom:12px;
}
.icon svg{width:20px; height:20px}
.pill{
  display:inline-flex; align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(31,41,55,.10);
  background: rgba(255,255,255,.55);
  font-size:12px;
  color:rgba(31,41,55,.75);
}
.media-split{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; align-items:stretch
}
@media (max-width:980px){.media-split{grid-template-columns:1fr}}
.media-split .copy{padding:22px}
.media-split img{width:100%; height:100%; object-fit:cover; min-height:340px}

.breadcrumb{padding:18px 0 0}
.breadcrumb a{color:rgba(31,41,55,.70)}
.breadcrumb a:hover{text-decoration:underline}
.page-hero{padding:24px 0 8px}
.page-hero h1{font-size:38px; margin:6px 0 10px}
.page-hero .sub{color:rgba(31,41,55,.74); max-width:70ch}

.list{
  display:grid;
  gap:10px;
}
.list .item{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(31,41,55,.10);
}
.badge{
  font-size:11px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(42,167,165,.30);
  background: rgba(42,167,165,.12);
  color:rgba(31,41,55,.85);
  white-space:nowrap;
}
.item b{display:block}
.item span{display:block; color:rgba(31,41,55,.72); margin-top:3px; font-size:13px}

.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:16px;
}
@media (max-width: 980px){.contact-grid{grid-template-columns:1fr}}
.contact-card{padding:18px}
.contact-card h3{margin:0 0 8px}
.contact-card p{margin:0; color:rgba(31,41,55,.78)}
.kv{margin-top:14px; display:grid; gap:10px}
.kv .row{display:flex; gap:10px; align-items:flex-start}
.kv .row b{width:110px; color:rgba(31,41,55,.85)}
.kv .row span{color:rgba(31,41,55,.78)}
.notice{
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(217,119,6,.22);
  background: rgba(217,119,6,.10);
  color:rgba(31,41,55,.86);
  font-size:13px;
}

footer{
  padding: 26px 0 34px;
  border-top:1px solid var(--line);
  margin-top: 28px;
}
.footer-grid{
  display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:18px;
}
@media (max-width: 980px){.footer-grid{grid-template-columns:1fr}}
footer p{color:rgba(31,41,55,.72); margin:10px 0 0; font-size:13px}
footer a{color:rgba(31,41,55,.78)}
footer a:hover{text-decoration:underline}
.small{font-size:12px; color:rgba(31,41,55,.60); margin-top:14px}
hr.sep{border:0; border-top:1px solid rgba(31,41,55,.10); margin:16px 0}

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view{
  opacity:1;
  transform: translateY(0);
}

.modal-backdrop{
  position:fixed; inset:0;
  background: rgba(17,24,39,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:80;
  padding:20px;
}
.modal-backdrop.open{display:flex}
.modal{
  width:min(720px, 100%);
  border-radius: 22px;
  overflow:hidden;
  background: rgba(247,241,230,.96);
  border:1px solid rgba(255,255,255,.25);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.modal .top{
  display:flex; align-items:flex-start; justify-content:space-between;
  padding:18px 18px 0;
}
.modal .top h3{margin:0; font-size:18px}
.modal .top button{
  border:0; background:transparent; cursor:pointer;
  width:40px; height:40px; border-radius:14px;
}
.modal .top button:hover{background:rgba(31,41,55,.08)}
.modal .body{padding: 10px 18px 18px}
.modal .body p{margin:10px 0 14px; color:rgba(31,41,55,.78)}
.modal .body .deal{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
@media (max-width: 640px){.modal .body .deal{grid-template-columns:1fr}}
.deal .tile{
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(31,41,55,.10);
}
.deal .tile b{display:block}
.deal .tile span{display:block; color:rgba(31,41,55,.72); margin-top:4px; font-size:13px}

.support{
  position:fixed;
  right:18px; bottom:18px;
  z-index:85;
  display:flex; flex-direction:column; align-items:flex-end;
  gap:10px;
}
.support .bubble{
  width: 56px; height: 56px;
  border-radius: 18px;
  border:0;
  cursor:pointer;
  background: linear-gradient(135deg, rgba(42,167,165,.95), rgba(217,119,6,.92));
  box-shadow: 0 18px 40px rgba(17,24,39,.22);
  display:grid; place-items:center;
}
.support .bubble svg{width:22px; height:22px; color:#0b1414}
.support-panel{
  width:min(360px, calc(100vw - 36px));
  border-radius: 22px;
  background: rgba(247,241,230,.96);
  border:1px solid rgba(31,41,55,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  overflow:hidden;
  display:none;
}
.support-panel.open{display:block}
.support-panel .head{
  padding:14px 14px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid rgba(31,41,55,.10);
}
.support-panel .head b{font-size:14px}
.support-panel .head button{
  border:0; background:transparent; cursor:pointer;
  width:36px; height:36px; border-radius:12px;
}
.support-panel .head button:hover{background:rgba(31,41,55,.08)}
.support-panel .body{padding:14px}
.field{display:grid; gap:6px; margin-bottom:10px}
.field label{font-size:12px; color:rgba(31,41,55,.70)}
.field input,.field textarea{
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(31,41,55,.12);
  background: rgba(255,255,255,.60);
  font-family:var(--font);
  font-size:13px;
}
.field textarea{min-height:92px; resize:vertical}
.toast{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(42,167,165,.25);
  background: rgba(42,167,165,.10);
  color:rgba(31,41,55,.82);
  font-size:13px;
  display:none;
}
.toast.show{display:block}

.cookie{
  position:fixed;
  left:18px; right:18px; bottom:18px;
  z-index:90;
  display:none;
}
.cookie.open{display:block}
.cookie .wrap{
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(247,241,230,.96);
  border:1px solid rgba(31,41,55,.12);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  padding: 14px 14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cookie .wrap p{
  margin:0;
  color:rgba(31,41,55,.78);
  font-size:13px;
  max-width: 70ch;
}
.cookie .actions{display:flex; gap:10px; flex-wrap:wrap}