:root {
  --bg: #f5fbff;
  --bg-soft: #e9f6ff;
  --surface: rgba(255, 255, 255, 0.82);
  --text: #135a95;
  --muted: #4f7ea5;
  --line: rgba(31, 130, 209, 0.14);
  --blue: #1781cf;
  --blue-soft: #49b6ff;
  --orange: #ff7a00;
  --orange-soft: #ffab5c;
  --shadow: 0 24px 60px rgba(23, 129, 207, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(73, 182, 255, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.16), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 45%, #edf8ff 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-text-logo {
  gap: 0;
}

.brand-wordmark {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--blue);
  white-space: nowrap;
}

.brand-wordmark span {
  color: var(--orange);
}

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

.site-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
  background: linear-gradient(135deg, rgba(73, 182, 255, 0.16), rgba(255, 122, 0, 0.14));
  box-shadow: inset 0 0 0 1px rgba(23, 129, 207, 0.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(73, 182, 255, 0.12);
  padding: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-slides {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.22) 28%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-overlay-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 620px;
  padding-top: 44px;
  padding-bottom: 44px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(23, 129, 207, 0.12);
  margin-top: 56px;
  margin-bottom: 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(73, 182, 255, 0.12);
  color: var(--blue);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-overlay-inner h1,
.page-hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 1.04;
  margin: 14px 0 16px;
}

.hero-overlay-inner p,
.page-hero p,
.section-heading p,
.overview-card p,
.content-card p,
.product-card p,
.stat-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: white;
  box-shadow: 0 18px 36px rgba(255, 122, 0, 0.2);
}

.button-secondary {
  background: rgba(73, 182, 255, 0.12);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(23, 129, 207, 0.08);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: absolute;
  right: 32px;
  bottom: 24px;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(23, 129, 207, 0.12), rgba(255, 122, 0, 0.12));
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 129, 207, 0.22);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.hero-panel,
.spotlight-grid,
.content-grid,
.contact-grid,
.footer-inner {
  position: relative;
  z-index: 1;
}

.hero-stats {
  padding: 28px 0 0;
}

.hero-panel {
  margin-top: 0;
}

.glass-card,
.stat-card,
.overview-card,
.content-card,
.product-card,
.spotlight-card,
.map-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 255, 0.86));
  border: 1px solid rgba(23, 129, 207, 0.08);
  box-shadow: var(--shadow);
}

.stat-grid,
.overview-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.stat-card,
.overview-card,
.content-card,
.product-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.92));
}

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 16px 0;
}

.overview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.accent-blue {
  background: linear-gradient(180deg, rgba(73, 182, 255, 0.2), rgba(255, 255, 255, 0.92));
}

.accent-orange {
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.14), rgba(255, 255, 255, 0.92));
}

.accent-slate {
  background: linear-gradient(180deg, rgba(73, 182, 255, 0.08), rgba(255, 255, 255, 0.92));
}

.page-main {
  padding-bottom: 40px;
}

.page-hero {
  padding: 84px 0 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
}

.content-card.large {
  padding: 34px;
}

.content-side {
  display: grid;
  gap: 22px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(73, 182, 255, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(233, 246, 255, 0.72));
  pointer-events: none;
}

.product-media {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% + 48px);
  margin: -24px -24px 20px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.product-card span,
.product-card h3,
.product-card p {
  position: relative;
  z-index: 1;
}

.product-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: white;
  font-weight: 800;
}

.product-card h3 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
}

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

.content-card h3 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.map-section {
  padding-top: 0;
}

.map-card {
  overflow: hidden;
  border-radius: 28px;
}

.map-card iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 24, 40, 0.78);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(96vw, 1100px);
  max-height: 86vh;
  border-radius: 24px;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 28px rgba(23, 129, 207, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 129, 207, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-credit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 129, 207, 0.18);
}

.footer-credit img {
  display: block;
  width: 74px;
  height: auto;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 129, 207, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .overview-grid,
  .content-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .header-inner {
    position: relative;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .hero-slides,
  .hero-slide img {
    min-height: 560px;
    height: 560px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.18) 44%, rgba(255, 255, 255, 0.08) 100%);
  }

  .slider-controls {
    right: 20px;
    left: 20px;
    bottom: 20px;
  }

  .hero-overlay-inner {
    max-width: 580px;
    margin-top: 30px;
    margin-bottom: 88px;
  }
}

@media (max-width: 720px) {
  .brand-wordmark {
    font-size: clamp(1.3rem, 6vw, 1.9rem);
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-slides,
  .hero-slide img {
    min-height: 500px;
    height: 500px;
  }

  .hero-overlay-inner {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 24px;
    margin-top: 22px;
    margin-bottom: 92px;
  }

  .hero-overlay-inner h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section,
  .page-hero {
    padding-top: 60px;
  }

  .stat-card,
  .overview-card,
  .content-card,
  .product-card {
    padding: 20px;
  }

  .product-media {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-credit img {
    width: 64px;
  }
}
