/* Tech2Tots Partners — Premium Business Growth theme */

:root {
  --navy: #0B1232;
  --navy-light: #141d42;
  --royal: #1565D8;
  --royal-dark: #0f4fb8;
  --teal: #26A69A;
  --teal-light: #e6f6f4;
  --gold: #FBC02D;
  --gold-soft: #fef8e0;
  --bg: #FAFBFC;
  --bg-alt: #F3F6FA;
  --card: #FFFFFF;
  --ink: #0B1232;
  --muted: #5a6578;
  --muted-light: #8b95a5;
  --line: #e2e8f0;
  --white: #ffffff;
  --success: #26A69A;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --call: #1565D8;
  --call-dark: #0f4fb8;
  --shadow-sm: 0 2px 12px rgba(11, 18, 50, 0.06);
  --shadow-md: 0 8px 32px rgba(11, 18, 50, 0.1);
  --shadow-lg: 0 16px 48px rgba(11, 18, 50, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 720px;
  --container-wide: 1080px;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

a {
  color: inherit;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: var(--container-wide);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--royal);
  outline-offset: 2px;
}

/* ---------- Scroll fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}

.brand__tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-light);
}

.nav-links {
  display: none;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--royal);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
}

.nav-cta--call {
  background: var(--royal);
  color: var(--white);
}

.nav-cta--call:hover {
  background: var(--royal-dark);
}

.nav-cta--partner {
  display: none;
  background: var(--navy);
  color: var(--white);
}

.nav-cta--partner:hover {
  background: var(--navy-light);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__fallback {
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__video {
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(11, 18, 50, 0.88) 0%,
    rgba(11, 18, 50, 0.72) 50%,
    rgba(21, 101, 216, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 80px 20px 48px;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 680px;
}

.hero .sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21, 101, 216, 0.35);
}

.btn-primary:hover {
  background: var(--royal-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-call {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21, 101, 216, 0.3);
}

.btn-call:hover {
  background: var(--royal-dark);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-sm {
  font-size: 14px;
  padding: 12px 20px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.trust-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--royal);
}

.trust-strip__icon svg {
  width: 18px;
  height: 18px;
}

.trust-strip__label {
  white-space: nowrap;
}

/* ---------- Sections ---------- */
section {
  padding: 72px 0;
}

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

.section-header {
  margin-bottom: 40px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

.section-lead--center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 12px;
}

.eyebrow--blue { color: var(--royal); }
.eyebrow--teal { color: var(--teal); }
.eyebrow--gold { color: var(--gold); }

/* ---------- Split section ---------- */
.split-section {
  display: grid;
  gap: 40px;
  align-items: center;
}

.split-section__content .section-lead {
  margin-bottom: 24px;
}

.split-section__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.check-list {
  list-style: none;
  margin-bottom: 28px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--muted);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2326A69A' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.85);
}

.check-list--light li::before {
  background-color: rgba(255, 255, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ---------- Dashboard mockup ---------- */
.dashboard-mock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.dashboard-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.dashboard-mock__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.dashboard-mock__date {
  font-size: 13px;
  color: var(--muted-light);
}

.dashboard-mock__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dashboard-mock__stat {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px;
}

.dashboard-mock__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-light);
  margin-bottom: 4px;
}

.dashboard-mock__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
}

.dashboard-mock__stat-trend {
  display: block;
  font-size: 11px;
  color: var(--muted-light);
  margin-top: 4px;
}

.dashboard-mock__stat-trend--up {
  color: var(--teal);
}

.dashboard-mock__bar {
  display: block;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.dashboard-mock__bar span {
  display: block;
  height: 100%;
  background: var(--royal);
  border-radius: 2px;
}

.dashboard-mock__payments {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
}

.dashboard-mock__payments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--navy);
}

.dashboard-mock__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: #b8860b;
}

.dashboard-mock__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.dashboard-mock__row:last-child {
  border-bottom: none;
}

.dashboard-mock__amount {
  font-weight: 600;
  color: var(--muted);
}

.dashboard-mock__amount--paid {
  color: var(--teal);
}

/* ---------- Real world ---------- */
.real-world {
  display: grid;
  gap: 32px;
  margin-top: 64px;
  align-items: center;
}

.real-world__photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.real-world__content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.real-world__content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__icon--blue {
  background: rgba(21, 101, 216, 0.1);
  color: var(--royal);
}

.feature-card__icon--teal {
  background: var(--teal-light);
  color: var(--teal);
}

.feature-card__icon--gold {
  background: var(--gold-soft);
  color: #c9a000;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

/* ---------- Benefits grid ---------- */
.benefits-grid {
  display: grid;
  gap: 20px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.benefit-card__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--royal);
  margin-bottom: 12px;
}

.benefit-card__num--gold {
  color: #c9a000;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

/* ---------- AI section ---------- */
.section--ai {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a4a 50%, var(--royal-dark) 100%);
  color: var(--white);
}

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

.section--ai .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.ai-section {
  display: grid;
  gap: 48px;
  align-items: center;
}

.ai-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
}

.ai-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--white);
}

.ai-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(38, 166, 154, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(38, 166, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 166, 154, 0); }
}

.ai-card__item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.ai-card__label {
  color: rgba(255, 255, 255, 0.6);
}

.ai-card__value {
  font-weight: 600;
  color: var(--white);
}

.ai-card__value--highlight {
  color: var(--gold);
}

.ai-card__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-top: 20px;
  padding-top: 16px;
}

.ai-card__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--teal) 0%, var(--royal) 100%);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

/* ---------- Community section ---------- */
.community-section {
  display: grid;
  gap: 40px;
  align-items: center;
}

.community-section__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.community-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0;
}

.community-stat__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--royal);
}

.community-stat--gold .community-stat__value {
  color: #c9a000;
}

.community-stat__label {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Forms ---------- */
.section--register {
  background: var(--bg-alt);
}

.form-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.form-card--light {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.form-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-card .lead {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--muted);
}

.form-section {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  margin: 24px 0 12px;
  color: var(--royal);
  background: var(--bg-alt);
  border-left: 4px solid var(--royal);
  border-radius: 0 8px 8px 0;
}

.form-section:first-of-type {
  margin-top: 0;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  margin-top: 14px;
  color: var(--muted);
}

label .req {
  color: #c62828;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(21, 101, 216, 0.12);
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: var(--navy);
  color: var(--white);
  transition: background 0.15s;
}

.submit-btn:hover {
  background: var(--navy-light);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  margin-top: 12px;
  text-align: center;
  color: var(--muted-light);
}

.form-feedback {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-feedback.success {
  background: var(--teal-light);
  color: #0d6b60;
  border: 1px solid rgba(38, 166, 154, 0.35);
}

.form-feedback.error {
  background: #fef2f0;
  color: #b42318;
  border: 1px solid #f5c4bc;
}

.print-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--royal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

details.optional-block {
  margin-top: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}

details.optional-block summary {
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
}

details.optional-block summary::-webkit-details-marker {
  display: none;
}

.form-step-progress {
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.form-step-progress__bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--royal), var(--teal));
  border-radius: 999px;
  transition: width 0.25s ease;
}

.form-step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.form-step-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-light);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.form-step-nav__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  background: var(--bg-alt);
  color: var(--muted);
}

.form-step-nav__item.is-active {
  color: var(--royal);
  border-color: rgba(21, 101, 216, 0.35);
  background: rgba(21, 101, 216, 0.06);
}

.form-step-nav__item.is-active span,
.form-step-nav__item.is-done span {
  background: var(--royal);
  color: var(--white);
}

.form-step-nav__item.is-done {
  color: var(--teal);
}

.form-step-hint {
  font-size: 12px;
  color: var(--muted-light);
  margin: -4px 0 8px;
}

.form-step-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-step {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: background 0.15s, opacity 0.15s;
}

.btn-step--primary {
  background: var(--royal);
  color: var(--white);
}

.btn-step--primary:hover {
  background: var(--royal-dark);
}

.btn-step--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-step--ghost:hover {
  background: var(--bg-alt);
}

.form-step-actions .submit-btn {
  flex: 1;
  margin-top: 0;
}

.checkbox-fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 14px;
  background: var(--bg-alt);
}

.checkbox-fieldset legend {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 0 6px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  margin: 0;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.agreement-check {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.section--faq {
  padding-bottom: 48px;
}

details.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.15s;
}

details.faq:hover {
  box-shadow: var(--shadow-sm);
}

details.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.faq summary::-webkit-details-marker {
  display: none;
}

details.faq summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--royal);
}

details.faq[open] summary::after {
  content: '–';
}

details.faq p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.65;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal-dark) 100%);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  font-size: 14px;
}

.footer__grid {
  display: grid;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__brand b {
  color: var(--white);
}

footer a {
  color: var(--teal);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer__copyright {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer--sticky-pad {
  padding-bottom: 90px;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(11, 18, 50, 0.08);
}

.sticky-cta .btn {
  flex: 1;
  padding: 13px 10px;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .nav-links {
    display: flex;
  }

  .nav-cta--partner {
    display: inline-flex;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__contact {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-band__actions {
    flex-direction: row;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .real-world {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    align-items: start;
  }

  .footer__brand {
    align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .split-section--reverse .split-section__content {
    order: 1;
  }

  .split-section--reverse .split-section__media {
    order: 2;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card--wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 24px;
    align-items: start;
  }

  .feature-card--wide .feature-card__icon {
    margin-bottom: 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ai-section {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .community-section {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
}

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

  .trust-strip {
    gap: 12px 16px;
    padding: 16px;
  }

  .trust-strip__label {
    font-size: 12px;
  }

  .nav-cta--partner {
    display: none;
  }

  .nav-cta span.hide-mobile {
    display: none;
  }

  .form-step-nav__item {
    font-size: 0;
    padding: 5px 8px;
  }

  .form-step-nav__item span {
    font-size: 11px;
  }

  .form-step-actions {
    flex-direction: column;
  }

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