:root{
  --bg:#f7f8fb;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --brand:#111827;
  --accent:#0f766e;
  --accent-light:#ecfeff;
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,0.06);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

h1,h2,h3,h4{
  font-family:'Poppins', sans-serif;
  line-height:1.2;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(229,231,235,0.8);
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}

.logo a{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:1.1rem;
}

.logo img{
  height:38px;
  width:auto;
  object-fit:contain;
}

.page-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.page-nav a{
  color:var(--muted);
  font-weight:500;
  transition:0.25s ease;
}

.page-nav a:hover,
.page-nav a.active{
  color:var(--accent);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  font-weight:600;
  border:1px solid transparent;
  transition:0.25s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-1px);
  opacity:0.95;
}

.btn-outline{
  border-color:var(--line);
  background:#fff;
  color:var(--text);
}

.btn-outline:hover{
  border-color:var(--accent);
  color:var(--accent);
}

.hero-mini{
  padding:70px 0 30px;
}

.hero-card{
  background:linear-gradient(135deg, #ffffff 0%, #f3fdfc 100%);
  border:1px solid var(--line);
  border-radius:28px;
  padding:48px 28px;
  box-shadow:var(--shadow);
}

.kicker{
  display:inline-block;
  background:var(--accent-light);
  color:var(--accent);
  padding:8px 14px;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:14px;
}

.hero-card h1{
  font-size:clamp(2rem, 4vw, 3.4rem);
  margin-bottom:12px;
}

.hero-card p{
  color:var(--muted);
  max-width:760px;
  font-size:1.03rem;
}

.page-section{
  padding:26px 0 70px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.card h3{
  margin-bottom:10px;
  font-size:1.15rem;
}

.card p,
.card li{
  color:var(--muted);
}

.card ul li + li{
  margin-top:10px;
}

.section-title{
  font-size:1.8rem;
  margin-bottom:18px;
}

.section-copy{
  color:var(--muted);
  max-width:780px;
  margin-bottom:20px;
}

.info-list li{
  padding:14px 0;
  border-bottom:1px solid var(--line);
}

.info-list li:last-child{
  border-bottom:none;
}

.info-label{
  display:block;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}

.form-group{
  margin-bottom:16px;
}

label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
}

input, textarea, select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  background:#fff;
  outline:none;
  transition:0.2s ease;
}

input:focus, textarea:focus, select:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(15,118,110,0.08);
}

textarea{
  min-height:140px;
  resize:vertical;
}

.notice{
  margin-top:14px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:500;
  display:none;
}

.notice.success{
  display:block;
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.notice.error{
  display:block;
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
}

.faq-item{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.faq-item + .faq-item{
  margin-top:14px;
}

.faq-question{
  width:100%;
  text-align:left;
  padding:18px 20px;
  background:#fff;
  border:none;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.faq-answer{
  display:none;
  padding:0 20px 18px;
  color:var(--muted);
}

.faq-item.active .faq-answer{
  display:block;
}

.legal-block{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
}

.legal-block + .legal-block{
  margin-top:18px;
}

.legal-block h2{
  margin-bottom:10px;
  font-size:1.25rem;
}

.legal-block p, .legal-block li{
  color:var(--muted);
}

.legal-block ul{
  list-style:disc;
  padding-left:20px;
}

.legal-block ul li + li{
  margin-top:10px;
}

.cta-strip{
  padding:0 0 70px;
}

.cta-card{
  background:linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
  color:#fff;
  border-radius:28px;
  padding:34px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-card p{
  color:rgba(255,255,255,0.84);
  max-width:700px;
}

.site-footer{
  background:#0f172a;
  color:#fff;
  padding:30px 0;
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  color:rgba(255,255,255,0.78);
}

.footer-links a:hover{
  color:#fff;
}

@media (max-width: 900px){
  .grid-3,
  .grid-2{
    grid-template-columns:1fr;
  }

  .header-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .page-nav{
    gap:12px;
  }

  .hero-card{
    padding:34px 20px;
  }
}