:root {
  --primary: #1E40AF;
  --primary-dark: #0f1f5a;
  --accent: #F97316;
  --accent-dark: #d75f0f;
  --bg: #F8FAFC;
  --card: #ffffff;
  --muted: #0f172a;
  --text: #1f2937;
  --subtle: #6b7280;
  --border: #e5e7eb;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.08), transparent 32%),
              radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.08), transparent 28%),
              var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 2.4rem;
  margin: 16px 0 10px;
  color: var(--muted);
  letter-spacing: -0.5px;
  background: linear-gradient(120deg, var(--muted) 0%, var(--primary) 50%, var(--muted) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.section-subtitle {
  color: #475569;
  font-size: 1.05rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
  background: #ffffff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.25s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img { 
  height: 64px; 
  width: auto; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: all 0.25s ease;
  background: transparent;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 6px;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after { 
  width: calc(100% - 24px); 
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  -webkit-touch-callout: none;
  font-family: inherit;
  font-size: inherit;
}

.btn:hover { 
  transform: scale(1.05); 
}

.btn i {
  transition: all 0.3s ease;
}

.btn:hover i {
  animation: buttonIconBounce 0.4s ease;
}

@keyframes buttonIconBounce {
  0% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  transition: all 0.25s ease;
  position: relative;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(249, 115, 22, 0.04);
}
.cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.cta .btn-outline:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,1);
  transform: translateY(-2px);
}
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.14); color: #fff; }
.contact-hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
}
.contact-hero .btn-outline:hover { background: rgba(255,255,255,0.2); color: #fff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  border-radius: 8px;
  padding: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  background: #f5f5f5;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--muted);
  transition: all 0.25s ease;
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.6), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.45), transparent 32%),
              #0b122d;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 15s ease-in-out infinite;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.8), transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.6), transparent 70%);
  bottom: -80px;
  right: 10%;
  animation-delay: 3s;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.5), transparent 70%);
  top: 50%;
  right: -100px;
  animation-delay: 6s;
}

.hero-shape-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
}

.hero-particle-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4), transparent 70%);
  top: 20%;
  left: 15%;
  animation: drift 25s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-particle-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.35), transparent 70%);
  top: 60%;
  left: 70%;
  animation: drift 28s ease-in-out infinite;
  animation-delay: 4s;
}

.hero-particle-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3), transparent 70%);
  top: 10%;
  right: 5%;
  animation: drift 26s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-particle-4 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.3), transparent 70%);
  bottom: 10%;
  right: 30%;
  animation: drift 27s ease-in-out infinite;
  animation-delay: 5s;
}

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

@keyframes drift {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(20px) translateY(-15px); }
  50% { transform: translateX(-10px) translateY(-30px); }
  75% { transform: translateX(-25px) translateY(-10px); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.55));
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('image/FLYTTNING.png');
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transform: scale(1.03);
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
  line-height: 1.2;
  animation: titleReveal 0.8s ease-out;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lead {
  font-size: 1.15rem;
  color: #e5e7eb;
  margin-bottom: 24px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.04), rgba(30, 64, 175, 0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card.floating {
  animation: floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.hero-card-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.5);
  border-radius: 999px;
  color: #ffd87a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  cursor: default;
}

.badge:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.badge i { color: var(--accent); }
.hero .section-kicker { background: rgba(255,255,255,0.16); color: #fff; }

.review-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(249,115,22,0.35);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hero-metric {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-metric strong { font-size: 1.4rem; display: block; }

/* Cards & grids */
.grid {
  display: grid;
  gap: 22px;
}

.services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-color 0.3s ease,
              background 0.3s ease;
  overflow: hidden;
  isolation: isolate;
  color: #0f172a;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  height: 160px;
  width: 160px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 60%);
  transform: rotate(-8deg);
  transition: all 0.4s ease;
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #FFF7ED 0%, #FFD7B3 90%);
  color: var(--accent);
  font-size: 2.4rem;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  z-index: 1;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.service-icon i { 
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon i {
  animation: iconSpin 0.6s ease-out;
}

.service-photo {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p { color: #475569; margin-bottom: 12px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
}

.service-card:hover {
  transform: translateY(-18px) scale(1.02);
  border-color: var(--accent);
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 115, 22, 0.02) 100%);
  box-shadow: none;
}

.service-card:hover::before {
  transform: rotate(8deg) scale(1.2);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 60%);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(12deg) translateY(-4px);
  animation: none;
}

.service-card:hover .service-link {
  color: var(--primary);
}

.service-link {
  transition: all 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(6px) rotate(45deg);
  animation: arrowBounce 0.5s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(6px) rotate(45deg); }
  50% { transform: translateX(10px) rotate(45deg); }
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-color 0.3s ease,
              background 0.3s ease;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 0.6s ease;
}

.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.step-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(30, 64, 175, 0.2);
}

.step-card:hover::before {
  left: 100%;
}

.step-card:hover::after {
  opacity: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.25) rotate(8deg) translateY(-2px);
}

.step-card:hover .step-number::after {
  opacity: 1;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: var(--accent);
}

.counter {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  transition: color 0.3s ease;
  display: block;
}

.stat-card:hover .counter {
  color: var(--primary);
}

.stat-card span { color: var(--subtle); display: block; margin-top: 6px; }

/* Testimonials */
.testimonial-shell {
  background: linear-gradient(135deg, #fff, rgba(30, 64, 175, 0.06));
  border-radius: calc(var(--radius) + 4px);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.testimonial-shell::after {
  content: '';
  position: absolute;
  inset: auto 18px 18px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 60%);
}

.testimonial-slider { position: relative; }

.testimonial {
  display: none;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  animation: slideInFade 0.5s ease-out;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 0.6s ease;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial:hover::before {
  left: 100%;
}

.testimonial.active { 
  display: flex; 
}

.testimonial p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  font-style: italic;
}

.stars { 
  color: #fbbf24;
  display: flex;
  gap: 4px;
  letter-spacing: 2px;
}

.testimonial-author { 
  font-weight: 700; 
  color: var(--muted);
  margin-top: 8px;
}

.slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.dot:hover {
  background: rgba(30, 64, 175, 0.3);
  transform: scale(1.3);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* CTA parallax */
.cta {
  position: relative;
  background-image: url('image/FLYTTSTADNING2.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.82));
}

.cta .container { position: relative; z-index: 1; text-align: center; }

.cta h2 { font-family: 'Poppins', sans-serif; font-size: 2.2rem; margin-bottom: 12px; }

.cta p { color: #e2e8f0; margin-bottom: 20px; }

/* Wizard */
.wizard {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 28px;
  border: 1px solid var(--border);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.wizard-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
}

.wizard-step.active { border-color: var(--primary); background: rgba(30, 64, 175, 0.08); }
.wizard-step.done { border-color: var(--accent); }

.wizard-step .bubble {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(30, 64, 175, 0.15);
  color: var(--primary);
  font-weight: 800;
}

.wizard-step.active .bubble { background: var(--primary); color: #fff; }
.wizard-step.done .bubble { background: var(--accent); color: #fff; }

.wizard-panels > form { display: flex; flex-direction: column; gap: 20px; }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeUp 0.3s ease; }

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.service-option {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: grid;
  gap: 10px;
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.service-option.active {
  border-color: var(--accent);
  background: #fff;
}

.service-option .service-icon { margin-bottom: 0; justify-self: flex-start; }

.detail-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-group {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--border);
  margin-bottom: 0;
  transition: all 0.25s ease;
}

.detail-group h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-group h4::before {
  content: '';
  width: 3px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}

.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}
.label i {
  font-size: 0.85rem;
  color: var(--accent);
}

.input-shell {
  position: relative;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.25s ease;
}

input::placeholder, textarea::placeholder {
  color: #cbd5e1;
}

textarea {
  resize: vertical;
  min-height: 90px;
  font-family: 'Inter', system-ui, sans-serif;
}

input:hover, select:hover, textarea:hover {
  border-color: var(--accent);
  background: #ffffff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
}

.valid-check {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

input.valid + .valid-check,
select.valid + .valid-check,
textarea.valid + .valid-check { 
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.form-actions { display: flex; gap: 12px; justify-content: flex-end; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.contact-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary);
}

.map-card { 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  min-height: 380px;
  position: relative;
}
.map-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}
.map-card iframe { 
  border: 0; 
  width: 100%; 
  height: 100%; 
  min-height: 380px;
  filter: none;
}

.instagram-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.ig-post {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
  background: #f1f5f9;
}

.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(30, 64, 175, 0.85));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-post:hover img {
  transform: scale(1.05);
}

.ig-post:hover .ig-overlay {
  opacity: 1;
}

.ig-content h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.ig-content p {
  color: #e2e8f0;
  font-size: 0.8rem;
  margin: 0;
}

.ig-overlay i {
  color: #ffffff;
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-hero {
  position: relative;
  padding: 100px 0 80px;
  color: #fff;
  overflow: hidden;
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(30, 64, 175, 0.72)), url('image/FLYTTSTADNING2.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.92) contrast(1.08);
}
.contact-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.contact-hero__content .section-kicker {
  background: rgba(249, 115, 22, 0.2);
  color: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.4);
  font-weight: 700;
}
.contact-hero__content .section-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 2.2rem;
  margin-top: 14px;
  margin-bottom: 10px;
}
.contact-hero__content .section-subtitle {
  color: #f3f4f6;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
.contact-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}
.stat-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.stat-chip i {
  color: #ffffff;
  font-size: 0.75rem;
}

.contact-pro {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 18px;
}
.contact-panel, .map-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.contact-panel__info h3,
.contact-panel__form h3 { 
  margin-bottom: 14px; 
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.info-list { display: grid; gap: 12px; }
.info-row { 
  display: grid; 
  grid-template-columns: auto 1fr; 
  gap: 12px; 
  align-items: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}
.info-row:hover {
  background: transparent;
  transform: none;
}
.info-row i {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFE4CC 100%);
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.1);
}
.info-row strong { color: var(--muted); font-size: 0.9rem; }
.info-row p { color: #64748b; font-size: 0.9rem; margin-top: 2px; }
.info-row a { 
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}
.info-row a:hover { color: var(--accent-dark); }
.contact-actions { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin-top: 18px;
}

.value-item {
  padding: 14px 12px;
  background: rgba(30, 64, 175, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  transition: all 0.2s ease;
}

.value-item:hover {
  background: rgba(30, 64, 175, 0.08);
}

.value-item h4 {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-item h4 i {
  color: var(--accent);
  font-size: 0.9rem;
}

.value-item p {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.contact-actions .btn {
  font-size: 0.8rem;
  padding: 8px 12px;
  transition: all 0.2s ease;
  border-radius: 8px;
  gap: 5px;
}

.contact-actions .btn i {
  font-size: 0.85rem;
}

.contact-actions .btn-primary {
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.15);
}

.contact-actions .btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.contact-actions .btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.contact-actions .btn-outline:hover {
  background: rgba(249, 115, 22, 0.06);
  border-color: var(--accent-dark);
}

.contact-panel__form .contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.contact-form .btn {
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.contact-form .btn i {
  font-size: 0.85rem;
}

.contact-form .btn-primary {
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.contact-form .btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.contact-form .btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.contact-form .btn-outline:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: var(--accent-dark);
}
.map-panel { 
  display: grid; 
  gap: 14px;
  overflow: hidden;
}
.map-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(30, 64, 175, 0.1);
}
.map-header > div {
  flex: 1;
}
.map-header strong {
  color: var(--muted);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  display: block;
}
.map-header p {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 2px;
}
.map-header .btn {
  font-size: 0.75rem;
  padding: 7px 11px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 6px;
}

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

/* Instagram spacing */
.instagram-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.ig-tile {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.14), rgba(249, 115, 22, 0.14));
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ig-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

/* About */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.highlight-card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

/* Trust ribbon */
.trust-ribbon {
  background: linear-gradient(135deg, #0f1f5a 0%, #0b132d 60%, #0f1f5a 100%);
  padding: 42px 0 26px;
  position: relative;
  overflow: hidden;
}

.trust-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 14%, rgba(249, 115, 22, 0.18), transparent 42%),
              radial-gradient(circle at 82% 10%, rgba(59, 130, 246, 0.2), transparent 44%);
  pointer-events: none;
}

.trust-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(11, 19, 45, 0.94));
  border-radius: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(12, 17, 32, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.4fr;
  gap: 22px;
  align-items: center;
  color: #e2e8f0;
}

.trust-kicker {
  background: rgba(59, 130, 246, 0.2);
  color: #dbeafe;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.22);
}

.trust-copy h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.55rem;
  margin: 12px 0 8px;
  color: #fff;
}

.trust-copy p {
  color: #cbd5e1;
  font-size: 1rem;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.trust-logo {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
  min-height: 126px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.trust-logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.trust-logo span {
  font-weight: 600;
  color: #e2e8f0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
}

.trust-logo:nth-child(2) {
  background: linear-gradient(150deg, #f7f9ff, #eef3ff 55%, #e6ecf8);
  border-color: #d6e3fb;
  box-shadow: none;
  color: #0f172a;
}

.trust-logo:nth-child(2) span {
  color: #0f172a;
}

.trust-logo:nth-child(2) img {
  filter: none;
}

@media (hover: hover) {
  .trust-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.32);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
  }

  .trust-logo:nth-child(2):hover {
    background: linear-gradient(150deg, #ffffff, #f4f7ff 55%, #eaf0ff);
    border-color: rgba(0, 91, 187, 0.65);
    box-shadow: 0 10px 26px rgba(0, 91, 187, 0.16);
  }
}

@media (max-width: 900px) {
  .trust-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .trust-copy h3 { font-size: 1.35rem; }
  .trust-ribbon { padding: 34px 0 18px; }
  .trust-card { padding: 20px; gap: 18px; }
  .trust-logos { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .trust-logo img { max-height: 46px; }
}

/* Pricing */
.pricing {
  padding-top: 70px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.pricing-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(30, 64, 175, 0.28);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, filter 0.22s ease;
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 18% 20%, rgba(30, 64, 175, 0.12), transparent 40%),
              radial-gradient(circle at 80% 12%, rgba(249, 115, 22, 0.14), transparent 42%);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(120deg, rgba(30, 64, 175, 0.5), rgba(249, 115, 22, 0.5));
  opacity: 0.8;
}

.pricing-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card h3 i { color: var(--accent); }

.pricing-card p {
  color: #1f2937;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.pricing-price .amount {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--muted);
}

.pricing-price .currency {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-price .currency strong { font-size: 1.15rem; letter-spacing: 0.3px; }
.pricing-price .currency small { color: #475569; font-size: 1rem; }

.pricing-cta {
  width: 100%;
  margin-bottom: 14px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #0f172a;
}

.pricing-list i {
  color: #10b981;
}

.pricing-card.popular {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: none;
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.16), rgba(30, 64, 175, 0.08));
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.18);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: none;
  border-color: rgba(30, 64, 175, 0.42);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  filter: saturate(1.02);
}

.pricing-card.popular:hover {
  border-color: rgba(249, 115, 22, 0.48);
  box-shadow: none;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.faq {
  padding-top: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.faq-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(30, 64, 175, 0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.faq-toggle i {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 16px;
  color: #475569;
}

.faq-body p {
  padding: 0 0 14px;
}

.faq-card.open {
  border-color: rgba(30, 64, 175, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.faq-card.open .faq-toggle i {
  transform: rotate(180deg);
}

.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 64, 175, 0.32);
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f1f5a 0%, #0b132d 60%, #0f1f5a 100%);
  color: #e2e8f0;
  padding: 86px 0 68px;
  position: relative;
}

.footer::before,
.footer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.footer::before {
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.16), transparent 42%),
              radial-gradient(circle at 82% 6%, rgba(59, 130, 246, 0.18), transparent 44%),
              radial-gradient(circle at 50% 110%, rgba(15, 23, 42, 0.35), transparent 46%);
}

.footer::after {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0.8;
}

.footer .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 0 22px;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-top {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 1fr;
}

.footer-brand,
.footer-cta {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.4);
  overflow: hidden;
}

.footer-brand::after,
.footer-cta::after {
  content: '';
  position: absolute;
  inset: auto auto -42% 54%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 55%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.footer-tagline {
  color: #e2e8f0;
  margin-top: 10px;
  max-width: 640px;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 600;
}

.footer-chip-link {
  color: #dbeafe;
  text-decoration: none;
}

.footer-chip-link:hover {
  color: #fff;
}

.footer-chip,
.footer-chip-link {
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.footer-chip:hover,
.footer-chip-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.footer-cta {
  display: grid;
  gap: 12px;
  align-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.footer-cta::after {
  left: auto;
  right: -60px;
  inset: -32% -30% auto auto;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 50%);
  transform: none;
}

.footer-cta-title {
  font-size: 1.1rem;
  color: #e9eef8;
  margin-bottom: 4px;
  font-weight: 700;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cta .btn.btn-primary {
  background: var(--accent);
  border: none;
  box-shadow: none;
  padding: 12px 18px;
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta .btn.btn-primary:hover {
  box-shadow: none;
  filter: brightness(1.06);
  color: #fff;
  transform: translateY(-2px);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-phone i { color: var(--accent); }

.footer-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.footer-bottom-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 16px 36px rgba(7, 12, 30, 0.35);
  display: grid;
  gap: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.footer-card h4 {
  color: #fff;
  margin: 2px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-card p { color: #e6edf7; line-height: 1.6; }

.footer-card a { color: #e6edf7; }
.footer-card a:hover { color: var(--accent); }

.footer-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(249, 115, 22, 0.22));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}

.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }

.footer-meta { color: #cbd5e1; font-size: 0.95rem; }

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-weight: 700;
  color: var(--accent);
}

.footer-cta-link:hover {
  color: #fff;
}

.social { display: flex; gap: 12px; margin-top: 6px; }

.social a {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  color: #fff;
  font-size: 1.1rem;
}

.social a:hover { transform: translateY(-3px); background: linear-gradient(120deg, var(--accent), var(--primary)); color: #fff; }

.footer-bottom { margin: 8px 0 0; color: #94a3b8; text-align: center; white-space: nowrap; }

.footer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 20px 40px rgba(7, 12, 30, 0.42);
}

.footer-phone:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 6px 0 10px;
  width: 100%;
}

.footer-bottom-row {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  width: 100%;
  grid-column: 1 / -1;
  align-self: center;
}

@media (min-width: 960px) {
  .footer-top { grid-area: top; }
  .footer-card-grid { grid-area: bottom; }
  .footer-bottom-row { grid-area: bottom; }
}

@media (max-width: 640px) {
  .footer { padding: 64px 0 52px; }
  .footer-brand,
  .footer-cta { padding: 18px; }
  .footer-card { padding: 16px; }
  .footer-chip { font-size: 0.9rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-chips { justify-content: center; }
  .footer-cta-actions { justify-content: center; text-align: center; }
  .footer-card { text-align: center; justify-items: center; }
  .footer-list { text-align: center; }
  .footer-bottom-row { align-items: center; }
  .footer-bottom { white-space: normal; line-height: 1.5; }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(249, 115, 22, 0.18); }
  50% { box-shadow: 0 10px 40px rgba(249, 115, 22, 0.35), inset 0 0 20px rgba(249, 115, 22, 0.1); }
}

@keyframes glowPulseBlue {
  0%, 100% { box-shadow: 0 10px 24px rgba(30, 64, 175, 0.18); }
  50% { box-shadow: 0 10px 40px rgba(30, 64, 175, 0.35), inset 0 0 20px rgba(30, 64, 175, 0.1); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounceIn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes drift {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(-10px) translateX(-15px); }
}

@keyframes infiniteRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes colorShift {
  0% { color: var(--accent); }
  50% { color: var(--primary); }
  100% { color: var(--accent); }
}

/* Enhanced Service Cards */
.service-card {
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(45deg, transparent, rgba(249, 115, 22, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  animation: shimmer 0.6s ease-in-out;
}

.service-card:hover {
  background: linear-gradient(135deg, var(--card) 0%, rgba(249, 115, 22, 0.02) 100%);
}

/* Enhanced Step Cards */
.step-card {
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(30, 64, 175, 0.1), transparent 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.step-card:hover::after {
  opacity: 1;
}

.step-number {
  animation: glowPulseBlue 2s ease-in-out infinite;
}

.step-card:hover .step-number {
  animation: none;
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.4), inset 0 0 20px rgba(30, 64, 175, 0.15);
}

/* Enhanced Stat Cards */
.stat-card {
  position: relative;
  transition: all 0.3s ease;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(45deg, transparent, rgba(249, 115, 22, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-card:hover::after {
  animation: shimmer 0.6s ease-in-out;
}

.counter {
  animation: colorShift 3s ease-in-out infinite;
  font-weight: 900;
}

/* Button Enhancements */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
  animation: pulseGlow 0.6s ease-out;
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Hero Card Glow */
.hero-card {
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.hero-card:hover::before {
  opacity: 1;
}

/* Hero Icon Rotation */
.hero-card-icon {
  animation: glowPulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hero-card:hover .hero-card-icon {
  animation: infiniteRotate 6s linear infinite;
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5), inset 0 0 20px rgba(249, 115, 22, 0.2);
}

/* Section Header Animations */
.section-header {
  animation: fadeUp 0.8s ease-out;
}

.section-title {
  background: linear-gradient(120deg, var(--muted), var(--primary));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Enhanced testimonials */
.testimonial {
  transition: all 0.5s ease;
}

.testimonial.active {
  animation: scaleIn 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.stars {
  animation: bounceIn 0.5s ease-out;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

/* Service Link Animations */
.service-link {
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.4s ease;
}

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

/* Enhanced Hero Shapes */
.hero-shape {
  animation: drift 20s ease-in-out infinite !important;
}

.hero-shape-1 {
  animation: drift 20s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-shape-2 {
  animation: drift 22s ease-in-out infinite;
  animation-delay: 3s;
}

.hero-shape-3 {
  animation: drift 24s ease-in-out infinite;
  animation-delay: 6s;
}

/* Text Glow Effect */
.hero-title {
  text-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 40px rgba(249, 115, 22, 0.2);
  animation: fadeUp 0.8s ease-out;
}

/* Badge Hover */
.badge {
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: var(--accent);
}

/* Hero Actions Animation */
.hero-actions {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

/* Service Card Icon Container */
.service-icon {
  position: relative;
  overflow: visible;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: infiniteRotate 8s linear infinite;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
  opacity: 0.5;
}

/* CTA Section Enhancements */
.cta h2 {
  animation: fadeUp 0.8s ease-out;
}

.cta p {
  animation: fadeUp 0.8s ease-out 0.1s both;
}

/* Responsive */
@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto 16px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu-toggle { display: flex; }
  .nav-actions { 
    display: flex;
    gap: 6px;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    flex-wrap: wrap;
  }
  .nav-actions .btn {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .hero { padding: 90px 0 80px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.2rem; }
  .section { padding: 70px 0; }
  .wizard-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  
  .nav-actions {
    display: none !important;
  }
  
  .nav-links {
    flex-direction: column;
  }
  
  .nav-links .btn-mobile-quote {
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    min-height: 48px;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
}

@media (min-width: 641px) {
  .btn-mobile-quote {
    display: none !important;
  }
}
