:root {
  --c-primary: #1a3a6e;
  --c-primary-dark: #0f2347;
  --c-accent: #2d7dd2;
  --c-accent-2: #6c4fd4;
  --c-accent-3: #00b8a9;
  --c-grad-start: #1a3a6e;
  --c-grad-mid: #2d7dd2;
  --c-grad-end: #6c4fd4;
  --c-surface: #f4f6fb;
  --c-surface-2: #eef1f8;
  --c-white: #ffffff;
  --c-text: #1c2340;
  --c-text-muted: #5a6480;
  --c-text-light: #8a93b2;
  --c-border: #dde3f0;
  --c-dark-bg: #0d1526;
  --c-dark-surface: #131e35;
  --c-dark-text: #c8d3ed;
  --c-warning: #f59e0b;
  --c-danger: #ef4444;
  --c-success: #10b981;
  --gradient-main: linear-gradient(135deg, #1a3a6e 0%, #2d7dd2 50%, #6c4fd4 100%);
  --gradient-hero: linear-gradient(135deg, #0f2347 0%, #1a3a6e 30%, #2d7dd2 65%, #6c4fd4 100%);
  --gradient-accent: linear-gradient(135deg, #2d7dd2, #6c4fd4);
  --gradient-warm: linear-gradient(135deg, #6c4fd4, #00b8a9);
  --shadow-sm: 0 1px 3px rgba(26,58,110,0.08), 0 1px 2px rgba(26,58,110,0.06);
  --shadow-md: 0 4px 16px rgba(26,58,110,0.12), 0 2px 6px rgba(26,58,110,0.08);
  --shadow-lg: 0 12px 40px rgba(26,58,110,0.16), 0 4px 12px rgba(26,58,110,0.1);
  --shadow-xl: 0 24px 64px rgba(26,58,110,0.2), 0 8px 24px rgba(26,58,110,0.12);
  --shadow-glow: 0 0 40px rgba(45,125,210,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-xs: clamp(8px, 1.5vw, 12px);
  --space-sm: clamp(12px, 2vw, 20px);
  --space-md: clamp(20px, 3vw, 32px);
  --space-lg: clamp(32px, 5vw, 56px);
  --space-xl: clamp(48px, 8vw, 96px);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  width: min(1200px, 100% - 2 * var(--space-md));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  color: var(--c-text);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--c-dark-bg);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 21, 38, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  width: min(1200px, 100% - 2 * var(--space-md));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-dark-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--c-white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-toggle:hover { background: rgba(255,255,255,0.1); }

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.mobile-overlay.active { display: block; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-main);
  color: var(--c-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 20px rgba(45,125,210,0.35), 0 2px 8px rgba(108,79,212,0.2);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,125,210,0.45), 0 4px 16px rgba(108,79,212,0.3);
  opacity: 0.95;
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.12);
  color: var(--c-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--c-accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  border: 2px solid var(--c-accent);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--gradient-accent);
  color: var(--c-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(45,125,210,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--c-text);
}

.section-header p {
  color: var(--c-text-muted);
  font-size: clamp(15px, 1.8vw, 17px);
}

.section-header.light h2 { color: var(--c-white); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header.light .section-tag {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  width: min(1200px, 100% - 2 * var(--space-md));
  margin-inline: auto;
}

.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -2;
}

body:has(.hero) {
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(108,79,212,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(45,125,210,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 60% 90%, rgba(0,184,169,0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-md) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}

.trust-item i {
  color: var(--c-accent-3);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(108,79,212,0.3);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  font-size: 24px;
  color: var(--c-accent-3);
}

.floating-card strong {
  display: block;
  color: var(--c-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.floating-card span {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}

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

/* ===== APPROACH SECTION ===== */
.approach-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-surface);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.approach-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,125,210,0.2);
}

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

.approach-icon {
  width: 52px; height: 52px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(45,125,210,0.3);
}

.approach-icon i {
  font-size: 22px;
  color: var(--c-white);
}

.approach-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-text);
}

.approach-card p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(108,79,212,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(0,184,169,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.process-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.12);
}

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  padding: 20px 24px 0;
  letter-spacing: 0.05em;
}

.step-content { padding: 0 0 24px; }

.step-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin: 16px 0;
}

.step-text { padding: 0 24px; }

.step-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
}

.step-text p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.why-text .section-tag { margin-bottom: 12px; }

.why-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 20px;
}

.why-text p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.why-text p strong { color: var(--c-text); }

.honesty-box {
  display: flex;
  gap: 16px;
  background: linear-gradient(135deg, rgba(26,58,110,0.06), rgba(108,79,212,0.06));
  border: 1px solid rgba(45,125,210,0.2);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}

.honesty-box i {
  color: var(--c-warning);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.honesty-box p {
  margin: 0;
  font-size: 15px;
  color: var(--c-text);
}

.why-visual { position: relative; }

.why-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--gradient-main);
  color: var(--c-white);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
}

/* ===== SERVICES SWIPER ===== */
.services-preview {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-surface);
}

.services-swiper {
  padding-bottom: 60px !important;
}

.service-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-border);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i { font-size: 22px; color: var(--c-white); }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-text);
}

.service-card p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.swiper-pagination-bullet { background: var(--c-accent) !important; }
.swiper-pagination-bullet-active { background: var(--c-accent-2) !important; }
.swiper-button-prev, .swiper-button-next { color: var(--c-accent) !important; }

.services-cta {
  text-align: center;
  margin-top: var(--space-md);
}

/* ===== CTA DUAL ===== */
.cta-dual {
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-surface-2) 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.cta-primary-card, .cta-secondary-card {
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.cta-primary-card {
  background: var(--gradient-main);
  color: var(--c-white);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cta-secondary-card {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-md);
}

.cta-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.cta-primary-card .cta-icon {
  background: rgba(255,255,255,0.15);
  color: var(--c-white);
}

.cta-secondary-card .cta-icon {
  background: var(--gradient-main);
  color: var(--c-white);
}

.cta-primary-card h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--c-white);
}

.cta-secondary-card h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--c-text);
}

.cta-primary-card p { color: rgba(255,255,255,0.8); font-size: 15px; }
.cta-secondary-card p { color: var(--c-text-muted); font-size: 15px; }

.cta-primary-card .btn-primary {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
}

.cta-primary-card .btn-primary:hover {
  background: rgba(255,255,255,0.3);
  box-shadow: none;
}

/* ===== LOCATION SECTION ===== */
.location-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: center;
}

.location-info .section-tag { margin-bottom: 12px; }

.location-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item > i {
  width: 40px; height: 40px;
  background: var(--gradient-main);
  color: var(--c-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item > div strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-light);
  margin-bottom: 4px;
}

.contact-item > div span,
.contact-item > div a {
  font-size: 16px;
  color: var(--c-text);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-item > div a:hover { color: var(--c-accent); }

.location-map iframe {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 70% at 80% 20%, rgba(108,79,212,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(0,184,169,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}

.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* ===== ABOUT / MISSION ===== */
.about-mission {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.mission-text .section-tag { margin-bottom: 12px; }

.mission-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 20px;
}

.mission-text p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}

.mission-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ===== VALUES GRID ===== */
.values-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.value-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 52px; height: 52px;
  background: var(--gradient-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon i { font-size: 22px; color: var(--c-white); }

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p { color: var(--c-text-muted); font-size: 15px; line-height: 1.65; }

/* ===== APPROACH TWO COL ===== */
.about-approach {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.approach-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.approach-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.approach-content .section-tag { margin-bottom: 12px; }

.approach-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
}

.approach-content p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}

.approach-note {
  display: flex;
  gap: 14px;
  background: rgba(45,125,210,0.07);
  border: 1px solid rgba(45,125,210,0.2);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 24px;
}

.approach-note i { color: var(--c-accent); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.approach-note p { margin: 0; font-size: 15px; color: var(--c-text); }

/* ===== SERVICES FULL ===== */
.services-full {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--c-border);
  align-items: start;
}

.service-block:last-child { border-bottom: none; }

.gradient-icon {
  width: 64px; height: 64px;
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(45,125,210,0.3);
}

.gradient-icon i { font-size: 26px; color: var(--c-white); }

.service-block-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  margin-bottom: 16px;
}

.service-block-content p {
  color: var(--c-text-muted);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.75;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}

.service-detail-item i { color: var(--c-accent-3); font-size: 14px; flex-shrink: 0; }

.services-note-section {
  padding: var(--space-lg) var(--space-md);
  background: var(--c-surface);
}

.services-note {
  display: flex;
  gap: var(--space-md);
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  align-items: flex-start;
}

.note-icon {
  width: 56px; height: 56px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.note-icon i { font-size: 24px; color: var(--c-white); }

.note-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.note-content p {
  color: var(--c-text-muted);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.note-content p:last-child { margin-bottom: 0; }

/* ===== GUIDE / FRAUD SIGNS ===== */
.guide-intro {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.guide-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.lead-text {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.guide-intro-text p {
  color: var(--c-text-muted);
  font-size: 15px;
}

.guide-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.warning-signs {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-surface);
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.sign-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-border);
  border-top: 4px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sign-card.red { border-top-color: var(--c-danger); }
.sign-card.orange { border-top-color: var(--c-warning); }
.sign-card.yellow { border-top-color: #eab308; }

.sign-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.sign-card.red .sign-icon { background: rgba(239,68,68,0.1); color: var(--c-danger); }
.sign-card.orange .sign-icon { background: rgba(245,158,11,0.1); color: var(--c-warning); }
.sign-card.yellow .sign-icon { background: rgba(234,179,8,0.1); color: #eab308; }

.sign-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.sign-card p { color: var(--c-text-muted); font-size: 14px; line-height: 1.65; }

/* ===== HOW TO CHECK ===== */
.how-to-check {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.check-content .section-tag { margin-bottom: 12px; }

.check-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.check-steps { display: flex; flex-direction: column; gap: 24px; }

.check-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.check-num {
  width: 40px; height: 40px;
  background: var(--gradient-main);
  color: var(--c-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.check-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.check-step p { color: var(--c-text-muted); font-size: 14px; line-height: 1.65; }

.check-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ===== ALREADY VICTIM ===== */
.already-victim {
  padding: var(--space-xl) var(--space-md);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.already-victim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(108,79,212,0.25) 0%, transparent 60%);
}

.victim-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  backdrop-filter: blur(12px);
}

.victim-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--c-accent-3);
  flex-shrink: 0;
}

.victim-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 16px;
}

.victim-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.victim-content p:last-of-type { margin-bottom: 24px; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-md);
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(45,125,210,0.12);
}

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

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--c-accent);
  cursor: pointer;
}

.form-check label {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-check label a {
  color: var(--c-accent);
  text-decoration: underline;
}

.contact-info-card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: var(--space-md);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-light);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-item a:hover { color: var(--c-accent); }

.contact-note {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--c-border);
}

.contact-note i { color: var(--c-accent); font-size: 16px; flex-shrink: 0; }
.contact-note p { font-size: 14px; color: var(--c-text-muted); margin: 0; }

/* ===== MAP SECTION ===== */
.map-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.map-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  margin-bottom: var(--space-md);
  text-align: center;
}

.map-wrap iframe {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ===== THANKS PAGE ===== */
.thanks-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.thanks-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(108,79,212,0.25) 0%, transparent 60%);
}

.thanks-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
}

.thanks-icon {
  font-size: 72px;
  color: var(--c-accent-3);
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

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

.thanks-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 20px;
}

.thanks-content p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.thanks-note {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 32px !important;
}

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

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: calc(var(--nav-h) + var(--space-lg)) var(--space-md) var(--space-lg);
  background: var(--gradient-hero);
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 12px;
}

.legal-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.legal-content {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-white);
}

.legal-body {
  max-width: 800px;
  margin-inline: auto;
}

.legal-body h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: var(--space-md) 0 12px;
  color: var(--c-text);
}

.legal-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--c-text);
}

.legal-body p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style: none;
}

.legal-body ul li {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.75;
  padding: 4px 0 4px 24px;
  position: relative;
}

.legal-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 600;
}

.legal-body a { color: var(--c-accent); text-decoration: underline; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.cookie-table th {
  background: var(--c-surface);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--c-text);
  border-bottom: 2px solid var(--c-border);
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.cookie-table tr:last-child td { border-bottom: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--c-dark-bg);
  color: var(--c-dark-text);
  padding: var(--space-xl) 0 0;
  position: relative;
}

.footer-container {
  width: min(1200px, 100% - 2 * var(--space-md));
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(200,211,237,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 12px !important;
  color: rgba(200,211,237,0.45) !important;
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  font-size: 14px;
  color: rgba(200,211,237,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li i {
  color: var(--c-accent);
  font-size: 13px;
  width: 14px;
}

.footer-col ul li a {
  color: rgba(200,211,237,0.65);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: var(--c-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(200,211,237,0.4);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--gradient-main);
  color: var(--c-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  z-index: 500;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-dark-surface);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--space-md);
  z-index: 2000;
  display: none;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}

.cookie-banner.show { display: block; }

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  max-width: 1200px;
  margin-inline: auto;
}

.cookie-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 13px;
  color: rgba(200,211,237,0.7);
  max-width: 600px;
}

.cookie-text a { color: var(--c-accent); text-decoration: underline; }

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--gradient-main);
  color: var(--c-white);
  border: none;
}

.cookie-accept:hover { opacity: 0.9; transform: translateY(-1px); }

.cookie-customize {
  background: transparent;
  color: var(--c-dark-text);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-customize:hover { background: rgba(255,255,255,0.1); }

.cookie-reject {
  background: transparent;
  color: rgba(200,211,237,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}

.cookie-reject:hover { color: var(--c-white); background: rgba(255,255,255,0.05); }

.cookie-customize-panel {
  max-width: 1200px;
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--c-dark-text);
  cursor: pointer;
}

.cookie-category input[type="checkbox"] { accent-color: var(--c-accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + var(--space-lg));
    width: 100%;
  }

  .hero-visual { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - var(--nav-h));
    background: var(--c-dark-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg) var(--space-md);
    gap: 8px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.08);
  }

  .nav-link::after { display: none; }

  .nav-toggle { display: flex; }

  .why-grid,
  .mission-grid,
  .approach-two-col,
  .check-grid,
  .guide-intro-grid,
  .location-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .why-img, .mission-img, .approach-img, .check-img, .guide-img {
    height: 260px;
  }

  .why-badge { right: 16px; }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block-icon { order: -1; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .victim-card {
    flex-direction: column;
  }

  .services-note {
    flex-direction: column;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .hero-img { height: 300px; }

  .hero {
    padding: calc(var(--nav-h) + var(--space-md)) var(--space-sm) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-primary-card, .cta-secondary-card { padding: var(--space-md); }
  .contact-form-wrap, .contact-info-wrap { padding: 0; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn-primary,
  .thanks-actions .btn-outline { width: 100%; justify-content: center; }
}