/* ===== DESIGN SYSTEM TOKENS ===== */
:root {
  --navy: #1a2e5a;
  --navy-deep: #0c1a38;
  --navy-light: #243b6e;
  --blue: #1565c0;
  --blue-light: #2196f3;
  --blue-sky: #42a5f5;
  --blue-glow: #60a5fa;
  --orange: #e8751a;
  --orange-light: #f59e3f;
  --orange-glow: #ff8c2a;
  --green: #22c55e;
  --green-light: #4ade80;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.14);
  --shadow-glow-blue: 0 0 40px rgba(21,101,192,0.15);
  --shadow-glow-orange: 0 0 40px rgba(232,117,26,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== PARTICLES CANVAS ===== */
.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 560px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-glow), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 24px rgba(0,0,0,.06);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-glow));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-glow)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 18px rgba(232,117,26,0.3);
  transition: var(--transition) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(232,117,26,0.4) !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 10;
  width: 36px;
  height: 36px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0c1a38 0%, #1a2e5a 40%, #243b6e 70%, #1a2e5a 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-orb-1 {
  top: -15%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,0.25) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,117,26,0.15) 0%, transparent 70%);
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.hero-orb-3 {
  top: 30%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite 3s;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hero-content { animation: fadeInUp 0.8s ease-out; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px 8px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.hero-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--green);
}

.hero-badge .badge-arrow {
  font-size: 0.85rem;
  opacity: 0.6;
  transition: var(--transition);
}

.hero-badge:hover .badge-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title .highlight-gradient {
  background: linear-gradient(135deg, var(--orange), var(--orange-glow), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight-line {
  position: relative;
  display: inline-block;
}

.hero-title .highlight-line::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-description strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(232,117,26,0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(232,117,26,0.45);
}

.glow-effect {
  animation: glowPulse 3s ease-in-out infinite;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy-deep);
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.trust-avatar:first-child { margin-left: 0; }

.trust-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.trust-text strong {
  color: var(--orange-light);
  font-weight: 700;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,26,56,0.6) 100%);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 5;
}

.floating-badge.top-right {
  top: 20px;
  right: -20px;
}

.floating-badge.bottom-left {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s;
}

.floating-badge.center-right {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-badge .badge-icon.green { background: rgba(34,197,94,0.1); }
.floating-badge .badge-icon.orange { background: rgba(232,117,26,0.1); }
.floating-badge .badge-icon.blue { background: rgba(21,101,192,0.1); }

.floating-badge .badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
}

.floating-badge .badge-sub {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 400;
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  z-index: 3;
  background: var(--white);
  padding: 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.08), 0 10px 40px rgba(0,0,0,0.04);
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0 100px;
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.services-header .section-label { justify-content: center; }
.services-header .section-subtitle { margin: 0 auto; }

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

.service-card {
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card-accent.accent-orange { background: linear-gradient(90deg, var(--orange), var(--orange-glow)); }
.service-card-accent.accent-green { background: linear-gradient(90deg, var(--green), var(--green-light)); }
.service-card-accent.accent-purple { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }

.service-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover .service-card-accent { opacity: 1; }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(33,150,243,0.06));
  color: var(--blue);
  transition: var(--transition);
}

.service-icon.icon-orange {
  background: linear-gradient(135deg, rgba(232,117,26,0.1), rgba(245,158,63,0.06));
  color: var(--orange);
}

.service-icon.icon-green {
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(74,222,128,0.06));
  color: var(--green);
}

.service-icon.icon-purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(167,139,250,0.06));
  color: var(--purple);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

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

.service-arrow {
  font-size: 1.1rem;
  color: var(--gray-300);
  transition: var(--transition);
  display: inline-block;
}

.service-card:hover .service-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header .section-label { justify-content: center; }
.how-header .section-subtitle { margin: 0 auto; }

.steps-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-light), var(--orange), var(--green));
  opacity: 0.2;
}

.step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step:last-child { margin-bottom: 0; }

.step-connector {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  box-shadow: 0 8px 24px rgba(21,101,192,0.25);
  transition: var(--transition);
}

.step-number.step-2 {
  background: linear-gradient(135deg, var(--blue), var(--blue-sky));
  box-shadow: 0 8px 24px rgba(33,150,243,0.25);
}

.step-number.step-3 {
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  box-shadow: 0 8px 24px rgba(232,117,26,0.25);
}

.step-number.step-4 {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 8px 24px rgba(34,197,94,0.25);
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step-content {
  padding: 8px 0 20px;
  border-bottom: 1px solid var(--gray-100);
  flex: 1;
}

.step:last-child .step-content { border-bottom: none; }

.step-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(21,101,192,0.06);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.step-tag.tag-blue { color: var(--blue-light); background: rgba(33,150,243,0.06); }
.step-tag.tag-orange { color: var(--orange); background: rgba(232,117,26,0.06); }
.step-tag.tag-green { color: var(--green); background: rgba(34,197,94,0.06); }

.step-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,117,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.testimonials-header .section-label {
  color: var(--orange-light);
}

.testimonials-header .section-label::before {
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
}

.testimonials-header .section-title {
  color: var(--white);
}

.testimonials-header .section-subtitle {
  color: rgba(255,255,255,0.5);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.testimonial-card.featured {
  background: rgba(232,117,26,0.08);
  border-color: rgba(232,117,26,0.2);
}

.testimonial-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(232,117,26,0.3);
}

.testimonial-stars {
  font-size: 1rem;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-text strong {
  color: var(--orange-light);
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.1), transparent, rgba(232,117,26,0.1));
  pointer-events: none;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--gray-100);
  animation: float 5s ease-in-out infinite;
}

.about-floating-icon {
  width: 44px;
  height: 44px;
  background: rgba(21,101,192,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-floating-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-floating-card span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.about-text .section-subtitle { margin-bottom: 36px; }

.about-text .section-subtitle strong {
  color: var(--gray-700);
}

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

.about-feature-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.about-feature-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(21,101,192,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.icon-orange { background: rgba(232,117,26,0.08); }
.feature-icon.icon-green { background: rgba(34,197,94,0.08); }
.feature-icon.icon-purple { background: rgba(139,92,246,0.08); }

.about-feature-item h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.55;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow), #f59e3f);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ===== CONTACT / FORM ===== */
.contact {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,117,26,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-label { color: var(--orange-light); }
.contact-info .section-label::before { background: linear-gradient(90deg, var(--orange-light), var(--orange)); }
.contact-info .section-title { color: var(--white); }

.contact-info .section-subtitle {
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

.contact-info .section-subtitle strong {
  color: rgba(255,255,255,0.8);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  text-decoration: none;
}

.contact-method:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon.whatsapp { background: rgba(37,211,102,0.12); }
.contact-method-icon.email { background: rgba(96,165,250,0.12); }

.contact-method-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-method-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.contact-method-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.2);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-method:hover .contact-method-arrow {
  color: rgba(255,255,255,0.6);
  transform: translateX(4px);
}

.contact-method-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* FORM */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--green));
}

.form-header {
  margin-bottom: 28px;
}

.contact-form-wrapper h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-wrapper .form-sub {
  font-size: 0.85rem;
  color: var(--gray-400);
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21,101,192,0.06);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(232,117,26,0.3);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.form-submit:hover::before { opacity: 1; }

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,117,26,0.4);
}

.form-privacy {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-privacy a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(21,101,192,0.3);
  transition: var(--transition);
}

.form-privacy a:hover {
  color: var(--blue-light);
  text-decoration-color: var(--blue-light);
}

/* ===== LGPD CONSENT CHECKBOX ===== */
.form-consent {
  margin: 20px 0 8px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(21,101,192,0.03), rgba(139,92,246,0.03));
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-consent:hover {
  border-color: var(--gray-300);
}

.form-consent.error {
  border-color: #ef4444;
  background: rgba(239,68,68,0.03);
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.consent-checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--white);
  margin-top: 1px;
}

.consent-checkmark svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.consent-checkbox:checked + .consent-checkmark {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(21,101,192,0.25);
}

.consent-checkbox:checked + .consent-checkmark svg {
  opacity: 1;
  transform: scale(1);
}

.consent-checkbox:focus-visible + .consent-checkmark {
  box-shadow: 0 0 0 3px rgba(21,101,192,0.15);
}

.consent-text {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.consent-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(21,101,192,0.3);
  transition: var(--transition);
}

.consent-text a:hover {
  color: var(--blue-light);
  text-decoration-color: var(--blue-light);
}

.consent-text strong {
  color: var(--gray-600);
  font-weight: 700;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}

.cookie-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(21,101,192,0.15), rgba(139,92,246,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-glow);
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--blue-glow);
  text-decoration: underline;
  text-decoration-color: rgba(96,165,250,0.3);
  transition: var(--transition);
}

.cookie-text a:hover {
  color: var(--white);
}

.cookie-text strong {
  color: rgba(255,255,255,0.7);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(21,101,192,0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21,101,192,0.4);
}

.cookie-btn-essential {
  padding: 10px 22px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-essential:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.cookie-btn-reject {
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-reject:hover {
  color: rgba(255,255,255,0.7);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-lgpd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem !important;
  color: var(--green) !important;
  background: rgba(34,197,94,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); transform: translateX(3px); display: inline-block; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.social-link:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.3);
  color: #25d366;
  transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: whatsappRing 2s ease-in-out infinite;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -20px); }
  50% { transform: translate(-10px, 15px); }
  75% { transform: translate(15px, 10px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(232,117,26,0.35); }
  50% { box-shadow: 0 8px 40px rgba(232,117,26,0.55); }
}

@keyframes whatsappRing {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(.4,0,.2,1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 20px auto 0; }
  .floating-badge.center-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 400px; justify-self: center; }
  .about .container { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .contact .container { grid-template-columns: 1fr; }
  .contact-info { text-align: center; }
  .contact-info .section-label { justify-content: center; }
  .contact-info .section-subtitle { margin: 0 auto 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cookie-banner-content { flex-wrap: wrap; }
  .cookie-actions { width: 100%; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    gap: 16px;
  }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-timeline { padding-left: 0; }
  .timeline-line { left: 34px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-wrap: wrap; gap: 0; }
  .stat-item { min-width: 50%; }
  .stat-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-banner-content { flex-direction: column; text-align: center; padding: 20px 18px; }
  .cookie-icon { display: none; }
  .cookie-actions { flex-direction: column; gap: 8px; }
  .cookie-btn-accept, .cookie-btn-essential, .cookie-btn-reject { width: 100%; }
  .contact-form-wrapper { padding: 28px 22px; }
  .floating-badge { display: none; }
  .hero-badge { font-size: 0.72rem; }
  .cta-content h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero .container { padding-top: 90px; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 0.88rem; }
  .stats-grid { padding: 28px 12px; }
  .stat-number { font-size: 1.5rem; }
}