/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #e45b25;
  --accent-dark: #c94d1e;
  --accent-light: #ff7a45;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(228,91,37,.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(228,91,37,.45);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gray-900);
}

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

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gray-900);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, #fff5f0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228,91,37,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228,91,37,.1);
  color: var(--accent);
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.hero-stat-label {
  font-size: .85rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-image-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d4edda;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: #28a745;
}

.hero-image-badge-text strong {
  display: block;
  font-size: .95rem;
  color: var(--gray-900);
}

.hero-image-badge-text span {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-icon.green  { background: #d4edda; }
.trust-icon.green svg { fill: #28a745; }
.trust-icon.blue   { background: #d1ecf1; }
.trust-icon.blue svg { fill: #17a2b8; }
.trust-icon.orange { background: #fde8d8; }
.trust-icon.orange svg { fill: var(--accent); }
.trust-icon.purple { background: #e8daef; }
.trust-icon.purple svg { fill: #8e44ad; }

/* ===== SERVICES ===== */
.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: #fde8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.service-price .from {
  font-weight: 400;
  font-size: .85rem;
  color: var(--gray-500);
}

/* ===== WHY CHOOSE US ===== */
.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: #fde8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--gray-50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
}

.review-text {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-600);
}

.review-author-info strong {
  display: block;
  font-size: .9rem;
  color: var(--gray-900);
}

.review-author-info span {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ===== ABOUT ===== */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-subtitle {
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-highlight svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

.about-highlight span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
}

.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--gray-400);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  fill: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.cta-banner .section-title {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner .section-subtitle {
  color: rgba(255,255,255,.85);
  margin: 0 auto 36px;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: #fde8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.contact-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(228,91,37,.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-700);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-400);
}

.footer-social a:hover svg {
  fill: var(--white);
}

.footer-col h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .9rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: .85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: .85rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .25s ease;
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu .btn-primary {
  margin-top: 24px;
  text-align: center;
  justify-content: center;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-btn.phone {
  background: var(--accent);
}

.floating-btn.phone svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { height: 400px; }
  .hero-image-badge { left: 50%; transform: translateX(-50%); bottom: -16px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-us .container,
  .about .container { grid-template-columns: 1fr; gap: 48px; }

  .why-us-image { order: -1; }

  .contact .container { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav { display: none; }
  .header-cta .btn { display: none; }

  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero { padding: 110px 0 72px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 32px; }

  .services-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .about-highlights { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar .container { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--accent-dark);
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--gray-900);
  color: var(--white);
  padding: 12px 0;
  text-align: center;
}

.urgency-bar p {
  font-size: .9rem;
  font-weight: 600;
}

.urgency-bar a {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  padding: 32px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.social-proof-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--gray-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.step-card a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== SERVICE LINK TEXT ON CARDS ===== */
.service-link-text {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
  transition: transform var(--transition);
}

.service-card:hover .service-link-text {
  transform: translateX(4px);
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ===== BTN-LG ===== */
.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ===== SERVICE PAGE ===== */
.service-page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, #fff5f0 100%);
}

.service-page-hero .container {
  max-width: 900px;
}

.service-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}

.service-page-hero h1 span {
  color: var(--accent);
}

.service-page-hero p.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 24px;
}

.service-page-hero .price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228,91,37,.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.service-page-hero .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--gray-50);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-500);
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list li::after {
  content: '/';
  margin-left: 8px;
  color: var(--gray-400);
}

.breadcrumb-list li:last-child::after {
  content: '';
}

/* ===== SERVICE DETAILS ===== */
.service-details {
  padding: 64px 0;
}

.service-details .container {
  max-width: 900px;
}

.service-details h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  margin-top: 48px;
}

.service-details h2:first-child {
  margin-top: 0;
}

.service-details p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-details ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.service-details ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23e45b25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.service-details .service-faq {
  margin-top: 48px;
}

.service-details .service-faq h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  margin-top: 24px;
}

.service-details .service-faq p {
  font-size: .95rem;
  margin-bottom: 0;
}

/* ===== OTHER SERVICES GRID ===== */
.other-services {
  background: var(--gray-50);
  padding: 64px 0;
}

.other-services .container {
  max-width: 900px;
}

.other-services h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  text-align: center;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-services-grid a {
  display: block;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  transition: all var(--transition);
}

.other-services-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

/* ===== BLOG INDEX ===== */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ===== BLOG POST ===== */
.blog-post {
  padding: 60px 0 80px;
}

.blog-post .container {
  max-width: 800px;
}

.blog-post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-post h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 8px;
}

.blog-post h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-post h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-post ul, .blog-post ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.blog-post li {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
}

.blog-post ul {
  list-style: disc;
}

.blog-post ol {
  list-style: decimal;
}

.blog-post a {
  color: var(--accent);
}

.blog-post a:hover {
  text-decoration: underline;
}

.blog-post-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.blog-post-cta h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.blog-post-cta p {
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-index-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .social-proof-logos { gap: 20px; }
  .service-page-hero { padding: 110px 0 48px; }
  .service-page-hero .hero-ctas { flex-direction: column; }
  .service-page-hero .hero-ctas .btn { text-align: center; justify-content: center; }
  .other-services-grid { grid-template-columns: 1fr; }
}

/* ===== FORM SPINNER ANIMATION ===== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== ENSURE SERVICE PAGE CTA BUTTONS ARE VISIBLE ===== */
.service-details .btn-primary {
  color: var(--white) !important;
  text-decoration: none;
}

.service-details a.btn-primary:visited {
  color: var(--white) !important;
}

.service-page-hero .btn-primary:visited,
.service-cta .btn-primary:visited,
a.btn-primary:visited {
  color: var(--white) !important;
}
