/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #5B2D8E;
  --primary-light: #F0E8F7;
  --primary-dark: #472272;
  --accent: #C4963A;
  --accent-light: #FBF5E8;
  --accent-dark: #A67B2C;
  --cta: #5B2D8E;
  --cta-hover: #472272;
  --text: #1A2332;
  --text-light: #4A5568;
  --text-lighter: #718096;
  --bg: #FFFFFF;
  --bg-soft: #FAFBFD;
  --bg-muted: #F5F7FA;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --border-light: #EDF2F7;
  --shadow-sm: 0 1px 3px rgba(26,35,50,0.06), 0 1px 2px rgba(26,35,50,0.04);
  --shadow-md: 0 4px 12px rgba(26,35,50,0.08), 0 2px 4px rgba(26,35,50,0.04);
  --shadow-lg: 0 10px 30px rgba(26,35,50,0.10), 0 4px 8px rgba(26,35,50,0.04);
  --shadow-xl: 0 20px 50px rgba(26,35,50,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === SHARED ICON BOX === */
.trust-icon, .service-row-icon,
.contact-card-icon, .hero-check-icon, .form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* === SECTION LABELS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-label::before { display: none; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--cta);
  color: #FFFFFF;
  border-color: var(--cta);
}

.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: 3px solid rgba(91, 45, 142, 0.5);
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary);
  border-color: #FFFFFF;
  font-weight: 700;
}

.btn-white:hover {
  background: var(--bg-muted);
}

/* === TOPBAR === */
.topbar {
  background: var(--primary);
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 0.8125rem;
  font-weight: 500;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  transition: opacity var(--transition);
}

.topbar-item:hover { opacity: 0.85; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.topbar-right {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-right svg { width: 14px; height: 14px; color: var(--accent); }

/* === NAVIGATION === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  padding: 0;
}

.navbar.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.logo { display: flex; align-items: center; text-decoration: none; }

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.875rem; }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--bg-muted); }
.hamburger svg { width: 24px; height: 24px; color: var(--text); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.4);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open { opacity: 1; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }

.mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--bg-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-close:hover { background: var(--border); }
.mobile-close svg { width: 20px; height: 20px; color: var(--text); }

.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav-links a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-menu .btn { width: 100%; }

/* === HERO === */
.hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F2FA 100%);
  position: relative;
  overflow: hidden;
}

.hero::before { display: none; }

.hero .container { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.hero-content { padding-top: 16px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-title .highlight { color: var(--primary); position: relative; display: inline-block; }

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(91, 45, 142, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-checks-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.hero-checks { display: flex; flex-direction: column; gap: 12px; }

.hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.hero-check-icon {
  width: 22px;
  height: 22px;
  background: var(--accent-light);
  border-radius: 50%;
}

.hero-check-icon svg { width: 12px; height: 12px; color: var(--accent); }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-left: 32px;
  border-left: 1px solid rgba(91, 45, 142, 0.12);
  text-align: center;
  flex-shrink: 0;
}

.hero-trust-badge img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.hero-trust-badge span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-lighter);
  line-height: 1.4;
  white-space: nowrap;
}

/* === HERO FORM === */
.hero-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-top: 68px;
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-form-subtitle {
  font-size: 0.875rem;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.hero-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-lighter);
}

.hero-form-trust svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* === FORMS === */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 45, 142, 0.12);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-lighter); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success.show { display: block; }

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.form-success-icon svg { width: 28px; height: 28px; color: var(--accent); }
.form-success h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 8px; }
.form-success p { font-size: 0.9375rem; color: var(--text-light); }

/* === TRUST BAR === */
.trust-bar { padding: 48px 0; background: var(--bg); border-bottom: 1px solid var(--border-light); }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
}

.trust-icon svg { width: 22px; height: 22px; color: var(--primary); }
.trust-label { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.trust-desc { font-size: 0.8125rem; color: var(--text-lighter); line-height: 1.5; }

/* === SERVICES === */
.services { padding: 96px 0; background: var(--bg); }

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.services-desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services-list { display: flex; flex-direction: column; gap: 0; }

.service-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; padding-bottom: 0; }

.service-row-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-row-icon svg { width: 18px; height: 18px; color: var(--primary); }
.service-row-content { flex: 1; }
.service-row-title { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; margin-bottom: 2px; }
.service-row-text { font-size: 0.8125rem; color: var(--text-light); line-height: 1.5; }

.service-row-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* === PROCESS === */
.process { padding: 96px 0; background: var(--bg-muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--border-light), var(--border), var(--border-light));
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-number {
  width: 72px;
  height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.process-step-title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; }
.process-step-text { font-size: 0.8125rem; color: var(--text-lighter); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* === ABOUT === */
.about { padding: 96px 0; background: var(--bg-muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.about-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.about-proof { display: flex; flex-direction: column; gap: 24px; }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-lighter);
  margin-top: 4px;
}

.dgusv-banner {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding: 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.dgusv-banner-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.dgusv-banner-left img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.dgusv-banner-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  white-space: nowrap;
}

.dgusv-banner-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-light);
  flex-shrink: 0;
}

.dgusv-banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dgusv-banner-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}

.dgusv-banner-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.dgusv-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.dgusv-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* === CONTACT === */
.contact { padding: 96px 0; background: var(--bg); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info p { font-size: 1.0625rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
}

.contact-card-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-card-label { font-size: 0.75rem; color: var(--text-lighter); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-card-value { font-size: 0.9375rem; font-weight: 600; color: var(--text); }

.contact-reassurance {
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.contact-reassurance svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-title { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; margin-bottom: 4px; }
.contact-form-subtitle { font-size: 0.875rem; color: var(--text-lighter); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-card .btn { width: 100%; margin-top: 8px; }

/* === CTA BANNER === */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

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

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-banner-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* === FOOTER === */
.footer {
  padding: 56px 0 0;
  background: var(--text);
  color: rgba(255,255,255,0.7);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-img { filter: brightness(0) invert(1); height: 48px; }

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

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

.footer-nav li,
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-nav a:hover { color: #FFFFFF; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 0;
}

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* === LEGAL PAGES === */
.legal-page {
  padding: 64px 0 96px;
  background: var(--bg);
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 800px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.legal-page a:hover {
  color: var(--primary-dark);
}

.legal-page strong {
  color: var(--text);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 480px; margin-top: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .process-grid::before { display: none; }
  .contact .container { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .topbar-right { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero { padding: 48px 0 56px; }
  .hero-title { font-size: 1.875rem; }
  .hero-checks-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero-trust-badge { flex-direction: row; padding-left: 0; border-left: none; padding-top: 0; border-top: none; }
  .hero-trust-badge img { width: 48px; height: 48px; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step-text { max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 0; }
  .dgusv-banner { flex-direction: column; text-align: center; gap: 24px; padding: 32px 24px; margin-top: 48px; }
  .dgusv-banner-divider { width: 60px; height: 1px; align-self: center; }
  .dgusv-banner-tags { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .topbar-left { gap: 12px; flex-direction: column; align-items: flex-start; }
  .topbar { padding: 8px 0; }
  .trust-bar .container { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .about, .services, .process, .contact { padding: 64px 0; }
  .about-stats { gap: 8px; }
  .about-stat { padding: 16px 12px; }
  .about-stat-number { font-size: 1.5rem; }
  .services-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card { padding: 24px; }
  .hero-form-card { padding: 20px 24px 24px; }
}
