/* ====================================================
   AteGo — Design System
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --navy: #0f1e35;
  --navy-mid: #273e60;
  --gold: #f5c434;
  --gold-dark: #d4a825;
  --gold-pale: rgba(245, 196, 52, 0.12);
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-300: #ced4de;
  --gray-500: #8592a6;
  --gray-700: #4a566a;
  --text: #1a2840;
  --text-muted: #6b7990;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.11), 0 2px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.09);
  --shadow-gold: 0 8px 24px rgba(245, 196, 52, 0.32);

  --header-h: 68px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.32s var(--ease);
}

/* ====================================================
   RESET
   ==================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ====================================================
   TYPOGRAPHY UTILITIES
   ==================================================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-eyebrow.light {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.13;
  margin-bottom: 16px;
  text-align: center;
}

.section-title.left {
  text-align: left;
}

.section-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 540px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.7;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 196, 52, 0.48);
}

.btn-primary:hover::after {
  opacity: 0.09;
}

.btn-primary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.875rem;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ====================================================
   HEADER
   ==================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

#header.scrolled {
  background: rgba(15, 30, 53, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-md);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.4375rem;
  font-weight: 800;
}

.logo-ate {
  color: var(--navy-mid);
  transition: color var(--transition);
}

.logo-go {
  color: var(--gold);
}

#header.scrolled .logo-ate {
  color: var(--white);
}

.logo-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 3px;
  animation: pulse-dot 2.8s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

/* Nav */
.menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

#header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

#header.scrolled .nav-link:hover,
#header.scrolled .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Header CTA */
.header-cta {
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.header-cta:hover {
  background: var(--gold-dark);
}

.header-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Mobile toggle */
.toggle_menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
  background: none;
  border: none;
}

.toggle_menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-mid);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  transform-origin: center;
}

#header.scrolled .toggle_menu span {
  background: var(--white);
}

.toggle_menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.toggle_menu.active span:nth-child(2) {
  opacity: 0;
}

.toggle_menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====================================================
   HERO
   ==================================================== */
#home {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 56px) 5% 88px;
  gap: 64px;
}

/* Hero left */
.hero-left {
  flex: 1;
  max-width: 560px;
  animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: var(--gold-pale);
  border: 1px solid rgba(245, 196, 52, 0.28);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 24px;
}

.hero-title-accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 60%, transparent);
  border-radius: 2px;
  opacity: 0.45;
}

.hero-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.78;
  margin-bottom: 36px;
}

.hero-desc strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero right / image */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-img-enter 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-img-ring {
  position: absolute;
  inset: -18px;
  border: 1.5px dashed rgba(245, 196, 52, 0.22);
  border-radius: var(--radius-xl);
  animation: ring-spin 22s linear infinite;
}

.hero-img {
  border-radius: var(--radius-lg);
  width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.55));
}

.hero-float-card {
  position: absolute;
  bottom: 22px;
  left: -22px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  animation: float-y 3.8s ease-in-out infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(245, 196, 52, 0.7), transparent);
  animation: scroll-blink 2.2s ease-in-out infinite;
}

/* ---- Hero keyframes ---- */
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-img-enter {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes scroll-blink {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 1;
  }
}

/* ====================================================
   STATS STRIP
   ==================================================== */
.stats-strip {
  background: var(--gold);
  padding: 28px 5%;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 0.6563rem;
  font-weight: 500;
  color: var(--navy-mid);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-div {
  width: 1px;
  height: 44px;
  background: rgba(39, 62, 96, 0.18);
  margin: 0 28px;
  flex-shrink: 0;
}

/* ====================================================
   PRESTATIONS
   ==================================================== */
#prestations {
  padding: 96px 5%;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.prestas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.presta-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.055);
}

.presta-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* Card image */
.presta-card-img {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: var(--off-white);
}

.presta-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 16px 24px 12px;
  transition: transform 0.55s var(--ease);
}

.presta-card:hover .presta-card-img img {
  transform: scale(1.05);
}

.presta-card-icon {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.presta-card-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--navy);
}

/* Card body */
.presta-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 24px 26px;
}

.presta-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.presta-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 16px;
}

.presta-desc strong {
  color: var(--text);
  font-weight: 600;
}

.presta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  margin-bottom: 22px;
}

.presta-list li {
  font-size: 0.8125rem;
  color: var(--gray-700);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.presta-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.presta-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
  margin-top: auto;
}

.presta-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.presta-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ====================================================
   À PROPOS
   ==================================================== */
.about-section {
  background: var(--navy);
  padding: 100px 5%;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* About visual */
.about-visual {
  flex: 0 0 auto;
  width: 380px;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  filter: brightness(0.88);
}

.about-ring {
  position: absolute;
  inset: -22px;
  z-index: 0;
  pointer-events: none;
  animation: ring-spin 32s linear infinite reverse;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
}

.about-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 2;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}

.about-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.about-badge strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.about-badge span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--navy-mid);
}

/* About content */
.about-content {
  flex: 1;
}

.about-content .section-title {
  color: var(--white);
}

.about-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.78;
  margin-bottom: 36px;
}

.about-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Feature grid */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border: 1px solid rgba(245, 196, 52, 0.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.about-feature div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-feature strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.about-feature span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
}

.about-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 28px;
}

.about-hours strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ====================================================
   CONTACT / DEVIS
   ==================================================== */
.contact-section {
  position: relative;
  background: var(--off-white);
  padding: 100px 5%;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.contact-inner {
  display: flex;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 0 0 360px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.13;
  margin-bottom: 16px;
  text-align: left;
}

.contact-title span {
  color: var(--gold-dark);
}

.contact-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.contact-detail img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  padding: 8px;
  background: var(--gold);
  border-radius: 8px;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.055);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gold-dark);
  background: rgba(245, 196, 52, 0.09);
  border: 1px solid rgba(245, 196, 52, 0.24);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 196, 52, 0.14);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 104px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-submit:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 5% 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-col h3 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  padding: 4px 0;
  line-height: 1.5;
}

.footer-col ul li a {
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.07em;
}

/* ====================================================
   SCROLL REVEAL
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children of presta grid */
.prestas-grid .presta-card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.prestas-grid .presta-card.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

/* Stagger about features */
.about-features .about-feature.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.about-features .about-feature.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.about-features .about-feature.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* Contact form */
.contact-form.reveal {
  transition-delay: 0.12s;
}

/* ====================================================
   RESPONSIVE — Tablet landscape (≤ 1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }

  .hero-deco {
    width: 180px;
    opacity: 0.6;
  }

  .about-inner {
    gap: 48px;
  }

  .about-visual {
    width: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ====================================================
   RESPONSIVE — Tablet portrait (≤ 768px)
   ==================================================== */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  /* Header */
  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(15, 30, 53, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: none;
    z-index: 99;
  }

  .nav.open {
    display: block;
  }

  .menu {
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.65);
    border-radius: 0;
    font-size: 0.9375rem;
  }

  .nav-link.active::after {
    display: none;
  }

  .toggle_menu {
    display: flex;
  }

  /* Hero */
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--header-h) + 36px);
    padding-bottom: 64px;
    gap: 44px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-deco {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
  }

  .hero-img-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-float-card {
    left: 0;
  }

  /* Stats */
  .stats-inner {
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .stat-div {
    display: none;
  }

  .stat-item {
    flex: 0 0 50%;
  }

  /* Prestations */
  .prestas-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  /* About */
  .about-inner {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .about-visual {
    width: 280px;
    margin: 0 auto;
  }

  .about-badge {
    right: -8px;
  }

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

  .about-content .section-title {
    text-align: center;
  }

  .about-content .section-eyebrow {
    display: flex;
    justify-content: center;
  }

  .about-hours {
    justify-content: center;
  }

  /* Contact */
  .contact-inner {
    flex-direction: column;
    gap: 48px;
  }

  .contact-info {
    flex: none;
    width: 100%;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ====================================================
   RESPONSIVE — Mobile (≤ 480px)
   ==================================================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.375rem;
  }

  .presta-card-img {
    height: 250px;
  }

  .about-features {
    gap: 12px;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    gap: 12px 0;
  }

  .stat-num {
    font-size: 1.75rem;
  }
}