@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --bg: #faf8f4;
  --bg-2: #f2ede4;
  --bg-dark: #1a1510;
  --fg: #1a1510;
  --fg-inv: #faf8f4;
  --fg-muted: #7a6e60;
  --accent: #e85d3a;
  --accent-hover: #d04e2c;
  --accent-soft: rgba(232, 93, 58, 0.1);
  --accent-warm: #f5a623;
  --surface: #ffffff;
  --surface-dark: #2a221a;
  --border: rgba(26, 21, 16, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 20px rgba(26, 21, 16, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 21, 16, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse at center, rgba(232, 93, 58, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(232, 93, 58, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
  width: fit-content;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 93, 58, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 93, 58, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--fg-muted);
  background: var(--bg-2);
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: translateX(3px);
}

.hero-trust {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-trust-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.hero-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  box-shadow: var(--shadow);
}

.trust-badge svg {
  color: var(--accent);
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--bg-dark);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.55);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 110px 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-header {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  max-width: 680px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.problem-card:hover {
  border-color: rgba(232, 93, 58, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tag-problem { background: rgba(232, 93, 58, 0.1); color: var(--accent); }
.tag-reality { background: rgba(245, 166, 35, 0.12); color: #c47d00; }
.tag-blocker { background: rgba(100, 80, 60, 0.1); color: var(--fg-muted); }
.tag-solution { background: rgba(16, 185, 129, 0.1); color: #087a55; }

.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- PROCESS ---- */
.process {
  padding: 110px 0;
  background: var(--bg-2);
  position: relative;
}

.process-header {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  max-width: 580px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 70px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}

.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--bg-2);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  -webkit-text-stroke: 1.5px rgba(26, 21, 16, 0.08);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---- PRICING ---- */
.pricing {
  padding: 110px 0;
}

.pricing-header {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-sub {
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 60px;
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  position: relative;
}

.price-card:hover {
  border-color: rgba(232, 93, 58, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--accent);
  background: var(--fg);
  color: var(--fg-inv);
  transform: translateY(-8px);
}

.price-card.featured:hover {
  transform: translateY(-11px);
  box-shadow: 0 12px 50px rgba(232, 93, 58, 0.35);
}

.price-card.featured .price-desc,
.price-card.featured .price-features li {
  color: rgba(250, 248, 244, 0.7);
}

.featured-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.price-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.price-card.featured .price-tier {
  color: rgba(250, 248, 244, 0.5);
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.price-amount sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  margin-right: 2px;
}

.price-amount sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
  vertical-align: bottom;
  margin-bottom: 4px;
}

.price-card.featured .price-amount sub {
  color: rgba(250, 248, 244, 0.5);
}

.price-desc {
  color: var(--fg-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.price-card.featured .price-desc {
  border-bottom-color: rgba(255,255,255,0.12);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}

.price-features li {
  font-size: 0.91rem;
  color: var(--fg);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.price-card.featured .price-features li {
  color: var(--fg-inv);
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%23e85d3a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

.price-card.featured .price-features li::before {
  background-color: rgba(232, 93, 58, 0.15);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%23e85d3a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

.price-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.price-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg);
}

.price-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.price-btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 93, 58, 0.3);
}

.price-btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 93, 58, 0.4);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 110px 0;
  background: var(--bg-dark);
  overflow: hidden;
}

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

.testimonials-header {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg-inv);
  max-width: 600px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(232, 93, 58, 0.4);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  color: var(--accent-warm);
  font-size: 1rem;
}

.testimonial-text {
  color: rgba(250, 248, 244, 0.8);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.avatar-coral { background: var(--accent); }
.avatar-amber { background: var(--accent-warm); color: var(--fg); }
.avatar-teal { background: #10b981; }

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fg-inv);
  margin-bottom: 2px;
}

.testimonial-biz {
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.45);
}

/* ---- CONTACT FORM ---- */
.contact {
  padding: 110px 0;
  background: var(--bg-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  padding-top: 8px;
}

.contact-header {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.contact-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  width: 34px;
  height: 34px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.perk-text {
  font-size: 0.92rem;
  line-height: 1.6;
}

.perk-text strong {
  display: block;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.perk-text span {
  color: var(--fg-muted);
}

/* ---- FORM ---- */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 58, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 110, 96, 0.55);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 93, 58, 0.3);
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 93, 58, 0.4);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.visible {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 130px 0;
  text-align: center;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 680px;
  margin: 0 auto 20px;
  color: #fff;
  letter-spacing: -0.03em;
}

.closing p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent);
  padding: 17px 36px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.2);
}

.closing-trust {
  margin-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ---- FOOTER ---- */
footer {
  background: var(--bg-dark);
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--fg-inv);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.4);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(250, 248, 244, 0.75);
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    transform: translateY(0);
  }

  .price-card.featured:hover {
    transform: translateY(-3px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

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

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .problem-card, .step, .price-card {
    padding: 28px 22px;
  }
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
