:root {
  --green: #0B3D2E;
  --green-soft: #155D46;
  --cream: #fef3e7;
  --cream-deep: #f7e3cf;
  --ink: #17372d;
  --muted: #5d746c;
  --white: #ffffff;
  --line: rgba(11, 61, 46, 0.14);
  --shadow: 0 24px 70px rgba(11, 61, 46, 0.12);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.accent {
  font-family: 'Amatica SC', cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--green-soft);
  line-height: 0.9;
  display: inline-block;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(254, 243, 231, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  font-size: 2rem;
}

.logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-weight: 600;
  box-shadow: 0 12px 34px rgba(11, 61, 46, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(11, 61, 46, 0.26);
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 60px;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.16), transparent 64%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 0 7px rgba(21, 93, 70, 0.12);
}

h1, h2, h3 {
  color: var(--green);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  max-width: 780px;
}

.hero p {
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  color: var(--muted);
  max-width: 620px;
  margin: 28px 0 34px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn.primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 18px 44px rgba(11, 61, 46, 0.22);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--green);
  border-color: var(--line);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-card {
  position: absolute;
  width: 285px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: float 7s ease-in-out infinite;
}

.visual-card:nth-child(1) {
  top: 26px;
  left: 12px;
}

.visual-card:nth-child(2) {
  top: 150px;
  right: 0;
  animation-delay: -1.8s;
}

.visual-card:nth-child(3) {
  bottom: 58px;
  left: 58px;
  animation-delay: -3.2s;
}

.visual-card:nth-child(4) {
  bottom: 0;
  right: 48px;
  animation-delay: -4.4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.creator-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-soft));
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.creator-top strong {
  display: block;
  color: var(--green);
  line-height: 1.2;
}

.creator-top small {
  color: var(--muted);
}

.metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.metric div {
  background: rgba(254, 243, 231, 0.78);
  border-radius: 18px;
  padding: 12px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 770px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  margin-bottom: 18px;
}

.section-head p,
.large-copy {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 720px;
}

.problem-box {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.problem-box::after {
  content: 'trust';
  position: absolute;
  right: 44px;
  bottom: -28px;
  font-family: 'Amatica SC', cursive;
  font-size: clamp(7rem, 18vw, 14rem);
  opacity: 0.09;
  line-height: 1;
}

.problem-box h2 {
  color: var(--cream);
  max-width: 760px;
}

.problem-box p {
  color: rgba(254, 243, 231, 0.82);
  font-size: 1.22rem;
  max-width: 780px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(11, 61, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(11, 61, 46, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-size: 1.35rem;
}

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.panel {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 46px);
  box-shadow: 0 22px 60px rgba(11, 61, 46, 0.09);
}

.panel.dark {
  background: var(--green);
  color: var(--cream);
}

.panel.dark h2,
.panel.dark h3 {
  color: var(--cream);
}

.panel.dark p,
.panel.dark li {
  color: rgba(254, 243, 231, 0.82);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.panel p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 1.08rem;
}

.benefits {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.benefits li {
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.benefits li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex: 0 0 auto;
}

.panel.dark .benefits li::before {
  color: var(--cream);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.pill {
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(11, 61, 46, 0.06);
  transition: all 0.25s ease;
}

.pill:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-3px);
}

.logo-grid {
  width: 100%;
  max-width: 1100px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  overflow: hidden;
}

.logo-card {
  width: 100%;
  height: 115px;
  background: rgba(255,255,255,0.72);
  border-radius: 22px;
  border: 1px solid rgba(11,61,46,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11,61,46,0.05);
}

.logo-card img {
  width: 100%;
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

@media (max-width: 920px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .logo-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .logo-card {
    height: 105px;
  }
}
.quote-section {
  background: var(--green);
  border-radius: var(--radius);
  padding: clamp(38px, 7vw, 76px);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.quote-section h2 {
  color: var(--cream);
  max-width: 820px;
}

.quote-section p {
  color: rgba(254, 243, 231, 0.83);
  max-width: 780px;
  font-size: 1.24rem;
}

.process {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 22px;
  box-shadow: 0 14px 40px rgba(11, 61, 46, 0.06);
}

.step::before {
  content: '0' counter(step);
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--green), #06251c);
  color: var(--cream);
  border-radius: 36px;
  padding: clamp(42px, 8vw, 90px) 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(254, 243, 231, 0.14);
  pointer-events: none;
}

.final-cta::before {
  width: 380px;
  height: 380px;
  left: -140px;
  top: -140px;
}

.final-cta::after {
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -260px;
}

.final-cta h2 {
  color: var(--cream);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: rgba(254, 243, 231, 0.82);
  max-width: 670px;
  margin: 0 auto 28px;
  font-size: 1.18rem;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer strong {
  color: var(--green);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav-inner {
    height: 70px;
  }

  .logo span:last-child {
    display: none;
  }

  .hero {
    padding: 58px 0 44px;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .visual-card {
    position: static;
    width: 100%;
    animation: none;
  }

  .section {
    padding: 62px 0;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .logo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .logo-card {
    height: 112px;
    padding: 16px 18px;
  }

  .logo-card img {
    max-width: 155px;
    max-height: 56px;
  }
}