/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Custom Properties */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #111111;
  --text-secondary: #555555;
  --accent: #000000;
  --border: #e5e5e5;
  --font-sans: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --nav-height: 72px;
  --container-max: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.2s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 0.9375rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary); }
.mono { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: #222; border-color: #222; }
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: #fff; color: var(--accent); border-color: #fff; }
.btn--sm { padding: 9px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1.0625rem; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text-primary); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 6px 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: transparent;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Page Wrapper */
.page { padding-top: var(--nav-height); }

/* Sections */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-secondary); }
.section__header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section__header .mono { margin-bottom: 12px; display: block; }
.section__header h2 { margin-bottom: 16px; }
.section__header p { font-size: 1.0625rem; }

/* Hero */
.hero {
  padding: 112px 0 96px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--bg-secondary);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(560px, calc(52vw - 32px));
}
.hero .mono { margin-bottom: 20px; display: block; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 40px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: #bbb;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.service-card__icon svg { width: 44px; height: 44px; }
.service-card h3 { margin-bottom: 8px; color: var(--text-primary); }
.service-card p { font-size: 0.9375rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--text-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 2px;
}
.value-item__icon svg { width: 18px; height: 18px; }
.value-item h4 { margin-bottom: 4px; color: var(--text-primary); }
.value-item p { font-size: 0.9375rem; }

/* Certifications */
.certs-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.cert-badge {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  flex: 1 1 320px;
  max-width: 480px;
}
.cert-badge__svg { flex-shrink: 0; width: 90px; height: auto; border-radius: 4px; object-fit: contain; }
.cert-badge__info {}
.cert-badge__name { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.cert-badge__standard { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; display: block; }
.cert-badge__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }

/* CTA Strip */
.cta-strip {
  background: var(--accent);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.0625rem; }
.cta-strip__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero .mono { margin-bottom: 12px; display: block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 600px; }

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p + p { margin-top: 16px; }

.read-more-hidden {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.read-more-hidden-inner {
  overflow: hidden;
}
.read-more-container.is-expanded .read-more-hidden {
  grid-template-rows: 1fr;
}
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.btn-read-more:hover { text-decoration: underline; }
.read-more-icon { width: 16px; height: 16px; transition: transform 0.3s ease; }
.read-more-container.is-expanded .read-more-icon { transform: rotate(180deg); }
.read-more-container.is-expanded .read-more-text { display: none; }
.read-less-text { display: none; }
.read-more-container.is-expanded .read-less-text { display: inline; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.stat-item {
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat-item__number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-family: var(--font-mono);
}
.stat-item__label { font-size: 0.875rem; color: var(--text-secondary); }

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.core-value-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.core-value-card__number {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: block;
}
.core-value-card h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 12px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-feature {
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}
.team-feature__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.team-feature__icon svg { width: 40px; height: 40px; }
.team-feature h4 { margin-bottom: 8px; color: var(--text-primary); }
.team-feature p { font-size: 0.9375rem; }

/* Services Detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reversed .service-detail__content { order: 2; }
.service-detail--reversed .service-detail__visual { order: 1; }
.service-detail__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: block;
}
.service-detail__content h2 { margin-bottom: 8px; }
.service-detail__content .lead { margin-bottom: 24px; }
.service-detail__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--border);
}
.service-detail__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-detail__visual:hover img { transform: scale(1.03); }
.features-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.features-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 3px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-block h3, .contact-info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.contact-item__icon svg { width: 17px; height: 17px; }
.contact-item__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: block;
}
.contact-item__value { font-weight: 500; font-size: 0.9375rem; color: var(--text-primary); }
.contact-item__value a { color: var(--text-primary); }
.contact-item__value a:hover { text-decoration: underline; }
.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { display: block; width: 100%; height: 220px; border: 0; }

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }
.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.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-control {
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 150px; }
.form-success {
  display: none;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: #166534;
}
.form-success.visible { display: block; }

/* Legal Pages */
.legal-content {
  max-width: 720px;
  padding: 64px 0 96px;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--text-primary);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.9375rem;
}
.legal-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.legal-content a { color: var(--text-primary); text-decoration: underline; }
.legal-content strong { color: var(--text-primary); }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* Footer */
.footer {
  background: var(--accent);
  color: #fff;
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img { height: 38px; width: auto; margin-bottom: 20px; filter: invert(1); }
.footer__brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: block;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  cursor: pointer;
}
.back-to-top:hover { color: #fff; }
.back-to-top svg { width: 14px; height: 14px; }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* Responsive */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
  .about-intro { gap: 48px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail--reversed .service-detail__content { order: 1; }
  .service-detail--reversed .service-detail__visual { order: 2; }
  .service-detail__visual { min-height: 220px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 10px 14px; font-size: 1rem; }
  .nav__toggle { display: flex; }
  .nav .btn--sm { display: none; }

  .hero { padding: 72px 0 56px; }
  .hero__inner { max-width: 100%; }

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .core-values-grid { grid-template-columns: 1fr; }
  .certs-row { flex-direction: column; align-items: stretch; }
  .cert-badge { min-width: unset; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
}

/* Hero Slideshow */
.hero__slideshow {
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
  overflow: hidden;
}
.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.active {
  opacity: 1;
}

/* Slideshow arrows */
.slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow__arrow:hover { background: rgba(0, 0, 0, 0.65); }
.slideshow__arrow--prev { left: 12px; }
.slideshow__arrow--next { right: 12px; }

/* Slideshow dots */
.slideshow__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.slideshow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.slideshow__dot.active { background: #fff; }

/* Hero Slideshow mobile */
@media (max-width: 768px) {
  .hero__slideshow {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 220px;
    clip-path: none;
    margin-bottom: 32px;
  }
}

/* Service Card Images */
.service-card__img-wrap {
  margin: -32px -32px 24px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.05); }

/* Map Blocked Placeholder */
.map-blocked {
  width: 100%;
  height: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-secondary);
  text-align: center;
  padding: 24px;
}
.map-blocked svg { opacity: 0.4; }
.map-blocked p { font-size: 0.875rem; }
.map-blocked a { color: var(--text-primary); text-decoration: underline; }

/* Services Section Intro */
.services-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.services-intro__text { flex: 1; max-width: 500px; }
.services-intro__text .mono { margin-bottom: 12px; display: block; }
.services-intro__text h2 { margin-bottom: 16px; }
.services-intro__text p { font-size: 1.0625rem; color: var(--text-secondary); }
.services-intro__globe { flex: 0 0 380px; overflow: hidden; }

/* Globe Orbit */
.orbit-scene {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-globe {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  pointer-events: none;
}
.orbit-globe svg { width: 100%; height: 100%; }
.orbit-label {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}
@media (max-width: 900px) {
  .services-intro { flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .services-intro__text { max-width: 100%; }
  .services-intro__globe { width: 100%; display: flex; justify-content: center; overflow: hidden; flex: none; }
  .services-intro__globe .orbit-scene { height: 200px; }
  .services-intro__globe .orbit-globe { width: 80px; height: 80px; }
  .services-intro__globe .orbit-label { font-size: 0.5rem; letter-spacing: 0.06em; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #111;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner__body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cookie-banner__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.cookie-banner__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.cookie-banner__text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.cookie-banner__text a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-reject {
  padding: 9px 18px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.cookie-btn-accept {
  padding: 9px 18px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #111;
  background: #fff;
  border: 1px solid #fff;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: #e5e5e5; border-color: #e5e5e5; }

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn-reject, .cookie-btn-accept { flex: 1; text-align: center; }
}
