/* ==========================================================================
   EaseHomeFix — Stylesheet
   Green & white, minimalistic, production-quality.
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --brand-50:  #f0faf3;
  --brand-100: #dcf3e3;
  --brand-200: #bce6cb;
  --brand-300: #8ad3a8;
  --brand-400: #54b87d;
  --brand-500: #2f9c5e;
  --brand-600: #1f7d49;
  --brand-700: #1a643c;
  --brand-800: #175033;
  --brand-900: #13422c;
  --brand-950: #0a2516;

  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --amber: #f59e0b;
  --red: #dc2626;

  --radius: 16px;
  --radius-sm: 12px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06);
  --shadow: 0 4px 16px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
  --brand-shadow: 0 8px 24px rgba(31,125,73,.25);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-700);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
svg { width: 1em; height: 1em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 80px 0; }
@media (min-width: 640px) { .section { padding: 112px 0; } }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-2xl { max-width: 640px; }
.maxw-3xl { max-width: 768px; }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-600);
}
.h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--slate-900);
  margin-top: 12px;
}
.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin-top: 16px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--brand-shadow);
}
.btn-primary:hover { background: var(--brand-700); box-shadow: 0 12px 32px rgba(31,125,73,.35); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-700);
}
.btn-outline:hover { border-color: var(--brand-300); color: var(--brand-600); }
.btn-white {
  background: #fff;
  color: var(--brand-700);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--brand-50); transform: translateY(-1px); }
.btn svg { width: 20px; height: 20px; transition: transform .25s ease; }
.btn:hover svg.arrow { transform: translateX(4px); }

/* ---------- Icons ---------- */
.icon-box {
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.icon-box svg { width: 24px; height: 24px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: all .3s ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-badge {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--brand-shadow);
}
.logo-badge svg { width: 20px; height: 20px; }
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--slate-900);
}
.logo-text span { color: var(--brand-600); }

.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--brand-600); }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.header-actions { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--slate-700);
  transition: color .2s;
}
.header-phone:hover { color: var(--brand-600); }
.header-phone svg { width: 16px; height: 16px; color: var(--brand-600); }

.menu-toggle {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--slate-700);
  transition: background .2s;
}
.menu-toggle:hover { background: var(--slate-100); }
.menu-toggle svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  border-top: 1px solid var(--slate-100);
  background: #fff;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: block; }
.mobile-nav .container { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; padding-bottom: 16px; }
.mobile-nav a {
  padding: 12px 12px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: var(--brand-50); color: var(--brand-600); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--brand-50), #fff);
  padding: 128px 0 80px;
}
@media (min-width: 1024px) { .hero { padding: 144px 0 80px; } }
.hero::before {
  content: ''; position: absolute; right: -128px; top: -80px;
  width: 384px; height: 384px; border-radius: 50%;
  background: rgba(188,230,203,.4); filter: blur(80px); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: -160px; top: 160px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(220,243,227,.6); filter: blur(80px); pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--brand-200);
  background: rgba(255,255,255,.8);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: .75rem; font-weight: 600;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}
.badge-pill svg { width: 16px; height: 16px; }

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--slate-900);
  margin-top: 24px;
}
.hero h1 .accent { display: block; color: var(--brand-600); }
.hero p.hero-lead {
  font-size: 1.125rem; line-height: 1.7; color: var(--slate-600);
  max-width: 560px; margin-top: 24px;
}
.hero-cta-row {
  display: flex; flex-direction: column; gap: 12px; margin-top: 32px;
}
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; align-items: center; } }

.hero-social {
  display: flex; align-items: center; gap: 12px; margin-top: 32px;
}
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-500));
}
.avatars span + span { margin-left: -8px; }
.stars { display: flex; gap: 2px; color: var(--amber); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.hero-social-text { font-size: .875rem; font-weight: 600; color: var(--slate-600); }

.hero-image-wrap { position: relative; }
@media (min-width: 1024px) { .hero-image-wrap { padding-left: 32px; } }
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
@media (min-width: 640px) { .hero-image { aspect-ratio: 5/4; } }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,22,.3), transparent);
}
.floating-card {
  position: absolute; bottom: -24px; left: -8px;
  width: 240px;
  background: #fff; border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 640px) { .floating-card { left: -24px; } }
.floating-card-inner { display: flex; align-items: center; gap: 12px; }
.floating-card .icon-box { width: 44px; height: 44px; background: var(--brand-100); color: var(--brand-600); }
.floating-card p.fc-title { font-size: .875rem; font-weight: 700; color: var(--slate-900); }
.floating-card p.fc-sub { font-size: .75rem; color: var(--slate-500); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border: 1px solid var(--slate-100);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-top: 80px;
}
@media (min-width: 640px) { .stats-strip { grid-template-columns: repeat(4,1fr); padding: 32px; } }
.stat { text-align: center; }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.875rem; font-weight: 800; color: var(--brand-600);
}
@media (min-width: 640px) { .stat-value { font-size: 2.25rem; } }
.stat-label { font-size: .875rem; font-weight: 500; color: var(--slate-500); margin-top: 4px; }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
}
.service-img { position: relative; height: 192px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,37,22,.5), transparent); }
.service-img .icon-box {
  position: absolute; left: 16px; top: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.95); color: var(--brand-600);
  box-shadow: var(--shadow-sm);
}
.service-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem; font-weight: 700; line-height: 1.4;
  color: var(--slate-900);
}
.service-body p.svc-desc { font-size: .875rem; line-height: 1.6; color: var(--slate-600); margin-top: 8px; }
.service-features { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.service-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: var(--slate-600); }
.service-features svg { width: 16px; height: 16px; color: var(--brand-500); flex-shrink: 0; margin-top: 2px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 600; color: var(--brand-600);
  margin-top: 20px; transition: color .2s;
}
.service-link:hover { color: var(--brand-700); }
.service-link svg { width: 16px; height: 16px; transition: transform .25s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ==========================================================================
   Why Choose Us (dark)
   ========================================================================== */
.why-us {
  position: relative; overflow: hidden;
  background: var(--brand-950); color: #fff;
}
.why-us::before, .why-us::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.why-us::before { right: -80px; top: 40px; width: 288px; height: 288px; background: rgba(31,125,73,.2); }
.why-us::after { left: -80px; bottom: 0; width: 288px; height: 288px; background: rgba(47,156,94,.1); }
.why-us .container { position: relative; }
.why-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.why-us .eyebrow { color: var(--brand-400); }
.why-us .h2 { color: #fff; }
.why-us .lead { color: rgba(220,243,227,.8); max-width: 480px; }
.why-image { margin-top: 32px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.why-image img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }

.reasons-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
.reason-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: background .25s;
}
.reason-card:hover { background: rgba(255,255,255,.1); }
.reason-card .icon-box { width: 48px; height: 48px; background: rgba(47,156,94,.2); color: var(--brand-300); }
.reason-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 700; margin-top: 16px; }
.reason-card p { font-size: .875rem; line-height: 1.6; color: rgba(220,243,227,.7); margin-top: 8px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process { background: var(--brand-50); }
.process-grid { display: grid; gap: 24px; margin-top: 56px; }
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4,1fr); } }

.process-step { position: relative; }
.process-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s;
}
.process-card:hover { box-shadow: var(--shadow); }
.process-head { display: flex; align-items: center; gap: 16px; }
.process-head .icon-box { width: 48px; height: 48px; background: var(--brand-600); color: #fff; box-shadow: var(--brand-shadow); }
.process-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem; font-weight: 800; color: var(--brand-100);
}
.process-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--slate-900); margin-top: 16px; }
.process-card p { font-size: .875rem; line-height: 1.6; color: var(--slate-600); margin-top: 8px; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-section { background: #fff; padding: 48px 0; }
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  border-radius: 24px; padding: 48px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(19,66,44,.2);
}
@media (min-width: 640px) { .cta-banner { padding: 64px 48px; } }
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none;
}
.cta-banner::before { right: -64px; top: -64px; width: 256px; height: 256px; background: rgba(255,255,255,.1); }
.cta-banner::after { bottom: -80px; left: -40px; width: 256px; height: 256px; background: rgba(84,184,125,.2); }
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 800; color: #fff;
}
.cta-banner p { font-size: 1.125rem; color: rgba(240,250,243,.9); max-width: 560px; margin: 16px auto 0; }
.cta-banner .btn { margin-top: 32px; }

/* ==========================================================================
   Enquiry Form
   ========================================================================== */
.enquiry { background: linear-gradient(to bottom, #fff, var(--brand-50)); position: relative; overflow: hidden; }
.enquiry::before { content: ''; position: absolute; right: -96px; top: 40px; width: 320px; height: 320px; border-radius: 50%; background: rgba(188,230,203,.3); filter: blur(80px); pointer-events: none; }
.enquiry .container { position: relative; }
.enquiry-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .enquiry-grid { grid-template-columns: 2fr 3fr; gap: 56px; } }

.enquiry-info .list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.enquiry-info .list-item { display: flex; align-items: center; gap: 12px; }
.enquiry-info .list-item .icon-box { width: 28px; height: 28px; background: var(--brand-100); color: var(--brand-600); }
.enquiry-info .list-item .icon-box svg { width: 16px; height: 16px; }
.enquiry-info .list-item span { font-size: .875rem; font-weight: 500; color: var(--slate-700); }

.contact-card {
  margin-top: 32px; border: 1px solid var(--slate-100); background: #fff;
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm);
}
.contact-card p.cc-label { font-size: .875rem; font-weight: 600; color: var(--slate-900); }
.contact-card a.cc-phone {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: var(--brand-600); margin-top: 4px;
}
.contact-card p.cc-hours { font-size: .75rem; color: var(--slate-500); margin-top: 4px; }

.form-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: 24px; padding: 24px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .form-card { padding: 32px; } }
.form-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 0; }
.field-label {
  display: flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 600; color: var(--slate-700);
  margin-bottom: 6px;
}
.field-label svg { width: 16px; height: 16px; color: var(--brand-500); }
.field-label .req { color: var(--brand-600); }

.field-input, .field-select, .field-textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .875rem;
  color: var(--slate-800);
  transition: all .2s;
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--slate-400); }
.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47,156,94,.2);
}
.field-input.has-error, .field-select.has-error, .field-textarea.has-error {
  border-color: var(--red); background: rgba(254,226,226,.4);
}
.field-input.has-error:focus, .field-select.has-error:focus, .field-textarea.has-error:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
}
.field-error { font-size: .75rem; font-weight: 500; color: var(--red); margin-top: 6px; }

.field-textarea { min-height: 96px; resize: vertical; }

.form-note { font-size: .75rem; color: var(--slate-400); text-align: center; margin-top: 16px; }

.alert {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: var(--radius-sm); padding: 16px;
  font-size: .875rem; margin-top: 20px;
}
.alert-error { border: 1px solid #fecaca; background: #fef2f2; color: #b91c1c; }
.alert-error svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.alert-success { border: 1px solid var(--brand-200); background: var(--brand-50); color: var(--brand-800); }

.submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--brand-600); color: #fff;
  border-radius: var(--radius-full);
  padding: 16px 28px;
  font-size: 1rem; font-weight: 600;
  box-shadow: var(--brand-shadow);
  transition: all .25s;
  margin-top: 24px;
}
.submit-btn:hover { background: var(--brand-700); box-shadow: 0 12px 32px rgba(31,125,73,.35); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.submit-btn svg { width: 20px; height: 20px; }
.submit-btn .spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.success-card {
  max-width: 576px; margin: 0 auto;
  border: 1px solid var(--brand-100); background: var(--brand-50);
  border-radius: 24px; padding: 48px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.success-icon {
  width: 64px; height: 64px; margin: 0 auto;
  border-radius: 50%; background: var(--brand-600); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--brand-shadow);
}
.success-icon svg { width: 36px; height: 36px; }
.success-card h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--slate-900); margin-top: 24px; }
@media (min-width: 640px) { .success-card h2 { font-size: 1.875rem; } }
.success-card p { color: var(--slate-600); margin-top: 12px; }
.success-card .btn { margin-top: 32px; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-page {
  background: linear-gradient(to bottom, var(--brand-50), #fff);
  padding: 144px 0 88px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .legal-content { padding: 48px; } }
.legal-content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--slate-900);
  margin-top: 12px;
}
.legal-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--slate-900);
  margin-top: 28px;
}
.legal-content p {
  color: var(--slate-600);
  margin-top: 12px;
}
.legal-content a {
  color: var(--brand-600);
  font-weight: 600;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid { display: grid; gap: 28px; margin-top: 56px; }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  display: flex; flex-direction: column;
  background: rgba(240,250,243,.4);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-quote { position: absolute; right: 24px; top: 24px; color: var(--brand-200); }
.testimonial-quote svg { width: 40px; height: 40px; }
.testimonial-stars { display: flex; gap: 2px; color: var(--amber); }
.testimonial-stars svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial-text { font-size: 1rem; line-height: 1.7; color: var(--slate-700); margin-top: 16px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--slate-100); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
  color: #fff; display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .75rem; font-weight: 700;
}
.author-name { font-weight: 600; color: var(--slate-900); font-size: .875rem; }
.author-meta { font-size: .75rem; color: var(--slate-500); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--brand-50); }
.faq-list { max-width: 768px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 24px; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--slate-900);
}
@media (min-width: 640px) { .faq-q { font-size: 1.125rem; } }
.faq-q svg { width: 20px; height: 20px; color: var(--brand-600); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
  opacity: 0;
}
.faq-item.open .faq-a { max-height: 300px; opacity: 1; }
.faq-a p { padding: 0 24px 20px; font-size: .9rem; line-height: 1.7; color: var(--slate-600); }
@media (min-width: 640px) { .faq-a p { font-size: 1rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--brand-950); color: rgba(220,243,227,.8); padding: 64px 0 0; }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social .social-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.05); color: var(--brand-200);
  display: grid; place-items: center;
}
.footer-social .social-icon svg { width: 16px; height: 16px; }

.footer-col h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff;
}
.footer-col ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col a.highlight { color: var(--brand-400); font-weight: 600; }
.footer-col a.highlight:hover { color: var(--brand-300); }
.footer-contact-item { display: flex; align-items: center; gap: 12px; font-size: .875rem; margin-top: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--brand-400); flex-shrink: 0; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 32px 0;
  font-size: .75rem; color: rgba(220,243,227,.6);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: #fff; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.anim-fade-up { animation: fadeUp .7s ease-out forwards; }
.anim-fade-in { animation: fadeIn .8s ease-out forwards; }
.anim-scale-in { animation: scaleIn .5s ease-out forwards; }
