:root {
  --blue: #062b55;
  --blue-2: #0b3b73;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --cyan-50: #ecfeff;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1e293b;
  background: white;
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--sky-100);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-button { border: 0; background: transparent; padding: 0; flex-shrink: 0; }
.logo { display: block; width: auto; }
.logo-header { height: 80px; }
.logo-footer { height: 64px; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  border: 0;
  background: transparent;
  color: var(--slate-700);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: .2s;
}
.nav-link:hover { background: var(--sky-50); color: var(--blue); }
.nav-link.active { background: var(--blue); color: white; box-shadow: 0 1px 3px rgba(2,6,23,.12); }
.primary-small {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(2,6,23,.12);
}
.primary-small:hover { background: #075985; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-50), white, var(--cyan-50));
}
.blob-right, .blob-left {
  position: absolute;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  filter: blur(48px);
}
.blob-right { right: -96px; top: 40px; background: rgba(186,230,253,.5); }
.blob-left { left: -96px; bottom: 0; background: rgba(165,243,252,.4); }
.hero-grid {
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 20px 112px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid #bae6fd;
  background: white;
  border-radius: 999px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(2,6,23,.08);
}
h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 60px);
  line-height: .98;
  color: var(--slate-950);
  letter-spacing: -0.04em;
  font-weight: 900;
}
.hero p.description, .lead {
  margin-top: 24px;
  max-width: 576px;
  color: var(--slate-600);
  font-size: 18px;
  line-height: 1.8;
}
.actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.primary, .secondary {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
}
.primary { border: 0; background: var(--blue); color: white; box-shadow: 0 8px 20px rgba(14,165,233,.2); }
.primary:hover { background: #075985; }
.secondary { border: 1px solid #bae6fd; background: white; color: var(--blue); }
.secondary:hover { background: var(--sky-50); }
.hero-card-wrap { transform: scale(1.08); transform-origin: center; }
.image-card {
  border: 1px solid white;
  background: rgba(255,255,255,.75);
  padding: 28px;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(186,230,253,.8);
  backdrop-filter: blur(10px);
}
.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.section { max-width: 1152px; margin: 0 auto; padding: 64px 20px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.card {
  border: 1px solid var(--sky-100);
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(2,6,23,.05);
  transition: .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(2,6,23,.1); }
.card h3 { margin: 0; color: var(--slate-900); font-size: 18px; }
.card p { color: var(--slate-600); font-size: 14px; line-height: 1.7; }
.icon { color: var(--blue); width: 32px; height: 32px; margin-bottom: 16px; }

.dark-band { background: var(--blue); color: white; padding: 64px 0; }
.dark-grid { max-width: 1152px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.dark-band p.kicker { color: #a5f3fc; font-weight: 700; }
.dark-band h2 { margin: 12px 0 0; font-size: 32px; line-height: 1.1; }
.dark-item { display: flex; gap: 16px; padding: 20px; border-radius: 24px; background: rgba(255,255,255,.1); margin-bottom: 16px; }
.dark-item svg { width: 28px; height: 28px; color: #a5f3fc; flex: none; }

.about-main, .contact-main { max-width: 1152px; margin: 0 auto; padding: 64px 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kicker { color: var(--blue); font-weight: 700; }
.about-text h1, .contact-main h1 { margin-top: 12px; font-size: 40px; line-height: 1.1; color: var(--slate-950); }
.about-text p { color: var(--slate-600); font-size: 18px; line-height: 1.8; white-space: pre-line; }
.about-photo-frame {
  width: 72%;
  margin: 0 auto;
  border: 1px solid var(--sky-100);
  border-radius: 38px;
  background: white;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(186,230,253,.65);
}
.about-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 24px; display:block; }
.info-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { border: 1px solid var(--sky-100); border-radius: 24px; background: var(--sky-50); padding: 24px; }
.info-card h3 { margin: 0; font-size: 20px; color: var(--slate-900); }
.info-card p { color: var(--slate-600); line-height: 1.7; }
.bottom-photo-frame { margin-top: 56px; border: 1px solid var(--sky-100); border-radius: 32px; background:white; padding: 16px; box-shadow: 0 16px 30px rgba(186,230,253,.65); }
.bottom-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: center; border-radius: 24px; display:block; }

.contact-main { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-details { margin-top: 32px; display: grid; gap: 16px; }
.detail-row { display: flex; align-items:center; gap: 12px; border: 1px solid var(--sky-100); background: white; border-radius: 16px; padding: 16px; }
.detail-row svg { width: 24px; height: 24px; color: var(--blue); }
.form-card { border: 1px solid var(--sky-100); background: white; border-radius: 32px; padding: 24px; box-shadow: 0 16px 30px rgba(186,230,253,.65); }
.form-card label { display:block; font-size: 14px; font-weight: 800; color: var(--slate-700); margin-top: 20px; }
.form-card label:first-child { margin-top: 0; }
.form-card input, .form-card textarea { margin-top: 8px; width: 100%; border: 1px solid var(--sky-100); border-radius: 16px; padding: 12px 16px; outline: none; }
.form-card textarea { min-height: 128px; resize: vertical; }
.form-card input:focus, .form-card textarea:focus { border-color: #0ea5e9; }
.form-card button { width:100%; margin-top: 24px; }

.review-marquee { overflow: hidden; border-top: 1px solid var(--sky-100); border-bottom: 1px solid var(--sky-100); background: white; padding: 20px 0; }
.review-title-wrap { max-width: 1152px; margin: 0 auto 12px; padding: 0 20px; }
.review-title { margin: 0; color: var(--blue); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .22em; }
.marquee-track { display: flex; width: max-content; gap: 16px; animation: marquee 30s linear infinite; }
.review-pill { min-width: 390px; display: flex; align-items:center; gap: 16px; border: 1px solid var(--sky-100); background: var(--sky-50); border-radius: 999px; padding: 12px 20px; color: var(--slate-700); font-size: 14px; box-shadow: 0 1px 3px rgba(2,6,23,.05); }
.review-pill img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid white; box-shadow: 0 1px 3px rgba(2,6,23,.1); flex: none; }
.review-name { font-weight: 800; color: var(--slate-900); }
.review-platform { color: #94a3b8; font-size: 12px; font-weight: 800; margin-left: 8px; }
.review-stars { color: var(--blue); }
.review-text { font-weight: 600; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 260px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-footer { border-top: 1px solid var(--sky-100); background: white; }
.footer-inner { max-width: 1152px; margin: 0 auto; padding: 32px 20px; display:flex; justify-content:space-between; gap: 20px; align-items:center; }
.copyright { margin-top: 8px; color: var(--slate-500); font-size: 14px; }
.footer-links { position: relative; display:flex; gap: 12px; align-items:center; }
.footer-links button { border: 0; background: transparent; color: var(--slate-600); font-size: 14px; font-weight: 700; }
.footer-links button:hover { color: var(--blue); }
.review-bubble { position:absolute; bottom: 36px; right: 0; width: 280px; background:white; border: 1px solid var(--sky-100); border-radius: 24px; padding: 16px; box-shadow: 0 20px 40px rgba(2,6,23,.15); }
.review-bubble strong { color: var(--blue); font-size: 14px; }
.review-bubble p { margin: 8px 0 0; font-size: 14px; color: var(--slate-600); }

@media (max-width: 900px) {
  .main-nav { display:none; }
  .hero-grid, .about-grid, .contact-main, .dark-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .hero-card-wrap { transform: scale(1); }
  .footer-inner { flex-direction: column; align-items:flex-start; }
}
@media (max-width: 600px) {
  .primary-small { display:none; }
  .logo-header { height: 64px; }
  .hero-grid { padding: 56px 20px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .about-photo-frame { width: 100%; }
  .footer-links { flex-wrap: wrap; }
  .review-pill { min-width: 330px; }
}
