/* PASSY AIRPORT ACADEMY - POLISHED REDESIGN */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --orange: #D96A3D;
  /* More sophisticated, less neon */
  --orange-d: #B8532B;
  --orange-l: #F4A281;
  --navy: #16244E;
  /* Deeper, more authoritative */
  --navy-d: #0D1630;
  --dark: #0F141E;
  --dark2: #191F2F;
  --white: #FFFFFF;
  --off: #F8F9FC;
  --grey: #5E6782;
  /* Slightly darker for better readability */
  --grey-l: #EDEFF5;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh-sm: 0 2px 8px rgba(0, 0, 0, .05);
  --sh-md: 0 10px 30px rgba(0, 0, 0, .08);
  --sh-lg: 0 15px 40px rgba(0, 0, 0, .12);
  --sh-o: 0 8px 24px rgba(217, 106, 61, .25);
  --tr: all .25s ease-out;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

/* UTILS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px
}

.section-title.light {
  color: var(--white)
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey)
}

.section-subtitle.light {
  color: rgba(255, 255, 255, .65)
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: var(--tr);
  cursor: pointer;
  letter-spacing: .01em
}

.btn-primary:hover {
  background: var(--orange-d);
  border-color: var(--orange-d);
  transform: translateY(-1.5px);
  box-shadow: var(--sh-o)
}

.btn-primary.btn-sm {
  padding: 9px 22px;
  font-size: .84rem
}

.btn-primary.btn-full {
  width: 100%;
  justify-content: center
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .35);
  transition: var(--tr)
}

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

/* ANIMATIONS */
.anim-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease
}

.anim-card:nth-child(2) {
  transition-delay: .1s
}

.anim-card:nth-child(3) {
  transition-delay: .2s
}

.anim-card:nth-child(4) {
  transition-delay: .3s
}

.anim-in {
  opacity: 1 !important;
  transform: none !important
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 20px 0;
  transition: var(--tr)
}

.navbar.scrolled {
  background: rgba(10, 15, 30, .85);
  padding: 13px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.navbar.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}

.nav-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 36px
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0
}

.logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  transition: var(--tr)
}

@media (max-width: 768px) {
  .logo-img {
    height: 72px;
  }
}

.navbar.scrolled .logo-img {
  height: 64px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto
}

.nav-link {
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 8px;
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .07)
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform .25s ease
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg)
}

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 50px;
  transition: var(--tr);
  margin-left: 8px;
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
  box-shadow: var(--sh-o)
}

.nav-dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy-d);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  padding: 12px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
  box-shadow: var(--sh-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px)
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--tr);
  font-size: .88rem;
  font-weight: 500
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  transform: translateX(4px)
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  opacity: .8
}

.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: background .2s ease;
  z-index: 5000;
  flex-shrink: 0
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, .1)
}

.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s ease, width .25s ease;
  transform-origin: center
}

.nav-hamburger.active .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.active .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.nav-hamburger.active .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

@media (max-width:1024px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: rgba(10, 15, 30, 1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 110px 32px 40px;
    gap: 4px;
    z-index: 4000;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    pointer-events: all
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto
  }

  .nav-link {
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .nav-dropdown {
    width: 100%
  }

  /* Dropdown mobile : masqué par défaut, visible quand .open */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
    margin-top: 0;
    width: 100%;
    border: none;
    border-radius: var(--r-md);
    transition: max-height .3s ease, opacity .3s ease, margin .3s ease
  }

  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    margin-top: 6px;
    transform: none;
    left: auto;
  }

  .nav-dropdown.open .nav-chevron {
    transform: rotate(180deg)
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    padding: 15px;
    border-radius: var(--r-md);
    font-size: 1rem
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Lighter gradient to ensure logo visibility while keeping text readable */
  background: linear-gradient(115deg, rgba(10, 15, 30, .75) 0%, rgba(10, 15, 30, .4) 50%, rgba(26, 43, 95, .2) 100%)
}

.hero-mesh-premium,
.hero-grid-pattern {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 32px 100px;
  margin-left: 8vw;
  max-width: 700px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(232, 115, 74, .13);
  border: 1px solid rgba(232, 115, 74, .32);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .03em;
  animation: fadeUp .8s ease both
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite
}

@keyframes pulse {

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

  50% {
    opacity: .45;
    transform: scale(1.4)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .85s ease .1s both
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .95);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 600px;
  animation: fadeUp .85s ease .15s both
}

.hero-accent {
  color: var(--orange)
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 540px;
  animation: fadeUp .85s ease .2s both
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp .85s ease .3s both
}

.hero-stats {
  display: flex;
  align-items: center;
  animation: fadeUp .85s ease .4s both
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px
}

.stat:first-child {
  padding-left: 0
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1
}

.stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-top: 4px
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, .18)
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: var(--tr);
  z-index: 1
}

.hero-scroll:hover {
  color: var(--orange)
}

.scroll-arrow {
  animation: bounce 2s infinite
}

@keyframes bounce {

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

  50% {
    transform: translateY(7px)
  }
}

/* CERTIFICATIONS STRIP */
.certs {
  background: var(--white);
  border-bottom: 1px solid var(--grey-l);
  padding: 32px 0
}

.certs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  transition: var(--tr)
}

.cert-sep {
  width: 1px;
  height: 32px;
  background: var(--grey-l);
  margin: 0 12px
}

.cert-text {
  display: flex;
  flex-direction: column;
}

.cert-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.cert-text span {
  font-size: 0.72rem;
  color: var(--grey-t);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* VALUES SECTION - CLEAN WHITE */
.values-section {
  padding: 120px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-l);
  position: relative;
  z-index: 2
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px
}

.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--grey-l);
  border-radius: var(--r-lg);
  transition: var(--tr);
  position: relative;
  overflow: hidden
}

.value-card:hover {
  border-color: var(--orange-l);
  transform: translateY(-5px);
  box-shadow: var(--sh-o)
}

.vc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232, 115, 74, .08);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1
}

.vc-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 115, 74, .1);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px
}

.vc-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.vc-content p {
  font-size: .925rem;
  color: var(--grey-t);
  line-height: 1.6
}



/* Colors for icon backgrounds */
.cert-icon-bg--cpf {
  background: rgba(26, 43, 95, 0.06);
  color: var(--navy)
}

.cert-icon-bg--ft {
  background: rgba(59, 130, 246, 0.06);
  color: #3B82F6
}

.cert-icon-bg--opco {
  background: rgba(232, 115, 74, 0.08);
  color: var(--orange)
}

.cert-text {
  display: flex;
  flex-direction: column;
}

.cert-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2
}

.cert-text span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px
}

.cert-sep {
  width: 1px;
  height: 38px;
  background: var(--grey-l)
}

@media(max-width:1100px) {
  .certs-bar {
    flex-wrap: wrap;
    gap: 24px 0;
    padding: 24px
  }

  .cert-sep {
    display: none
  }

  .cert-item {
    width: 50%;
    padding: 0 20px
  }
}

@media(max-width:600px) {
  .cert-item {
    width: 100%;
    justify-content: flex-start
  }
}

/* --- END CERTS SECTION --- */

/* ABOUT */
.about {
  padding: 112px 0;
  background: var(--off)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.about-desc {
  font-size: .97rem;
  color: #4A5068;
  line-height: 1.85;
  margin-bottom: 18px
}

.about-values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0;
  align-items: center;
}

.value-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--grey-l);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--dark);
  box-shadow: var(--sh-sm)
}

.value-tag svg {
  color: var(--orange)
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.about-card {
  background: var(--white);
  border: 1px solid var(--grey-l);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  box-shadow: var(--sh-md);
  transition: var(--tr)
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg)
}

.acard-icon {
  width: 46px;
  height: 46px;
  background: rgba(232, 115, 74, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 12px
}

.about-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px
}

.about-card p {
  font-size: .86rem;
  color: var(--grey);
  line-height: 1.7
}

/* FORMATIONS */
.formations {
  padding: 112px 0;
  background: var(--white)
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.formation-card {
  background: var(--white);
  border: 1px solid var(--grey-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--tr);
  box-shadow: var(--sh-sm)
}

.formation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--orange)
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease
}

.formation-card:hover .card-img {
  transform: scale(1.06)
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 30, .7) 0%, transparent 55%)
}

.card-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 11px;
  border-radius: 50px;
  backdrop-filter: blur(4px)
}

.card-badge--orange {
  background: var(--orange);
  color: var(--white)
}

.card-badge--navy {
  background: var(--navy);
  color: var(--white)
}

.card-body {
  padding: 22px
}

.card-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(232, 115, 74, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 10px
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 9px;
  line-height: 1.3
}

.card-desc {
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 14px
}

.card-features {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: #545870
}

.card-features svg {
  color: var(--orange);
  flex-shrink: 0
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--tr)
}

.card-btn:hover {
  color: var(--orange-d);
  gap: 10px
}

.card-btn svg {
  transition: transform .25s ease
}

.card-btn:hover svg {
  transform: translateX(3px)
}

/* PROCESS */
.process {
  padding: 112px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy-d) 100%)
}

.process .section-eyebrow {
  color: var(--orange)
}

.process-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 72px
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 18px
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, .06);
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 18px;
  transition: var(--tr)
}

.process-step:hover .step-num,
.process-step.step--accent .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--sh-o)
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px
}

.process-step p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .57);
  line-height: 1.75;
  max-width: 210px;
  margin: 0 auto
}

.process-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(232, 115, 74, .45), rgba(232, 115, 74, .08));
  flex-shrink: 0;
  margin-top: 28px
}

.fin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.fin-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: var(--tr)
}

.fin-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .13)
}

.fin-card--highlight {
  background: rgba(232, 115, 74, .1);
  border-color: rgba(232, 115, 74, .28)
}

.fin-card--highlight:hover {
  background: rgba(232, 115, 74, .16)
}

.fin-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px
}

.fin-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
  line-height: 1.4
}

.fin-card p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .57);
  line-height: 1.75
}

/* TESTIMONIALS */
.testimonials {
  padding: 112px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.testimonials::before {
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 115, 74, .1) 0%, transparent 70%)
}

.testimonials::after {
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(26, 43, 95, .35) 0%, transparent 70%)
}

.testimonials .container {
  position: relative;
  z-index: 1
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-top: 3px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 40px 36px 32px;
  transition: var(--tr);
  position: relative
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(232, 115, 74, .15);
  font-family: Georgia, serif;
  pointer-events: none
}

.testi-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(232, 115, 74, .45);
  border-top-color: var(--orange);
  transform: translateY(-4px)
}

.testi-stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
  margin-bottom: 20px
}

.testi-card blockquote {
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.9;
  font-style: italic;
  border: none;
  padding: 0;
  margin-bottom: 28px;
  quotes: none
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(232, 115, 74, .2)
}

.testi-author strong {
  display: block;
  font-size: .94rem;
  color: var(--white)
}

.testi-author span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .50)
}

/* FAQ */
.faq {
  padding: 120px 0;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(232, 115, 74, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 64px auto 0;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(232, 115, 74, 0.15);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
  transition: background 0.3s;
}

.faq-q:hover span {
  color: var(--orange);
}

.faq-q span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: var(--orange);
  transition: transform .3s, opacity .3s;
}

.faq-plus::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-plus::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(232, 115, 74, 0.08);
  background: #fff;
}

.faq-item.open .faq-q {
  background: rgba(232, 115, 74, 0.02);
  padding-bottom: 24px;
}

.faq-item.open .faq-q span {
  color: var(--orange);
}

.faq-item.open .faq-plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 32px 32px;
}

.faq-answer p {
  font-size: 1rem;
  color: #4A5068;
  line-height: 1.8;
  padding-top: 8px;
}

.faq-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq-cta p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  max-width: 500px;
  line-height: 1.4;
}

.faq-cta .btn-primary {
  padding: 14px 36px;
  font-size: .95rem;
}

/* CONTACT */
.contact {
  padding: 112px 0;
  background: var(--white)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start
}

.contact-desc {
  font-size: .97rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 36px
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 115, 74, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0
}

.contact-item strong {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--grey);
  margin-bottom: 2px
}

.contact-item span {
  font-size: .93rem;
  color: var(--dark)
}

.contact-item a {
  color: var(--dark);
  text-decoration: none;
  transition: color .2s
}

.contact-item a:hover {
  color: var(--orange)
}

.social-links {
  display: flex;
  gap: 9px
}

.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.soc-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 106, 61, 0.25);
}

.soc-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.soc-btn:hover svg {
  transform: scale(1.1);
}

.form-wrap {
  background: var(--off);
  border: 1px solid var(--grey-l);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--sh-md)
}

.cform h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px
}

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

.form-group {
  margin-bottom: 17px
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  letter-spacing: .01em
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--grey-l);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: .89rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--tr);
  outline: none;
  -webkit-appearance: none;
  appearance: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 115, 74, .1)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C4C9DC
}

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

.form-note {
  text-align: center;
  font-size: .77rem;
  color: var(--grey);
  margin-top: 10px
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 20px;
  gap: 14px
}

.form-success h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark)
}

.form-success p {
  color: var(--grey);
  font-size: .93rem
}

/* FOOTER */
.footer {
  background: var(--dark)
}

.footer-inner {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 52px;
  align-items: start
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none
}

.footer-logo .logo-img {
  filter: brightness(0) invert(1)
}

.footer-tagline {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 290px
}

.footer-cert {
  margin-top: 4px
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul li a {
  font-size: .86rem;
  color: rgba(255, 255, 255, .48);
  text-decoration: none;
  transition: color .2s
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.55
}

.footer-contact-list svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s
}

.footer-contact-list a:hover {
  color: var(--orange)
}

.footer-bottom {
  padding: 22px 0
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .3)
}

.footer-bottom-links {
  display: flex;
  gap: 22px
}

.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: color .2s
}

.footer-bottom-links a:hover {
  color: var(--orange)
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .formations-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-cards {
    flex-direction: row;
    flex-wrap: wrap
  }

  .about-card {
    flex: 1 1 calc(50% - 7px);
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .fin-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px
  }

  .process-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(232, 115, 74, .4), transparent)
  }

  .certs-strip {
    gap: 16px
  }

  .cert-item {
    padding: 0 18px
  }
}

@media(max-width:768px) {
  .hero-content {
    margin-left: 0;
    padding: 120px 24px 80px;
    text-align: center
  }

  .hero-actions {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }

  .hero-scroll {
    display: none
  }

  .formations-grid {
    grid-template-columns: 1fr
  }

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

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

  .form-wrap {
    padding: 30px 22px
  }

  .certs-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px
  }

  .cert-divider {
    width: 100%;
    height: 1px
  }

  .cert-item {
    padding: 12px 0
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero-content {
    padding: 100px 16px 64px
  }

  .hero-title {
    font-size: 2.2rem
  }

  .hero-subtitle {
    font-size: 1rem
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
    width: 100%
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center
  }

  .stat-divider {
    width: 80px;
    height: 1px
  }

  .stat {
    padding: 0;
    align-items: center
  }

  .stat-num {
    font-size: 1.6rem
  }

  .section-header {
    margin-bottom: 36px
  }

  .values-grid {
    grid-template-columns: 1fr
  }

  .process-step {
    padding: 0 8px
  }

  .footer-grid {
    gap: 32px
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px
  }

  .footer-bottom-links a {
    font-size: .75rem
  }

  .nav-hamburger {
    width: 40px;
    height: 40px
  }
}

@media(max-width:380px) {
  .hero-title {
    font-size: 1.9rem
  }

  .hero-badge {
    font-size: .72rem
  }

  .section-title {
    font-size: 1.65rem
  }

  .nav-logo .logo-img {
    height: 60px
  }
}

/* ═══════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal-up,
.anim-card,
.formation-card,
.about-card,
.testi-card,
.fin-card,
.faq-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1)
}

.reveal-fade {
  opacity: 0;
  transition: opacity .7s ease
}

.reveal-up.revealed,
.anim-card.revealed,
.formation-card.revealed,
.about-card.revealed,
.testi-card.revealed,
.fin-card.revealed,
.faq-item.revealed,
.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0)
}

/* ═══════════════════════════════════════
   ABOUT QUOTE BLOCK
   ═══════════════════════════════════════ */
.about-quote {
  font-size: .97rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.8;
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  background: rgba(232, 115, 74, .05);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 18px 0 24px;
  quotes: none
}

/* ═══════════════════════════════════════
   FORMATION CARDS - EQUAL HEIGHT GRID
   ═══════════════════════════════════════ */
.formations-grid {
  align-items: stretch
}

.formation-card {
  display: flex;
  flex-direction: column
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column
}

.card-features {
  flex: 1
}

.card-btn {
  margin-top: auto
}

/* ═══════════════════════════════════════
   PREMIUM SECTION DIVIDERS
   ═══════════════════════════════════════ */
.formations {
  position: relative
}

.formations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent)
}

/* ═══════════════════════════════════════
   HOVER LIFT ON ALL INTERACTIVE CARDS
   ═══════════════════════════════════════ */
.about-card {
  transition: var(--tr), box-shadow .3s ease
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 43, 95, .12)
}

/* ═══════════════════════════════════════
   SECTION HEADER TAB ACCENT
   ═══════════════════════════════════════ */
.section-header {
  position: relative
}

/* ═══════════════════════════════════════
   BTN-SM SIZE FIX
   ═══════════════════════════════════════ */
.btn-sm {
  padding: 12px 24px;
  font-size: .88rem
}

/* ═══════════════════════════════════════
   RESPONSIVE FAQ COLS
   ═══════════════════════════════════════ */
@media(max-width:860px) {
  .faq-cols {
    grid-template-columns: 1fr
  }

  .desktop-only-header {
    display: none;
  }
}

/* ═══════════════════════════════════════
   SMOOTH LINK UNDERLINES
   ═══════════════════════════════════════ */
a {
  transition: color .2s ease
}

/* ═══════════════════════════════════════
   SCROLLBAR STYLING
   ═══════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--dark)
}

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

/* ═══════════════════════════════════════
   ABOUT - NUMBERED FEATURE LIST
   ═══════════════════════════════════════ */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}

.about-features::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--grey-l);
  z-index: 0
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--grey-l);
  position: relative;
  transition: var(--tr)
}

.about-feature:last-child {
  border-bottom: none
}

.about-feature:hover .af-num {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.1)
}

.af-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: var(--tr)
}

.af-content {
  flex: 1;
  padding-top: 6px
}

.af-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(232, 115, 74, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 12px
}

.af-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px
}

.af-content p {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.75
}

/* Override old about-cards/about-card rules that no longer apply */
.about-features .about-card {
  display: none
}

@media(max-width:860px) {
  .about-features::before {
    display: none
  }

  .about-feature {
    padding: 22px 0
  }
}

/* ═══════════════════════════════════════
   ABOUT - FOUNDERS & SIGNATURE
   ═══════════════════════════════════════ */
.about-action {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap
}

.about-founders {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 24px;
  border-left: 1px solid var(--grey-l)
}

.founders-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(26, 43, 95, .2)
}

.founders-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.2
}

.founders-title {
  display: block;
  font-size: .78rem;
  color: var(--grey);
  font-weight: 500
}

@media(max-width:680px) {
  .about-founders {
    padding-left: 0;
    border-left: none;
    width: 100%
  }
}