/* ===== CSS Variables & Theme ===== */
:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --card: #ffffff;
  --primary: #d4201a;
  --secondary: #111827;
  --secondary-foreground: #ffffff;
  --muted: #f4f4f5;
  --muted-foreground: #71717a;
  --border: #e4e4e7;
  --bg-rgb: 255,255,255;
  --radius: 0.75rem;
}
[data-theme="dark"] {
  --background: #060608;
  --foreground: #f4f4f5;
  --card: #111113;
  --muted: #18181b;
  --muted-foreground: #a1a1aa;
  --border: #27272a;
  --bg-rgb: 6,6,8;
}

/* ===== Reset ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background); color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(212,32,26,0.15); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 9999px; }

/* ===== Layout ===== */
.container-swiss { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px)  { .container-swiss { padding: 0 2rem; } }
@media (min-width: 768px)  { .container-swiss { padding: 0 3rem; } }
@media (min-width: 1024px) { .container-swiss { padding: 0 4rem; } }
.section-padding { padding: 4.5rem 0; }
@media (min-width: 768px)  { .section-padding { padding: 6rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 7.5rem 0; } }

/* ===== Typography ===== */
h1,h2,h3,h4 { line-height: 1.1; }
.label-overline { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem; background: var(--primary); color: #fff;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em;
  border-radius: 0.5rem; border: none; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap; text-decoration: none;
}
.btn-primary:hover { background: #b91c1c; box-shadow: 0 6px 20px rgba(212,32,26,0.35); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem; background: var(--foreground); color: var(--background);
  font-weight: 600; font-size: 0.9rem; border-radius: 0.5rem; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-secondary:hover { opacity: 0.85; transform: translateY(-1px); }
/* Ghost — only used on dark hero background */
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem; background: transparent; color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.45);
  font-weight: 500; font-size: 0.9rem; border-radius: 0.5rem; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75);
  color: #fff; transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; background: transparent; color: var(--foreground);
  border: 1.5px solid var(--border); font-weight: 500; font-size: 0.9rem;
  border-radius: 0.5rem; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(212,32,26,0.04); }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s; }
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
[data-theme="dark"] .site-header.scrolled {
  background: rgba(6,6,8,0.94);
  box-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.site-header.transparent { background: transparent; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
@media (min-width: 768px) { .header-inner { height: 5.5rem; } }

/* Logo */
.logo { display: inline-flex; align-items: center; z-index: 60; transition: opacity 0.3s; }
.logo:hover { opacity: 0.85; }
.logo-img { height: 2.75rem; width: auto; display: block; }
@media (min-width: 768px) { .logo-img { height: 3rem; } }
/* Footer logo */
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 1.25rem; }
.footer-logo-img { height: 3rem; width: auto; display: block; filter: brightness(0) invert(1); }

/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--foreground); transition: color 0.2s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
.desktop-nav.header-transparent a { color: rgba(255,255,255,0.85); }
.desktop-nav.header-transparent a:hover,
.desktop-nav.header-transparent a.active { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 0.375rem; }

/* Theme toggle */
.theme-toggle {
  width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: transparent; border: none; cursor: pointer;
  color: var(--foreground); transition: background 0.2s;
}
.theme-toggle:hover { background: var(--muted); }
.theme-toggle.header-transparent { color: rgba(255,255,255,0.85); }
.theme-toggle svg { width: 1.125rem; height: 1.125rem; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 0.2rem;
  padding: 0.25rem 0.5rem; border: 1px solid var(--border); border-radius: 9999px;
  font-size: 0.72rem; font-weight: 700; cursor: pointer; background: transparent;
  color: var(--foreground); transition: all 0.2s; letter-spacing: 0.05em;
}
.lang-switcher:hover { border-color: var(--primary); color: var(--primary); }
.lang-switcher.header-transparent { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }
.lang-switcher.header-transparent:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.lang-switcher .lang-flag { font-size: 0.85rem; }
.lang-btn {
  padding: 0.15rem 0.35rem; border-radius: 4px;
  transition: all 0.15s; cursor: pointer; background: transparent;
  border: none; color: inherit; font-size: inherit; font-weight: inherit;
}
.lang-btn.active { background: var(--primary); color: #fff; }

/* Header CTA */
.header-cta { display: none; }
@media (min-width: 768px) {
  .header-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1.25rem; border-radius: 0.5rem;
    font-weight: 600; font-size: 0.825rem; transition: all 0.2s; margin-left: 0.75rem;
  }
}
.header-cta.on-transparent { background: #fff; color: #000; }
.header-cta.on-transparent:hover { background: rgba(255,255,255,0.9); }
.header-cta.on-bg { background: var(--primary); color: #fff; }
.header-cta.on-bg:hover { background: #b91c1c; box-shadow: 0 4px 14px rgba(212,32,26,0.3); }

/* Mobile menu button */
.menu-btn {
  position: relative; width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 60; background: transparent; border: none; cursor: pointer; color: var(--foreground);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn.header-transparent { color: #fff; }
.menu-btn-line { position: absolute; background: currentColor; transition: all 0.3s cubic-bezier(0.22,1,0.36,1); }
.menu-btn-h { width: 1.4rem; height: 1.5px; }
.menu-btn-v { width: 1.5px; height: 1.4rem; }
.menu-btn.open .menu-btn-h { transform: rotate(45deg); background: var(--primary); }
.menu-btn.open .menu-btn-v { opacity: 0; transform: scaleY(0); }

/* Mobile menu overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 50; background: var(--background);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-overlay .container-swiss { height: 100%; display: flex; flex-direction: column; justify-content: center; }
.menu-nav-links { display: flex; flex-direction: column; gap: 1.25rem; }
.menu-nav-link {
  font-size: 2.25rem; font-weight: 700; letter-spacing: -0.03em;
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}
@media (min-width: 768px) { .menu-nav-link { font-size: 3rem; } }
.menu-overlay.open .menu-nav-link { opacity: 1; transform: translateX(0); }
.menu-nav-link:hover, .menu-nav-link.active { color: var(--primary); }
.menu-contact-bar {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
  opacity: 0; transition: opacity 0.4s 0.25s;
}
.menu-overlay.open .menu-contact-bar { opacity: 1; }
@media (min-width: 640px) { .menu-contact-bar { flex-direction: row; justify-content: space-between; } }

/* ===== HERO ===== */
/* Dark canvas — full height, no gradients bleeding to white */
.hero-section {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* MOBILE: Swiss Alps image — shown only on mobile */
.hero-mobile-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('hero-mobile.jpg') center 18% / cover no-repeat;
  display: block;
}
/* Video fills entire hero — hidden on mobile, shown on desktop */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: none;
}
/* On desktop: show video, hide image */
@media (min-width: 768px) {
  .hero-mobile-bg { display: none; }
  .hero-video { display: block; }
}
/* Dark overlay — ensures text always readable */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(4, 6, 14, 0.58);
}
/* Mobile: slightly stronger overlay so text pops over bright snowy image */
@media (max-width: 767px) {
  .hero-overlay { background: rgba(4, 6, 14, 0.52); }
}
/* Top vignette keeps header readable over video */
.hero-gradient-top {
  position: absolute; top: 0; left: 0; right: 0; height: 10rem;
  background: linear-gradient(to bottom, rgba(4,6,14,0.9), transparent);
  z-index: 2; pointer-events: none;
}
/* Glow accents — atmospheric only */
.hero-glow-1 {
  position: absolute; top: 10%; right: -6rem; width: 36rem; height: 36rem;
  background: radial-gradient(ellipse, rgba(212,32,26,0.16) 0%, transparent 65%);
  z-index: 1; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 5%; left: -6rem; width: 36rem; height: 36rem;
  background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 65%);
  z-index: 1; pointer-events: none;
}
/* Content — vertically centered via parent flex, offset upward for header */
.hero-content {
  position: relative; z-index: 10;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-inner { max-width: 54rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.875rem; border-radius: 9999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.775rem; font-weight: 500; color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em; margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 0.4rem; height: 0.4rem; background: var(--primary);
  border-radius: 9999px; flex-shrink: 0; animation: pulse 2.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
.hero-title {
  font-size: clamp(2.1rem, 6vw, 5.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.02;
  color: #fff; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero-title { margin-bottom: 1.75rem; font-size: clamp(2.5rem, 6vw, 5.5rem); } }
.hero-title-gradient {
  background: linear-gradient(95deg, #e03530 0%, #f87171 50%, #c41c1c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200%; animation: shimmer 5s ease infinite;
}
@keyframes shimmer { 0%,100%{background-position:0%} 50%{background-position:100%} }
.hero-subtitle {
  font-size: clamp(0.975rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.62); max-width: 34rem;
  margin-bottom: 2.75rem; line-height: 1.75;
}
.hero-ctas { display: flex; flex-direction: column; gap: 0.875rem; }
@media (min-width: 480px) { .hero-ctas { flex-direction: row; align-items: center; flex-wrap: wrap; } }

/* ===== FOUNDER CREDENTIAL CARD ===== */
.founder-credential-card {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.5rem 1.75rem; border-radius: 1rem;
  background: var(--background); border: 1.5px solid var(--border);
  margin-top: 1.5rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.founder-credential-card:hover { border-color: rgba(212,32,26,0.4); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
[data-theme="dark"] .founder-credential-card { background: #111113; border-color: rgba(255,255,255,0.07); }
.founder-credential-icon {
  width: 3.75rem; height: 3.75rem; flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; background: rgba(212,32,26,0.08);
  border-radius: 0.75rem; border: 1px solid rgba(212,32,26,0.15); color: var(--primary);
}
.founder-credential-body { flex: 1; min-width: 0; }
.founder-credential-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.founder-credential-sub { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-top: 0.2rem; }
.founder-credential-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.625rem; }
.founder-credential-tags span {
  font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.6rem;
  background: var(--muted); border-radius: 9999px; color: var(--muted-foreground);
  letter-spacing: 0.02em;
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--background); position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-size: clamp(1.875rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.125rem; line-height: 1.1; }
.section-title-gradient { background: linear-gradient(to right, var(--primary), #f87171); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { font-size: 1.025rem; color: var(--muted-foreground); max-width: 38rem; margin: 0 auto; line-height: 1.7; }
.featured-service {
  position: relative; overflow: hidden; border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(212,32,26,0.1), rgba(212,32,26,0.04), transparent);
  border: 1px solid rgba(212,32,26,0.18); padding: 2rem; margin-bottom: 3rem;
}
[data-theme="dark"] .featured-service { background: linear-gradient(135deg, rgba(212,32,26,0.12), rgba(212,32,26,0.04)); }
@media (min-width: 768px) { .featured-service { padding: 3rem; } }
.featured-service-glow1 { position: absolute; top: 0; right: 0; width: 20rem; height: 20rem; background: rgba(212,32,26,0.08); border-radius: 9999px; filter: blur(80px); pointer-events: none; }
.featured-service-glow2 { position: absolute; bottom: 0; left: 0; width: 14rem; height: 14rem; background: rgba(59,130,246,0.07); border-radius: 9999px; filter: blur(60px); pointer-events: none; }
.featured-service-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .featured-service-inner { grid-template-columns: 1fr 1fr; } }
.featured-badge {
  display: inline-block; padding: 0.3rem 0.875rem; margin-bottom: 1rem;
  background: rgba(212,32,26,0.1); color: var(--primary); border: 1px solid rgba(212,32,26,0.2);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 9999px;
}
.featured-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1rem; }
.featured-desc { font-size: 1.05rem; color: var(--muted-foreground); margin-bottom: 1.5rem; line-height: 1.65; }
.featured-stat { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem; }
.featured-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.featured-stat-value { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.featured-stat-label { font-size: 0.825rem; color: var(--muted-foreground); margin-top: 0.2rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  position: relative; overflow: hidden; border-radius: 1rem;
  border: 1px solid var(--border); padding: 1.875rem;
  transition: all 0.35s; display: block; background: var(--card);
}
.service-card:hover { border-color: rgba(212,32,26,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
[data-theme="dark"] .service-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.service-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.service-icon {
  width: 3.25rem; height: 3.25rem; display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem; background: var(--muted); border: 1px solid var(--border); transition: all 0.3s;
}
.service-card:hover .service-icon { background: rgba(212,32,26,0.08); border-color: rgba(212,32,26,0.25); }
.service-icon svg { width: 1.375rem; height: 1.375rem; color: var(--primary); }
.service-count { font-size: 0.725rem; font-weight: 600; color: var(--muted-foreground); background: var(--muted); padding: 0.2rem 0.65rem; border-radius: 9999px; }
.service-title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; transition: color 0.25s; }
.service-card:hover .service-title { color: var(--primary); }
.service-desc { color: var(--muted-foreground); margin-bottom: 1.25rem; line-height: 1.6; font-size: 0.925rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.service-tag { font-size: 0.72rem; padding: 0.3rem 0.65rem; background: var(--muted); border-radius: 9999px; color: var(--muted-foreground); }
.service-more-tag { background: rgba(212,32,26,0.08); color: var(--primary); }
.service-cta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--primary); transition: gap 0.25s; }
.service-card:hover .service-cta { gap: 0.875rem; }
.service-cta svg { width: 0.9rem; height: 0.9rem; transition: transform 0.25s; }
.service-card:hover .service-cta svg { transform: translateX(3px); }

/* ===== WHY SECTION ===== */
.why-section { background: var(--muted); }
[data-theme="dark"] .why-section { background: #0d0d10; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 1.875rem; border: 1.5px solid var(--border); background: var(--background);
  border-radius: 1rem; transition: all 0.3s;
}
[data-theme="dark"] .why-card { background: #111113; border-color: rgba(255,255,255,0.07); }
.why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); border-color: var(--primary); transform: translateY(-2px); }
[data-theme="dark"] .why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.why-card.highlight { border-color: rgba(212,32,26,0.5); background: rgba(212,32,26,0.025); }
[data-theme="dark"] .why-card.highlight { background: rgba(212,32,26,0.05); border-color: rgba(212,32,26,0.4); }
.why-icon {
  width: 3.25rem; height: 3.25rem; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); border-radius: 0.75rem; background: var(--muted);
  margin-bottom: 1.375rem; transition: all 0.3s;
}
[data-theme="dark"] .why-icon { border-color: rgba(255,255,255,0.09); background: rgba(255,255,255,0.04); }
.why-card:hover .why-icon,
.why-card.highlight .why-icon { border-color: var(--primary); background: rgba(212,32,26,0.08); }
.why-icon svg { width: 1.375rem; height: 1.375rem; color: var(--muted-foreground); transition: color 0.3s; }
.why-card:hover .why-icon svg,
.why-card.highlight .why-icon svg { color: var(--primary); }
.why-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.why-desc { color: var(--muted-foreground); line-height: 1.65; font-size: 0.875rem; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--muted); }
[data-theme="dark"] .about-section { background: #0d0d10; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-title { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.375rem; }
.about-body { color: var(--muted-foreground); font-size: 1.05rem; line-height: 1.75; }
.about-body p + p { margin-top: 1rem; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 480px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card {
  padding: 1.375rem; background: var(--background); border: 1px solid var(--border);
  border-radius: 0.875rem; transition: border-color 0.3s, box-shadow 0.3s;
}
[data-theme="dark"] .value-card { background: #111113; }
.value-card:hover { border-color: rgba(212,32,26,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.value-icon {
  width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 0.625rem; margin-bottom: 0.875rem;
}
.value-icon svg { width: 1.125rem; height: 1.125rem; color: var(--primary); }
.value-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.value-desc { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.55; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 6rem 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,32,26,0.07), rgba(212,32,26,0.03), transparent); }
.cta-glow {
  position: absolute; top: -4rem; left: 50%; transform: translateX(-50%);
  width: 48rem; height: 24rem; background: rgba(212,32,26,0.08);
  border-radius: 9999px; filter: blur(100px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; text-align: center; }
.cta-badge {
  display: inline-block; padding: 0.375rem 1rem; margin-bottom: 1.5rem;
  background: rgba(212,32,26,0.08); color: var(--primary);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 9999px; border: 1px solid rgba(212,32,26,0.15);
}
.cta-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.125rem; line-height: 1.15; }
.cta-subtitle { font-size: 1.1rem; color: var(--muted-foreground); margin-bottom: 2.5rem; line-height: 1.65; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 480px) { .cta-buttons { flex-direction: row; } }
.cta-trust { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem; }
.cta-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted-foreground); }
.cta-trust-dot { width: 0.4rem; height: 0.4rem; background: #22c55e; border-radius: 9999px; flex-shrink: 0; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--background); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.375rem; }
.contact-info-subtitle { font-size: 1.05rem; color: var(--muted-foreground); margin-bottom: 2.5rem; max-width: 26rem; line-height: 1.65; }
.contact-items { display: flex; flex-direction: column; gap: 1.375rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 2.875rem; height: 2.875rem; flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--border); border-radius: 0.625rem; background: var(--muted);
}
.contact-item-icon svg { width: 1.125rem; height: 1.125rem; color: var(--primary); }
.contact-item-label { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.2rem; }
.contact-item-value { color: var(--muted-foreground) !important; font-size: 0.95rem; -webkit-text-decoration: none; }
a.contact-item-value { color: var(--primary) !important; }
a.contact-item-value:hover { opacity: 0.8; }
.contact-hours { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.contact-hours-label { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.4rem; }
.contact-hours-text { color: var(--muted-foreground); line-height: 1.65; font-size: 0.925rem; }
.contact-form-wrap { background: var(--muted); border: 1px solid var(--border); padding: 2rem; border-radius: 1.25rem; }
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }
.form-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-spaces { display: flex; flex-direction: column; gap: 1.125rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.85rem; font-weight: 600; }
.form-required { color: var(--primary); }
.form-input,.form-select,.form-textarea {
  width: 100%; padding: 0.75rem 1rem; background: var(--background);
  border: 1.5px solid var(--border); border-radius: 0.5rem; outline: none;
  font-family: inherit; font-size: 0.925rem; color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,32,26,0.08);
}
.form-input.error,.form-textarea.error { border-color: #ef4444; }
.form-error { font-size: 0.75rem; color: #ef4444; margin-top: 0.25rem; }
.form-textarea { resize: none; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 0.875rem; background: var(--primary); color: #fff;
  border: none; font-size: 0.9rem; font-weight: 600; cursor: pointer; letter-spacing: 0.01em;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s; margin-top: 0.5rem; border-radius: 0.5rem;
  font-family: inherit;
}
.form-submit:hover { background: #b91c1c; box-shadow: 0 4px 16px rgba(212,32,26,0.28); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 0; }
.success-icon { width: 3.5rem; height: 3.5rem; background: rgba(34,197,94,0.1); border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.success-icon svg { width: 1.75rem; height: 1.75rem; color: #22c55e; }
.success-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.success-text { color: var(--muted-foreground); }
.form-spinner { width: 1.125rem; height: 1.125rem; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 9999px; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.site-footer { background: var(--secondary); color: #fff; }
[data-theme="dark"] .site-footer { background: #09090b; border-top: 1px solid var(--border); }
.footer-main { padding: 4.5rem 0 5.5rem; }
@media (min-width: 768px) { .footer-main { padding: 6rem 0 7rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.75rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-logo { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.05em; display: inline-block; margin-bottom: 1.25rem; }
.footer-logo span { color: var(--primary); }
.footer-tagline { color: rgba(255,255,255,0.6); max-width: 17rem; margin-bottom: 1.5rem; line-height: 1.65; font-size: 0.9rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social { width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.18); border-radius: 0.5rem; transition: all 0.2s; }
.footer-social:hover { background: rgba(255,255,255,0.08); border-color: rgba(212,32,26,0.5); }
.footer-social svg { width: 0.9rem; height: 0.9rem; }
.footer-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.375rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.75); transition: color 0.2s; font-size: 0.9rem; }
.footer-link:hover { color: #fff; }
.footer-link svg { width: 0.65rem; height: 0.65rem; opacity: 0; transition: opacity 0.2s; }
.footer-link:hover svg { opacity: 1; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; }
.footer-contact-icon { width: 1.125rem; height: 1.125rem; color: var(--primary); flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.55; }
.footer-contact-text a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-text a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-copy { font-size: 0.825rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.825rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* ===== INNER PAGE HERO ===== */
.page-hero { position: relative; padding: 7rem 0 4rem; overflow: hidden; }
@media (min-width: 768px) { .page-hero { padding: 9rem 0 5rem; } }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--muted), var(--background)); }
[data-theme="dark"] .page-hero-bg { background: linear-gradient(to bottom, #0d0d10, var(--background)); }
.page-hero-glow { position: absolute; width: 36rem; height: 36rem; background: rgba(212,32,26,0.05); border-radius: 9999px; filter: blur(100px); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }

/* ===== ABOUT PAGE SPECIFIC ===== */
.offices-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .offices-grid { grid-template-columns: repeat(3, 1fr); } }
.office-card { padding: 2rem; background: var(--card); border: 1px solid var(--border); border-radius: 0.875rem; text-align: center; }
.office-icon { width: 3.25rem; height: 3.25rem; border-radius: 0.75rem; background: rgba(212,32,26,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.office-icon svg { width: 1.625rem; height: 1.625rem; color: var(--primary); }
.office-city { font-size: 1.2rem; font-weight: 700; }
.office-country { color: var(--muted-foreground); font-size: 0.9rem; }
.office-type { display: inline-block; margin-top: 0.5rem; padding: 0.2rem 0.7rem; font-size: 0.72rem; font-weight: 600; color: var(--primary); background: rgba(212,32,26,0.08); border-radius: 9999px; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.875rem; overflow: hidden; transition: border-color 0.3s; }
.team-card:hover { border-color: rgba(212,32,26,0.3); }
.team-img { aspect-ratio: 4/5; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 1.375rem; }
.team-name { font-size: 1.05rem; font-weight: 700; }
.team-role { font-size: 0.825rem; color: var(--primary); margin: 0.2rem 0 0.5rem; font-weight: 500; }
.team-bio { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.55; }
.team-socials { display: flex; gap: 0.5rem; margin-top: 0.875rem; }
.team-social { width: 1.875rem; height: 1.875rem; border-radius: 9999px; background: var(--muted); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.team-social:hover { background: rgba(212,32,26,0.1); }
.team-social svg { width: 0.875rem; height: 0.875rem; }

/* ===== SERVICES PAGE ===== */
.services-page-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-page-grid { grid-template-columns: repeat(3, 1fr); } }
.sp-card {
  position: relative; overflow: hidden; border-radius: 1rem;
  border: 1px solid var(--border); padding: 1.875rem; display: block;
  transition: all 0.35s; height: 100%; background: var(--card); cursor: default;
}
.sp-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: rgba(212,32,26,0.3); transform: translateY(-2px); }
[data-theme="dark"] .sp-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.sp-icon {
  width: 3.25rem; height: 3.25rem; border-radius: 0.75rem; background: var(--muted);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.375rem; transition: all 0.3s;
}
.sp-card:hover .sp-icon { background: rgba(212,32,26,0.08); border-color: rgba(212,32,26,0.2); }
.sp-icon svg { width: 1.625rem; height: 1.625rem; color: var(--primary); }
.sp-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; transition: color 0.25s; }
.sp-card:hover .sp-title { color: var(--primary); }
.sp-desc { color: var(--muted-foreground); margin-bottom: 1.375rem; line-height: 1.65; font-size: 0.925rem; }
.sp-subs { display: flex; flex-direction: column; gap: 0.5rem; }
.sp-sub { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.sp-sub-dot { width: 0.35rem; height: 0.35rem; border-radius: 9999px; background: var(--primary); flex-shrink: 0; }
.sp-sub-text { color: var(--muted-foreground); }
.sp-more { font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-top: 0.5rem; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 2rem; }
.faq-item { border: 1px solid var(--border); overflow: hidden; border-radius: 0.75rem; background: var(--card); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.5rem; background: transparent; border: none; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; text-align: left; color: var(--foreground);
  font-family: inherit; transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q svg { width: 1.125rem; height: 1.125rem; color: var(--muted-foreground); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { padding: 0 1.5rem 1.25rem; max-height: 20rem; }
.faq-a p { color: var(--muted-foreground); line-height: 1.7; font-size: 0.925rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
.animate-in           { animation: fadeUp 0.65s ease both; }
.animate-in-delay-1   { animation: fadeUp 0.65s 0.1s ease both; }
.animate-in-delay-2   { animation: fadeUp 0.65s 0.2s ease both; }
.animate-in-delay-3   { animation: fadeUp 0.65s 0.3s ease both; }
.animate-in-delay-4   { animation: fadeUp 0.65s 0.4s ease both; }
.observe-animate    { opacity:0; transform:translateY(24px); transition: opacity 0.65s, transform 0.65s; }
.observe-animate.visible { opacity:1; transform:translateY(0); }
.observe-animate-x  { opacity:0; transform:translateX(-24px); transition: opacity 0.55s, transform 0.55s; }
.observe-animate-x.visible { opacity:1; transform:translateX(0); }
.observe-animate-xr { opacity:0; transform:translateX(24px); transition: opacity 0.55s, transform 0.55s; }
.observe-animate-xr.visible { opacity:1; transform:translateX(0); }

/* ===== UTILITY ===== */
.text-primary { color: var(--primary); }
.text-muted   { color: var(--muted-foreground); }
.bg-muted-section { background: var(--muted); }
[data-theme="dark"] .bg-muted-section { background: #0d0d10; }
.hidden { display: none !important; }
