
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#666666;
  --line:#e8e8e8;
  --soft:#f4f6f7;
  --accent:#E2E6E7;
  --dark:#000000;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px, calc(100% - 40px)); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background:rgba(255,255,255,.86);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  min-height:78px; gap:20px;
}
.brand img{height:38px; width:auto}
nav{display:flex; align-items:center; gap:22px; flex-wrap:wrap}
nav a{font-size:15px; color:#333}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:48px; padding:0 22px; border-radius:16px; font-weight:700;
  transition:.2s ease; border:1px solid var(--line)
}
.btn:hover{transform:translateY(-1px)}
.btn-dark{background:var(--dark); color:#fff; border-color:#000}
.btn-light{background:#fff; color:#111}
.hero{padding:64px 0 36px; background:linear-gradient(180deg, #fff 0%, var(--soft) 100%)}
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:42px; align-items:center;
}
.eyebrow{
  display:inline-block; margin-bottom:14px; font-size:12px; font-weight:800;
  letter-spacing:.18em; color:#6b6b6b
}
h1,h2,h3{margin:0 0 14px}
h1{font-size:clamp(34px, 5vw, 64px); line-height:1.05; max-width:760px}
h2{font-size:clamp(28px, 3.4vw, 44px); line-height:1.1}
h3{font-size:26px}
.hero p, .lead, .subtext, .rights, .faq p{color:var(--muted); font-size:18px}
.cta-row{display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 26px}
.stat-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:10px
}
.stat-card, .card, .price-card, .hero-card, .contact-box, .faq-list details{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow)
}
.stat-card{padding:18px}
.stat-card strong{display:block; margin-bottom:6px; font-size:16px}
.stat-card span{color:var(--muted); font-size:14px}
.hero-card{overflow:hidden; padding:10px}
.hero-card img{border-radius:18px; aspect-ratio:4/5; object-fit:cover}
.strip{border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff}
.strip-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; padding:18px 0
}
.strip-grid div{
  padding:10px 14px; border-right:1px solid var(--line)
}
.strip-grid div:last-child{border-right:none}
.strip-grid strong{display:block; margin-bottom:4px}
.strip-grid span{color:var(--muted); font-size:14px}
.section{padding:72px 0}
.soft{background:var(--soft)}
.cards{
  display:grid; gap:18px; margin-top:28px
}
.cards.three{grid-template-columns:repeat(3,1fr)}
.cards.one{grid-template-columns:1fr}
.card{padding:24px}
.card p{margin:0; color:var(--muted)}
.gallery{
  display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:28px
}
.gallery figure{
  margin:0; overflow:hidden; border-radius:28px; box-shadow:var(--shadow); border:1px solid var(--line)
}
.gallery img{width:100%; height:100%; object-fit:cover; aspect-ratio:16/11}
.cta-inline{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}
.why-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start}
.pricing{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:30px
}
.price-card{
  position:relative; padding:24px; display:flex; flex-direction:column; min-height:100%
}
.featured{border:2px solid #000; transform:translateY(-6px)}
.badge{
  position:absolute; top:-12px; left:24px; background:#000; color:#fff;
  padding:7px 12px; border-radius:999px; font-size:12px; font-weight:700
}
.price-head{padding-bottom:12px; border-bottom:1px solid var(--line); margin-bottom:14px}
.tag{
  display:inline-block; font-size:12px; font-weight:800; letter-spacing:.16em;
  color:#555; margin-bottom:8px
}
.price{font-size:34px; font-weight:800}
.price-card ul{padding-left:20px; margin:0 0 12px}
.price-card li{margin-bottom:10px}
.fit, .rights{font-size:15px}
.faq{
  display:grid; grid-template-columns:.8fr 1.2fr; gap:24px; align-items:start
}
.faq-list{display:grid; gap:14px}
.faq-list details{padding:18px 20px}
.faq-list summary{cursor:pointer; font-weight:700}
.contact{
  background:linear-gradient(180deg, #fff 0%, var(--accent) 100%)
}
.contact-box{
  padding:30px; display:grid; grid-template-columns:1.1fr .9fr; gap:20px; align-items:center
}
.contact-actions{display:grid; gap:14px}
.footer{padding:26px 0; border-top:1px solid var(--line)}
.footer-grid{display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap}
.footer img{height:34px}
.footer p{margin:0; color:var(--muted)}

@media (max-width: 980px){
  .hero-grid, .why-grid, .faq, .contact-box, .pricing, .cards.three, .strip-grid{grid-template-columns:1fr}
  .stat-grid, .gallery{grid-template-columns:1fr 1fr}
  .featured{transform:none}
}
@media (max-width: 720px){
  .container{width:min(100% - 24px, 1180px)}
  .nav{padding:10px 0}
  nav{display:none}
  .hero{padding-top:28px}
  .cta-row, .cta-inline{flex-direction:column}
  .stat-grid, .gallery{grid-template-columns:1fr}
  .brand img{height:30px}
}
