:root{
  --gold:#c98912;
  --gold2:#e7b84e;
  --gold3:#9b6507;
  --ink:#07111f;
  --muted:#475569;
  --soft:#fff7e6;
  --ivory:#fffaf2;
  --paper:#ffffff;
  --line:rgba(15,23,42,.10);
  --shadow:0 24px 70px rgba(15,23,42,.10);
  --max:1180px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at 10% 8%,rgba(231,184,78,.18),transparent 28%),
    radial-gradient(circle at 92% 8%,rgba(201,137,18,.12),transparent 30%),
    linear-gradient(180deg,#fffaf2 0%,#f8f1e6 45%,#ffffff 100%);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:1.65;
  overflow-x:hidden;
}

img{max-width:100%;height:auto}
a{color:var(--gold3);text-decoration:none}
a:hover{color:var(--gold)}

h1,h2,h3,h4{
  color:var(--ink);
  letter-spacing:-.045em;
  line-height:1.08;
  margin:0 0 18px;
}

h1{font-size:clamp(42px,5.4vw,76px)}
h2{font-size:clamp(31px,3.8vw,50px)}
h3{font-size:clamp(22px,2vw,30px)}
p,li{color:var(--muted)}

.v25-header{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 38px rgba(15,23,42,.07);
  backdrop-filter:blur(18px);
}

.v25-nav{
  width:min(var(--max),calc(100% - 36px));
  min-height:82px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.v25-logo img{
  display:block;
  max-width:142px;
  max-height:54px;
  object-fit:contain;
}

.v25-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex:1;
}

.v25-menu a{
  color:var(--ink);
  font-size:14px;
  font-weight:850;
  padding:13px 12px;
  border-radius:12px;
  white-space:nowrap;
}

.v25-menu a:hover{
  background:rgba(201,137,18,.08);
  color:var(--gold3);
}

.v25-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.v25-lang{
  height:42px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:var(--ink);
  padding:0 12px;
  font-weight:900;
}

.v25-quote{
  min-height:44px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#fff;
  font-weight:950;
  box-shadow:0 16px 38px rgba(201,137,18,.28);
  white-space:nowrap;
}

.v25-burger{
  display:none;
  width:44px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  cursor:pointer;
}

.v25-burger span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  border-radius:999px;
  background:var(--ink);
}

.v25-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 18%,rgba(231,184,78,.24),transparent 34%),
    radial-gradient(circle at 12% 16%,rgba(201,137,18,.13),transparent 30%),
    linear-gradient(120deg,#fffaf2 0%,#ffffff 52%,#f3eadb 100%);
  padding:96px 0 84px;
}

.v25-hero:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(201,137,18,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(201,137,18,.06) 1px,transparent 1px);
  background-size:52px 52px;
  opacity:.42;
}

.v25-hero-inner{
  position:relative;
  z-index:2;
  width:min(var(--max),calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(310px,.95fr);
  gap:54px;
  align-items:center;
}

.v25-kicker{
  display:inline-flex;
  padding:7px 13px;
  border-radius:999px;
  background:rgba(201,137,18,.11);
  border:1px solid rgba(201,137,18,.22);
  color:var(--gold3);
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.v25-hero h1{
  max-width:900px;
  font-size:clamp(44px,5.4vw,78px);
  letter-spacing:-.06em;
}

.v25-hero p{
  max-width:760px;
  font-size:clamp(17px,1.45vw,20px);
  line-height:1.75;
  color:#334155;
}

.v25-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.v25-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 21px;
  border-radius:15px;
  font-weight:950;
  transition:.18s ease;
}

.v25-btn:hover{transform:translateY(-3px)}

.v25-btn.primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#fff;
  box-shadow:0 20px 48px rgba(201,137,18,.30);
}

.v25-btn.secondary{
  background:#fff;
  color:var(--ink);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 15px 36px rgba(15,23,42,.08);
}

.v25-visual{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(201,137,18,.20);
  border-radius:32px;
  padding:22px;
  box-shadow:0 34px 96px rgba(15,23,42,.15);
  animation:v25Float 6.5s ease-in-out infinite;
}

.v25-screen{
  min-height:350px;
  border-radius:24px;
  padding:28px;
  background:linear-gradient(135deg,#fff,#f8f3ea);
  border:1px solid rgba(15,23,42,.08);
}

.v25-screen-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:34px;
}

.v25-screen-title{
  color:var(--ink);
  font-size:clamp(26px,2.6vw,38px);
  line-height:1.12;
  letter-spacing:-.04em;
  font-weight:950;
  margin-bottom:13px;
}

.v25-screen-text{color:var(--muted);margin-bottom:24px}

.v25-dots span{
  display:inline-block;
  width:22px;
  height:5px;
  border-radius:999px;
  background:rgba(201,137,18,.35);
  margin-left:5px;
}

.v25-mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.v25-mini-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:17px;
  padding:16px;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.v25-mini-card b{
  display:block;
  color:var(--ink);
  margin-bottom:5px;
}

.v25-mini-card small{color:var(--muted)}

.v25-content{
  width:min(var(--max),calc(100% - 44px));
  margin:0 auto;
  padding:72px 0;
}

.v25-section{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:clamp(30px,4vw,52px);
  margin:0 0 32px;
}

.v25-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  margin-top:28px;
}

.v25-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:23px;
  box-shadow:0 14px 38px rgba(15,23,42,.07);
  padding:25px;
  transition:.22s ease;
}

.v25-card:hover{
  transform:translateY(-6px);
  border-color:rgba(201,137,18,.30);
  box-shadow:0 26px 64px rgba(201,137,18,.14);
}

.v25-card h3{margin-bottom:10px}

.v25-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.v25-pill{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:8px 15px;
  border-radius:999px;
  background:#fff7e6;
  border:1px solid rgba(201,137,18,.18);
  color:var(--gold3);
  font-weight:900;
}

.v25-footer{
  background:linear-gradient(135deg,#07111f,#0b1220);
  color:#cbd5e1;
  padding:54px 0 32px;
}

.v25-footer-inner{
  width:min(var(--max),calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.3fr .9fr .9fr;
  gap:30px;
}

.v25-footer h3{color:#fff}
.v25-footer p,.v25-footer a{color:#cbd5e1}

.v25-copy{
  width:min(var(--max),calc(100% - 44px));
  margin:22px auto 0;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  color:#94a3b8;
}

.v25-wa{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:10000;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:58px;
  padding:10px 18px;
  border-radius:999px;
  background:#25d366;
  color:#07111f;
  font-weight:950;
  box-shadow:0 22px 58px rgba(37,211,102,.40);
}

@keyframes v25Float{
  0%,100%{transform:translateY(0) rotate(-1.3deg)}
  50%{transform:translateY(-9px) rotate(-1.3deg)}
}

@media(max-width:1020px){
  .v25-burger{display:block}
  .v25-menu{
    display:none;
    position:absolute;
    top:82px;
    left:18px;
    right:18px;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    border:1px solid rgba(15,23,42,.10);
    box-shadow:0 24px 70px rgba(15,23,42,.18);
    padding:14px;
    border-radius:18px;
  }
  .v25-header.open .v25-menu{display:flex}
  .v25-quote{display:none}
  .v25-hero-inner{grid-template-columns:1fr}
  .v25-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:680px){
  .v25-nav,.v25-hero-inner,.v25-content,.v25-footer-inner,.v25-copy{
    width:min(100% - 24px,var(--max));
  }
  .v25-hero{padding:60px 0 54px}
  .v25-visual{display:none}
  .v25-grid{grid-template-columns:1fr}
  .v25-footer-inner{grid-template-columns:1fr}
  .v25-wa{right:14px;bottom:14px}
}
