/* ===========================
   NeoFleet Solutions – Styles
   =========================== */

:root {
  --navy: #1a2b4a;
  --navy-dark: #0f2135;
  --gold: #d4a24a;
  --gold-light: #e8c47a;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f4f8;
  --gray-200: #e2e8f0;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; border-radius: var(--radius); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-500); line-height: 1.7; }

.gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-12 { margin-bottom: 12px; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.5px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.logo-tagline {
  font-size: 0.5rem;
  color: var(--gray-500);
  letter-spacing: 0.8px;
  display: none;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  background: none;
  border: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.chevron {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav-item.open .chevron { transform: rotate(180deg); }

.header-cta { flex-shrink: 0; }

/* ===== DROPDOWNS ===== */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  min-width: 680px;
  z-index: 999;
  animation: ddFadeIn 0.18s ease;
  border: 1px solid var(--gray-200);
}
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-item.open .dropdown { display: block; }

.dropdown-benefit,
.dropdown-kontakte,
.dropdown-jobs,
.dropdown-impressum { min-width: 860px; }

.dropdown-grid { display: grid; gap: 24px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2-wide { grid-template-columns: 1fr 1.2fr; gap: 32px; }

/* Dropdown icons */
.dd-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 162, 74, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.dd-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.dd-icon.sm { width: 32px; height: 32px; margin-bottom: 0; }
.dd-icon.sm svg { width: 16px; height: 16px; }

/* Dropdown card links */
.dropdown-card {
  display: block;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.dropdown-card:hover { background: var(--gray-50); }
.dropdown-card h4 { margin-bottom: 6px; }
.dropdown-card p { font-size: 0.82rem; }

/* Dropdown column */
.dd-col { display: flex; flex-direction: column; gap: 12px; }
.dd-col h3 { color: var(--navy); margin-bottom: 4px; }
.dd-subtitle { font-size: 0.85rem; }
.dd-divider { height: 1px; background: var(--gray-200); margin: 8px 0; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 8px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Portal cards */
.portal-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.portal-card .dd-icon { margin-bottom: 0; }
.portal-card p { font-size: 0.82rem; }

/* Contact items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

/* Person card */
.person-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 14px;
}
.person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.person-card strong { display: block; font-size: 0.95rem; }
.person-role { font-size: 0.8rem; color: var(--gray-500); display: block; margin-bottom: 4px; }
.person-contact { font-size: 0.8rem; color: var(--gray-500); }

/* Address */
.address-block { font-size: 0.9rem; line-height: 1.8; }
.company-info { font-size: 0.85rem; line-height: 2; }

/* Map */
.map-placeholder { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.map-svg { width: 100%; display: block; }

/* Jobs dropdown */
.job-list { display: flex; flex-direction: column; gap: 8px; }
.job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: background var(--transition);
  font-size: 0.85rem;
  gap: 12px;
}
.job-item:hover { background: var(--gray-200); }
.job-item div { display: flex; flex-direction: column; gap: 2px; }
.job-item strong { color: var(--navy); font-size: 0.88rem; }
.job-item span { color: var(--gray-500); font-size: 0.8rem; }
.job-arrow { color: var(--gold); font-weight: 700; }

.team-photo {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
}
.team-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gray-700);
  position: relative;
  padding-left: 20px;
}
.quote-mark { color: var(--gold); font-size: 2rem; line-height: 0; position: absolute; left: 0; top: 12px; }

.initiative-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

/* Legal items */
.legal-list, .legal-item { display: flex; flex-direction: column; gap: 8px; }
.legal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.85rem;
  transition: background var(--transition);
}
.legal-item:hover { background: var(--gray-200); }
.legal-item div { display: flex; flex-direction: column; gap: 2px; }
.legal-item strong { color: var(--navy); }
.legal-item span { color: var(--gray-500); font-size: 0.78rem; }

/* Trust box */
.trust-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}
.trust-lock { font-size: 1.5rem; }

/* Help box */
.help-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
}
.help-box span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.help-box div { display: flex; flex-direction: column; gap: 4px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1920&q=85');
  background-size: cover;
  background-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.88) 40%,
    rgba(255,255,255,0.3) 70%,
    rgba(255,255,255,0) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-text { max-width: 600px; }
.hero-title { margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 32px; max-width: 480px; }

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 162, 74, 0.12);
  border: 2px solid rgba(212, 162, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.hero-feature div { display: flex; flex-direction: column; }
.hero-feature strong { font-size: 0.9rem; color: var(--navy); }
.hero-feature span { font-size: 0.78rem; color: var(--gray-500); }
.hero-btn { margin-top: 4px; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-gray { background: var(--gray-50); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin: 12px 0; }
.section-label {
  display: inline-block;
  background: rgba(212, 162, 74, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; gap: 24px; }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 162, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.card h3 { color: var(--navy); }
.card p { font-size: 0.9rem; flex: 1; }
.card-link { color: var(--gold); font-weight: 600; font-size: 0.88rem; align-self: flex-start; }
.card-link:hover { text-decoration: underline; }

.value-list { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.value-list li { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.value-list li::before { content: '— '; color: var(--gold); }

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.partner-logo {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===== BENEFIT SECTION ===== */
.benefit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.benefit-left {}
.checklist.large { gap: 16px; }
.checklist.large li {
  align-items: flex-start;
  font-size: 1rem;
  gap: 14px;
}
.checklist.large .check-icon { width: 28px; height: 28px; font-size: 0.85rem; margin-top: 2px; }
.checklist.large li div { display: flex; flex-direction: column; }
.checklist.large li span { color: var(--gray-500); font-size: 0.85rem; font-weight: 400; }

.benefit-right { display: flex; flex-direction: column; gap: 20px; }
.portal-card-large {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: center;
  transition: box-shadow var(--transition);
}
.portal-card-large:hover { box-shadow: var(--shadow); }
.portal-screen {
  width: 160px;
  height: 110px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 8px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.portal-screen.alt { background: linear-gradient(135deg, var(--navy) 60%, var(--gold) 150%); }
.screen-bar { display: flex; gap: 4px; margin-bottom: 8px; }
.screen-bar span { width: 6px; height: 6px; background: rgba(255,255,255,0.4); border-radius: 50%; }
.screen-content { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.screen-chart { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.chart-bar { flex: 1; background: var(--gold); border-radius: 2px 2px 0 0; opacity: 0.85; }
.screen-label { font-size: 0.62rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.screen-users { display: flex; gap: 6px; align-items: center; flex: 1; justify-content: center; }
.user-dot { width: 24px; height: 24px; background: rgba(255,255,255,0.25); border-radius: 50%; }
.portal-info { flex: 1; }
.portal-info .dd-icon { margin-bottom: 8px; }
.portal-info h3 { margin-bottom: 6px; font-size: 1.05rem; }
.portal-info p { font-size: 0.85rem; margin-bottom: 12px; }

/* ===== KONTAKT SECTION ===== */
.kontakt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 64px; }
.kontakt-col { display: flex; flex-direction: column; gap: 16px; }
.kontakt-col h3 { color: var(--navy); margin-bottom: 4px; }

.contact-options { display: flex; flex-direction: column; gap: 12px; }
.contact-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
}
.co-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 162, 74, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.co-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-option div { display: flex; flex-direction: column; gap: 2px; }
.contact-option strong { font-size: 0.9rem; color: var(--navy); }
.contact-option span { font-size: 0.82rem; color: var(--gray-500); }
.text-sm { font-size: 0.78rem; }

.person-card-large {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
}
.person-avatar-lg { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.map-large { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.map-svg-large { width: 100%; display: block; }
.address-block.large { padding: 16px; background: var(--gray-50); border-radius: var(--radius); }

/* Contact form */
.contact-form-section {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 40px;
}
.contact-form-section h3 { margin-bottom: 8px; }
.contact-form-section > p { margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 700px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
}
.form-check input { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; }
.form-check a { color: var(--gold); text-decoration: underline; }
.form-success {
  padding: 12px 18px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  color: #15803d;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== JOBS SECTION ===== */
.jobs-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.jobs-why, .jobs-listings, .jobs-team {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.job-list.large .job-item { font-size: 0.9rem; }
.team-photo-large { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); }
.team-quote.large { font-size: 0.95rem; padding-left: 24px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.85); }
.footer-values { background: var(--navy-dark); padding: 48px 0; }
.footer-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.footer-value { display: flex; gap: 14px; align-items: flex-start; }
.fv-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,162,74,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fv-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.footer-value div { display: flex; flex-direction: column; gap: 4px; }
.footer-value strong { font-size: 0.9rem; color: var(--white); }
.footer-value span { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.4; }
.footer-logo-wrap { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 32px; }
.footer-logo { display: flex; gap: 12px; align-items: center; }
.footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub { color: var(--gold); }

.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-logo-wrap { border-left: none; padding-left: 0; }
}

@media (max-width: 1024px) {
  .header-cta { display: none; }
  .dropdown { min-width: 90vw !important; left: -40vw; transform: none; }
  .benefit-layout { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr 1fr; }
  .jobs-layout { grid-template-columns: 1fr 1fr; }
  .jobs-team { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; margin-left: auto; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .jobs-layout { grid-template-columns: 1fr; }
  .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .cards-grid.cols-3 { grid-template-columns: 1fr; }
  .footer-values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-features { flex-direction: column; gap: 16px; }
  .contact-form-section { padding: 28px; }
  .dropdown { display: none !important; }
  h1 { font-size: 1.8rem; }
  .section { padding: 60px 0; }
}
