:root {
  --bg: #070b14;
  --bg-soft: rgba(15, 23, 42, .68);
  --panel: rgba(15, 24, 43, .78);
  --panel-strong: #101a2f;
  --text: #f3f7ff;
  --muted: #a8b4cb;
  --line: rgba(255, 255, 255, .1);
  --accent: #00e5ff;
  --accent-2: #5b8cff;
  --success: #22c55e;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #06101c; background: var(--accent); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: .75rem 1rem;
  color: #06101c;
  background: var(--accent);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.site-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  animation: desktopGridDrift 24s linear infinite;
  will-change: background-position;
}
.site-bg span { position: absolute; width: 42rem; height: 42rem; border-radius: 50%; filter: blur(100px); opacity: .18; will-change: transform; }
.site-bg span:first-child { top: -20rem; right: -12rem; background: var(--accent); animation: desktopOrbOne 16s ease-in-out infinite alternate; }
.site-bg span:last-child { top: 45%; left: -28rem; background: var(--accent-2); animation: desktopOrbTwo 20s ease-in-out infinite alternate; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: clamp(5rem, 8vw, 8rem) 0; }
.section-soft { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012)); }
.section-heading { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, .contact-copy h2 {
  margin: .7rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p, .contact-copy > p { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.12rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.txt-gradient { color: transparent; background: linear-gradient(100deg, var(--accent), #b5c9ff 65%, var(--accent-2)); background-clip: text; -webkit-background-clip: text; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 20, .7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { background: rgba(7, 11, 20, .92); border-color: var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.nav-container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--text); font-size: 1.05rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-logo-original { display: none; }
.brand span {
  color: transparent;
  background-image: linear-gradient(90deg, #00e5ff 0%, #5b8cff 25%, #00e5ff 50%, #5b8cff 75%, #00e5ff 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: legacyLogoGradient 2.6s linear infinite !important;
}
.nav-shell { display: flex; align-items: center; gap: 2rem; }
.nav-menu { display: flex; align-items: center; gap: 1.45rem; margin: 0; padding: 0; list-style: none; }
.nav-menu a, .dropdown-toggle {
  padding: .6rem 0;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-menu a:hover, .nav-menu a:focus-visible, .dropdown-toggle:hover, .dropdown-toggle:focus-visible { color: var(--text); }
.dropdown { position: relative; }
.dropdown-toggle span { display: inline-block; margin-left: .2rem; transition: transform .2s ease; }
.dropdown.open .dropdown-toggle span { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .65rem);
  right: 0;
  min-width: 215px;
  margin: 0;
  padding: .55rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 17, 31, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { display: block; padding: .7rem .8rem; border-radius: 9px; }
.dropdown-menu a:hover { background: rgba(255,255,255,.06); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.language-switcher { display: flex; align-items: center; gap: .2rem; padding: .2rem; border: 1px solid var(--line); border-radius: 999px; }
.language-switcher a { padding: .32rem .48rem; color: var(--muted); border-radius: 999px; font-size: .68rem; font-weight: 800; text-decoration: none; }
.language-switcher a.active { color: #06101c; background: var(--accent); }
.nav-cta { padding: .65rem 1rem; color: #06101c; background: linear-gradient(100deg, var(--accent), #7aa7ff); border-radius: 10px; font-size: .84rem; font-weight: 800; text-decoration: none; box-shadow: 0 8px 25px rgba(0,229,255,.14); }
.menu-toggle { position: relative; display: none; width: 46px; height: 46px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; color: var(--text); background: rgba(255,255,255,.04); cursor: pointer; }
.mobile-header-tools { display: none; }
.mobile-flag-links { display: flex; align-items: center; gap: .55rem; }
.mobile-flag-links a { display: flex; padding: 2px; border: 1px solid transparent; border-radius: 3px; opacity: .65; }
.mobile-flag-links a.active { border-color: rgba(0,229,255,.45); opacity: 1; }
.mobile-flag-links svg { display: block; width: 21px; height: 14px; }
.menu-toggle span { position: relative; z-index: 1; display: block; width: 21px; height: 2px; margin: 4px auto; background: currentColor; border-radius: 2px; transition: width .25s ease, transform .25s ease, opacity .2s ease; }
.menu-toggle span:nth-child(2) { width: 14px; margin-right: 12px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { min-height: 100svh; display: grid; align-items: center; padding: calc(var(--header-height) + 2.5rem) 0 3rem; }
.hero-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.hero-copy--legacy { display: none; }
.legacy-home { display: none; }
.hero-copy h1 { max-width: 720px; margin: .75rem 0 1rem; font-size: clamp(3.1rem, 5.4vw, 5.3rem); line-height: .98; letter-spacing: -.065em; }
.hero-lead { max-width: 640px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: .82rem 1.25rem; border: 1px solid transparent; border-radius: 12px; font-size: .92rem; font-weight: 800; text-align: center; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #06101c; background: linear-gradient(100deg, var(--accent), #83aaff); box-shadow: 0 14px 34px rgba(0,229,255,.16); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(0,229,255,.24); }
.btn-secondary { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.035); }
.btn-secondary:hover { border-color: rgba(0,229,255,.5); }
.trust-list { display: flex; flex-wrap: wrap; gap: .7rem 1.35rem; margin: 1.9rem 0 0; padding: 0; color: var(--muted); list-style: none; font-size: .82rem; font-weight: 650; }
.trust-list li { display: flex; align-items: center; gap: .5rem; }
.trust-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.hero-visual { position: relative; min-width: 0; isolation: isolate; }
.hero-visual::after { content: ""; position: absolute; inset: 8% 5% -3% 10%; z-index: -1; border-radius: 50%; background: rgba(0,229,255,.13); filter: blur(60px); }
.hero-visual img { display: block; width: 100%; aspect-ratio: 1.35; object-fit: cover; object-position: 66% center; border: 1px solid rgba(131,170,255,.2); border-radius: 30px; box-shadow: var(--shadow); }
.status-card { position: absolute; display: flex; align-items: center; gap: .5rem; padding: .65rem .85rem; color: #dbe8ff; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(7,11,20,.8); backdrop-filter: blur(14px); font-size: .72rem; font-weight: 800; letter-spacing: .08em; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.status-card--top { top: 8%; right: -1rem; }
.status-card--top span { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px var(--success); }
.status-card--bottom { bottom: 7%; left: -1rem; }

/* Content cards */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.018); }
.audience-card { min-height: 260px; padding: 2rem; border-right: 1px solid var(--line); }
.audience-card:last-child { border-right: 0; }
.card-number, .service-index { color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.audience-card h3, .promise-item h3, .service-card h3, .process-card h3 { margin: 2.5rem 0 .7rem; font-size: 1.15rem; line-height: 1.25; }
.audience-card p, .promise-item p, .service-card > p, .process-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.split-heading .section-heading { position: sticky; top: calc(var(--header-height) + 2rem); margin-bottom: 0; }
.promise-list { border-top: 1px solid var(--line); }
.promise-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.promise-item h3 { margin: 0 0 .35rem; }
.checkmark { width: 34px; height: 34px; display: grid; place-items: center; color: #06101c; background: var(--accent); border-radius: 50%; font-weight: 900; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 340px; padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(16,26,47,.92), rgba(10,16,29,.86)); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -100px; bottom: -100px; border-radius: 50%; background: var(--accent-2); filter: blur(60px); opacity: .08; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,229,255,.32); }
.service-card h3 { max-width: 420px; margin: 0 0 .65rem; font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.service-card > p { max-width: 500px; }
.service-card ul { display: grid; gap: .55rem; margin: 1.5rem 0 1.8rem; padding: 0; color: #cad5e8; list-style: none; font-size: .9rem; }
.service-card li { position: relative; padding-left: 1.2rem; }
.service-card li::before { content: ""; position: absolute; top: .68em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.services-toggle { display: none; margin: 1.25rem auto 0; }
.services-toggle > span:last-child { transition: transform .25s ease; }
.text-link { position: relative; z-index: 1; color: var(--accent); font-size: .84rem; font-weight: 800; text-decoration: none; }
.text-link span { transition: margin-left .2s ease; }
.text-link:hover span { margin-left: .25rem; }
.technology-row { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem; margin-top: 2.5rem; padding: 1.3rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.02); }
.technology-row > span { color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.technology-row > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.technology-pill { padding: .45rem .72rem; color: #d7e0f1; border: 1px solid var(--line); border-radius: 999px; font-size: .76rem; font-weight: 700; }
.desktop-partners { overflow: hidden; }
.desktop-brand-carousel { width: 100%; min-width: 0; overflow: hidden; }
.desktop-brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: desktopBrandScroll 28s linear infinite;
  will-change: transform;
}
.desktop-brand-group { display: flex; flex: 0 0 auto; align-items: center; gap: 4.5rem; padding-right: 4.5rem; }
.desktop-brand-track span { flex: 0 0 auto; width: 190px; height: 76px; display: grid; place-items: center; padding: 12px; background: transparent; }
.desktop-brand-track img { display: block; width: 100%; max-width: 165px; max-height: 52px; object-fit: contain; opacity: .92; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.process-grid::before { content: ""; position: absolute; top: 31px; left: 16.66%; right: 16.66%; height: 1px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); opacity: .45; }
.process-card { position: relative; padding: 0 clamp(1rem, 3vw, 2rem); text-align: center; }
.process-card > span { position: relative; z-index: 1; width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto; color: #06101c; background: linear-gradient(135deg, var(--accent), #8baeff); border: 8px solid var(--bg); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.process-card h3 { margin: 1.25rem 0 .45rem; }
.about-layout { display: grid; grid-template-columns: minmax(440px, 1.12fr) minmax(0, .88fr); align-items: center; gap: clamp(3rem, 6vw, 6rem); }
.about-mark { position: relative; aspect-ratio: 3 / 2; min-height: 0; border: 1px solid rgba(0,229,255,.2); border-radius: 28px; background: #07101c; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.38), 0 0 60px rgba(0,229,255,.055); }
.about-mark::before { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; background: linear-gradient(145deg, rgba(0,229,255,.08), transparent 35%, rgba(91,140,255,.08)); pointer-events: none; }
.about-mark::after { content: ""; position: absolute; inset: 12px; z-index: 2; border: 1px solid rgba(255,255,255,.09); border-radius: 19px; pointer-events: none; }
.about-mark img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.04); transform: scale(1.015); transition: transform .7s ease, filter .7s ease; }
.about-mark:hover img { filter: saturate(1.04) contrast(1.06); transform: scale(1.045); }
.about-layout .section-heading { margin-bottom: 0; }
.about-points { display: grid; gap: .7rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.about-points li { position: relative; padding-left: 1.6rem; color: #d6dfef; font-weight: 600; }
.about-points li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }

/* Contact */
.contact-section { overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 12% -20% auto 48%; height: 70%; background: radial-gradient(circle, rgba(0,229,255,.09), transparent 64%); pointer-events: none; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(540px, 1.22fr); align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.contact-copy { position: sticky; top: calc(var(--header-height) + 2rem); }
.direct-contact { display: grid; gap: .25rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.direct-contact strong { margin-bottom: .4rem; font-size: .82rem; }
.direct-contact a { width: fit-content; color: var(--accent); font-weight: 700; text-decoration: none; }
.contact-panel { position: relative; padding: clamp(1.3rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13,21,38,.88); box-shadow: var(--shadow); }
.policy-page { padding-top: calc(var(--header-height) + 4rem); }
.policy-container { max-width: 980px; }
.policy-heading { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.policy-heading h1 { margin: .7rem 0 .5rem; font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.08; }
.policy-meta { margin: 0; color: var(--muted); }
.policy-lang { display: flex; justify-content: center; gap: .45rem; margin-top: 1.2rem; }
.policy-lang a { padding: .38rem .65rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .76rem; font-weight: 800; text-decoration: none; }
.policy-lang a.active { border-color: var(--accent); color: #06101c; background: var(--accent); }
.policy-grid { display: grid; gap: 1rem; }
.policy-card { padding: 1.4rem 1.5rem; border: 1px solid rgba(0,229,255,.16); border-radius: var(--radius-sm); background: rgba(255,255,255,.028); }
.policy-card h2 { margin: 0 0 .65rem; font-size: 1.2rem; }
.policy-card p { margin: .35rem 0; color: var(--muted); }
.policy-card ul { margin: .35rem 0 0; padding-left: 1.25rem; color: var(--muted); }
.policy-card li { padding: .2rem 0; }
.policy-contact-card > a { display: block; width: fit-content; margin-top: .55rem; color: var(--accent); font-weight: 800; text-decoration: none; }
.policy-contact-card .policy-back { margin-top: 1rem; color: var(--text); }
.policy-external-card a { color: var(--accent); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.google-reviews-section { overflow: hidden; border-top: 1px solid var(--line); }
.google-reviews-heading { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); text-align: center; }
.google-reviews-heading .eyebrow { justify-content: center; }
.google-reviews-heading .eyebrow::before { display: none; }
.google-reviews-heading h2 { margin: .65rem 0 0; font-size: clamp(1.7rem, 3.5vw, 2.7rem); line-height: 1.12; }
.google-reviews-widget { min-height: 0; width: 100%; }
.google-reviews-widget > div,
.google-reviews-widget iframe { max-width: 100% !important; }
.google-reviews-consent { min-height: 170px; display: grid; place-items: center; align-content: center; gap: 1rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); text-align: center; }
.google-reviews-consent p { margin: 0; color: var(--muted); }
.contact-form { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-form label { display: grid; gap: .42rem; color: #cbd5e7; font-size: .78rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: rgba(5,10,20,.66);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input, .contact-form select { min-height: 48px; padding: .7rem .85rem; }
.contact-form textarea { min-height: 135px; padding: .8rem .85rem; resize: vertical; }
.contact-form select { color-scheme: dark; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,229,255,.1); }
.form-message { margin-top: .15rem; }
.privacy-check { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: .65rem !important; color: var(--muted) !important; font-weight: 500 !important; }
.privacy-check input { width: 17px; min-height: 17px; margin-top: .18rem; accent-color: var(--accent); }
.privacy-check a { color: var(--accent); }
.submit-button { width: 100%; margin-top: .35rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.alert { margin-bottom: 1rem; padding: .85rem 1rem; border: 1px solid; border-radius: 11px; font-size: .88rem; font-weight: 700; }
.alert.success { color: #a7f3d0; border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.09); }
.alert.error { color: #fecaca; border-color: rgba(248,113,113,.35); background: rgba(248,113,113,.09); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #050810; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .9fr; gap: 3rem; padding-block: 4rem 3rem; }
.footer-brand > p { max-width: 410px; margin: 1rem 0 0; color: var(--muted); }
.footer-location { font-size: .82rem; }
.footer-column { display: grid; align-content: start; gap: .55rem; }
.footer-column h2 { margin: 0 0 .55rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a, .cookie-settings { width: fit-content; color: var(--muted); font-size: .88rem; text-decoration: none; }
.cookie-settings { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-column a:hover, .cookie-settings:hover { color: var(--accent); }
.footer-bottom { padding-block: 1.25rem; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #75819a; font-size: .76rem; }
.whatsapp-float, .back-to-top { position: fixed; right: 20px; z-index: 900; display: grid; place-items: center; border-radius: 50%; text-decoration: none; box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.whatsapp-float { bottom: 20px; width: 54px; height: 54px; color: #fff; background: #20bd5a; }
.back-to-top { bottom: 86px; width: 42px; height: 42px; color: #06101c; background: var(--accent); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }

/* Consentement cookies et contenu externe */
.cookie-consent {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  z-index: 3000;
  width: min(960px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(0,229,255,.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15,27,47,.985), rgba(7,11,20,.99));
  box-shadow: 0 28px 90px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: consentEnter .28s ease-out;
}
.cookie-consent-copy strong { display: block; margin-bottom: .2rem; font-size: .96rem; }
.cookie-consent-copy p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.cookie-consent-copy a { color: var(--accent); font-weight: 700; }
.cookie-consent-actions { display: flex; align-items: center; gap: .65rem; }
.cookie-consent-actions button { min-height: 42px; padding: .65rem .9rem; border-radius: 10px; font-size: .78rem; font-weight: 800; cursor: pointer; }
.cookie-decline { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.035); }
.cookie-accept { border: 1px solid transparent; color: #06101c; background: linear-gradient(100deg, var(--accent), var(--accent-2)); }
@keyframes consentEnter { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }

/* Reveal */
.js.reveal-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js.reveal-ready .reveal.visible { opacity: 1; transform: none; }

@media (min-width: 961px) and (max-height: 900px) {
  .hero { padding-top: calc(var(--header-height) + 1.25rem); padding-bottom: 1.5rem; }
  .hero-copy h1 { margin: .55rem 0 .75rem; font-size: clamp(3rem, 4.6vw, 4.7rem); }
  .hero-lead { font-size: 1rem; line-height: 1.5; }
  .hero-actions { margin-top: 1.2rem; }
  .trust-list { margin-top: 1rem; }
  .hero-visual img { max-height: 520px; }
}

/* Tablet */
@media (max-width: 1080px) {
  .container { width: min(calc(100% - 40px), 960px); }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-copy h1 { font-size: clamp(3rem, 6vw, 4.8rem); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-card:nth-child(2) { border-right: 0; }
  .audience-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-layout { grid-template-columns: .8fr 1.2fr; gap: 2.5rem; }
}

@media (max-width: 1080px) {
  :root { --header-height: 70px; }
  .mobile-header-tools { display: flex; flex-direction: row; align-items: center; gap: .65rem; }
  .menu-toggle {
    display: block;
    border-color: rgba(0,229,255,.2);
    background: linear-gradient(145deg, rgba(19,31,52,.96), rgba(8,14,25,.96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 28px rgba(0,0,0,.3);
  }
  .menu-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(0,229,255,.18), transparent 55%);
    opacity: .65;
  }
  .menu-toggle.open { border-color: rgba(0,229,255,.5); box-shadow: 0 0 0 3px rgba(0,229,255,.08), 0 14px 32px rgba(0,0,0,.38); }
  .nav-shell {
    position: fixed;
    inset: calc(var(--header-height) + 12px) 12px auto auto;
    width: min(420px, calc(100% - 24px));
    max-height: calc(100svh - var(--header-height) - 24px);
    display: grid;
    align-content: start;
    gap: .9rem;
    padding: .75rem 1rem 1rem;
    border: 1px solid rgba(0,229,255,.16);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(15,27,47,.98), rgba(7,11,20,.985));
    box-shadow: 0 28px 80px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.985);
    transform-origin: top right;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }
  .nav-shell.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu { display: grid; gap: 0; }
  .nav-menu > li { border-bottom: 1px solid rgba(255,255,255,.075); }
  .nav-menu > li:last-child { border-bottom: 0; }
  .nav-menu a, .dropdown-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: .88rem .35rem; color: var(--text); text-align: left; }
  .dropdown-menu { position: static; display: none; min-width: 0; padding: 0 0 .6rem 1rem; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: var(--muted); }
  .nav-actions { display: grid; }
  .nav-actions .language-switcher { display: none; }
  .nav-menu > li:nth-child(3) { display: none; }
  .nav-cta { width: 100%; min-width: 0; padding: .8rem 1rem; text-align: center; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 4.5rem); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 760px); margin-top: 1.2rem; }
  .hero-visual img { aspect-ratio: 1.7; }
  .split-heading, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .split-heading .section-heading, .contact-copy { position: static; }
  .promise-list { max-width: 760px; }
  .about-mark { width: min(100%, 520px); aspect-ratio: 1.5; }
  .about-mark img { width: 28%; }
  .contact-copy { max-width: 680px; }
  .contact-panel { max-width: 760px; width: 100%; }
}

/* Original public-site layout for phones and tablets */
@media (max-width: 1080px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  button, a, input, select, textarea { touch-action: manipulation; }
  img, svg, video, iframe { max-width: 100%; }
  .site-bg {
    background:
      radial-gradient(900px 400px at 80% 10%, rgba(0,229,255,.15), transparent 60%),
      radial-gradient(1200px 500px at 20% 80%, rgba(91,140,255,.12), transparent 60%);
  }
  .site-bg::before {
    inset: 0;
    background-image:
      linear-gradient(transparent 98%, rgba(255,255,255,.04) 99%),
      linear-gradient(90deg, transparent 98%, rgba(255,255,255,.04) 99%);
    background-size: 40px 40px, 40px 40px;
    mask-image: none;
    -webkit-mask-image: none;
    animation: legacyGridShift 30s linear infinite;
  }
  .site-bg span { display: none; }
  .modern-home { display: none; }
  .legacy-home { display: block; width: 100%; max-width: 100%; }
  .policy-page { padding-top: calc(var(--header-height) + 2.5rem); }
  .policy-heading, .policy-card { text-align: center; }
  .policy-card ul { width: fit-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .policy-contact-card > a { margin-inline: auto; }
  .whatsapp-float {
    position: fixed !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    z-index: 2000;
    display: grid !important;
    width: 58px;
    height: 58px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.42), 0 0 0 4px rgba(32,189,90,.14);
  }
  .whatsapp-float svg { width: 29px; height: 29px; }
  .site-header .nav-container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-left: 2px;
    padding-right: 12px;
  }
  .site-header .brand { gap: 10px; }
  .site-header .brand-logo-modern { display: none; }
  .site-header .brand-logo-original { display: block; width: auto; height: 42px; object-fit: contain; }
  .site-header .brand span {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .4px;
    background-image: linear-gradient(90deg, #00e5ff 0%, #5b8cff 25%, #00e5ff 50%, #5b8cff 75%, #00e5ff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: legacyLogoGradient 2.6s linear infinite !important;
  }
  .legacy-home .container { width: min(calc(100% - 32px), 1200px); }
  .legacy-home section, .legacy-card, .legacy-contact-form, .site-footer, .footer-grid { min-width: 0; max-width: 100%; }
  .legacy-home h1, .legacy-home h2, .legacy-home h3, .legacy-home p, .legacy-home li, .site-footer { overflow-wrap: anywhere; }
  .legacy-home { text-align: center; }
  .legacy-hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 2.25rem) 0 3.25rem;
  }
  .legacy-hero-inner { text-align: center; }
  .legacy-hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: .85rem;
    padding: .32rem .68rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
  }
  .legacy-hero h1 { max-width: 820px; margin: 0 auto .7rem; font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.1; font-weight: 800; }
  .legacy-hero p { max-width: 820px; margin: 0 auto; color: var(--muted); font-size: 1.06rem; }
  .legacy-hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 1.2rem; }
  .legacy-btn {
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    align-items: center;
    padding: .68rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #fff;
    color: #0e1420;
    font-size: .9rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255,255,255,.08);
  }
  .legacy-hero-cta .legacy-btn:first-child {
    background: linear-gradient(100deg, var(--accent), var(--accent-2));
    color: #06101c;
    box-shadow: 0 8px 20px rgba(0,229,255,.14);
  }
  .legacy-hero-cta .legacy-btn:last-child {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.055);
    color: var(--text);
    box-shadow: none;
  }
  .legacy-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem 1.25rem; margin: 1.35rem 0 0; padding: 0; color: var(--muted); list-style: none; }
  .legacy-trust li { position: relative; padding-left: .9rem; font-size: .82rem; font-weight: 600; }
  .legacy-trust li::before { content: ""; position: absolute; top: 50%; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 7px rgba(0,229,255,.55); transform: translateY(-50%); }
  .legacy-section { padding: 3.75rem 0; scroll-margin-top: var(--header-height); }
  .legacy-title { margin: 0 0 .4rem; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; text-align: center; }
  .legacy-subtitle { max-width: 720px; margin: 0 auto 2rem; color: var(--muted); text-align: center; }
  .legacy-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 1rem; }
  .legacy-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px 22px;
    border: 1px solid rgba(0,229,255,.2);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.28);
    backdrop-filter: blur(6px);
  }
  .legacy-card h3 { margin: 0 0 10px; color: #fff; font-size: 1.22rem; font-weight: 800; letter-spacing: .2px; }
  .legacy-card ul { margin: 0; padding: 0; color: var(--muted); list-style: none; }
  .legacy-card li { display: flex; align-items: flex-start; justify-content: center; gap: 8px; padding: 6px 0; font-size: .98rem; text-align: center; }
  .legacy-card li::before { content: "✔"; flex: 0 0 auto; color: var(--accent); font-size: .9rem; filter: drop-shadow(0 0 6px rgba(0,229,255,.45)); }
  .legacy-center { display: flex; justify-content: center; margin-top: 1.8rem; }
  .legacy-about-card { max-width: 720px; }
  .legacy-brand-carousel { width: 100%; overflow: hidden; }
  .legacy-brand-track { width: max-content; display: flex; align-items: center; gap: 4rem; padding: 1.3rem 2rem; animation: legacyBrandScroll 24s linear infinite; }
  .legacy-brand-track span { width: 190px; height: 82px; display: grid; place-items: center; padding: 16px; background: transparent; }
  .legacy-brand-track img { display: block; width: 100%; max-width: 160px; max-height: 50px; object-fit: contain; opacity: .92; }
  .legacy-contact-form { max-width: 900px; margin: 0 auto; padding: 1.2rem; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: var(--panel); box-shadow: var(--shadow); text-align: left; }
  .legacy-contact-form label { display: flex; flex-direction: column; gap: .35rem; color: var(--text); font-weight: 700; }
  .legacy-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-bottom: 1rem; }
  .legacy-contact-form > label { margin-top: 1rem; }
  .legacy-contact-form input, .legacy-contact-form textarea { width: 100%; padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; outline: 0; background: rgba(255,255,255,.04); color: var(--text); font: inherit; }
  .legacy-contact-form input, .legacy-contact-form textarea, .legacy-contact-form select { font-size: 16px; }
  .legacy-contact-form input:focus, .legacy-contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,229,255,.15); }
  .legacy-submit { width: 100%; margin-top: 1.2rem; padding: .95rem 1.2rem; border: 0; border-radius: 12px; background: linear-gradient(90deg,var(--accent),var(--accent-2)); color: #06101c; font-weight: 900; cursor: pointer; }
  .site-footer { text-align: center; }
  .site-footer .footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)); align-items: start; justify-items: center; text-align: center; }
  .site-footer .footer-brand, .site-footer .footer-column { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .site-footer .footer-brand .brand { justify-content: center; }
  .site-footer .footer-brand p, .site-footer .footer-column h2, .site-footer .footer-column a, .site-footer .cookie-settings { margin-inline: auto; text-align: center; }
  .site-footer .footer-bottom { display: flex; justify-content: center; text-align: center; }
  .site-footer .footer-column:first-of-type a[href="#about"] { display: none; }
  .viewport-zoomed .whatsapp-float { width: 46px; height: 46px; opacity: .82 !important; }
  .viewport-zoomed .whatsapp-float svg { width: 24px; height: 24px; }
  .viewport-zoomed .back-to-top { display: none; }
}

@keyframes legacyBrandScroll { to { transform: translateX(-50%); } }
@keyframes desktopBrandScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes legacyGridShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 400px 400px, 400px 400px; }
}
@keyframes desktopGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 240px 144px, 240px 144px; }
}
@keyframes desktopOrbOne {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-7vw, 6vh, 0) scale(1.12); }
}
@keyframes desktopOrbTwo {
  from { transform: translate3d(0, 0, 0) scale(.95); }
  to { transform: translate3d(9vw, -7vh, 0) scale(1.08); }
}
@keyframes legacyLogoGradient {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

@media (min-width: 1081px) {
  .dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: .75rem;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .dropdown:hover .dropdown-toggle span,
  .dropdown:focus-within .dropdown-toggle span { transform: rotate(180deg); }
  .site-header .brand span {
    background-image: linear-gradient(90deg, #00e5ff 0%, #5b8cff 25%, #00e5ff 50%, #5b8cff 75%, #00e5ff 100%);
    background-size: 200% auto;
    animation: legacyLogoGradient 2.6s linear infinite !important;
    will-change: background-position;
  }
}

/* Smartphone */
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), 600px); }
  .section { padding: 4.5rem 0; }
  .legacy-home { width: 100%; overflow: hidden; }
  .legacy-home .container, .legacy-hero-inner { width: calc(100% - 28px); max-width: calc(100% - 28px); }
  .legacy-hero { min-height: 100svh; padding: calc(var(--header-height) + 1.75rem) 0 2.5rem; }
  .legacy-hero h1 { max-width: 100%; font-size: clamp(2.05rem, 10vw, 2.75rem); overflow-wrap: anywhere; }
  .legacy-hero p { max-width: 100%; font-size: 1rem; }
  .legacy-hero-cta { flex-direction: row; width: auto; gap: .6rem; }
  .legacy-hero-cta .legacy-btn { width: auto; max-width: 100%; padding-inline: .78rem; font-size: clamp(.76rem, 3.4vw, .86rem); }
  .legacy-trust { gap: .5rem 1rem; }
  .legacy-trust li { font-size: .74rem; }
  .legacy-section { padding: 3rem 0; }
  .legacy-cards, .legacy-form-grid { grid-template-columns: 1fr; }
  .legacy-cards { gap: .85rem; }
  .legacy-brand-track { gap: 2rem; padding-inline: 1rem; }
  .legacy-brand-track span { width: 150px; height: 70px; padding: 13px; }
  .google-reviews-section { padding: 3rem 0; }
  .google-reviews-heading { margin-bottom: 1.25rem; }
  .google-reviews-heading h2 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .google-reviews-widget { min-height: 340px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 2.75rem 2rem; }
  .site-footer .footer-brand, .site-footer .footer-column { align-items: center; }
  .site-footer .footer-bottom { padding-block: 1rem 1.5rem; }
  .site-footer .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding-block: 2.25rem 1.35rem;
  }
  .site-footer .footer-brand { gap: .15rem; }
  .site-footer .footer-brand .brand { margin-bottom: .35rem; }
  .site-footer .footer-brand .brand img { width: 36px; height: 36px; }
  .site-footer .footer-brand .brand span { font-size: 1rem; }
  .site-footer .footer-brand p { max-width: 310px; margin-block: .2rem; font-size: .82rem; line-height: 1.45; }
  .site-footer .footer-location { font-size: .72rem !important; }
  .site-footer .footer-column {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem .65rem;
  }
  .site-footer .footer-column h2 { display: none; }
  .site-footer .footer-column a,
  .site-footer .cookie-settings {
    width: auto;
    margin: 0;
    padding: .35rem .58rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    font-size: .73rem;
    line-height: 1.25;
  }
  .site-footer .footer-bottom { padding-block: .9rem 1.25rem; }
  .site-footer .footer-bottom p { font-size: .68rem; }
  .site-header .brand-logo-original { width: auto; height: 42px; }
  .site-header .brand span { font-size: 1.25rem; }
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2.5rem;
    text-align: center;
  }
  .hero-layout { display: block; }
  .hero-copy--current { display: none; }
  .hero-copy--legacy { display: block; max-width: 100%; margin-inline: auto; text-align: center; }
  .hero-copy--legacy .hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: .4rem .8rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
  }
  .hero .hero-copy--legacy h1 {
    margin: 0 0 .7rem;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: normal;
  }
  .hero-copy--legacy p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.6; }
  .hero-copy--legacy .hero-cta { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.4rem; }
  .hero-copy--legacy .btn-primary,
  .hero-copy--legacy .btn-secondary {
    width: 100%;
    padding: .9rem 1.4rem;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #fff;
    color: #0e1420;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255, 255, 255, .1);
  }
  .hero-copy--legacy .trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin: 1.2rem 0 0; padding: 0; color: var(--muted); list-style: none; }
  .hero-copy--legacy .trust-strip li {
    position: relative;
    padding: .5rem .75rem .5rem 1.65rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    font-size: .73rem;
  }
  .hero-copy--legacy .trust-strip li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: .65rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 8px rgba(0, 229, 255, .6);
    transform: translateY(-50%);
  }
  .hero .eyebrow {
    display: inline-flex;
    width: auto;
    padding: .42rem .72rem;
    border: 1px solid rgba(0, 229, 255, .2);
    border-radius: 999px;
    background: rgba(0, 229, 255, .07);
    font-size: .65rem;
    letter-spacing: .07em;
    white-space: normal;
  }
  .hero .eyebrow::before { display: none; }
  .hero-copy h1 {
    margin: .9rem 0 .75rem;
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
    line-height: 1.08;
  }
  .hero-lead { max-width: 34rem; margin-inline: auto; font-size: 1rem; line-height: 1.58; }
  .hero-actions { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.35rem; }
  .hero-actions .btn { width: 100%; min-height: 48px; padding: .78rem 1rem; }
  .hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .035);
    color: var(--text);
  }
  .trust-list { justify-content: center; gap: .5rem; margin-top: 1rem; font-size: .7rem; line-height: 1.2; }
  .trust-list li {
    position: relative;
    display: inline-flex;
    padding: .42rem .68rem .42rem 1.28rem;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
  }
  .trust-list li::before { position: absolute; left: .55rem; width: 5px; height: 5px; }
  .hero-visual { display: none; }
  .section-heading h2, .contact-copy h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .audience-grid, .services-grid, .process-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; padding: 1.5rem; border-right: 0; border-bottom: 1px solid rgba(0, 229, 255, .14); text-align: center; }
  .audience-card:last-child { border-bottom: 0; }
  .card-number, .service-index { display: none; }
  .audience-card h3 { margin-top: 0; }
  .service-card { min-height: auto; padding: 1.5rem; border-color: rgba(0, 229, 255, .14); text-align: center; }
  .service-card h3 { margin-top: 0; }
  .service-card ul { width: fit-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .technology-row { grid-template-columns: 1fr; }
  .technology-row > div { justify-content: flex-start; }
  .process-grid { gap: 0; }
  .process-grid::before { top: 0; bottom: 0; left: 30px; right: auto; width: 1px; height: auto; }
  .process-card { display: grid; grid-template-columns: 62px 1fr; column-gap: 1rem; padding: 0 0 2rem; text-align: left; }
  .process-card > span { grid-row: span 2; border-color: var(--bg); }
  .process-card h3 { margin: .55rem 0 .25rem; }
  .process-card p { grid-column: 2; }
  .about-mark { aspect-ratio: 1.3; border-radius: 22px; }
  .contact-panel { padding: 1.15rem; }
  .footer-grid { gap: 2rem; padding-block: 3rem 2.5rem; }
  .whatsapp-float { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); }
  .back-to-top { right: 20px; bottom: 78px; }
  .nav-actions { align-items: stretch; }
  .language-switcher { width: fit-content; }
  .cookie-consent { grid-template-columns: 1fr; gap: .9rem; padding: 1rem; text-align: center; }
  .cookie-consent-actions { width: 100%; justify-content: center; }
}

/* Unified responsive layout: one content structure on every viewport */
@media (max-width: 1080px) {
  .modern-home { display: block; }
  .legacy-home { display: none; }
  .modern-home .section-heading,
  .modern-home .contact-copy { margin-inline: auto; text-align: center; }
  .modern-home .section-heading .eyebrow,
  .modern-home .contact-copy .eyebrow { justify-content: center; }
  .modern-home .section-heading .eyebrow::before,
  .modern-home .contact-copy .eyebrow::before { display: none; }
  .modern-home .audience-card,
  .modern-home .service-card { text-align: center; }
  .modern-home .service-card ul { width: fit-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .modern-home .direct-contact { justify-items: center; text-align: center; }
  .mobile-header-tools { margin-left: auto; }
  .nav-actions { grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: .75rem; }
  .nav-actions .language-switcher { display: flex; width: fit-content; }
  .nav-menu > li:nth-child(3) { display: list-item; }
  .language-switcher a { min-width: 32px; padding: .38rem .5rem; text-align: center; }
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    text-align: center;
  }
  .hero-copy--current { display: block; max-width: 780px; margin-inline: auto; }
  .hero-copy--legacy { display: none; }
  .hero .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .trust-list { justify-content: center; }
  .about-mark { display: none; }
  .about-layout { display: block; }
  .about-layout .section-heading { max-width: 760px; margin-inline: auto; text-align: center; }
  .about-points { width: fit-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .service-card { min-height: 0; }
  .service-details { display: none; }
  .services-expanded .service-details { display: block; }
  .services-toggle { display: inline-flex; }
  .services-expanded .services-toggle > span:last-child { transform: rotate(180deg); }
  .google-reviews-widget { min-height: 0; }
  .cookie-consent { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; width: calc(100% - 20px); border-radius: 16px; }
  .cookie-consent-actions { flex-direction: column-reverse; }
  .cookie-consent-actions button { width: 100%; }
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; padding: calc(var(--header-height) + 2.25rem) 0 2.5rem; }
  .hero-copy--current { display: block; }
  .hero-copy h1 { font-size: clamp(2rem, 9.7vw, 2.8rem); overflow-wrap: normal; }
  .hero-actions { flex-direction: row; align-items: stretch; gap: .6rem; }
  .hero-actions .btn { width: auto; min-height: 44px; padding: .68rem .8rem; font-size: clamp(.76rem, 3.35vw, .86rem); }
  .trust-list { gap: .45rem .8rem; }
  .trust-list li { padding: .3rem 0 .3rem .85rem; border: 0; background: transparent; }
  .trust-list li::before { left: 0; }
  .services-toggle { width: auto; }
  .technology-row { text-align: center; }
  .technology-row > div { justify-content: center; }
  .google-reviews-widget { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .site-header .brand span { animation: legacyLogoGradient 2.6s linear infinite !important; }
  .desktop-brand-track { animation: desktopBrandScroll 28s linear infinite !important; }
  .legacy-brand-track { animation: legacyBrandScroll 24s linear infinite !important; }
  .js.reveal-ready .reveal { opacity: 1; transform: none; }
}
