:root {
  --brand: #0e0e1a;
  --brand2: #1a1a2e;
  --accent-b: #4f8ef7;
  --accent-b2: #7c5cfc;
  --accent-h: #10b981;
  --accent-h2: #059669;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.45);
  --light-b: #eef4ff;
  --light-h: #ecfdf5;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--brand);
  color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.screen {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.screen.active {
  opacity: 1;
  pointer-events: all;
  z-index: 20;
}

#screen-entry {
  background: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 6rem 2rem 3rem;
}

#screen-business {
  background: var(--brand);
}

#screen-home {
  background: #f0fdf4;
  color: var(--brand2);
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
}

.glow-b {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.12) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  pointer-events: none;
  animation: floatB 8s ease-in-out infinite;
}

.glow-h {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  pointer-events: none;
  animation: floatH 10s ease-in-out infinite;
}

@keyframes floatB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 40px);
  }
}

@keyframes floatH {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, -35px);
  }
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.entry-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.7s ease 0.5s both;
}

.entry-eyebrow::before,
.entry-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.entry-headline {
  text-align: center;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.65s both;
}

.entry-headline h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.entry-headline h1 em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-b);
}

.entry-subline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 0.8s both;
}

.entry-subline strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.entry-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.6s ease 0.9s both;
}

.choice-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 1s both;
}

.entry-cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 1.1s both;
}

.entry-card {
  position: relative;
  width: 280px;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.entry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.entry-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.entry-card:hover::before {
  opacity: 1;
}

.card-b {
  background: linear-gradient(145deg, rgba(79, 142, 247, 0.12), rgba(79, 142, 247, 0.05));
  border-color: rgba(79, 142, 247, 0.25);
}

.card-b:hover {
  box-shadow: 0 20px 50px rgba(79, 142, 247, 0.2);
  border-color: rgba(79, 142, 247, 0.5);
}

.card-h {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.05));
  border-color: rgba(16, 185, 129, 0.25);
}

.card-h:hover {
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.icon-b {
  background: rgba(79, 142, 247, 0.15);
}

.icon-h {
  background: rgba(16, 185, 129, 0.15);
}

.card-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.label-b {
  color: var(--accent-b);
}

.label-h {
  color: var(--accent-h);
}

.card-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: gap 0.2s ease;
}

.entry-card:hover .card-cta {
  gap: 0.75rem;
}

.cta-b {
  color: var(--accent-b);
}

.cta-h {
  color: var(--accent-h);
}

.cta-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.entry-card:hover .cta-arrow {
  transform: translateX(3px);
}

.card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 0 0 20px 20px;
}

.entry-card:hover .card-line {
  transform: scaleX(1);
}

.line-b {
  background: linear-gradient(90deg, var(--accent-b), transparent);
}

.line-h {
  background: linear-gradient(90deg, var(--accent-h), transparent);
}

.entry-footer {
  position: fixed;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  z-index: 50;
  animation: fadeUp 0.6s ease 1.4s both;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-logo span {
  font-weight: 300;
  opacity: 0.6;
  font-size: 0.85rem;
  margin-left: 0.3rem;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-back {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.nav-back:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.business-nav {
  background: rgba(14, 14, 26, 0.9);
}

.business-nav .nav-cta {
  background: var(--accent-b);
  color: white;
}

.business-nav .nav-cta:hover {
  background: var(--accent-b2);
}

.hero-b {
  background: linear-gradient(135deg, #0e0e1a 0%, #1a1a2e 60%, #0f1830 100%);
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-b::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.08) 0%, transparent 70%);
}

.hero-b-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow-b {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-b);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow-b::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(79, 142, 247, 0.3);
}

.hero-h1-b {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-h1-b em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-b);
}

.hero-p-b {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-primary-b,
.btn-primary-h,
.cta-btn-main,
.cta-btn-h,
.form-submit-btn {
  border: none;
}

.btn-primary-b {
  background: var(--accent-b);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary-b:hover {
  background: var(--accent-b2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79, 142, 247, 0.3);
}

.btn-secondary-b {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 9px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary-b:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.proof-b {
  background: #f8f9ff;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proof-mark-b {
  font-size: 1.8rem;
  color: #f59e0b;
  line-height: 1;
}

.proof-text-b {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  color: #4b5563;
}

.proof-text-b strong {
  font-style: normal;
  font-weight: 600;
  color: var(--brand2);
}

.section-b {
  padding: 4rem 3rem;
}

.section-b-alt {
  padding: 4rem 3rem;
  background: #f8f9ff;
}

.s-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.eyebrow-b {
  color: var(--accent-b);
}

.eyebrow-h {
  color: var(--accent-h);
}

.s-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.s-title-dark {
  color: var(--brand2);
}

.s-title-white {
  color: var(--white);
}

.s-sub {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.sub-dark {
  color: #6b7280;
}

.sub-light {
  color: rgba(255, 255, 255, 0.55);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
}

.service-card {
  border-radius: 16px;
  padding: 2rem;
}

.service-card-1 {
  background: var(--light-b);
  border: 1px solid rgba(79, 142, 247, 0.2);
}

.service-card-2 {
  background: linear-gradient(135deg, var(--brand2), #2a2a4e);
  border: 1px solid rgba(124, 92, 252, 0.3);
}

.sc-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
  display: inline-block;
}

.tag-1 {
  background: rgba(79, 142, 247, 0.12);
  color: var(--accent-b);
}

.tag-2 {
  background: rgba(124, 92, 252, 0.2);
  color: #a78bfa;
}

.sc-title {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.sc-title-1 {
  color: var(--brand2);
}

.sc-title-2 {
  color: white;
}

.sc-body {
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.sc-body-1 {
  color: #4b5563;
}

.sc-body-2 {
  color: rgba(255, 255, 255, 0.65);
}

.sc-btn {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-1 {
  background: var(--accent-b);
  color: white;
}

.btn-2 {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-grid,
.h-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
  max-width: 860px;
}

.feat-card {
  border-radius: 12px;
  padding: 1.4rem;
}

.feat-card-b {
  background: white;
  border: 1px solid #e8edf5;
}

.feat-card-h {
  background: white;
  border: 1px solid #d1fae5;
}

.feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.ficon-b {
  background: var(--light-b);
}

.ficon-h {
  background: var(--light-h);
}

.feat-title {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand2);
  margin-bottom: 0.35rem;
}

.feat-body {
  font-size: 0.73rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 300;
}

.narrative-section {
  padding: 5rem 3rem;
  text-align: center;
}

.narr-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto 1.25rem;
  line-height: 1.3;
}

.narr-body {
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
}

.cta-section {
  padding: 5rem 3rem;
  text-align: center;
}

.cta-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  max-width: 520px;
  margin: 0 auto 0.75rem;
  line-height: 1.3;
  color: white;
}

.cta-sub {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.cta-btn-main {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2.25rem;
  border-radius: 9px;
  cursor: pointer;
  display: inline-block;
}

.form-section {
  padding: 4rem 3rem;
  background: #f8f9ff;
}

.form-title {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand2);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: #6b7280;
  margin-bottom: 1.75rem;
}

.form-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 720px;
}

.form-field {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  color: #111827;
  font-family: "DM Sans", sans-serif;
}

.real-input::placeholder {
  color: #9ca3af;
}

.real-input:focus {
  outline: 2px solid rgba(79, 142, 247, 0.3);
  border-color: rgba(79, 142, 247, 0.5);
}

.full-width {
  grid-column: 1 / -1;
}

.check-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.8rem;
}

.form-submit-btn {
  margin-top: 1rem;
  background: var(--accent-b);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
}

.form-submit-btn:hover {
  background: var(--accent-b2);
}

.nl-alert {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  max-width: 720px;
}

.nl-alert--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.nl-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.site-footer {
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-link {
  font-size: 0.75rem;
  color: #9ca3af;
  cursor: pointer;
}

.footer-link:hover {
  color: #6b7280;
}

.home-nav {
  background: rgba(5, 150, 105, 0.95);
}

.home-nav .nav-link {
  color: rgba(255, 255, 255, 0.6);
}

.home-nav .nav-link:hover,
.home-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.home-nav .nav-back {
  color: rgba(255, 255, 255, 0.5);
}

.home-nav .nav-back:hover {
  color: white;
}

.home-nav .nav-cta {
  background: white;
  color: var(--accent-h2);
}

.home-nav .nav-cta:hover {
  background: #f0fdf4;
}

.hero-h-wrap {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-h-wrap::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.hero-h-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow-h {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-h);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow-h::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(16, 185, 129, 0.3);
}

.hero-h1-h {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-h1-h em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-h);
}

.hero-p-h {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.btn-primary-h {
  background: var(--accent-h);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary-h:hover {
  background: var(--accent-h2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.btn-secondary-h {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 9px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary-h:hover {
  background: rgba(255, 255, 255, 0.14);
}

.proof-h {
  background: white;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #d1fae5;
}

.proof-mark-h {
  font-size: 1.8rem;
  color: var(--accent-h);
  line-height: 1;
}

.proof-text-h {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  color: #4b5563;
}

.proof-text-h strong {
  font-style: normal;
  font-weight: 600;
  color: var(--brand2);
}

.section-h {
  padding: 4rem 3rem;
  background: white;
}

.section-h-alt {
  padding: 4rem 3rem;
  background: #f0fdf4;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin-top: 2rem;
}

.step-card {
  background: var(--light-h);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-h);
}

.step-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand2);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-body {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 300;
}

.narrative-h {
  padding: 5rem 3rem;
  text-align: center;
  background: white;
}

.narr-title-h {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  max-width: 580px;
  margin: 0 auto 1.25rem;
  line-height: 1.3;
  color: var(--brand2);
}

.narr-body-h {
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
  color: #6b7280;
}

.cta-h-section {
  padding: 5rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-h2), #047857);
}

.cta-title-h {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  max-width: 520px;
  margin: 0 auto 0.75rem;
  line-height: 1.3;
  color: white;
}

.cta-sub-h {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-btn-h {
  background: white;
  color: var(--accent-h2);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2.25rem;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn-h:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.form-h {
  padding: 4rem 3rem;
  background: #f0fdf4;
}

.form-title-h {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand2);
  margin-bottom: 0.4rem;
}

.form-sub-h {
  font-size: 0.85rem;
  font-weight: 300;
  color: #6b7280;
  margin-bottom: 1.75rem;
}

.form-grid-h {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 420px;
}

.form-field-h {
  background: white;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: #111827;
  font-family: "DM Sans", sans-serif;
}

.form-btn-h {
  margin-top: 0.75rem;
  background: var(--accent-h);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.form-btn-h:hover {
  background: var(--accent-h2);
}

.footer-b {
  background: var(--brand2);
}

.footer-b .footer-copy,
.footer-b .footer-link {
  color: rgba(255, 255, 255, 0.45);
}

.footer-b .footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-h {
  background: #ecfdf5;
  border-top: 1px solid #d1fae5;
}

.footer-h .footer-copy,
.footer-h .footer-link {
  color: #9ca3af;
}

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

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

@media (max-width: 768px) {
  .services-grid,
  .steps-grid,
  .features-grid,
  .h-features-grid,
  .form-grid,
  .form-grid-h {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .site-nav {
    padding: 1rem 1.5rem;
  }

  .site-nav .nav-links {
    display: none;
  }

  .hero-b,
  .hero-h-wrap,
  .section-b,
  .section-b-alt,
  .section-h,
  .section-h-alt,
  .narrative-section,
  .narrative-h,
  .cta-section,
  .cta-h-section,
  .form-section,
  .form-h {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .entry-cards {
    flex-direction: column;
    align-items: center;
  }

  .entry-card {
    width: 100%;
    max-width: 320px;
  }
}
