:root {
  --orange: #F04E23;
  --orange-dark: #D43E16;
  --orange-soft: #FFF1EC;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --yellow: #FFD600;
  --blob: #E6DEF7;
  --blue: #B8D4E8;
  --gray: #6B6B6B;
  --line: #EEE8E4;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', 'Avenir', 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', 'Avenir', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 800; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== NAV ========== */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.topbar-logo img { height: 38px; width: auto; }
.topbar-contact {
  display: flex;
  gap: 24px;
  font-size: .95rem;
  font-weight: 600;
}
.topbar-contact a { display: flex; align-items: center; gap: 8px; }
.topbar-contact svg { width: 18px; height: 18px; color: var(--orange); }
.topbar-contact a:hover { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(240,78,35,.25);
}
.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,78,35,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--white); color: var(--orange); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.nav {
  background: var(--orange);
  color: var(--white);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 16px 22px;
  font-weight: 700;
  font-size: .98rem;
  transition: background .15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(0,0,0,0.15);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  padding: 14px 20px;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--orange) 0%, #FF6A3D 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.15rem;
  opacity: .95;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn { background: var(--white); color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.hero .btn:hover { background: var(--black); color: var(--white); }
.hero-illustration { position: relative; min-height: 380px; }

/* ========== SECTIONS ========== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--orange-soft); }
.section-dark { background: var(--black); color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,.85); }

/* ========== SOCIAL PROOF ========== */
.proof-strip {
  text-align: center;
  padding: 40px 0 10px;
  background: var(--white);
}
.proof-strip .stars { color: var(--yellow); font-size: 1.3rem; letter-spacing: 2px; }
.proof-strip span { font-weight: 700; margin-left: 8px; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0 80px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  position: relative;
}
.review-card .stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 1px; }
.review-card p { margin-bottom: 12px; font-weight: 600; }
.review-card cite { color: var(--gray); font-style: normal; font-size: .9rem; }

/* ========== ABOUT / WHY ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split h2 { margin-bottom: 20px; }
.split .tagline {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: 20px;
}

/* ========== BENEFITS ========== */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  border: 2px solid var(--line);
  transition: transform .2s ease, border-color .2s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--orange-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.benefit-icon svg { width: 32px; height: 32px; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit-card p { font-size: .95rem; color: var(--gray); margin: 0; }

/* ========== URGENCY ========== */
.urgency {
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .3;
}
.urgency h2 { color: var(--white); position: relative; }
.urgency p { position: relative; max-width: 700px; margin: 0 auto 24px; font-size: 1.05rem; }
.urgency .btn { position: relative; }
.urgency-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

/* ========== FORM ========== */
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-card label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .15s;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-card textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  font-size: .85rem;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
}
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .92rem;
}
.trust-strip svg { width: 20px; height: 20px; color: var(--orange); }

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(240,78,35,.3);
}
.step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--gray); font-size: .95rem; }

/* ========== PACKAGES ========== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.pkg-card.featured {
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(240,78,35,.15);
  overflow: visible;
}
.pkg-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pkg-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  padding: 6px 18px;
  font-size: .75rem;
  font-weight: 900;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  z-index: 3;
  border: 2px solid var(--black);
}
.pkg-header {
  background: var(--orange);
  color: var(--white);
  padding: 18px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .95rem;
}
.pkg-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-size { font-size: 2.5rem; font-weight: 900; text-align: center; color: var(--black); line-height: 1; }
.pkg-panels { text-align: center; color: var(--gray); font-weight: 600; margin-bottom: 20px; }
.pkg-features { list-style: none; padding: 0; margin: 0 0 24px; }
.pkg-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
}
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.pkg-body .btn { margin-top: auto; }
.pkg-note { text-align: center; font-size: .8rem; color: var(--gray); margin-top: 10px; }

/* ========== COMMERCIAL ========== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.sector-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.sector-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.sector-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  color: var(--orange);
}
.sector-card h3 { font-size: 1rem; margin: 0; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--gray); font-weight: 600; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--orange), #FF8A5C);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s;
  cursor: pointer;
}
.project-card:nth-child(even) { background: linear-gradient(135deg, var(--black), #3A3A3A); }
.project-card:hover { transform: translateY(-6px); }
.project-card h3 { margin: 0 0 4px; }
.project-card span { opacity: .9; font-size: .9rem; font-weight: 600; }
.project-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { background: var(--black); color: var(--white); padding: 40px; border-radius: 24px; }
.contact-info h3 { color: var(--white); margin-bottom: 20px; }
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info li svg { width: 24px; height: 24px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-info strong { display: block; font-size: .85rem; opacity: .7; font-weight: 600; }
.contact-info a { font-size: 1.1rem; font-weight: 700; }
.contact-info a:hover { color: var(--orange); }

/* ========== CONTACT INFO GRID ========== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.info-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
}
.info-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 34px; height: 34px; }
.info-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.info-link {
  display: block;
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 12px;
  word-break: break-word;
}
a.info-link:hover { color: var(--orange-dark); }
.info-card p { color: var(--gray); font-size: .92rem; margin: 0; }

@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: 1fr; gap: 16px; }
  .info-card { padding: 28px 22px; }
}

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 24px 22px; margin: 0; color: var(--gray); }

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img { height: 44px; margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,.7); font-size: .95rem; }
.footer h4 { font-size: 1rem; margin-bottom: 16px; color: var(--white); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .95rem; transition: color .15s; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ========== CALL CARD ========== */
.call-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  border: 2px solid var(--line);
  position: relative;
  overflow: hidden;
}
.call-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: var(--orange-soft);
  border-radius: 50%;
  z-index: 0;
}
.call-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 160px; height: 160px;
  background: rgba(255,214,0,.25);
  border-radius: 50%;
  z-index: 0;
}
.call-card > * { position: relative; z-index: 1; }
.call-ring {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(240,78,35,.35);
  animation: pulse-ring 2.2s ease-in-out infinite;
}
.call-ring svg { width: 40px; height: 40px; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 10px 30px rgba(240,78,35,.35), 0 0 0 0 rgba(240,78,35,.45); }
  50% { box-shadow: 0 10px 30px rgba(240,78,35,.35), 0 0 0 18px rgba(240,78,35,0); }
}
.call-label {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.call-number {
  display: block;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  transition: color .2s;
}
.call-number:hover { color: var(--orange); }
.call-sub {
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 28px;
}

/* ========== REFERRAL ========== */
.referral {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFC700 100%);
  border-radius: 28px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.referral::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
}
.referral::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(240,78,35,.15);
  border-radius: 50%;
}
.referral-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.referral h2 { color: var(--black); margin-bottom: 12px; }
.referral-amount {
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin: 0 0 12px;
  display: inline-block;
  text-shadow: 4px 4px 0 var(--black);
  letter-spacing: -2px;
}
.referral p { font-size: 1.1rem; color: var(--black); font-weight: 600; margin-bottom: 24px; }
.referral .btn { background: var(--black); color: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.referral .btn:hover { background: var(--orange); }
.referral-illustration { text-align: center; }

/* ========== SECTION DIVIDERS ========== */
.wave {
  display: block;
  width: 100%;
  height: 60px;
}

/* ========== DECORATIVE HERO ========== */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,214,0,.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* ========== FLOATING ANIMATION ========== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(240,78,35,.25); }
  50% { box-shadow: 0 4px 24px rgba(240,78,35,.55); }
}
.hero-illustration svg { animation: float 6s ease-in-out infinite; }
.hero .btn { animation: pulse-glow 2.8s ease-in-out infinite; }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.revealed > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: .3s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: .4s; }

/* ========== UTIL ========== */
.center-cta { text-align: center; margin-top: 40px; }
.mt-40 { margin-top: 40px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .topbar-contact { display: none; }
  .topbar-inner { padding: 10px 0; gap: 10px; }
  .topbar .btn { padding: 10px 16px; font-size: .9rem; }
  .topbar-logo img { height: 32px; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: var(--orange);
    padding: 80px 24px 24px;
    z-index: 99;
    overflow-y: auto;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 20px 24px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 12px;
    text-align: center;
  }
  .nav-links a:hover,
  .nav-links a.active { background: rgba(0,0,0,0.2); }
  .nav-toggle { position: relative; z-index: 100; padding: 12px; }
  .nav-toggle.open svg line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open svg line:nth-child(2) { opacity: 0; }
  .nav-toggle.open svg line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-toggle svg line { transition: .3s; transform-origin: center; }
  .nav-inner { position: relative; justify-content: flex-end; }
  .nav .container { padding: 0 12px; }

  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-illustration { max-width: 360px; margin: 0 auto; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .split,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 36px; }
  .reviews { padding: 30px 0 50px; gap: 16px; }
  .reviews,
  .steps,
  .pkg-grid,
  .project-grid { grid-template-columns: 1fr; gap: 20px; }
  .benefits { grid-template-columns: 1fr 1fr; gap: 14px; }
  .benefit-card { padding: 22px 14px; }
  .benefit-card h3 { font-size: .95rem; }
  .benefit-card p { font-size: .85rem; }
  .sector-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sector-card { padding: 20px 12px; }
  .stats-bar { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: .8rem; }

  .form-card { padding: 24px 20px; border-radius: 18px; }
  .call-card { padding: 40px 24px; border-radius: 20px; }
  .call-ring { width: 72px; height: 72px; }
  .call-ring svg { width: 32px; height: 32px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-card input,
  .form-card select,
  .form-card textarea { padding: 14px; font-size: 16px; }

  .btn { padding: 14px 20px; min-height: 48px; }
  .btn-lg { padding: 16px 24px; font-size: 1rem; }

  .pkg-card.featured { transform: scale(1); margin-top: 18px; }
  .pkg-card.featured:hover { transform: translateY(-6px); }
  .pkg-body { padding: 24px 20px; }
  .pkg-size { font-size: 2.2rem; }

  .urgency { padding: 40px 24px; border-radius: 20px; }
  .urgency h2 { font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer { padding: 50px 0 30px; }

  .referral { padding: 44px 24px; border-radius: 20px; }
  .referral-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .referral-illustration { order: -1; max-width: 220px; margin: 0 auto; }
  .referral-amount { text-shadow: 3px 3px 0 var(--black); }

  .project-card { aspect-ratio: 5/3; }
  .project-card h3 { font-size: 1.1rem; }

  .contact-info { padding: 28px 24px; border-radius: 18px; }
  .contact-info a { font-size: 1.05rem; word-break: break-all; }

  .faq-item summary { padding: 18px 20px; font-size: .95rem; }
  .faq-item p { padding: 0 20px 20px; font-size: .92rem; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .benefits { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; gap: 20px; }
  .urgency { padding: 32px 20px; }
  .topbar-inner { padding: 8px 0; }
  .topbar .btn { padding: 8px 14px; font-size: .82rem; }
  .topbar-logo img { height: 28px; }
  .container { padding: 0 16px; }
}

/* Accessibility: respect motion prefs */
@media (prefers-reduced-motion: reduce) {
  .hero-illustration svg,
  .hero .btn { animation: none; }
  .reveal, .reveal-stagger > * { transition: none; opacity: 1; transform: none; }
}
