/* =====================================================
   EIDP — components.css
   Navbar, Hero, About, Services, Industries,
   Process, Why Us, Contact, Footer
   ===================================================== */

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(7, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--space-6);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__logo-img {
}

.navbar__logo-fallback {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-accent-warm);
  letter-spacing: -0.02em;
}

.navbar__logo-dot {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link[aria-current="page"] {
  color: var(--color-text-primary);
  background: rgba(255,255,255,0.04);
}

.navbar__link--cta {
  background: var(--gradient-brand) !important;
  color: #fff !important;
  padding: var(--space-2) var(--space-5) !important;
  box-shadow: var(--shadow-brand-sm);
}
.navbar__link--cta:hover {
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
  background: var(--gradient-brand) !important;
}

/* Controls */
.navbar__controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.06em;
}

.lang-btn.active,
.lang-btn[aria-pressed="true"] {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(124,92,252,0.3);
}

.lang-btn:hover:not(.active):not([aria-pressed="true"]) {
  color: var(--color-text-primary);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-nav) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Responsive navbar ─── */
@media (max-width: 900px) {
  .navbar__links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: min(320px, 100vw);
    height: calc(100dvh - var(--nav-height));
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    padding: var(--space-6) var(--space-4);
    background: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: var(--z-nav);
  }

  .navbar__links.open {
    transform: translateX(0);
  }

  .navbar__link {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    border-radius: var(--radius-md);
  }

  .navbar__link--cta {
    margin-top: var(--space-4);
    text-align: center;
    padding: var(--space-3) var(--space-4) !important;
  }

  .navbar__hamburger { display: flex; }

  /* Desktop lang switcher hidden — replaced by inline strip below */
  .lang-switcher { display: none; }

  /* Two-row navbar on mobile */
  .navbar {
    height: auto;
  }
  .navbar__container {
    height: auto;
    flex-wrap: wrap;
    padding-block: var(--space-2);
    gap: var(--space-2);
  }
  /* First row: logo stretches, hamburger stays right */
  .navbar__logo { flex: 1; }

  /* Lang strip: full-width second row */
  .navbar__lang-strip {
    display: flex !important;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
    padding-bottom: var(--space-2);
  }
  .navbar__lang-strip .lang-btn {
    font-size: var(--text-xs);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
  }
  .navbar__lang-strip .lang-btn.active,
  .navbar__lang-strip .lang-btn:hover {
    border-color: var(--color-brand);
    color: var(--color-brand-light);
    background: rgba(124,92,252,0.1);
  }
}

.lang-switcher-mobile {
  display: none;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  list-style: none;
}

@media (max-width: 900px) {
  .navbar__links .lang-switcher-mobile {
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
    background: transparent;
    border: none;
    border-radius: 0;
    gap: var(--space-2);
    padding-inline: 0;
  }
  .navbar__links .lang-switcher-mobile .lang-btn {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-3);
  }
}


/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background-color: var(--color-bg-primary);
}

/* Canvas particles */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Glow orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

.hero__glow--1 {
  width: 700px;
  height: 700px;
  top: -150px;
  left: 50%;
  transform: translateX(-40%);
  background: radial-gradient(circle, rgba(124,92,252,0.22) 0%, transparent 70%);
}

.hero__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -50px;
  right: -80px;
  background: radial-gradient(circle, rgba(192,132,252,0.15) 0%, transparent 70%);
}

.hero__glow--3 {
  width: 350px;
  height: 350px;
  top: 40%;
  left: -80px;
  background: radial-gradient(circle, rgba(99,60,255,0.12) 0%, transparent 70%);
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-20);
}

.hero__content {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-brand-subtle);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-brand-light);
  margin-bottom: var(--space-6);
}

.hero__headline {
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
}

.hero__sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: var(--leading-relaxed);
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-muted);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}
.hero__scroll-indicator:hover { opacity: 1; }

.hero__scroll-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-brand), transparent);
  border-radius: 1px;
}

@media (max-width: 600px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }
}


/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; }
}

.stat-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  border-color: var(--color-brand-border);
  box-shadow: 0 0 0 1px var(--color-brand-border), var(--shadow-sm);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--weight-bold);
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-card__label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}

/* ATECO badges */
.ateco-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.ateco-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-md);
  max-width: 320px;
}

.ateco-badge__code {
  font-family: monospace;
  font-size: var(--text-xs);
  color: var(--color-brand-light);
  background: var(--color-brand-subtle);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.ateco-badge__label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}


/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

.services-column {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition-base);
}

.services-column:hover {
  border-color: var(--color-brand-border);
}

.services-column__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.services-column__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-subtle);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-md);
  color: var(--color-brand-light);
  flex-shrink: 0;
}

.services-column__badge {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand-light);
  margin-bottom: var(--space-1);
}

.services-column__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
}

/* Service cards inside columns */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-card {
  padding: var(--space-4);
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient-brand);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.service-card:hover {
  border-color: var(--color-brand-border);
  transform: translateX(4px);
  background: var(--color-surface-hover);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}


/* ══════════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════════ */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
  cursor: default;
}

.industry-chip:hover {
  border-color: var(--color-brand-border);
  color: var(--color-text-primary);
  background: var(--color-brand-subtle);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.industry-chip__icon {
  font-size: 1rem;
}


/* ══════════════════════════════════════════
   PROCESS TIMELINE
   ══════════════════════════════════════════ */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}

/* Connecting line */
.process-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.process-line::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  border-radius: 1px;
  transition: width 1.5s ease;
}

.process-line.animated::after {
  width: 100%;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-primary);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.process-step.revealed .process-step__number,
.process-step:hover .process-step__number {
  border-color: var(--color-brand);
  background: var(--color-bg-primary);
  color: var(--color-brand-light);
  box-shadow: 0 0 0 6px rgba(124,92,252,0.08);
}

.process-step__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.process-step__icon {
  color: var(--color-brand-light);
  opacity: 0.7;
}

.process-step__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.process-step__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  text-align: center;
}

/* Responsive process */
@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-line {
    display: none;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    padding: var(--space-5);
    padding-left: 0;
    border-left: 2px solid var(--color-border);
    padding-bottom: var(--space-8);
    margin-left: calc(28px + var(--space-4));
    position: relative;
    gap: var(--space-5);
  }

  .process-step:last-child {
    border-color: transparent;
    padding-bottom: 0;
  }

  .process-step__number {
    position: absolute;
    left: calc(-28px - var(--space-4));
    top: var(--space-5);
    transform: none;
    width: 48px;
    height: 48px;
    font-size: var(--text-xs);
  }

  .process-step__content {
    align-items: flex-start;
  }
  .process-step__desc { text-align: left; }
}


/* ══════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════ */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1024px) { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .whyus-grid { grid-template-columns: 1fr; } }

.whyus-card {
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.whyus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.whyus-card:hover {
  border-color: var(--color-brand-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-brand-border);
}

.whyus-card:hover::after {
  opacity: 1;
}

.whyus-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-subtle);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-lg);
  color: var(--color-brand-light);
  margin: 0 auto var(--space-5);
  transition: all var(--transition-base);
}

.whyus-card:hover .whyus-card__icon {
  background: rgba(124,92,252,0.15);
  box-shadow: 0 0 20px rgba(124,92,252,0.2);
}

.whyus-card__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.whyus-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}


/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-subtle);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-md);
  color: var(--color-brand-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}

.contact-info__link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-info__link:hover {
  color: var(--color-brand-light);
  text-decoration: underline;
}

/* Contact form */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

@media (max-width: 480px) {
  .contact-form { padding: var(--space-5); }
}

.form-group {
  margin-bottom: var(--space-5);
  position: relative;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(124,92,252,0.15);
}

.form-input.invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235C6490' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-select option {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
}

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

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-2);
}

.form-group.has-error .form-error  { display: block; }
.form-group.has-error .form-input  { border-color: var(--color-error); }

/* Checkbox */
.form-group--checkbox { margin-bottom: var(--space-6); }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.form-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 2px;
}

.form-checkbox:checked ~ .form-checkbox-custom {
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.form-checkbox:checked ~ .form-checkbox-custom::after {
  content: '';
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.form-checkbox:focus-visible ~ .form-checkbox-custom {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.form-checkbox-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.form-checkbox-text a {
  color: var(--color-brand-light);
  text-decoration: underline;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  position: relative;
}

.contact-form__submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

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

.form-success.visible {
  display: block;
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.footer__container {
  padding-block: var(--space-16) var(--space-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--space-8); }
}

.footer__brand {
  max-width: 360px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.footer__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.footer__links {
  display: flex;
  gap: var(--space-12);
}

@media (max-width: 480px) {
  .footer__links { gap: var(--space-8); flex-wrap: wrap; }
}

.footer__col { min-width: 140px; }

.footer__col-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col a,
.footer__col button {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  text-align: left;
}

.footer__col a:hover,
.footer__col button:hover {
  color: var(--color-brand-light);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__legal,
.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
