:root {
  --bg-deep: #061327;
  --bg-mid: #0d274a;
  --bg-soft: #123865;
  --accent: #ffb454;
  --accent-strong: #ff8f3d;
  --mint: #59e1b6;
  --text-main: #edf4ff;
  --text-soft: #b6cae6;
  --card: rgba(8, 23, 46, 0.75);
  --line: rgba(137, 181, 229, 0.3);
  --carousel-gap: 20px;
  --carousel-card-width: 320px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 80% -10%, #2d6cb8 0%, transparent 42%),
    radial-gradient(circle at 12% 18%, #1f5ca4 0%, transparent 36%),
    linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-mid) 45%, var(--bg-soft) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
  opacity: 0.55;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 26px 0 58px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: clamp(64px, 8vw, 92px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 180, 84, 0.35));
}

.brand-name {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #e9f3ff;
  text-shadow: 0 8px 20px rgba(8, 18, 34, 0.5);
  line-height: 1;
}

.nav-cta {
  text-decoration: none;
  color: #081829;
  background: var(--mint);
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 20px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.nav-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 24px rgba(89, 225, 182, 0.32);
  filter: brightness(1.06);
}

.no-nav {
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 30px;
}

.hero-main,
.hero-panel,
.section,
.price,
.faq,
.contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.panel-glow {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.panel-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(115deg, rgba(121, 219, 255, 0) 10%, rgba(121, 219, 255, 0.85) 45%, rgba(121, 219, 255, 0) 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.panel-glow:hover {
  transform: translateY(-4px);
  border-color: rgba(121, 219, 255, 0.82);
  box-shadow: 0 0 0 1px rgba(121, 219, 255, 0.25), 0 18px 34px rgba(6, 22, 46, 0.45);
}

.panel-glow:hover::before {
  opacity: 1;
}

.hero-main {
  padding: 34px;
  animation: rise 0.7s ease both;
}

.hero-panel {
  padding: 28px;
  animation: rise 0.9s ease both;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 180, 84, 0.14) 0%, transparent 38%),
    linear-gradient(165deg, rgba(10, 34, 65, 0.92) 0%, rgba(8, 27, 52, 0.9) 100%);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 180, 84, 0.45);
  color: #ffd49c;
  background: rgba(255, 180, 84, 0.1);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.lead {
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 55ch;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  padding: 13px 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1f1305;
  box-shadow: 0 12px 24px rgba(255, 180, 84, 0.36);
}

.btn-secondary {
  border: 1px solid rgba(182, 202, 230, 0.4);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(8, 25, 46, 0.45);
  filter: brightness(1.04);
}

.impact-sub {
  margin: -6px 0 12px;
  color: #9fc3ef;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.metric {
  padding: 14px 0 16px;
  border-bottom: 1px solid rgba(182, 202, 230, 0.22);
}

.metric:last-child {
  border-bottom: none;
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 3px;
}

.metric .value {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 34px;
  color: #ffcf8f;
  font-weight: 700;
  display: block;
}

.metric-chip {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(159, 195, 239, 0.45);
  color: #bcd7f8;
  background: rgba(159, 195, 239, 0.08);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.metric .label {
  color: var(--text-soft);
  font-size: 15px;
}

.metric-bar {
  margin-top: 10px;
  height: 6px;
  border-radius: 999px;
  background: rgba(172, 198, 232, 0.18);
  overflow: hidden;
}

.metric-bar span {
  display: block;
  width: var(--fill, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffb454 0%, #ffd38b 100%);
  box-shadow: 0 0 16px rgba(255, 194, 122, 0.45);
}

.sections-carousel {
  margin: 12px 0 24px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.sections-carousel::before,
.sections-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}

.sections-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(13, 39, 74, 0.98) 0%, rgba(13, 39, 74, 0) 100%);
}

.sections-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(13, 39, 74, 0.98) 0%, rgba(13, 39, 74, 0) 100%);
}

.sections-track {
  display: flex;
  gap: var(--carousel-gap);
  width: max-content;
  animation: carouselMove 30s linear infinite;
}

.section {
  width: var(--carousel-card-width);
  flex: 0 0 var(--carousel-card-width);
  padding: 24px;
  animation: rise 1.1s ease both;
}

.section h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.section p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.65;
}

.price {
  margin-bottom: 22px;
  padding: 28px;
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: 1fr auto;
  animation: rise 1.3s ease both;
}

.price strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(32px, 4.5vw, 46px);
  color: #ffcf8f;
  display: block;
  margin-top: 5px;
}

.faq {
  padding: 26px;
  animation: rise 1.5s ease both;
}

.faq-item {
  border-top: 1px solid rgba(182, 202, 230, 0.2);
  padding-top: 16px;
  margin-top: 16px;
}

.faq-item:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.faq-item h4 {
  margin: 0 0 7px;
  font-size: 19px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.faq-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.contact-box {
  margin-top: 22px;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: rise 1.7s ease both;
}

.gmail-icon {
  width: 28px;
  height: 22px;
  flex: 0 0 auto;
}

.contact-label {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.contact-mail {
  margin: 2px 0 0;
  color: #9fe3ff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact-mail:hover {
  color: #ccf2ff;
  text-shadow: 0 0 12px rgba(159, 227, 255, 0.45);
}

footer {
  text-align: center;
  color: rgba(208, 223, 244, 0.75);
  font-size: 14px;
  margin-top: 20px;
}

@keyframes carouselMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * ((var(--carousel-card-width) + var(--carousel-gap)) * 5)));
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .sections-carousel {
    overflow-x: auto;
  }

  .sections-carousel::before,
  .sections-carousel::after {
    display: none;
  }

  .sections-track {
    animation: none;
    padding-bottom: 8px;
  }

  .section {
    width: min(84vw, 340px);
    flex-basis: min(84vw, 340px);
  }

  .section-clone {
    display: none;
  }

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