/* ============================================================
   Glanzreinigung Belal – Design System
   ============================================================ */

:root {
  --primary: #0b66e4;
  --primary-dark: #0950b4;
  --accent: #00c2ff;
  --dark: #07182b;
  --dark-soft: #0d2440;
  --text: #1e2a3a;
  --text-muted: #5b6b7e;
  --bg: #f6f9fc;
  --white: #ffffff;
  --border: #e3eaf2;
  --gold: #ffb800;

  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 8px rgba(13, 36, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(13, 36, 64, 0.1);
  --shadow-lg: 0 24px 60px rgba(13, 36, 64, 0.16);

  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--dark); }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ============ Buttons (rounded pills, animated arrows) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-arrow { width: 18px; height: 18px; transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 102, 228, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 102, 228, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25); }

/* ============ Navigation ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}
.site-header.scrolled .brand { color: var(--dark); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--white);
  overflow: hidden;
  border: 1px solid rgba(11, 102, 228, 0.12);
  box-shadow: 0 6px 16px rgba(11, 102, 228, 0.25);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-mark svg { width: 24px; height: 24px; }

.brand-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-text strong { font-weight: 800; }

.brand-flags {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 6px;
}
.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: rgba(255, 255, 255, 0.14); }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a:hover { background: rgba(11, 102, 228, 0.08); color: var(--primary); }

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-phone svg { width: 17px; height: 17px; }
.site-header.scrolled .nav-phone { color: var(--dark); }
.nav-phone:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 24, 43, 0.92) 0%, rgba(7, 24, 43, 0.72) 45%, rgba(7, 24, 43, 0.35) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 194, 255, 0.18) 0%, transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 140px;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.text-shine {
  background: linear-gradient(110deg, var(--accent) 20%, #8be9ff 40%, var(--accent) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}
@keyframes shine {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--accent); }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; }

/* ============ Sections ============ */
.section { padding: 110px 0; }
.section-alt { background: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(11, 102, 228, 0.08);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ============ Service Cards ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-media {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-soft), var(--primary));
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .card-media img { transform: scale(1.07); }

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.card-icon {
  position: absolute;
  top: -26px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11, 102, 228, 0.35);
}
.card-icon svg { width: 25px; height: 25px; }

.card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 16px 0 10px;
}
.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.card-link:hover svg { transform: translateX(5px); }

/* ============ Split / Warum wir ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.split-media { position: relative; }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--dark-soft), var(--primary));
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  max-width: 290px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.floating-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.floating-card p { font-size: 0.9rem; color: var(--text); margin-bottom: 8px; }
.floating-card span { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.split-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.split-lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.65; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 26px;
}
.feature-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(11, 102, 228, 0.09);
  color: var(--primary);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-list li:hover .feature-icon {
  background: var(--gradient);
  color: var(--white);
  transform: scale(1.08);
}
.feature-list h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.feature-list p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }

/* ============ Stats Band ============ */
.stats-band {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  background-image: radial-gradient(ellipse at 20% 0%, rgba(11, 102, 228, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(0, 194, 255, 0.18) 0%, transparent 50%);
  padding: 80px 0;
}

/* Dezent eingeblendete Bilder auf dunklen/farbigen Bändern */
.band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.stats-band .band-bg { opacity: 0.13; object-position: center 35%; }
.cta-banner .band-bg { opacity: 0.16; object-position: center 30%; }

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number, .stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(110deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============ Ablauf / Steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

.step {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-number {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(11, 102, 228, 0.35);
}
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  align-self: center;
  width: 48px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0 6px, transparent 6px 12px);
  opacity: 0.5;
}

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.testimonial .stars { margin-bottom: 16px; }
.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 22px;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
}
.testimonial figcaption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--dark);
}
.testimonial figcaption span:not(.avatar) {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ============ Kontakt ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: var(--dark);
  background-image: radial-gradient(ellipse at 100% 0%, rgba(11, 102, 228, 0.45) 0%, transparent 55%);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-avatar {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 194, 255, 0.3);
  overflow: hidden;
}
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-person h3 { color: var(--white); font-size: 1.25rem; }
.contact-person p { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; }

.contact-channels { display: grid; gap: 12px; margin-bottom: 30px; }

.channel {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--white);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.channel:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(0, 194, 255, 0.4);
  transform: translateX(5px);
}
.channel-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 194, 255, 0.15);
  color: var(--accent);
}
.channel-icon svg { width: 20px; height: 20px; }
.channel-whatsapp { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.channel strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
}
.channel span:not(.channel-icon) {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-hours h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.contact-hours p { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 102, 228, 0.12);
}

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success[hidden] { display: none; }

.form-success {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: rgba(61, 220, 132, 0.12);
  border: 1px solid rgba(61, 220, 132, 0.4);
  color: #1a7a45;
}
.form-success svg { width: 28px; height: 28px; flex-shrink: 0; }
.form-success strong { font-family: var(--font-head); display: block; }
.form-success p { font-size: 0.88rem; }
.form-success-fallback { margin-top: 8px; font-size: 0.82rem; opacity: 0.95; }
.form-success a { color: #0f6b3c; font-weight: 600; text-decoration: underline; }

/* ============ CTA Banner ============ */
.cta-banner {
  background: var(--gradient);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -210px;
  right: -110px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -130px;
  left: 8%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; }

/* ============ Footer ============ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.brand-light { color: var(--white); }

.footer-brand p {
  margin: 18px 0;
  font-size: 0.93rem;
  max-width: 280px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-col p { font-size: 0.92rem; margin-bottom: 12px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--accent); }

/* ============ Back to top ============ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gradient);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 22px; height: 22px; }

/* ============ Reveal Animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-phone span { display: none; }
  .split { grid-template-columns: 1fr; gap: 64px; }
  .floating-card { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    flex-direction: column;
    gap: 8px;
    background: var(--white);
    padding: 100px 32px 32px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: var(--text) !important; font-size: 1.05rem; padding: 12px 16px; }

  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span { background: var(--dark); }
  .btn-sm { display: none; }
}

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

  .brand { flex-shrink: 1; }
  .brand-text { white-space: normal; font-size: 0.95rem; }

  .hero-inner { padding: 140px 0 120px; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
}
