/* ============================================================
   Wrap Removal Shop — Main Stylesheet
   White + Blue theme, mobile-first, performance-optimized
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f5f7fa;
  --bg-card:     #ffffff;
  --bg-elevated: #eef2f7;
  --accent:      #1a56db;
  --accent-light:#2563eb;
  --accent-dim:  #1e40af;
  --accent-glow: rgba(26,86,219,0.15);
  --accent-bg:   rgba(26,86,219,0.06);
  --gradient:    linear-gradient(135deg, #1a56db, #3b82f6);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1a56db 100%);
  --text:        #0f172a;
  --text-body:   #334155;
  --text-muted:  #64748b;
  --text-subtle: #94a3b8;
  --border:      #e2e8f0;
  --border-light:#f1f5f9;
  --success:     #16a34a;
  --danger:      #dc2626;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.1);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1160px;
  --transition:  0.22s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dim); }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-body); }
strong { color: var(--text); font-weight: 600; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-phone svg { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 840px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-phone { font-size: 1rem; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs li + li::before {
  content: '/';
  margin-right: 6px;
  color: var(--text-subtle);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current] { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--gradient-hero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(59,130,246,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59,130,246,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1, .hero h2, .hero h3, .hero h4,
.hero p, .hero strong, .hero .trust-item span,
.hero .hero-badge { color: #fff; }
.hero p.hero-desc { color: rgba(255,255,255,0.8); }
.hero .trust-item { color: rgba(255,255,255,0.7); }
.hero .trust-item svg { color: #60a5fa; }
.hero .trust-num { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: #60a5fa;
}
.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero .btn-primary {
  background: #fff;
  color: var(--accent);
}
.hero .btn-primary:hover {
  background: #f0f4ff;
  color: var(--accent-dim);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.hero .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
}

/* ---------- Section Headers ---------- */
.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 560px; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(26,86,219,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}
.service-link:hover { gap: 10px; }

@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Why Us / Feature Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  transition: all 0.3s ease;
}
.feature-item:hover {
  border-color: rgba(26,86,219,0.2);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-text h4 { color: var(--text); margin-bottom: 6px; }
.feature-text p { font-size: 0.9rem; }

@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--gradient-hero);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2.2rem; }
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.88rem; color: var(--text-body); }

@media (max-width: 640px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding-bottom: 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 14px; color: #fff; }
.cta-banner p { margin-bottom: 32px; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--accent);
}
.cta-banner .btn-primary:hover {
  background: #f0f4ff;
  color: var(--accent-dim);
}
.cta-banner .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.cta-banner .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.cta-phone-big a { color: #fff; }
.cta-phone-big a:hover { color: rgba(255,255,255,0.8); }
.cta-phone-big svg { color: #60a5fa; }

@media (max-width: 640px) { .cta-banner { padding: 40px 24px; } }

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  position: relative;
}
.pricing-badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ---------- Testimonial / Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 40px 0;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  min-width: 140px;
  transition: all 0.3s ease;
}
.trust-badge:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(26,86,219,0.2);
}
.trust-badge svg { color: var(--accent); }
.trust-badge strong { font-size: 1.4rem; color: var(--text); }
.trust-badge span { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Info Blocks (service pages) ---------- */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.info-visual { display: flex; justify-content: center; align-items: center; }
.info-content .section-label { display: block; }
.info-content h2 { margin-bottom: 18px; }
.info-content p { margin-bottom: 16px; }
.info-list { margin: 20px 0; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-size: 0.95rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 768px) {
  .info-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 18px; color: #fff; }
.page-hero .hero-desc { margin-bottom: 28px; color: rgba(255,255,255,0.8); }
.page-hero .section-label { color: #60a5fa; }
.page-hero .btn-primary { background: #fff; color: var(--accent); }
.page-hero .btn-primary:hover { background: #f0f4ff; color: var(--accent-dim); }
.page-hero .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.page-hero .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 640px) { .page-hero-grid { grid-template-columns: 1fr; } }

/* ---------- Alt section background ---------- */
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- Upsell Section ---------- */
.upsell-section {
  background: linear-gradient(135deg, #eef2f7 0%, #e0e9f5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.upsell-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.upsell-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
}
.upsell-card h3 { margin-bottom: 16px; font-size: 1.4rem; }
.upsell-card p { max-width: 600px; margin: 0 auto 28px; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-methods { margin: 28px 0; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: none; }
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 64px 0 0;
}
.footer a { color: #94a3b8; }
.footer a:hover { color: #60a5fa; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 14px; margin-bottom: 20px; max-width: 260px; color: #94a3b8; }
.footer-col h5 { color: #e2e8f0; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #94a3b8; font-size: 0.9rem; }
.footer-col ul a:hover { color: #60a5fa; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60a5fa !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.footer .nav-logo { color: #e2e8f0; }
.footer .nav-logo span { color: #60a5fa; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* ---------- Animations (IntersectionObserver-driven) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Pulse on the main CTA */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(26,86,219,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(26,86,219,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,86,219,0); }
}
.btn-primary.pulse { animation: pulse-ring 2.5s ease infinite; }
.hero .btn-primary.pulse { animation: none; }

/* ---------- Utility ---------- */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* ---------- Responsive helpers ---------- */
@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 0.95rem; }
  h1 { font-size: 2rem; }
  .cta-phone-big { font-size: 1.3rem; }
}
