*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

:root {
  --bg:         #0c0c1f;
  --accent:     #4497f6;
  --accent2:    #B026FF;
  --accent3:    #5200EE;
  --accent-dim: rgba(68, 151, 246, 0.08);
  --accent-mid: rgba(68, 151, 246, 0.25);
  --text:       #FFFFFF;
  --muted:      #a0aec0;
  --muted-dim:  rgba(160,174,192,0.40);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  background-image: radial-gradient(ellipse at 20% 20%, rgba(82,0,238,0.08) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 80%, rgba(176,38,255,0.06) 0%, transparent 50%);
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(80,0,238,0.11) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none; z-index: 0;
}

.glow-tr {
  position: fixed; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34,221,107,0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 60px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(12,12,31,0.88);
  backdrop-filter: blur(20px);
  border-color: rgba(168,190,221,0.1);
}

.logo-img { height: 130px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important; color: var(--bg) !important;
  padding: 10px 24px !important; border-radius: 100px !important;
  font-weight: 700 !important;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 0 2px #050518;
  transition: background-color .3s, box-shadow .3s !important;
}
.nav-cta:hover {
  background-color: #050518 !important;
  color: var(--accent) !important;
  box-shadow: 0 2px 0 2px rgba(68,151,246,0.4), 0 0 16px rgba(68,151,246,0.2) !important;
}
.nav-cta:active { transform: scale(0.96); }

/* ══ HERO ══ */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center;
  padding: 120px 60px 60px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  max-width: 760px; margin: 0 auto; width: 100%;
  pointer-events: auto;
}

h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.2vw, 72px); line-height: 1.12;
  letter-spacing: -2.5px; margin-bottom: 30px;
}
.word { display: inline-block; opacity: 0; transform: translateY(28px); animation: wordUp .72s cubic-bezier(.22,1,.36,1) forwards; }

.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 540px; margin-bottom: 48px; opacity: 0; animation: fadeUp .8s ease forwards 1.05s; }
.hero-actions { display: flex; align-items: center; gap: 14px; opacity: 0; animation: fadeUp .8s ease forwards 1.25s; }

.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  background-color: var(--accent);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif; font-size: 15px;
  font-weight: 700; color: var(--bg);
  cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: 0 3px 0 3px #050518;
  transition: background-color .3s, color .3s, box-shadow .3s;
}
.btn-main:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252,71,120,0.4);
}
.btn-main:active { transform: scale(0.96); box-shadow: 0 1px 0 2px #050518; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: transparent; color: var(--muted);
  border: 2px solid rgba(168,190,221,0.28);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: 0 3px 0 2px rgba(8,20,46,0.8);
  transition: border-color .3s, color .3s, box-shadow .3s, background .3s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 3px 0 2px rgba(34,221,107,0.25);
}
.btn-ghost:active { transform: scale(0.96); }

/* ══ MARQUEE ══ */
.marquee-wrap {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid rgba(168,190,221,0.1);
  border-bottom: 1px solid rgba(168,190,221,0.1);
  padding: 18px 0;
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.mitem { display: flex; align-items: center; gap: 14px; padding: 0 28px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.mdot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 6px var(--accent); }

/* ══ SERVICES TEASER ══ */
.srv-teaser-section {
  position: relative; z-index: 1;
  background: var(--bg); padding: 120px 60px;
}
.srv-teaser-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.srv-teaser-header { margin-bottom: 64px; text-align: center; }
.srv-teaser-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px); line-height: 1.06; letter-spacing: -2px;
}
.srv-teaser-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-bottom: 48px;
}
.srv-teaser-card {
  --c: var(--accent);
  display: flex; align-items: center; gap: 24px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(168,190,221,0.08);
  border-left: 3px solid var(--c);
  border-radius: 16px;
  opacity: 0; transform: translateX(-24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1), background .3s, box-shadow .3s;
  cursor: default;
}
.srv-teaser-card.in-view { opacity: 1; transform: translateX(0); }
.srv-teaser-card:hover {
  background: rgba(255,255,255,0.04);
  box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 0 0 1px var(--c);
}
.srv-teaser-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: 28px; line-height: 1; letter-spacing: -1px;
  color: var(--c); opacity: .4; flex-shrink: 0; min-width: 36px;
}
.srv-teaser-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1.3; color: var(--text);
}
.srv-teaser-cta { display: flex; }
.srv-teaser-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  padding: 16px 36px; border-radius: 100px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 3px 0 3px #050518;
  position: relative; overflow: hidden;
  transition: transform .22s, opacity .22s;
}
.srv-teaser-btn:hover {
  background-color: #08142E;
  color: var(--accent);
  box-shadow: 0 3px 0 3px rgba(68,151,246,0.4);
  opacity: .9;
  transform: translateY(-2px);
}
.srv-teaser-btn:active { transform: scale(0.96); }

/* ══ ABOUT TEASER ══ */
.about-teaser-section {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, #0A1B3A 100%);
  padding: 120px 60px;
}
.about-teaser-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-teaser-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.about-teaser-left.in-view { opacity: 1; transform: translateX(0); }
.about-teaser-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4vw, 54px); line-height: 1.08; letter-spacing: -2px;
  margin-bottom: 20px;
}
.about-teaser-sub {
  font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 36px;
}
.about-teaser-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  border: 1px solid rgba(168,190,221,.28);
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 400;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: border-color .2s, color .2s, transform .22s;
}
.about-teaser-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); text-shadow: 0 0 8px var(--accent); }
.about-teaser-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .8s ease .15s, transform .8s cubic-bezier(.22,1,.36,1) .15s;
}
.about-teaser-right.in-view { opacity: 1; transform: translateX(0); }
.about-teaser-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.about-teaser-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(168,190,221,0.08);
  font-size: 17px; font-weight: 500; color: var(--text);
  transition: color .2s;
}
.about-teaser-list li:first-child { border-top: 1px solid rgba(168,190,221,0.08); }
.about-teaser-list li:hover { color: var(--accent); }
.atl-check, .success-icon {
  border-radius: 50%;
  background: rgba(68,151,246,0.07); border: 1px solid rgba(68,151,246,0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 8px rgba(68,151,246,0.12);
}
.atl-check { width: 22px; height: 22px; flex-shrink: 0; }

/* ══ PROCESS ══ */
.process-section {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #0A1B3A 0%, var(--bg) 100%);
  padding: 130px 60px;
}
.process-inner { max-width: 900px; margin: 0 auto; }
.process-header { margin-bottom: 80px; }
.process-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(34px, 4.5vw, 58px); line-height: 1.06; letter-spacing: -2px;
  margin-bottom: 18px;
}
.process-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 520px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0;
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.process-step.in-view { opacity: 1; transform: translateY(0); }
.process-step-left {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 2px;
}
.process-step-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: .1em;
  background: linear-gradient(135deg, #FC4778, #3952F5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
  width: 38px; height: 38px; border-radius: 50%;
  background-color: rgba(252,71,120,0.07); border: 1px solid rgba(252,71,120,0.25);
  box-shadow: 0 0 12px rgba(57,82,245,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.process-step-line {
  width: 1px; flex: 1;
  background: linear-gradient(to bottom, rgba(68,151,246,0.35), rgba(176,38,255,0.1));
  margin: 6px 0; min-height: 40px;
}
.process-step-right { padding: 0 0 48px 32px; }
.process-step:last-of-type .process-step-right { padding-bottom: 0; }
.process-step-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 20px; color: var(--text); margin-bottom: 10px; line-height: 1.2;
}
.process-step-desc { font-size: 15px; color: var(--muted); line-height: 1.8; }
.process-footer-note {
  display: flex; align-items: center; gap: 12px;
  margin-top: 48px; padding: 20px 24px;
  background: rgba(68,151,246,0.05);
  border: 1px solid rgba(68,151,246,0.2);
  box-shadow: 0 0 20px rgba(68,151,246,0.07);
  border-radius: 14px;
  font-size: 14.5px; font-style: italic;
  color: rgba(168,190,221,.85);
  opacity: 0; transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}
.process-footer-note.in-view { opacity: 1; transform: translateY(0); }
.process-footer-note svg { color: var(--accent); flex-shrink: 0; }

/* ══ CONTACT ══ */
.contact-section {
  position: relative; z-index: 1;
  overflow: hidden; background: transparent;
  padding: 120px 60px 160px;
}
.contact-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.contact-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(34px, 4vw, 54px); line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 20px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease .1s, transform .7s ease .1s;
}
.contact-desc {
  font-size: 16px; color: var(--muted); line-height: 1.8;
  margin-bottom: 18px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease .2s, transform .7s ease .2s;
}
.contact-info {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease .3s, transform .7s ease .3s;
}
.cinfo-item { display: flex; align-items: center; gap: 8px; }
.cinfo-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(68,151,246,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(68,151,246,0.1);
}
.cinfo-item span { font-size: 14px; color: var(--muted); }

.contact-section.revealed .contact-title,
.contact-section.revealed .contact-desc,
.contact-section.revealed .contact-info { opacity: 1; transform: translateY(0); }

.form-card {
  width: 100%;
  background: rgba(12, 12, 31, 0.35);
  border: 1px solid rgba(168,190,221,0.14);
  border-radius: 24px; padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(36px) scale(.98);
  transition: opacity .9s ease .4s, transform .9s cubic-bezier(.22,1,.36,1) .4s;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
}
.contact-section.revealed .form-card { opacity: 1; transform: translateY(0) scale(1); }

.cform { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-wrap { display: flex; flex-direction: column; gap: 8px; }
.field-label { font-size: 13px; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.req { color: var(--accent); }
.field-hint { font-size: 11px; font-weight: 400; color: rgba(168,190,221,.5); }
.field-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,190,221,0.18);
  border-radius: 12px; padding: 14px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px; color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.field-input::placeholder { color: rgba(168,190,221,.35); }
.field-input:focus {
  border-color: var(--accent);
  background: rgba(34,221,107,0.04);
  box-shadow: 0 0 0 3px rgba(34,221,107,0.1);
}
.field-textarea { resize: vertical; min-height: 130px; }

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 100px;
  padding: 18px 36px;
  font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 500;
  cursor: pointer; margin-top: 6px;
  box-shadow: 0 3px 0 3px #050518;
  position: relative; overflow: hidden;
  transition: background-color .3s, color .3s, box-shadow .3s;
}
.form-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.form-submit:hover {
  background-color: #08142E;
  color: var(--accent);
  box-shadow: 0 3px 0 3px rgba(68,151,246,0.4);
  opacity: .92;
  transform: translateY(-2px);
}
.form-submit:hover::after { transform: translateX(100%); }
.form-submit:active { transform: scale(.98); }

.submit-spinner { animation: spin-once .8s linear infinite; display: flex; }
@keyframes spin-once { to { transform: rotate(360deg); } }

.form-note { text-align: center; font-size: 12px; color: rgba(168,190,221,.45); margin-top: -6px; letter-spacing: .02em; }

.form-success {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
  padding: 40px 0; text-align: center;
  animation: fadeUp .6s ease forwards;
}
.success-icon { width: 68px; height: 68px; color: var(--accent); }
.success-title { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; }
.success-sub { font-size: 15px; color: var(--muted); }

/* ══ FOOTER ══ */
footer { position: relative; z-index: 1; overflow: hidden; }

.sky-wrapper {
  position: relative;
  background: linear-gradient(180deg, #0c0c1f 0%, #0e0b28 18%, #120a35 38%, #14073f 55%, #160545 70%, #130742 80%, #0e0930 92%, #0c0c1f 100%);
  overflow: hidden;
}

#starfield {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.footer-landscape {
  position: relative; z-index: 2;
  width: 100%; display: block; overflow: hidden; line-height: 0;
}

.planet {
  position: absolute; border-radius: 50%;
  background: rgba(200,200,220,0.55);
  pointer-events: none; z-index: 1;
}
.planet-1 { width: 22px; height: 22px; top: 22%; left: 28%; animation: floatPlanet 8s ease-in-out infinite; }
.planet-2 { width: 11px; height: 11px; top: 12%; left: 68%; animation: floatPlanet 11s ease-in-out infinite 2s; }
.planet-3 { width: 16px; height: 16px; top: 18%; left: 86%; animation: floatPlanet 9s ease-in-out infinite 1s; }
.planet-4 { width: 8px; height: 8px;  top: 30%; left: 50%; animation: floatPlanet 13s ease-in-out infinite 3s; }

.footer-bottom-wrap { background: #080810; position: relative; z-index: 2; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 60px 48px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand {
  display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 8px;
}
.footer-logo-img { height: 100px; width: auto; display: block; margin-bottom: 4px; }
.footer-desc {
  font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 260px; margin-bottom: 0;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(168,190,221,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(68,151,246,0.07); box-shadow: 0 0 10px rgba(68,151,246,0.2); }
.footer-col-title { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom-bar {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 60px 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid rgba(168,190,221,0.07);
}
.footer-copy { font-size: 13px; color: var(--muted-dim); }
.footer-copy em { color: var(--accent); font-style: normal; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 13px; color: var(--muted-dim); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--muted); }

/* ══ HERO ROTATING TEXT ══ */
.hero-rotating-wrap {
  display: block; overflow: hidden;
  height: 1.15em; line-height: 1.15em;
}
.hero-rotating-text {
  display: inline-block; white-space: nowrap;
  background: linear-gradient(90deg, #FC4778 0%, #3952F5 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  will-change: transform, opacity;
}
.hero-rotating-text.anim-in  { animation: wordIn  .65s cubic-bezier(.22, 1, .36, 1) forwards; }
.hero-rotating-text.anim-out { animation: wordOut .42s cubic-bezier(.55, 0, 1, .45) forwards; }

.srv-teaser-title em,
.about-teaser-title em,
.process-title em,
.contact-title em {
  background: linear-gradient(90deg, #FC4778 0%, #3952F5 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic; color: transparent;
}

/* ══ KEYFRAMES ══ */
@keyframes fadeUp    { from{opacity:0;transform:translateY(18px);}to{opacity:1;transform:translateY(0);} }
@keyframes wordUp    { from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);} }
@keyframes pulse     { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.4;transform:scale(.75);} }
@keyframes marquee   { from{transform:translateX(0);}to{transform:translateX(-50%);} }
@keyframes floatPlanet { 0%,100%{transform:translateY(0);}50%{transform:translateY(-14px);} }
@keyframes wordIn {
  0%   { transform: translateY(110%); opacity: 0; }
  60%  { transform: translateY(-8%);  opacity: 1; }
  80%  { transform: translateY(3%); }
  100% { transform: translateY(0);    opacity: 1; }
}
@keyframes wordOut {
  0%   { transform: translateY(0);     opacity: 1; }
  100% { transform: translateY(-110%); opacity: 0; }
}

/* ══ HAMBURGER BUTTON ══ */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px;
  z-index: 200;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ MOBILE MENU ══ */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 150;
  background: rgba(12,12,31,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-links {
  list-style: none;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  width: 100%;
}
.mobile-menu-links li { width: 100%; text-align: center; }
.mobile-menu-links a {
  display: block;
  padding: 20px 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid rgba(168,190,221,0.07);
  transition: color .2s;
}
.mobile-menu-links a:hover { color: var(--text); }
.mobile-menu-links li:first-child a { border-top: 1px solid rgba(168,190,221,0.07); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; border: none; cursor: pointer;
  color: var(--muted);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color .2s, background .2s;
}
.mobile-menu-close:hover {
  color: var(--text);
  background: rgba(168,190,221,0.08);
}

.mobile-menu-cta {
  margin: 24px auto 0;
  display: inline-flex !important;
  width: auto !important;
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 14px 36px !important;
  border-radius: 100px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  border-top: none !important;
}

/* ══ HERO ACTIONS RESPONSIVE ══ */
.hero-actions {
  flex-wrap: wrap;
}
.btn-main, .btn-ghost {
  white-space: nowrap;
}

/* ══ MEDIA QUERIES ══ */
@media(max-width:850px) {
  .footer-col-hide { display: none; }

  /* Footer : flexbox colonne, tout centré */
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 24px 20px;
    gap: 0;
    text-align: center;
  }

  /* display:contents "dissout" footer-brand : img et p deviennent flex items directs */
  .footer-brand { display: contents; }

  /* Ordre : logo → contact → desc */
  .footer-logo-img     { order: 1; height: 100px; margin-bottom: 10px; }
  .footer-col:not(.footer-col-hide) { order: 2; margin-bottom: 16px; }
  .footer-desc         { order: 3; margin-bottom: 0; max-width: 300px; text-align: center; align-self: center; }

  /* Contact : titre masqué, liens sur une ligne */
  .footer-col:not(.footer-col-hide) .footer-col-title { display: none; }
  .footer-col:not(.footer-col-hide) ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 18px;
  }
  .footer-col:not(.footer-col-hide) ul li { margin-bottom: 0; }


  .hamburger { display: flex; }
  .nav-links  { display: none; }
  .mobile-menu { display: flex; }

  nav { padding: 0 20px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media(max-width:680px) {
  .srv-teaser-grid { grid-template-columns: 1fr; }
  .srv-teaser-section { padding: 80px 24px; }
}
@media(max-width:760px) {
  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser-section { padding: 80px 24px; }
}
@media(max-width:600px) {
  .process-section { padding: 80px 24px; }
  .process-step { grid-template-columns: 56px 1fr; }
  .process-step-right { padding-left: 20px; padding-bottom: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .field-input::placeholder { color: transparent; }
}
