:root {
  --orange: #ff8a1f;
  --light-blue: #8fd3ff;
  --navy: #10345f;
  --navy-deep: #0a2540;
  --white: #ffffff;
  --text: #16324a;
  --muted: #5d7488;
  --line: #e8eef5;
  --shadow: 0 18px 45px rgba(16, 52, 95, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 32px));
  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(232, 238, 245, 0.8);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy-deep);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--light-blue));
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.brand-text {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.96rem;
}

.site-nav a:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 32px;
  background:
    radial-gradient(circle at top left, rgba(143, 211, 255, 0.25), transparent 36%),
    radial-gradient(circle at right center, rgba(255, 138, 31, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-decor {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.55;
}

.decor-1 {
  width: 220px;
  height: 220px;
  background: rgba(143, 211, 255, 0.35);
  top: -80px;
  left: -60px;
}

.decor-2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 138, 31, 0.25);
  right: -40px;
  top: 90px;
}

.decor-3 {
  width: 140px;
  height: 140px;
  background: rgba(16, 52, 95, 0.08);
  bottom: 60px;
  left: 45%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(143, 211, 255, 0.18);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-label.light {
  background: rgba(255,255,255,0.16);
  color: var(--white);
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}

.hero-lead {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 650px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.12), rgba(143, 211, 255, 0.20));
  border: 1px solid rgba(255, 138, 31, 0.20);
  color: var(--navy-deep);
  margin-bottom: 24px;
}

.hero-actions,
.contact-actions,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9f47);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(255, 138, 31, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.btn-light {
  background: var(--white);
  color: var(--navy-deep);
  box-shadow: var(--shadow);
}

.btn.full {
  width: 100%;
}

.hero-points,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li,
.detail-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
}

.card-glow {
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, rgba(143, 211, 255, 0.35), rgba(255, 138, 31, 0.18));
  border-radius: 34px;
  filter: blur(16px);
}

.hero-visual {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(160deg, #ffffff, #f4fbff);
  border: 1px solid rgba(232, 238, 245, 0.95);
  box-shadow: var(--shadow);
}

.visual-top,
.visual-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.mini-tag,
.info-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.mini-tag {
  background: rgba(16, 52, 95, 0.08);
  color: var(--navy);
}

.mini-tag.alt {
  background: rgba(255, 138, 31, 0.12);
}

.info-pill {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
}

.plate-art {
  margin: 28px auto;
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
}

.plate-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 30deg, var(--orange), var(--light-blue), var(--navy), var(--orange));
  opacity: 0.95;
}

.plate-center {
  position: relative;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, #eff8ff);
  box-shadow: inset 0 8px 16px rgba(255,255,255,0.8), inset 0 -8px 16px rgba(16,52,95,0.06);
  text-align: center;
}

.plate-center span {
  font-weight: 800;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.05;
  color: var(--navy-deep);
}

.section {
  padding: 88px 0;
}

.two-col,
.split-grid,
.footer-grid,
.contact-banner {
  display: grid;
  gap: 24px;
}

.two-col {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.section h2,
.section-heading h2,
.panel-card h2,
.contact-banner h2,
.promo-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  color: var(--navy-deep);
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.panel-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin: 18px 0 10px;
  font-size: 1.3rem;
  color: var(--navy-deep);
}

.icon-shell {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(143, 211, 255, 0.28), rgba(255, 138, 31, 0.16));
}

.promo-section {
  padding-top: 24px;
}

.promo-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy), #1e5fa3);
  box-shadow: var(--shadow);
}

.promo-copy p,
.contact-banner p {
  color: inherit;
}

.split-grid {
  grid-template-columns: repeat(2, 1fr);
}

.location-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.contact-banner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at left top, rgba(143, 211, 255, 0.28), transparent 28%),
    radial-gradient(circle at right bottom, rgba(255, 138, 31, 0.18), transparent 30%),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 28px 0 42px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.90);
}

.footer-grid {
  grid-template-columns: 0.8fr 1fr 1.2fr;
  align-items: start;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--white);
}

.site-footer p {
  margin: 0 0 8px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #ff9f47);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(255, 138, 31, 0.32);
  font-size: 1.45rem;
  z-index: 70;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .cards-grid,
  .split-grid,
  .footer-grid,
  .contact-banner,
  .promo-panel {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .section,
  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-visual,
  .promo-panel,
  .contact-banner,
  .info-card,
  .panel-card {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions,
  .promo-actions {
    flex-direction: column;
  }

  .brand-text {
    font-size: 0.92rem;
  }
}
