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

:root {
  --primary: #1a7a4e;
  --primary-dark: #145f3c;
  --primary-light: #e8f5ee;
  --primary-bg: #f0faf5;
  --accent: #0e6ba8;
  --accent-light: #e6f2fa;
  --text: #1a2332;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg: #f8fafb;
  --white: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.2s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

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

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: 14px;
}
.logo-text { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; }
.logo-text small { display: block; font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.5px; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color var(--transition); }
.nav-links a:hover { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.nav-phone svg { width: 16px; height: 16px; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text); }
.mobile-menu { display: none; }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, #0c3d28 0%, #145f3c 40%, #1a7a4e 70%, #0e6ba8 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-image-wrap {
  margin-top: 32px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}
.hero-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.hero-image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,45,28,0.82) 0%, transparent 100%);
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-image-overlay svg { color: #6ee7a0; flex-shrink: 0; }
.hero-image-overlay span { font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 500; line-height: 1.4; }
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: 40px; font-weight: 800; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.5px; }
.hero h1 span { color: #6ee7a0; }
.hero-subtitle { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 520px; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.hero-stat { text-align: left; }
.hero-stat .number { font-size: 28px; font-weight: 800; color: #6ee7a0; }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 440px;
}
.hero-trust svg { width: 20px; height: 20px; color: #6ee7a0; flex-shrink: 0; }
.hero-trust span { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ===================== ORDER FORM ===================== */
.order-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.03);
}
.order-form-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.order-form-card .form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .required { color: #dc2626; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,122,78,0.1);
}
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}
.checkbox-group label { font-size: 13px; color: var(--text-secondary); cursor: pointer; margin-bottom: 0; }

.priority-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  margin-bottom: 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.priority-option:hover { background: #d5eee2; }
.priority-option .left { display: flex; align-items: center; gap: 10px; }
.priority-option .left svg { color: var(--primary); }
.priority-option .left span { font-size: 13px; font-weight: 600; color: var(--primary-dark); }
.priority-option .left small { font-size: 12px; color: var(--text-muted); font-weight: 400; display: block; }
.priority-option .price-tag { font-size: 14px; font-weight: 700; color: var(--primary); }

.normal-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  cursor: pointer;
}
.normal-option .left { display: flex; align-items: center; gap: 10px; }
.normal-option .left span { font-size: 13px; color: var(--text-secondary); }

.price-summary {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.price-line:last-child { margin-bottom: 0; }
.price-line.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
}
.price-line .value { font-weight: 600; }

.form-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 20px 0;
}

.form-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title svg { width: 16px; height: 16px; color: var(--primary); }

.field-hint { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.field-hint a { color: var(--primary); text-decoration: underline; font-weight: 500; }
.dynamic-fields { transition: all 0.2s ease; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--white); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-secondary {
  background: var(--bg);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--primary); }

/* ===================== SECTION COMMON ===================== */
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header .overline {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header h2 { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.3px; }
.section-header p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* ===================== SERVICES ===================== */
.services-section { background: var(--white); }
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.services-tabs .tab {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.services-tabs .tab:hover { border-color: var(--primary); color: var(--primary); }
.services-tabs .tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.service-card.selected { border-color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(26,122,78,0.12); }
.service-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.service-card .info h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.service-card .info p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.service-card .meta { display: flex; align-items: center; gap: 12px; }
.service-card .price-tag { font-size: 14px; font-weight: 700; color: var(--primary); }
.service-card .time-tag { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.service-card .time-tag svg { width: 12px; height: 12px; }

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(26,122,78,0.25);
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 240px; margin: 0 auto; }

/* ===================== PRICING ===================== */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  background: var(--white);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.pricing-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.pricing-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.pricing-card .price small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.pricing-card .price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card .features { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-card .features li { font-size: 13px; color: var(--text-secondary); padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.pricing-card .features li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; color: #f59e0b; }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card blockquote { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--primary);
}
.testimonial-author .name { font-size: 13px; font-weight: 700; }
.testimonial-author .loc { font-size: 12px; color: var(--text-muted); }

/* ===================== FAQ ===================== */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================== CTA ===================== */
.cta-section {
  background: linear-gradient(135deg, #0c3d28 0%, #1a7a4e 60%, #0e6ba8 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: #f0faf5; transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--primary); }

/* ===================== FOOTER ===================== */
.footer {
  background: #0f1b2d;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer p { font-size: 13px; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===================== SUCCESS MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.modal h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.modal p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }

/* ===================== LOADING ===================== */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #dc2626; }
.toast.success { background: var(--primary); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px 16px;
    border-top: 1px solid var(--border);
    background: var(--white);
  }
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
  }
  .hero-stats { gap: 20px; }
  .hero-stat .number { font-size: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 26px; }
}
