:root {
  --navy: #081a36;
  --navy-2: #0c2b57;
  --blue: #0d5f8f;
  --blue-2: #1188c8;
  --sky: #53c9ff;
  --bg: #f3f7fa;
  --card: #ffffff;
  --card-soft: #edf7fc;
  --text: #122847;
  --muted: #5a6f8d;
  --border: rgba(18, 40, 71, 0.08);
  --shadow: 0 18px 46px rgba(8, 26, 54, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 800;
}
.section-heading {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.site-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 22px;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.brand {
  padding: 10px 10px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--sky);
}
.brand h1 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.brand p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.side-nav {
  display: grid;
  gap: 10px;
  padding: 24px 0;
}
.side-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.side-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateX(2px);
}
.side-contact {
  margin-top: auto;
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}
.side-contact small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}
.side-contact a {
  color: #fff;
  font-weight: 700;
}

.content { min-width: 0; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(83, 201, 255, 0.16), transparent 0 24%),
    radial-gradient(circle at 90% 15%, rgba(17, 136, 200, 0.16), transparent 0 24%),
    linear-gradient(180deg, var(--blue), #0c547f 58%, #0b4b73 100%);
  color: #fff;
  padding: 94px 0 108px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -110px;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 62%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 36px;
  align-items: center;
}
.hero h2 {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 820px;
}
.hero p {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 1.22rem;
  color: rgba(255,255,255,0.82);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #70d7ff, var(--sky));
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(83, 201, 255, 0.22);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn:hover { transform: translateY(-2px); }

.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(8, 26, 54, 0.16);
}
.hero-card h3 {
  margin: 0 0 16px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.mini-list { display: grid; gap: 14px; }
.mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
}
.mini-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.14);
  color: var(--sky);
  flex-shrink: 0;
}

.trust-strip {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
}
.trust-item p {
  margin: 0;
  color: var(--muted);
}

.services-grid,
.quality-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 26px rgba(8, 26, 54, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(8, 26, 54, 0.08);
}
.card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4fbff, #e8f5fc);
  border: 1px solid rgba(17, 136, 200, 0.08);
  color: var(--blue-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
}
.icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  margin: 2px 0 0;
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.statement-panel,
.support-panel,
.location-panel,
.cta-panel {
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 54px 50px;
  box-shadow: var(--shadow);
  text-align: center;
}
.statement-panel h2,
.support-panel h2,
.location-panel h2,
.cta-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.statement-panel p,
.support-panel p,
.location-panel p,
.cta-panel p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.points-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}
.points-card h3 {
  margin: 0 0 18px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
}
.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f6fd;
  color: var(--blue-2);
  flex-shrink: 0;
  margin-top: 1px;
}

.quality-grid .card,
.reviews-grid .card { background: var(--card-soft); border: 0; box-shadow: none; }
.quality-note { display: block; margin-top: 10px; font-weight: 800; color: var(--text); }
.stars {
  color: var(--blue-2);
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.cta-band {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: #fff;
}
.cta-panel {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.cta-panel p { color: rgba(255,255,255,0.78); }
.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0 42px;
  color: rgba(255,255,255,0.65);
  font-size: 0.96rem;
}

@media (max-width: 1120px) {
  .site-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hero-grid,
  .two-col,
  .services-grid,
  .quality-grid,
  .trust-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .hero { padding: 76px 0 92px; }
  .hero-grid,
  .two-col,
  .services-grid,
  .quality-grid,
  .trust-grid,
  .reviews-grid,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }
  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child { border-bottom: 0; }
  .statement-panel,
  .support-panel,
  .location-panel,
  .cta-panel,
  .points-card,
  .card {
    padding: 28px;
    border-radius: 24px;
  }
  .hero h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero p,
  .section-heading p,
  .statement-panel p,
  .support-panel p,
  .location-panel p,
  .cta-panel p,
  .card p {
    font-size: 1rem;
  }
}
