:root {
  --brand: #FF5636;
  --brand-dark: #d93d1e;
  --brand-glow: rgba(255, 86, 54, 0.18);
  --brand-pale: #fff5f2;
  --brand-border: rgba(255, 86, 54, 0.25);
  --ink: #0c0c0c;
  --ink2: #222;
  --gray1: #f5f4f2;
  --gray2: #ebebeb;
  --gray3: #b0aeab;
  --gray4: #6b6966;
  --white: #ffffff;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --green-border: #bbf7d0;
  --display: 'Familjen Grotesk', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-lift: 0 4px 20px rgba(0, 0, 0, 0.1), 0 12px 40px rgba(0, 0, 0, 0.06);
}

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

p {
  padding-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── STRIPPED NAV (no distractions) ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  padding: 0 5%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo em {
  color: var(--brand);
  font-style: normal;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--body);
}

.topbar-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.topbar-phone {
  font-size: 14px;
  color: var(--gray4);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ── TOPBAR NAV ── */
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (min-width: 851px) {
  .topbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.topbar-nav a {
  position: relative;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.2s ease;
}

.topbar-nav a:hover {
  color: var(--brand);
}

.topbar-nav a:hover::after {
  width: 100%;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mob-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 850px) {
  .topbar {
    position: relative;
    /* ensure dropdown aligns to bottom of topbar */
  }

  .mob-toggle {
    display: block;
  }

  .topbar-nav {
    position: absolute;
    top: 58px;
    /* height of topbar */
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--gray2);
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    gap: 0;
  }

  .topbar.nav-open .topbar-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .topbar-nav a {
    padding: 16px 5%;
    border-bottom: 1px solid var(--gray2);
    font-size: 15px;
  }

  .topbar-nav a::after {
    display: none;
  }
}

/* ── HERO ── */
.hero {
  background: var(--ink);
  padding: 72px 5% 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
}

/* diagonal slash at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  /*background: var(--gray1);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);*/
}

.hero-wrap {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 86, 54, 0.12);
  border: 1px solid rgba(255, 86, 54, 0.3);
  color: #ff7a5a;
  border-radius: 99px;
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  font-family: var(--body);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pdot 1.8s ease-in-out infinite;
}

@keyframes pdot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 86, 54, 0.5);
  }

  60% {
    box-shadow: 0 0 0 6px rgba(255, 86, 54, 0);
  }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--brand);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-bullet .bchk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 86, 54, 0.15);
  border: 1px solid rgba(255, 86, 54, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--brand);
  flex-shrink: 0;
  font-weight: 700;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.hero-social strong {
  color: rgba(255, 255, 255, 0.7);
}

.hero-av-row {
  display: flex;
}

.av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-left: -6px;
}

.av:first-child {
  margin-left: 0;
}

.av.b {
  background: #2596be;
}

.av.c {
  background: #333;
}

.av.d {
  background: #6d28d9;
}

/* ── HERO FORM CARD ── */
.form-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: sticky;
  top: 72px;
}

.form-card-header {
  background: var(--brand);
  padding: 20px 24px;
  text-align: center;
}

.form-card-header h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  padding: 0;
}

.form-card-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
}

.form-card-body {
  padding: 24px;
}

.form-card-body p {
  padding: 0 !important;
}

.f-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.f-step {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: var(--gray2);
  transition: background 0.3s;
}

.f-step.active {
  background: var(--brand);
}

.f-row {
  margin-bottom: 13px;
}

.f-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray4);
  margin-bottom: 6px;
}

.f-row input,
.f-row select,
.f-row textarea {
  width: 100%;
  background: var(--gray1);
  border: 1.5px solid var(--gray2);
  border-radius: 8px;
  padding: 11px 13px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.f-row input::placeholder,
.f-row textarea::placeholder {
  color: var(--gray3);
}

.f-row input:focus,
.f-row select:focus,
.f-row textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.f-row select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b6966' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 16px;
  padding-right: 36px;
}

.f-row select option {
  background: var(--white);
}

.f-pane {
  display: none;
}

.f-pane.show {
  display: block;
}

.btn-submit {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 15px;
  margin-top: 4px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 86, 54, 0.3);
}

.btn-next {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px;
  margin-top: 4px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-next:hover {
  background: var(--ink2);
}

.form-micro {
  text-align: center;
  font-size: 12px;
  color: var(--gray3);
  margin-top: 10px;
  line-height: 1.5;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
}

.spots-badge {
  background: var(--brand-pale);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--brand-dark);
  font-weight: 600;
}

/* ── WRAPPER ── */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── SECTION BASE ── */
.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--gray1);
}

.section.dark {
  background: var(--ink);
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.sec-tag::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--brand);
}

.sec-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}

.sec-h.white {
  color: #fff;
}

.sec-sub {
  font-size: 18px;
  color: var(--gray4);
  font-weight: 400;
  line-height: 1.65;
  max-width: 540px;
}

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

.centered {
  text-align: center;
}

.centered .sec-sub {
  margin: 0 auto;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  padding: 20px 40px;
  max-width: 1200px;
  width: 90%;
  margin: -40px auto -40px auto;
  position: relative;
  z-index: 10;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: transform 0.3s ease;
}

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

.trust-item .ti-icon {
  color: var(--brand);
  font-size: 16px;
  background: rgba(255, 86, 54, 0.12);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 86, 54, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  aspect-ratio: 1/1;
}

.trust-item:hover .ti-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 86, 54, 0.2);
}

.trust-div {
  display: none;
}

@media (max-width: 950px) {
  .trust-strip {
    border-radius: 20px;
    padding: 24px;
    margin: -30px auto -30px auto;
  }

  .trust-inner {
    justify-content: center;
    gap: 24px;
  }

  .trust-item {
    width: calc(48% - 20px);
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .trust-inner {
    gap: 16px;
  }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ── PROBLEM ── */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.prob-card {
  background: var(--white);
  border: 1.5px solid var(--gray2);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.prob-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}

.prob-card:hover {
  border-color: rgba(255, 86, 54, 0.2);
  transform: translateY(-3px);
}

.prob-card:hover::after {
  transform: scaleY(1);
}

.prob-emoji {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  color: var(--brand);
}

.prob-card h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.prob-card p {
  font-size: 14px;
  color: var(--gray4);
  line-height: 1.6;
}

.prob-cost {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-pale);
  border: 1px solid var(--brand-border);
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.03em;
}

.prob-cta-row {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--ink);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.prob-cta-row p {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: var(--display);
  letter-spacing: -0.02em;
  padding-bottom: 0;
}

.prob-cta-row p span {
  color: var(--brand);
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-brand:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 86, 54, 0.25);
}

.btn-brand svg {
  transition: transform 0.2s;
}

.btn-brand:hover svg {
  transform: translateX(3px);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(255, 86, 54, 0.2) 100%);
}

.step-col {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.step-col:nth-child(1) .step-circle {
  background: var(--brand);
  color: #fff;
}

.step-col:nth-child(2) .step-circle {
  background: var(--white);
  color: var(--brand);
  border: 2px solid rgba(255, 86, 54, 0.3);
}

.step-col:nth-child(3) .step-circle {
  background: var(--white);
  color: var(--brand);
  border: 2px solid rgba(255, 86, 54, 0.3);
}

.step-col:nth-child(4) .step-circle {
  background: var(--ink);
  color: #fff;
}

.step-col h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.step-col p {
  font-size: 14px;
  color: var(--gray4);
  line-height: 1.6;
}

.step-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-pale);
  border: 1px solid var(--brand-border);
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.final-cta {
  background: var(--ink);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 86, 54, 0.07) 0%, transparent 70%);
}

.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.08;
}

.final-cta h2 .acc {
  color: var(--brand);
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 17px 36px;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.02em;
}

.btn-large:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 86, 54, 0.3);
}

.btn-ghost-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  padding: 17px 28px;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost-w:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
  position: relative;
}

/* ── FAQ ── */
.faq-section {
  padding: 72px 0;
  background: var(--gray1);
}

.faq-wrap {
  max-width: 740px;
  margin: 0 auto;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--gray2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--brand);
}

.faq-q.open {
  color: var(--brand);
}

.faq-icon {
  font-size: 18px;
  color: var(--gray3);
  transition: transform 0.3s;
  line-height: 1;
  flex-shrink: 0;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-body-inner {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--gray4);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 40px 5% 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner .logo {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ── MOBILE STICKY ── */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--ink);
  border-top: 2px solid var(--brand);
  padding: 12px 5%;
}

.mob-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
}

.mob-bar a:hover {
  background: var(--brand-dark);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.d1 {
  transition-delay: 0.1s;
}

.reveal.d2 {
  transition-delay: 0.2s;
}

.reveal.d3 {
  transition-delay: 0.3s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero {
    background: #0C0C0C;
    background: linear-gradient(180deg, rgba(12, 12, 12, 1) 50%, rgba(255, 255, 255, 1) 50%);
  }

  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps-row {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-left: -5.55%;
    margin-right: -5.55%;
    padding-left: 5.55%;
    padding-right: 5.55%;
    padding-bottom: 24px;
    padding-top: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .steps-row::-webkit-scrollbar {
    display: none;
  }

  .step-col {
    width: 45%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .steps-row::before {
    display: none;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 60px 5% 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 1) 60%, rgba(255, 255, 255, 1) 60%)
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .step-col {
    width: 65%;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn-large,
  .btn-ghost-w {
    width: 100%;
    justify-content: center;
  }

  .mob-bar {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }

  .topbar-phone {
    display: none;
  }
}

.topbar .custom-logo-link img {
  max-height: 56px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0;
}

.footer-inner .custom-logo-link img {
  max-height: 40px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0;
}



/* ── CONTACT FORM 7 OVERRIDES (Animated & Compact) ── */
.form-card-body .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 0px;
  justify-content: center;
}

.form-card-body .wpcf7-form p {
  flex: 1 1 calc(50% - 6px);
  min-width: 140px;
  margin-bottom: 0;
  animation: formFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

/* Stagger animations */
.form-card-body .wpcf7-form p:nth-child(1) {
  animation-delay: 0.1s;
}

.form-card-body .wpcf7-form p:nth-child(2) {
  animation-delay: 0.15s;
}

.form-card-body .wpcf7-form p:nth-child(3) {
  animation-delay: 0.2s;
}

.form-card-body .wpcf7-form p:nth-child(4) {
  animation-delay: 0.25s;
}

.form-card-body .wpcf7-form p:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Full width for textareas, submit buttons, and acceptance checkboxes */
.form-card-body .wpcf7-form p:has(textarea),
.form-card-body .wpcf7-form p:has(input[type="submit"]),
.form-card-body .wpcf7-form p:has(.wpcf7-acceptance) {
  flex: 1 1 100%;
}

.form-card-body .wpcf7-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray4);
  margin-bottom: 6px;
}

.form-card-body .wpcf7-form-control-wrap {
  margin-bottom: 10px;
}

.form-card-body .wpcf7-form-control.wpcf7-text,
.form-card-body .wpcf7-form-control.wpcf7-email,
.form-card-body .wpcf7-form-control.wpcf7-textarea,
.form-card-body .wpcf7-form-control.wpcf7-select,
.form-card-body .wpcf7-form-control.wpcf7-number {
  width: 100%;
  background: var(--gray1);
  border: 1.5px solid var(--gray2);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

/* Glow & Lift on Focus */
.form-card-body .wpcf7-form-control:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 6px 16px rgba(255, 86, 54, 0.12), 0 0 0 3px var(--brand-glow);
  transform: translateY(-2px);
}

/* Premium Submit Button */
.form-card-body .wpcf7-submit {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 16px;
  margin-top: 4px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}

.form-card-body .wpcf7-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 86, 54, 0.35);
}

.form-card-body .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 86, 54, 0.2);
}

.form-card-body .wpcf7-spinner {
  margin-top: 10px;
}

.form-card-body .wpcf7-form br {
  display: none;
}

.form-card-body .wpcf7-form-control.wpcf7-textarea {
  height: 100px !important;
}

@media (max-width: 1366px) and (min-width: 1200px) {
  .hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
  }

  .hero-bullet {
    gap: 10px;
    font-size: 14px;
  }

  .hero-wrap {
    padding-bottom: 60px;
  }
}