/* ============================================
   Siedhoff Distributing Company - Main Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --primary-light: #2a5a8c;
  --accent: #d4a843;
  --accent-dark: #b8922e;
  --accent-light: #e8c468;
  --text: #2c2c2c;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --bg: #ffffff;
  --bg-light: #f8f9fb;
  --bg-gray: #f1f3f6;
  --border: #e2e6ec;
  --success: #2d8a4e;
  --error: #c0392b;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--bg-light);
}

.section--dark {
  background: var(--primary-dark);
  color: var(--text-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section--dark .section-header p {
  color: rgba(255,255,255,0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn--secondary:hover {
  background: var(--text-white);
  color: var(--primary-dark);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.2rem;
}

.header__logo:hover {
  color: var(--primary-dark);
}

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

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/pexels-robertkso-12196578.jpg') center/cover no-repeat;
  opacity: 0.15;
}

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

.hero__content {
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

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

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Services Preview --- */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-preview-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.service-preview-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-preview-card__body {
  padding: 24px;
}

.service-preview-card__body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.service-preview-card__body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-white);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

/* --- Lead Form --- */
.lead-form-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.lead-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lead-form-wrapper h2 {
  text-align: center;
  margin-bottom: 8px;
}

.lead-form-wrapper > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

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

.form-consent {
  margin-bottom: 20px;
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.5;
}

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

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
}

.form-consent a:hover {
  color: var(--accent);
}

.form-submit {
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--success);
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 8px;
}

/* --- About Section (Home) --- */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-home__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-home__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-home__text h2 {
  margin-bottom: 16px;
}

.about-home__text p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.about-home__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* --- About Page --- */
.about-hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
  background: var(--bg-light);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mission-values__text h2 {
  margin-bottom: 16px;
}

.mission-values__text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.mission-values__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mission-values__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-item {
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.value-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* --- Services Page --- */
.services-hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
  background: var(--bg-light);
  text-align: center;
}

.services-hero h1 {
  margin-bottom: 16px;
}

.services-hero p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.service-detail__text h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.service-detail__text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-detail__list {
  list-style: none;
  margin-bottom: 20px;
}

.service-detail__list li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-detail__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.work-examples {
  margin-top: 32px;
}

.work-examples h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

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

.work-example-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
}

.work-example-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Contact Page --- */
.contact-hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
  background: var(--bg-light);
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 16px;
}

.contact-hero p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

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

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item__text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.contact-info-item__text p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-item__text a {
  color: var(--primary);
}

.business-hours {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.business-hours h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:first-child {
  color: var(--text);
  font-weight: 500;
}

.hours-list li span:last-child {
  color: var(--text-light);
}

.contact-form-wrapper {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.map-section {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --- Business Model Page --- */
.bm-hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
  background: var(--bg-light);
  text-align: center;
}

.bm-hero h1 {
  margin-bottom: 16px;
}

.bm-hero p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.bm-section {
  margin-bottom: 48px;
}

.bm-section h2 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.bm-section p {
  color: var(--text-light);
  max-width: 800px;
}

.bm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

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

.bm-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.bm-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Legal Pages --- */
.legal-hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
  background: var(--bg-light);
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.legal-hero p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  padding: 4px 0;
  color: var(--text-light);
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content .last-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* --- Cookie Settings --- */
.cookie-types {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.cookie-type-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.cookie-type-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cookie-type-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: var(--transition);
}

.switch .slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.switch input:checked + .slider {
  background: var(--primary);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 24px;
  display: none;
  animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cookie-banner__text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal__content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.cookie-modal__content h2 {
  margin-bottom: 16px;
}

.cookie-modal__content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
  margin-top: auto;
}

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

.footer__brand {
  max-width: 320px;
}

.footer__brand h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__col h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--accent);
}

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer__legal-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer__legal-links a:hover {
  color: var(--accent);
}

/* --- Page Layout --- */
.page-main {
  flex: 1;
}

/* --- Accessibility Page --- */
.a11y-section {
  margin-bottom: 40px;
}

.a11y-section h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.a11y-section p {
  color: var(--text-light);
  line-height: 1.7;
}

.a11y-section ul {
  margin: 12px 0;
  padding-left: 24px;
}

.a11y-section ul li {
  list-style: disc;
  padding: 4px 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid,
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-home {
    gap: 40px;
  }

  .service-detail {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .features-grid,
  .services-preview-grid {
    grid-template-columns: 1fr;
  }

  .about-home {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-home__img img {
    height: 280px;
  }

  .mission-values {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form-wrapper {
    padding: 32px 24px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cookie-banner__inner {
    flex-direction: column;
  }

  .cookie-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-home__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero__badge {
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .lead-form-wrapper {
    padding: 24px 16px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .about-home__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .work-examples-grid {
    grid-template-columns: 1fr;
  }

  .cookie-modal__content {
    padding: 24px;
  }
}
