/* ===========================
   M&J Solar Screens - Stylesheet
   Clean, modern, responsive
   =========================== */

:root {
  --primary: #1e3a5f;
  --primary-dark: #15294a;
  --primary-light: #2d5a8a;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fcd34d;
  --bg: #fafafa;
  --bg-alt: #ffffff;
  --bg-dark: #0f172a;
  --text: #1a202c;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --success: #10b981;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 40px -10px rgba(0,0,0,.15);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --container: 1200px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

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

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: .5rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text-light); }

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  font-size: .95rem;
  box-shadow: var(--shadow);
}
.logo-img {
  height: 140px;
  width: auto;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a.active { background: rgba(30,58,95,.06); color: var(--primary); }
.nav-cta { margin-left: 8px; }
.nav-social { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.nav-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: white !important;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-social-link[aria-label="Facebook"] { background: #1877F2; }
.nav-social-link[aria-label="Facebook"]:hover { background: #0e5fc0; transform: translateY(-2px); }
.nav-social-link[aria-label="Instagram"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.nav-social-link[aria-label="Instagram"]:hover { opacity: .85; transform: translateY(-2px); }
.nav-social-link svg { width: 22px; height: 22px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,158,11,.45);
  color: white;
}
.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--accent); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,.18), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,58,95,.10), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(245,158,11,.12);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: .9rem;
}
.hero-trust-item svg { width: 20px; height: 20px; color: var(--success); }

.hero-visual {
  position: relative;
}
.hero-illus {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(30,58,95,.15));
}

/* ===========================
   STATS BAR
   =========================== */
.stats {
  background: var(--primary);
  padding: 50px 0;
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}

/* ===========================
   SECTIONS
   =========================== */
section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-head p { font-size: 1.1rem; margin-top: 10px; }
.bg-alt { background: var(--bg-alt); }

/* ===========================
   FEATURE GRID (benefits)
   =========================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-alt);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.05));
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .98rem; }

/* ===========================
   SERVICES
   =========================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: white;
}
.service-card-img.alt-1 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.service-card-img.alt-2 { background: linear-gradient(135deg, #2d5a8a, #1e3a5f); }
.service-card-img.alt-3 { background: linear-gradient(135deg, #0891b2, #0e7490); }
.service-card-img svg { width: 72px; height: 72px; opacity: 0.9; }
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { flex: 1; }
.service-card .btn-ghost { margin-top: 18px; align-self: flex-start; }

/* ===========================
   STEPS
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.step {
  text-align: center;
  padding: 24px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(245,158,11,.3);
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.gallery-item.alt-1 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.gallery-item.alt-2 { background: linear-gradient(135deg, #2d5a8a, #1e3a5f); }
.gallery-item.alt-3 { background: linear-gradient(135deg, #0891b2, #0e7490); }
.gallery-item.alt-4 { background: linear-gradient(135deg, #475569, #1e293b); }
.gallery-item.alt-5 { background: linear-gradient(135deg, #be7c3a, #92400e); }
.gallery-item-label {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(0,0,0,.5);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .85rem;
  backdrop-filter: blur(8px);
  text-align: left;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ===== FABRIC SWATCHES ===== */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.swatch-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-alt);
  transition: var(--transition);
}
.swatch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.swatch-color {
  height: 110px;
  width: 100%;
}
.swatch-body {
  padding: 14px 16px 16px;
}
.swatch-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 4px;
}
.swatch-desc {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.4;
}
.swatch-badges {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.swatch-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-light);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.stars { color: var(--accent); margin-bottom: 16px; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 1.02rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center;
  color: white; font-weight: 700;
}
.author-name { font-weight: 700; color: var(--text); }
.author-loc { font-size: .85rem; color: var(--text-muted); }

/* ===========================
   CTA
   =========================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%);
}
.cta-band h2, .cta-band p { color: white; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); margin: 12px auto 30px; max-width: 580px; }
.cta-band .btn { position: relative; }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
footer h4 { color: white; margin-bottom: 18px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em;}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer a { color: rgba(255,255,255,.65); font-size: .93rem; }
footer a:hover { color: var(--accent-light); }
.footer-about p { color: rgba(255,255,255,.65); font-size: .93rem; max-width: 320px; margin-top: 12px; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .93rem;
}
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.65); margin-left: 16px; }
.social-links { display: flex; gap: 10px; align-items: center; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: white !important;
  margin-left: 0 !important;
  transition: var(--transition);
  flex-shrink: 0;
}
.social-links a[aria-label="Facebook"] { background: #1877F2; }
.social-links a[aria-label="Facebook"]:hover { background: #0e5fc0; transform: translateY(-3px); }
.social-links a[aria-label="Instagram"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-links a[aria-label="Instagram"]:hover { opacity: .85; transform: translateY(-3px); }
.social-links svg { width: 22px; height: 22px; }
.social-label { color: rgba(255,255,255,.6); font-size: .8rem; margin-right: 4px; white-space: nowrap; }

/* ===========================
   PAGE HEADER (sub pages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 80px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%);
}
.page-header h1 { color: white; margin-bottom: 14px; position: relative;}
.page-header p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 640px; margin: 0 auto; position: relative;}
.breadcrumb {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--accent-light); }

/* ===========================
   CONTENT BLOCKS
   =========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img, .two-col .placeholder-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.placeholder-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: 500;
}
.placeholder-img.amber { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

/* ===========================
   FORM
   =========================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .92rem;
  color: var(--text);
}
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .98rem;
  font-family: inherit;
  background: var(--bg-alt);
  color: var(--text);
  transition: var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,158,11,.15);
}
textarea { resize: vertical; min-height: 130px; }

.contact-card {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-info-list { list-style: none; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border: none; }
.contact-info-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(245,158,11,.12);
  color: var(--accent-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-item-icon svg { width: 22px; height: 22px; }
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { font-size: .95rem; color: var(--text-light); }
.contact-info-item a { color: var(--text-light); }

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--accent); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(245,158,11,.12);
  color: var(--accent-dark);
  display: grid; place-items: center;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--text-light);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 22px; }

/* ===========================
   BADGES / LIST
   =========================== */
.check-list {
  list-style: none;
}
.check-list li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 20px; height: 20px;
  background: var(--success);
  border-radius: 50%;
  display: grid; place-items: center;
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 6px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

/* Form success message */
.form-success {
  display: none;
  padding: 16px;
  background: rgba(16,185,129,.1);
  border: 1px solid var(--success);
  color: var(--success);
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 968px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { width: 100%; padding: 12px 14px; }
  .nav-toggle { display: block; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  section { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}
