/* ==========================================================================
   AppleTree Business Services — Lead Magnet Site
   ========================================================================== */

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

:root {
  --color-forest-950: #10231a;
  --color-forest-900: #16301f;
  --color-forest-800: #1e3d27;
  --color-forest-700: #2c5236;
  --color-forest-600: #3f7a54;
  --color-forest-500: #58966b;
  --color-forest-400: #7db28c;
  --color-forest-300: #a3c7ad;
  --color-forest-100: #e4efe6;
  --color-cream: #faf7f0;
  --color-cream-soft: #f3efe4;
  --color-ink: #1a2420;
  --color-ink-soft: #445048;
  --color-white: #ffffff;
  --color-border: rgba(26, 36, 32, 0.1);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1440px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-card: 0 1px 2px rgba(16, 35, 26, 0.04), 0 12px 32px -12px rgba(16, 35, 26, 0.16);
  --shadow-card-lg: 0 4px 8px rgba(16, 35, 26, 0.04), 0 24px 60px -16px rgba(16, 35, 26, 0.22);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-forest-600);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-forest-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--color-forest-600);
  flex-shrink: 0;
}
.eyebrow--light {
  color: var(--color-white);
}
.eyebrow--light::before {
  background: var(--color-forest-300);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-forest-700);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-forest-800); }
.btn-primary-light {
  background: var(--color-white);
  color: var(--color-forest-900);
}
.btn-primary-light:hover { background: var(--color-forest-100); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(0,0,0,0.04); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--color-white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-dark {
  background: var(--color-forest-900);
  color: var(--color-white);
}
.btn-dark:hover { background: var(--color-forest-800); }
.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink-soft);
  transition: color 150ms var(--ease-out);
}
.nav-links a:hover { color: var(--color-forest-700); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 22px; min-height: 44px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  position: relative;
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--color-forest-950);
  color: var(--color-white);
  padding-top: 96px;
  padding-bottom: 180px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,35,26,0.5) 0%, rgba(16,35,26,0.7) 45%, rgba(16,35,26,0.96) 100%),
    linear-gradient(90deg, rgba(16,35,26,0.92) 0%, rgba(16,35,26,0.7) 38%, rgba(16,35,26,0.3) 65%, rgba(16,35,26,0.12) 100%);
  z-index: 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 720px;
  text-align: left;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero-stars svg { color: var(--color-forest-300); display: block; }
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--color-white);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-forest-300);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -120px;
  z-index: 3;
  width: min(920px, calc(100% - 48px));
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hero-stat {
  padding: 0 28px;
  border-right: 1px solid var(--color-border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--color-forest-800);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-sub { font-size: 13px; color: var(--color-ink-soft); }

.hero-spacer {
  height: 200px;
}

/* ---- Section basics ---- */
section { position: relative; }
.section-pad { padding: 120px 0 100px; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin-top: 18px;
  color: var(--color-forest-950);
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--color-ink-soft);
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  max-width: none;
}
.section-head--split .section-head-title { max-width: 560px; }
.section-head--split p {
  max-width: 360px;
  margin-top: 0;
  text-align: right;
}

/* ---- Problem cards ---- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.problem-card .num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-forest-700);
  margin-bottom: 20px;
  display: block;
}
.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-forest-950);
}
.problem-card p { color: var(--color-ink-soft); font-size: 15px; }

/* ---- About / photo-card split ---- */
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 140px;
}
.about-photo-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
}
.about-float-card {
  position: absolute;
  right: 28px;
  bottom: 0;
  z-index: 2;
  width: min(400px, calc(100% - 56px));
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-lg);
  padding: 28px;
}
.about-float-card .badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.avatar-stack { display: flex; }
.avatar-stack .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -10px;
  background: var(--color-forest-400);
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-forest-700);
  background: var(--color-forest-100);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.online-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-forest-600);
}
.about-float-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--color-forest-950); }
.about-float-card p { font-size: 14px; color: var(--color-ink-soft); margin-bottom: 18px; }

.about-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-border);
}
.about-stat {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.about-stat:nth-child(odd) { padding-right: 24px; }
.about-stat:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--color-border); }
.about-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--color-forest-800);
  line-height: 1;
}
.about-stat-label { margin-top: 8px; font-size: 14px; color: var(--color-ink-soft); }

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-forest-700);
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--color-forest-950); }
.service-card p { font-size: 15px; color: var(--color-ink-soft); }

/* ---- Framework / how it works ---- */
.framework-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.framework-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}
.framework-item:last-child { border-bottom: 1px solid var(--color-border); }
.framework-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-forest-700);
}
.framework-item h3 { font-size: 21px; margin-bottom: 8px; color: var(--color-forest-950); }
.framework-item p { color: var(--color-ink-soft); font-size: 15px; max-width: 620px; }

/* ---- Testimonials ---- */
.testimonial-band {
  background: var(--color-forest-950);
  color: var(--color-white);
}
.testimonial-track-wrap { overflow: hidden; margin: 0 -24px; padding: 0 24px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--color-forest-300);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.testimonial-card p.quote {
  font-size: 15.5px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  min-height: 66px;
}
.testimonial-meta { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.testimonial-meta strong { color: var(--color-white); display: block; font-size: 14.5px; margin-bottom: 2px; }

/* ---- Why us ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-item .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-forest-600);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-item p { font-size: 15.5px; color: var(--color-ink); font-weight: 600; }
.why-photo { border-radius: var(--radius-lg); overflow: hidden; }
.why-photo img { width: 100%; height: 480px; object-fit: cover; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-forest-950);
  min-height: 48px;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-forest-800);
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms var(--ease-out);
}
.faq-answer-inner {
  padding: 0 4px 24px;
  font-size: 15.5px;
  color: var(--color-ink-soft);
  max-width: 640px;
}
.faq-item.is-open .faq-answer { max-height: 260px; }

/* ---- Final CTA / contact ---- */
.final-cta {
  background: var(--color-forest-900);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.final-cta h2 { color: var(--color-white); font-size: clamp(1.8rem, 3vw, 2.4rem); max-width: 480px; }
.final-cta p { color: rgba(255,255,255,0.75); margin-top: 12px; max-width: 460px; }
.final-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { margin-top: 18px; }
.contact-detail-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail .icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--color-forest-100); color: var(--color-forest-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 15px; margin-bottom: 3px; }
.contact-detail span { font-size: 14.5px; color: var(--color-ink-soft); }

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--color-ink); }
.form-field .req { color: var(--color-forest-700); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-ink);
  background: var(--color-cream);
  transition: border-color 150ms var(--ease-out);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-forest-600);
  outline: none;
}
.form-checkboxes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.form-checkbox { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--color-ink-soft); }
.form-checkbox input { width: 17px; height: 17px; accent-color: var(--color-forest-600); }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--color-ink-soft); text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--color-forest-100);
  color: var(--color-forest-800);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-success.is-visible { display: flex; }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-forest-950);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 58px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9); margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.65); transition: color 150ms; }
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--color-white); }

/* ---- Scroll reveal ---- */
.pre-reveal { opacity: 0; transform: translateY(24px); transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out); }
.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-photo img { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head--split p { text-align: left; max-width: none; }
  .nav-links, .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-cream);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
  }
  .nav-links.is-open a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--color-border); }
  .nav-links.is-open a:last-child { border-bottom: none; }

  .hero-card { grid-template-columns: 1fr; gap: 20px; bottom: -220px; padding: 24px; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--color-border); padding: 0 0 20px; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-stat:not(:first-child) { padding-top: 20px; }
  .hero-spacer { height: 300px; }

  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat:nth-child(even) { padding-left: 0; border-left: none; }
  .about-float-card { position: static; width: 100%; margin-top: -80px; }
  .about-photo-wrap { padding-bottom: 0; }
  .about-photo-wrap img { height: 320px; }

  .framework-item { grid-template-columns: 1fr; gap: 10px; }
  .final-cta { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
  .final-cta-actions { width: 100%; }
  .final-cta-actions .btn { width: 100%; }

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

@media (max-width: 640px) {
  .section-pad { padding: 80px 0 64px; }
  .hero { padding-top: 88px; padding-bottom: 260px; }
  .hero-actions .btn { width: 100%; }
  .contact-form { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
