:root {
  --bg-1: #dff9f1;
  --bg-2: #c9f3ed;
  --bg-3: #aee9dd;
  --ink: #12363c;
  --ink-soft: #39585d;
  --white-soft: rgba(255, 255, 255, 0.72);
  --white-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(18, 54, 60, 0.1);
  --accent: #24b8a7;
  --accent-dark: #0e9a8f;
  --shadow: 0 18px 55px rgba(12, 80, 76, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 30%),
    radial-gradient(circle at bottom right, rgba(111, 230, 210, 0.22), transparent 25%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  min-height: 100vh;
  overflow-x: hidden;
}

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

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.42), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(74, 197, 187, 0.18), transparent 25%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,0.24), transparent 22%);
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 22px 0 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.brand-mark {
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark span {
  color: var(--accent-dark);
}

nav {
  flex: 1;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

nav li {
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transition: width 0.25s ease;
}

nav a:hover,
nav a.active {
  color: var(--accent-dark);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.cta-link {
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 25px rgba(36, 184, 167, 0.24);
}

.hero-section {
  padding: 72px 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.hero-section h1,
.section-heading h2,
.accent-banner h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  font-weight: 800;
}

.section-heading h2,
.accent-banner h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.hero-copy,
.section-heading p,
.feature-item p,
.metric-block p,
.story-card p,
.pricing-card p,
.site-footer p,
.accent-banner p,
.accordion-body,
.step-card p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  box-shadow: 0 14px 30px rgba(36, 184, 167, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.card-panel,
.glass-card {
  background: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.hero-visual {
  overflow: hidden;
  position: relative;
  min-height: 560px;
}

.hero-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-note {
  align-self: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mini-note span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent-dark);
  font-weight: 700;
}

.mini-note strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.mini-note.pulse-up {
  transform: translateY(-4px) scale(1.02);
  transition: transform 0.35s ease;
}

.floating-panel {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-stats .stat-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.7);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.trusted-section {
  padding: 10px 0 20px;
}

.trusted-wrap {
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  text-align: center;
}

.trusted-wrap p {
  margin: 0;
  font-weight: 600;
  color: var(--ink-soft);
}

.trusted-line {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.trusted-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trusted-tags span,
.plan-label,
.step-number {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(36, 184, 167, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
}

.section-block {
  padding: 90px 0;
}

.tinted-block {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 46px;
}

.section-heading.left-align {
  margin-left: 0;
}

.step-card,
.metric-block,
.story-card,
.pricing-card,
.media-card {
  height: 100%;
  padding: 28px;
}

.step-card h3,
.feature-item h3,
.metric-block h3,
.story-card h3,
.pricing-card h3,
.site-footer h3 {
  margin: 16px 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.step-card a,
.story-card a,
.site-footer a,
.footer-links a,
.social-links a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
}

.step-card a:hover,
.story-card a:hover,
.site-footer a:hover,
.social-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
}

.stacked-media {
  position: relative;
  min-height: 560px;
}

.media-card {
  position: absolute;
  overflow: hidden;
}

.media-card img,
.story-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.media-card-top {
  top: 0;
  right: 0;
  width: 82%;
}

.media-card-top img {
  height: 320px;
}

.media-card-bottom {
  left: 0;
  bottom: 0;
  width: 74%;
}

.media-card-bottom img {
  height: 300px;
}

.metric-list,
.pricing-card ul,
.footer-links {
  margin: 18px 0 0;
  padding-left: 20px;
}

.metric-list li,
.pricing-card ul li,
.footer-links li {
  margin-bottom: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.accent-banner {
  color: white;
  background: linear-gradient(135deg, #1cae9e, #0f7f86);
  border-radius: 36px;
  margin: 0 14px;
  box-shadow: 0 24px 50px rgba(15, 127, 134, 0.2);
}

.accent-banner p {
  color: rgba(255,255,255,0.9);
}

.story-card img {
  height: 190px;
  margin-bottom: 18px;
}

.pricing-card {
  position: relative;
}

.pricing-card h3 {
  font-size: 2rem;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--ink-soft);
}

.featured-plan {
  border: 2px solid rgba(36, 184, 167, 0.45);
  transform: translateY(-8px);
}

.faq-block .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 16px;
}

.custom-accordion .accordion-button,
.custom-accordion .accordion-body {
  background: rgba(255,255,255,0.68);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.7);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  border-radius: 18px !important;
  box-shadow: var(--shadow);
}

.custom-accordion .accordion-body {
  border-radius: 0 0 18px 18px;
}

.site-footer {
  padding: 70px 0 34px;
  background: rgba(12, 58, 62, 0.08);
  margin-top: 60px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(18, 54, 60, 0.12);
  margin-top: 28px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-soft);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 16px 30px rgba(15, 127, 134, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1200;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .header-shell {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
  }

  .stacked-media {
    min-height: 480px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 46px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: auto;
    height: 460px;
  }

  .stacked-media {
    min-height: auto;
    display: grid;
    gap: 20px;
  }

  .media-card {
    position: relative;
    width: 100%;
  }

  .media-card-top img,
  .media-card-bottom img {
    height: 260px;
  }

  .accent-banner {
    border-radius: 28px;
  }
}

@media (max-width: 767px) {
  .header-shell {
    padding: 16px;
  }

  nav ul {
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-link {
    width: 100%;
    text-align: center;
  }

  .section-block {
    padding: 68px 0;
  }

  .story-card img {
    height: 210px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}
