/* ============================================================
   ABClinic Landing Page — Figma "Area" Design System
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  --lp-accent:    #485C11;
  --lp-accent-lt: #DFECC6;
  --lp-green-mid: #8E9C78;
  --lp-para:      #6F6F6F;
  --lp-divider:   #E9E9E9;
  --lp-muted:     #929292;
  --lp-black:     #000000;
  --lp-white:     #FFFFFF;
  --ff-display:   'Crimson Text', serif;
  --ff-body:      'DM Sans', sans-serif;
  --ff-mono:      'Roboto Mono', monospace;
}

/* === BASE === */
body {
  font-family: var(--ff-body);
  background: var(--lp-white);
  color: var(--lp-black);
  -webkit-font-smoothing: antialiased;
}

/* === NAVIGATION === */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 40px;
}

.lp-nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-nav__logo-icon {
  width: 38px;
  height: 38px;
  background-color: var(--lp-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-nav__logo-icon .material-icons-round {
  font-size: 22px;
  color: var(--lp-white);
}

.lp-nav__logo-name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--lp-black);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.lp-nav__logo-sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--lp-para);
  letter-spacing: -0.1px;
}

.lp-nav__links-pill {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 100px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.lp-nav__links-pill a {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--lp-black);
  text-decoration: none;
  letter-spacing: -0.35px;
  white-space: nowrap;
  transition: color 0.2s;
}

.lp-nav__links-pill a:hover {
  color: var(--lp-accent);
}

.lp-nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* === BUTTONS === */
.lp-btn {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: 1000px;
  padding: 12px 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: -0.35px;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  line-height: 1.4;
  border: none;
  cursor: pointer;
}

.lp-btn:hover { transform: scale(1.02); }

.lp-btn--primary {
  background-color: var(--lp-accent);
  color: var(--lp-white);
}
.lp-btn--primary:hover { opacity: 0.88; }

.lp-btn--secondary {
  background-color: var(--lp-accent-lt);
  color: var(--lp-black);
}

.lp-btn--ghost {
  background-color: transparent;
  color: var(--lp-black);
}
.lp-btn--ghost:hover {
  background-color: rgba(72, 92, 17, 0.07);
  transform: none;
}

.lp-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.lp-btn--full {
  width: 100%;
}

/* === HERO === */
.lp-hero {
  padding-top: 180px;
  padding-bottom: 100px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: var(--lp-white);
}

.lp-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lp-accent-lt);
  color: var(--lp-accent);
  border-radius: 1000px;
  padding: 8px 18px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: -0.12px;
  margin-bottom: 28px;
}

.lp-hero__badge .material-icons-round {
  font-size: 16px;
}

.lp-hero__heading {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -3px;
  color: var(--lp-black);
  margin-bottom: 32px;
}

.lp-hero__credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.lp-hero__cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--lp-para);
  line-height: 1.4;
}

.lp-hero__cred-item .material-icons-round {
  font-size: 20px;
  color: var(--lp-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-hero__body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-para);
  margin-bottom: 36px;
  max-width: 540px;
}

.lp-hero__body strong {
  color: var(--lp-accent);
  font-weight: 700;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-hero__img-wrap {
  position: relative;
}

.lp-hero__img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.lp-hero__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  border-radius: 0 0 30px 30px;
  padding: 32px 24px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-hero__avatars {
  display: flex;
}

.lp-hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.lp-hero__avatar:first-child { margin-left: 0; }

.lp-hero__avatar--a { background: linear-gradient(135deg, #9BB848, #485C11); }
.lp-hero__avatar--b { background: linear-gradient(135deg, #DFECC6, #8E9C78); }
.lp-hero__avatar--c { background: linear-gradient(135deg, #485C11, #2A340A); }

.lp-hero__patient-text {
  color: white;
}

.lp-hero__patient-count {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

.lp-hero__patient-label {
  font-family: var(--ff-mono);
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: -0.12px;
}

/* === SECTION UTILITIES === */
.lp-section {
  padding: 80px 40px;
}

.lp-section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.lp-label {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--lp-accent);
  letter-spacing: -0.12px;
  line-height: 1.4;
  display: block;
}

.lp-h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -1.8px;
  color: var(--lp-black);
}

.lp-h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.6px;
  color: var(--lp-black);
}

.lp-h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.54px;
  color: var(--lp-black);
}

.lp-para {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--lp-para);
  line-height: 1.4;
  letter-spacing: -0.075px;
}

/* === SURVEY SECTION === */
.lp-survey {
  background-color: var(--lp-accent);
  padding: 80px 40px;
}

.lp-survey__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-survey__label {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--lp-accent-lt);
  letter-spacing: -0.12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.4;
}

.lp-survey__label .material-icons-round {
  font-size: 16px;
}

.lp-survey__heading {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: white;
  line-height: 0.9;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 20px;
}

.lp-survey__sub {
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 auto 48px;
}

/* card-hover — used by JS-generated survey cards */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(72, 92, 17, 0.18);
}

/* === SERVICES SECTION === */
.lp-services {
  border-top: 1px solid var(--lp-divider);
  padding: 80px 40px;
  background-color: var(--lp-white);
}

.lp-services__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.lp-services__header {
  margin-bottom: 60px;
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.lp-service-card {
  border-top: 1px solid var(--lp-divider);
  padding: 40px 30px 40px 0;
}

.lp-service-card__icon {
  margin-bottom: 24px;
}

.lp-service-card__icon .material-icons-round {
  font-size: 24px;
  color: var(--lp-accent);
}

.lp-service-card__heading {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.54px;
  color: var(--lp-black);
  margin-bottom: 12px;
}

.lp-service-card__body {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--lp-para);
  line-height: 1.4;
  letter-spacing: -0.075px;
}

/* === AI FEATURES SECTION === */
.lp-features {
  border-top: 1px solid var(--lp-divider);
  padding: 80px 40px;
  background-color: var(--lp-white);
}

.lp-features__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lp-features__text {
  padding-top: 40px;
}

.lp-features__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lp-accent);
  color: var(--lp-white);
  border-radius: 1000px;
  padding: 8px 18px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: -0.12px;
  margin-bottom: 28px;
}

.lp-features__badge .material-icons-round {
  font-size: 16px;
}

.lp-features__list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.lp-features__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--lp-divider);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--lp-black);
  line-height: 1.4;
}

.lp-features__list-item .material-icons-round {
  font-size: 18px;
  color: var(--lp-accent);
  flex-shrink: 0;
}

.lp-features__image {
  border-radius: 30px;
  overflow: hidden;
  height: 580px;
}

.lp-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === TESTIMONIALS SECTION === */
.lp-testimonials {
  border-top: 1px solid var(--lp-divider);
  padding: 80px 40px;
  background-color: var(--lp-white);
}

.lp-testimonials__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.lp-testimonials__header {
  margin-bottom: 60px;
}

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

.lp-testimonial-card {
  border-top: 1px solid var(--lp-divider);
  padding: 40px 0;
}

.lp-testimonial-card__stars {
  font-size: 14px;
  color: var(--lp-accent);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.lp-testimonial-card__quote {
  font-family: var(--ff-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
  color: var(--lp-black);
  margin-bottom: 28px;
}

.lp-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testimonial-card__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-testimonial-card__name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-black);
  line-height: 1.2;
}

.lp-testimonial-card__role {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--lp-accent);
  letter-spacing: -0.12px;
  margin-top: 2px;
}

/* === FOOTER === */
.lp-footer {
  border-top: 1px solid var(--lp-divider);
  padding: 48px 40px 24px;
  background-color: var(--lp-white);
}

.lp-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.lp-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.lp-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-footer__logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--lp-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-footer__logo-icon .material-icons-round {
  font-size: 20px;
  color: var(--lp-white);
}

.lp-footer__brand-name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-black);
  line-height: 1.2;
}

.lp-footer__brand-sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--lp-para);
}

.lp-footer__desc {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--lp-para);
  line-height: 1.5;
}

.lp-footer__col-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--lp-black);
  letter-spacing: -0.35px;
  margin-bottom: 16px;
}

.lp-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--lp-para);
  margin-bottom: 10px;
  line-height: 1.4;
}

.lp-footer__contact-item .material-icons-round {
  font-size: 16px;
  color: var(--lp-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-footer__link {
  display: block;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--lp-para);
  text-decoration: none;
  margin-bottom: 10px;
  letter-spacing: -0.075px;
  transition: color 0.2s;
}

.lp-footer__link:hover {
  color: var(--lp-accent);
}

.lp-footer__bottom {
  border-top: 1px solid var(--lp-divider);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-footer__copy {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--lp-para);
  letter-spacing: -0.12px;
}

/* === SOCIAL SIDEBAR === */
.lp-social {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s, opacity 0.2s;
}

.lp-social-btn .material-icons-round {
  font-size: 18px;
}

.lp-social-btn:hover { transform: scale(1.12); }
.lp-social-btn--fb    { background-color: #1877F2; }
.lp-social-btn--yt    { background-color: #FF0000; }
.lp-social-btn--phone { background-color: var(--lp-accent); }

/* === LANDING ASSISTANT (FAB + chat panel) === */
.lp-assistant {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 0px));
  z-index: 55;
  font-family: var(--ff-body);
}

.lp-assistant__fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--lp-accent);
  color: var(--lp-white);
  box-shadow: 0 4px 20px rgba(72, 92, 17, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-assistant__fab:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(72, 92, 17, 0.45);
}

.lp-assistant__fab .material-icons-round {
  font-size: 28px;
}

.lp-assistant__fab[aria-expanded="true"] {
  background: #33400c;
}

.lp-assistant__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: min(360px, calc(100vw - 32px));
  max-height: min(520px, 70vh);
  background: var(--lp-white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lp-assistant__panel[hidden] {
  display: none !important;
}

.lp-assistant__head {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--lp-accent) 0%, #33400c 100%);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lp-assistant__title {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
}

.lp-assistant__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--lp-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lp-assistant__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lp-assistant__close .material-icons-round {
  font-size: 20px;
}

.lp-assistant__body {
  padding: 12px 14px 16px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  background: #fafafa;
}

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

.lp-assistant__msg {
  max-width: 95%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #1e293b;
}

.lp-assistant__msg--bot {
  align-self: flex-start;
  background: var(--lp-white);
  border: 1px solid var(--lp-divider);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lp-assistant__msg--user {
  align-self: flex-end;
  background: var(--lp-accent-lt);
  color: #1a2e05;
  font-weight: 600;
}

.lp-assistant__msg a {
  color: var(--lp-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-assistant__msg a:hover {
  color: #33400c;
}

.lp-assistant__choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.lp-assistant__choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--lp-divider);
  border-radius: 10px;
  background: var(--lp-white);
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 13px;
  line-height: 1.4;
  color: #334155;
  transition: border-color 0.2s, background 0.2s;
}

.lp-assistant__choice:hover {
  border-color: var(--lp-accent);
  background: #f3f7e8;
}

.lp-assistant__choice-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--lp-accent);
  color: var(--lp-white);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-assistant__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.lp-assistant__btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--lp-divider);
  background: var(--lp-white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--lp-para);
  transition: background 0.2s, border-color 0.2s;
}

.lp-assistant__btn:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
}

.lp-assistant__btn--primary {
  background: var(--lp-accent);
  color: var(--lp-white);
  border-color: var(--lp-accent);
}

.lp-assistant__btn--primary:hover {
  background: #33400c;
  border-color: #33400c;
  color: var(--lp-white);
}

/* === EMPTY STATE (Survey) === */
.empty-state-illustration {
  width: 160px;
  height: 160px;
  margin: 0 auto 2rem;
  position: relative;
  opacity: 0.9;
}

.clipboard-base {
  width: 110px;
  height: 140px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  position: absolute;
  top: 16px;
  left: 24px;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.clipboard-clip {
  width: 48px;
  height: 16px;
  background: var(--lp-accent-lt);
  border-radius: 8px 8px 0 0;
  position: absolute;
  top: 8px;
  left: 56px;
}

.checkbox-line {
  width: 78px;
  height: 6px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  position: absolute;
  left: 40px;
}

/* === FOCUS STATES (Accessibility) === */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .lp-nav { padding-left: 24px; padding-right: 24px; }
  .lp-hero { padding-left: 24px; padding-right: 24px; padding-top: 140px; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-services { padding-left: 24px; padding-right: 24px; }
  .lp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features { padding-left: 24px; padding-right: 24px; }
  .lp-features__inner { grid-template-columns: 1fr; }
  .lp-features__image { height: 380px; }
  .lp-testimonials { padding-left: 24px; padding-right: 24px; }
  .lp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-survey { padding-left: 24px; padding-right: 24px; }
  .lp-footer { padding-left: 24px; padding-right: 24px; }
  .lp-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-nav { padding: 12px 16px; }
  .lp-nav__links-pill { display: none; }
  .lp-hero { padding-top: 110px; padding-left: 16px; padding-right: 16px; padding-bottom: 60px; }
  .lp-hero__heading { font-size: clamp(44px, 10vw, 72px); }
  .lp-services { padding: 60px 16px; }
  .lp-services-grid { grid-template-columns: 1fr; }
  .lp-features { padding: 60px 16px; }
  .lp-testimonials { padding: 60px 16px; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
  .lp-survey { padding: 60px 16px; }
  .lp-footer { padding: 40px 16px 24px; }
  .lp-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .lp-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .lp-social { display: none; }
}
