/* ═══════════════════════════════════════════════
   LAMEXIA – Feuille de styles partagée
   Design: Québec tech professionnel
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --ink: #0f1117;
  --ink2: #2a2d3a;
  --ink3: #5a6070;
  --accent: #1a6cf0;
  --accent2: #0d4fbe;
  --light: #eef3ff;
  --light2: #f5f8ff;
  --surface: #ffffff;
  --border: #dde4f0;
  --cyan: #00c2e0;
  --cyan-pale: #e0f9fd;
  --success: #07b37e;
  --qc-blue: #003087;
  --qc-red: #c8102e;
  --ai-grad: linear-gradient(135deg, #1a6cf0 0%, #00c2e0 100%);
  --qc-grad: linear-gradient(135deg, #003087 0%, #1a6cf0 50%, #00c2e0 100%);
  --hero-grad: linear-gradient(135deg, #0a1628 0%, #0d2d5e 40%, #1a6cf0 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(26,108,240,0.08);
  --shadow-md: 0 8px 32px rgba(26,108,240,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: #fafbff;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── QUÉBEC FLASH BANNER ─── */
.qc-flash {
  background: var(--qc-grad);
  color: #fff;
  text-align: center;
  padding: 9px 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.qc-flash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 60px,
    rgba(255,255,255,0.03) 60px,
    rgba(255,255,255,0.03) 120px
  );
}
.qc-flash .fleur-de-lis {
  font-size: 1rem;
  animation: sway 3s ease-in-out infinite;
}
@keyframes sway {
  0%,100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
.qc-flash .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-g 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-g {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.5;transform:scale(1.4);}
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.logo-text span {
  background: var(--ai-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--ink3);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--ai-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
}
.btn-primary {
  background: var(--ai-grad);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,108,240,0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 26px rgba(26,108,240,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--light); }
.btn-white {
  background: #fff;
  color: var(--accent2);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { box-shadow: 0 6px 26px rgba(0,0,0,0.18); transform: translateY(-1px); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--ink2);
  font-weight: 500; font-size: 1rem;
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn-mobile {
  margin-top: 1rem;
  background: var(--ai-grad);
  color: #fff; border-radius: 100px;
  text-align: center; padding: 0.85rem;
  font-weight: 700; border-bottom: none;
}

/* ─── PAGE HERO BANNER (inner pages) ─── */
.page-hero {
  background: var(--hero-grad);
  position: relative;
  overflow: hidden;
  padding: 56px 2rem 52px;
  text-align: center;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0,194,224,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(26,108,240,0.25) 0%, transparent 70%);
}
/* Maple leaf decorative watermark */
.page-hero::after {
  content: '🍁';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.05;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── SEAO BANNER ─── */
.seao-banner {
  background: var(--qc-grad);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.seao-banner::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.seao-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.seao-left { display: flex; align-items: center; gap: 1.5rem; }
.seao-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.seao-text h3 { font-size: 1.1rem; font-weight: 700; }
.seao-text p { font-size: 0.88rem; opacity: 0.82; margin-top: 3px; }
.seao-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.seao-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ─── SECTIONS ─── */
section { padding: 72px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--ai-grad);
  border-radius: 2px;
  display: inline-block;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.section-sub {
  font-size: 1rem;
  color: var(--ink3);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ─── STAT CARDS ─── */
.stat-box {
  background: var(--light2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--ai-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.73rem; color: var(--ink3); margin-top: 2px; }

/* ─── SKILL CARDS ─── */
.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.skill-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.skill-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.skill-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.skill-icon.blue { background: var(--light); }
.skill-icon.cyan { background: var(--cyan-pale); }
.skill-icon.green { background: #e6faf4; }
.skill-icon.purple { background: #f0eeff; }
.skill-icon.orange { background: #fff4e6; }
.skill-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--ink2); }
.skill-years { font-size: 0.78rem; color: var(--ink3); margin-top: 2px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.75rem; }
.tag {
  background: var(--light2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--ink3);
  font-weight: 500;
}

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--cyan));
  border-radius: 2px;
}
.timeline-item { position: relative; padding-bottom: 2.25rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.44rem; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ai-grad);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-card {
  background: var(--light2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.timeline-card:hover { border-color: var(--accent); }
.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.tl-role { font-weight: 700; font-size: 0.95rem; color: var(--ink2); }
.tl-period {
  font-size: 0.76rem; font-weight: 600;
  color: var(--accent);
  background: var(--light);
  border-radius: 100px;
  padding: 3px 12px;
  white-space: nowrap;
}
.tl-client { font-size: 0.84rem; color: var(--ink3); font-weight: 600; margin-bottom: 0.5rem; }
.tl-desc { font-size: 0.87rem; color: var(--ink3); }
.tl-tech { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 0.75rem; }
.tech-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 9px;
  font-size: 0.73rem;
  color: var(--accent2);
  font-weight: 500;
}

/* ─── CERT CARDS ─── */
.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-badge-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--ai-grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-info h4 { font-weight: 700; font-size: 0.9rem; color: var(--ink2); margin-bottom: 4px; }
.cert-info p { font-size: 0.79rem; color: var(--ink3); }
.cert-valid {
  display: inline-block; margin-top: 8px;
  font-size: 0.73rem; font-weight: 700;
  color: var(--success);
  background: #e6faf4;
  border-radius: 100px;
  padding: 2px 10px;
}

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-btn {
  width: 100%; text-align: left;
  padding: 1.2rem 1.5rem;
  background: none; border: none;
  cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  font-family: 'Outfit', sans-serif;
}
.faq-btn:hover { background: var(--light2); }
.faq-question { font-weight: 700; font-size: 0.94rem; color: var(--ink2); line-height: 1.4; }
.faq-arrow { flex-shrink: 0; transition: transform 0.3s; }
.faq-body { display: none; padding: 0 1.5rem 1.2rem; }
.faq-body p { font-size: 0.89rem; color: var(--ink3); }

/* ─── CONTACT SECTION ─── */
.contact-section { background: var(--ink); color: #fff; }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-inner .section-tag { color: var(--cyan); justify-content: center; }
.contact-inner .section-tag::before { background: var(--cyan); }
.contact-inner .section-title { color: #fff; }
.contact-inner .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 2rem; }
.contact-cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: #fff;
  transition: background 0.2s;
  font-size: 0.88rem;
}
.contact-card:hover { background: rgba(255,255,255,0.13); }
.cc-icon {
  width: 36px; height: 36px;
  background: var(--ai-grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.cc-value { font-weight: 600; font-size: 0.88rem; }
.availability-note {
  background: rgba(0,194,224,0.1);
  border: 1px solid rgba(0,194,224,0.28);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.78);
  display: flex; align-items: center; gap: 10px;
  justify-content: center; flex-wrap: wrap;
}
.avail-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-g 2s infinite;
  flex-shrink: 0;
}

/* ─── FORM ─── */
.form-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 2rem;
  max-width: 640px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.68);
  margin-bottom: 6px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(0,194,224,0.6); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(10,22,40,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  outline: none; cursor: pointer;
}
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  outline: none; resize: vertical;
  transition: border-color 0.2s;
}
.form-textarea:focus { border-color: rgba(0,194,224,0.6); }
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-error {
  display: none;
  background: rgba(220,50,50,0.15);
  border: 1px solid rgba(220,50,50,0.4);
  border-radius: 10px;
  padding: 10px 14px;
  color: #ffaaaa;
  font-size: 0.84rem;
  margin-bottom: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form-success .check { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--ai-grad);
  color: #fff; border: none;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─── FOOTER ─── */
footer {
  background: #060a14;
  color: rgba(255,255,255,0.4);
  padding: 1.6rem 2rem;
  font-size: 0.8rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-qc {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.76rem; color: rgba(255,255,255,0.3);
}

/* ─── GRADIENT DIVIDER ─── */
.grad-divider {
  height: 4px;
  background: var(--qc-grad);
}

/* ─── WHY CARDS ─── */
.why-card {
  background: var(--light2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.why-card .why-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: var(--ai-grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-card h3 { font-weight: 700; font-size: 0.94rem; color: var(--ink2); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.87rem; color: var(--ink3); }

/* ─── LIVRABLE CARDS ─── */
.livrable-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.livrable-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.livrable-icon {
  width: 42px; height: 42px;
  background: var(--ai-grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.livrable-card h3 { font-size: 0.94rem; font-weight: 700; color: var(--ink2); margin-bottom: 0.5rem; }
.livrable-card p { font-size: 0.85rem; color: var(--ink3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .seao-inner { flex-direction: column; align-items: flex-start; padding: 1.75rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
  .container { padding: 0 1.5rem; }
}
@media (max-width: 600px) {
  nav { padding: 0 1rem; height: 60px; }
  .logo-text { font-size: 1.2rem; }
  .mobile-menu { top: 60px; }
  section { padding: 44px 0; }
  .container { padding: 0 1rem; }
  .section-title { font-size: 1.55rem; }
  .tl-header { flex-direction: column; gap: 5px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .contact-cards { flex-direction: column; align-items: stretch; }
  .contact-card { max-width: 100%; }
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switch {
  display: flex;
  align-items: center;
  background: var(--light2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--ink3);
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.lang-btn.active {
  background: var(--ai-grad);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,108,240,0.3);
}
.lang-btn:not(.active):hover { color: var(--accent); }

/* Hide/show language content */
[data-lang] { display: none; }
[data-lang].visible { display: block; }
[data-lang-inline] { display: none; }
[data-lang-inline].visible { display: inline; }
[data-lang-flex] { display: none; }
[data-lang-flex].visible { display: flex; }
