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

:root {
  --off-black: #18181B;
  --zinc-900: #1C1C1F;
  --zinc-800: #27272A;
  --zinc-700: #3F3F46;
  --zinc-600: #52525B;
  --zinc-500: #71717A;
  --zinc-400: #A1A1AA;
  --zinc-300: #D4D4D8;
  --zinc-200: #E4E4E7;
  --zinc-100: #F4F4F5;
  --zinc-50: #FAFAFA;
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-muted: rgba(13, 148, 136, 0.12);
  --teal-light: #14B8A6;
  --teal-glow: rgba(13, 148, 136, 0.25);
  --bg: #F7F7F5;
  --spring: cubic-bezier(0.32, 0.72, 0, 1);
  --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--off-black);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- FLOATING NAV ---- */
.nav-wrapper {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 860px;
}

.nav-pill {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.4s var(--spring);
}

.nav-pill:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.nav-logo {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  color: var(--off-black);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--zinc-600);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 100px;
  transition: all 0.25s var(--spring);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--off-black); background: rgba(0,0,0,0.04); }

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  transition: all 0.25s var(--spring) !important;
}

.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-cta:active { transform: scale(0.97); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--off-black);
}

/* ---- HERO ---- */
.hero {
  min-height: 100dvh;
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--teal-muted) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-muted);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--off-black);
  margin-bottom: 1.5rem;
}

.hero h1 .accent { color: var(--teal); }

.hero p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--zinc-500);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  height: clamp(400px, 50vw, 560px);
}

.hero-img-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-1.5deg);
  width: 88%;
  height: 85%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 20px 60px rgba(24,24,27,0.14);
  transition: transform 0.5s var(--spring);
}

.hero-img-main:hover { transform: translate(-50%, -50%) rotate(0deg); }

.hero-img-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat-badge {
  position: absolute;
  bottom: 4%;
  left: -4%;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 3;
  animation: float-slow 4s ease-in-out infinite;
}

.hero-stat-badge .stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--off-black);
}

.hero-stat-badge .stat-label {
  font-size: 0.72rem;
  color: var(--zinc-500);
  font-weight: 500;
}

.hero-stat-badge-2 {
  position: absolute;
  top: 6%;
  right: -2%;
  background: var(--teal);
  color: #fff;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px var(--teal-glow);
  z-index: 3;
  animation: float-slow 5s ease-in-out infinite 1s;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--spring);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn:active { transform: scale(0.98) translateY(1px); }

.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-primary {
  background: var(--off-black);
  color: #fff;
}
.btn-primary:hover { background: var(--zinc-700); }

.btn-secondary {
  background: transparent;
  color: var(--off-black);
  border: 1px solid var(--zinc-300);
}
.btn-secondary:hover { border-color: var(--zinc-500); background: rgba(0,0,0,0.02); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal-muted); }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: transform 0.3s var(--spring);
}

.btn-secondary .btn-icon { background: var(--zinc-100); }
.btn:hover .btn-icon { transform: translateX(2px); }
.btn-icon svg { width: 14px; height: 14px; }

/* ---- SECTION SHARED ---- */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.section-lg { padding: clamp(5rem, 10vw, 8rem) 0; }

.section-header { margin-bottom: clamp(3rem, 6vw, 4.5rem); }

.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--zinc-500);
  max-width: 540px;
  line-height: 1.7;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 1.5rem;
  margin: -3rem clamp(0.75rem, 2vw, 1.5rem) 0;
  position: relative;
  z-index: 10;
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.stat-item .stat-text {
  font-size: 0.78rem;
  color: var(--zinc-500);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ---- ADVANTAGES (WHY GERMANY) ---- */
.advantages-section {
  background: var(--off-black);
  color: #fff;
  border-radius: 2rem;
  margin: 0 clamp(0.75rem, 2vw, 1.5rem);
  overflow: hidden;
}

.advantages-inner { padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem); }

.advantages-section .eyebrow {
  background: rgba(13, 148, 136, 0.15);
  color: var(--teal-light);
}

.advantages-section .section-header p { color: var(--zinc-400); }

.advantage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.advantage-features { display: flex; flex-direction: column; gap: 1.25rem; }

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--spring);
}

.advantage-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(13,148,136,0.2);
  transform: translateX(4px);
}

.advantage-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  background: rgba(13, 148, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-icon svg { width: 20px; height: 20px; color: var(--teal-light); }

.advantage-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.advantage-item p {
  font-size: 0.82rem;
  color: var(--zinc-400);
  line-height: 1.6;
}

.advantage-cta-card {
  background: linear-gradient(135deg, rgba(13,148,136,0.1) 0%, rgba(13,148,136,0.02) 100%);
  border: 1px solid rgba(13,148,136,0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}

.advantage-cta-card .big-number {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--teal-light);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.advantage-cta-card .big-label {
  font-size: 0.85rem;
  color: var(--zinc-400);
  margin-bottom: 2rem;
}

/* ---- PROCESS STEPS ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--zinc-200);
  transition: all 0.4s var(--spring);
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--spring);
}

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

.process-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(13,148,136,0.08);
  transform: translateY(-4px);
}

.process-card .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: var(--zinc-50);
  border-radius: 0.75rem;
  border: 1px solid var(--zinc-100);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
  transition: all 0.3s var(--spring);
}

.process-card:hover .step-num {
  background: var(--teal-muted);
  border-color: rgba(13,148,136,0.2);
}

.process-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 0.8rem;
  color: var(--zinc-500);
  line-height: 1.6;
}

/* ---- SERVICES ---- */
.services-section {
  background: var(--zinc-50);
  border-radius: 2rem;
  margin: 0 clamp(0.75rem, 2vw, 1.5rem);
}

.services-inner { padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem); }

.services-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s var(--spring);
  overflow: hidden;
}

.service-card-main {
  background: var(--off-black);
  color: #fff;
  border: 1px solid var(--zinc-800);
}

.service-card-main:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.service-card-alt {
  background: #fff;
  border: 1px solid var(--zinc-200);
}

.service-card-alt:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(13,148,136,0.06);
  transform: translateY(-2px);
}

.service-card .card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.service-card-main .card-eyebrow {
  background: rgba(13,148,136,0.15);
  color: var(--teal-light);
}

.service-card-alt .card-eyebrow {
  background: var(--teal-muted);
  color: var(--teal-dark);
}

.service-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.service-card-main .service-features li { color: var(--zinc-300); }
.service-card-alt .service-features li { color: var(--zinc-600); }

.service-features .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-main .check-icon { background: rgba(13,148,136,0.15); }
.service-card-alt .check-icon { background: var(--teal-muted); }

.check-icon svg { width: 12px; height: 12px; color: var(--teal-light); }

/* ---- QUOTE SECTION ---- */
.quote-section { padding: clamp(5rem, 10vw, 8rem) 0; }

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.quote-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
}

.quote-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.quote-content blockquote {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--off-black);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--teal);
}

.quote-content .quote-text {
  font-size: 0.9rem;
  color: var(--zinc-500);
  line-height: 1.7;
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--off-black);
  color: #fff;
  border-radius: 2rem;
  margin: 0 clamp(0.75rem, 2vw, 1.5rem);
  overflow: hidden;
}

.faq-inner { padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem); }

.faq-section .eyebrow {
  background: rgba(13, 148, 136, 0.15);
  color: var(--teal-light);
}

.faq-section .section-header p { color: var(--zinc-400); }

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s var(--spring);
}

.faq-item:hover {
  border-color: rgba(13,148,136,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13,148,136,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--spring);
}

.faq-toggle svg { width: 14px; height: 14px; color: var(--teal-light); }

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--spring);
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--zinc-400);
  line-height: 1.7;
}

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

/* ---- FORM SECTION ---- */
.form-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.form-content p {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--zinc-500);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--zinc-600);
}

.form-benefits .benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { width: 12px; height: 12px; color: var(--teal); }

.form-embed-wrapper {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--zinc-200);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  min-height: 600px;
}

.form-embed-wrapper iframe {
  width: 100%;
  min-height: 700px;
  border: none;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--off-black);
  color: var(--zinc-400);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: clamp(4rem, 8vw, 6rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand .footer-logo span { color: var(--teal); }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--zinc-500);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zinc-400);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--zinc-500);
  font-size: 0.82rem;
  transition: color 0.25s var(--spring);
}

.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--zinc-600);
  line-height: 1.7;
}

.footer-bottom a {
  color: var(--zinc-500);
  text-decoration: none;
  transition: color 0.25s var(--spring);
}
.footer-bottom a:hover { color: var(--teal-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 380px; margin-top: 2rem; }
  .advantage-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-image { order: -1; }
  .form-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-pill.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
  }

  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-badge, .hero-stat-badge-2 { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .quote-image img { height: 280px; }
}

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