﻿/* ============================================
   WINGS – Custom Stylesheet
   Original design, Bootstrap 5 base
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1a1a6e;
  --primary-light: #2d2d9e;
  --accent:        #a86800;
  --accent-dark:   #7a4b00;
  --text-dark:     #1c1c2e;
  --text-muted:    #6b7280;
  --bg-light:      #f8f9ff;
  --bg-white:      #ffffff;
  --border:        #e5e7eb;
  --shadow-sm:     0 2px 8px rgba(26,26,110,.08);
  --shadow-md:     0 6px 24px rgba(26,26,110,.14);
  --shadow-lg:     0 12px 40px rgba(26,26,110,.18);
  --radius:        12px;
  --radius-lg:     20px;
  --consult-cta-max-width: 960px;
  --transition:    .3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

.is-hidden { display: none !important; }

/* ---------- Utility: Accent Colour ---------- */
.text-accent  { color: var(--accent) !important; }
.bg-accent    { background-color: var(--accent) !important; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-accent:hover,
.btn-accent:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244,165,0,.35);
}

/* ---------- Section Utilities ---------- */
.section-padding { padding: 90px 0; }

.section-header { max-width: 640px; margin-inline: auto; }

.section-tag {
  display: inline-block;
  background: rgba(244,165,0,.12);
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: .82rem;
  padding: 7px 0;
}

.top-bar a {
  color: #fff;
  font-weight: 600;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header .container {
  min-height: 52px;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  position: relative;
  min-width: 114px;
}

.brand-logo .standard-logo-mark,
.brand-logo .sticky-logo-mark {
  width: 114px;
  height: auto;
  transition: opacity .25s ease;
}

.brand-logo .standard-logo-mark {
  opacity: 1;
}

.brand-logo .sticky-logo-mark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

.site-header.scrolled .brand-logo .standard-logo-mark { opacity: 0; }
.site-header.scrolled .brand-logo .sticky-logo-mark { opacity: 1; }

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .06em;
}

/* Main Nav */
.main-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: .9rem;
  padding: 6px 2px;
  position: relative;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { width: 100%; }

.main-nav .nav-link.active { color: var(--primary); }

.btn-nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 30px;
}
.btn-nav-cta:hover { background: var(--primary-light) !important; }

/* Hamburger */
.hamburger {
  background: none;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 10px 20px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mobile-menu-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: none;
  padding: 12px 0 6px;
}
.mobile-menu .mobile-menu-logo-img {
  width: 86px;
  height: auto;
  display: block;
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.mobile-menu a.mobile-menu-logo + a {
  border-top: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  background-color: #3a77bd;
  background:
    linear-gradient(92deg, rgba(12, 15, 56, .28) 0%, rgba(19, 23, 74, .2) 46%, rgba(22, 30, 94, .14) 100%),
    url('../images/hero-slider.png') center top/100% auto no-repeat;
  height: clamp(520px, 56vw, 940px);
  min-height: 520px;
  max-height: 940px;
  padding-top: 0;
  overflow: hidden;
}

.hero-video-bg {
  display: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244,165,0,.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.min-vh-80 { min-height: 70vh; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.home-hero-copy {
  background: #fff;
  padding-top: clamp(62px, 7vw, 94px);
  padding-bottom: clamp(62px, 7vw, 94px);
}

.home-hero-copy .row {
  --bs-gutter-x: 2.2rem;
  --bs-gutter-y: 1.5rem;
}

.home-hero-copy .hero-title {
  color: var(--primary);
  font-size: clamp(2.2rem, 4.2vw, 4.15rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.home-hero-copy .hero-subtitle {
  color: var(--text-dark);
  max-width: 700px;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.home-hero-copy .hero-copy-pane {
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero-copy .hero-media-pane {
  padding-left: 18px;
  display: flex;
  justify-content: flex-end;
}

.home-hero-media {
  width: min(100%, 640px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(13, 17, 56, .14);
  background: #0d1138;
}

.home-hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 992px) {
  .home-hero-copy .hero-subtitle {
    max-width: 620px;
  }
  .home-hero-media {
    max-width: 640px;
    margin-left: auto;
  }
}

.hero-shape { z-index: 0; }

.hero-badge {
  display: inline-block;
  background: rgba(244,165,0,.2);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  border: 1px solid rgba(244,165,0,.4);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  line-height: 1.8;
}

/* Hero shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: #fff;
  pointer-events: none;
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section { background: var(--bg-light); }

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 22px 26px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-grade-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.product-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(244,165,0,.15), rgba(244,165,0,.05));
  border: 2px solid rgba(244,165,0,.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 20px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}
.product-card:hover .product-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-card h5 {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 12px;
}
.product-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.product-feature {
  --feature-overlay: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.9));
  --feature-bg: none;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin-left: 0;
  margin-right: 0;
  padding: 30px 22px;
  border: 1px solid rgba(26,26,110,.09);
  background-image: var(--feature-overlay), var(--feature-bg);
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: var(--shadow-sm);
}

.product-feature-alt-1 {
  --feature-bg: url('../images/banner-bg-1.jpg');
}

.product-feature-alt-2 {
  --feature-bg: url('../images/banner-bg-2.jpg');
}

.product-feature-content {
  padding: 10px 14px;
}

.product-feature-subtitle {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
}

.product-feature-title {
  margin-top: 8px;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 800;
}

.product-feature-text {
  font-size: .98rem;
  line-height: 1.7;
}

.product-feature-list li {
  color: var(--text);
}

.product-logo-panel {
  background: transparent;
  border: 0;
  border-radius: 20px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  width: min(100%, 360px);
}

.product-logo-img {
  width: min(100%, 300px);
  max-height: 215px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(26,26,110,.18));
}

.product-view-btn {
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
}

.product-card .product-view-btn {
  align-self: center;
}

.product-view-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* Products page: top four cards alignment */
.products-page .products-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 264px;
  padding: 50px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.products-page .products-banner-alt-1 {
  background-image: url('../images/banner-bg-1.jpg');
}

.products-page .products-banner-alt-2 {
  background-image: url('../images/banner-bg-2.jpg');
}

.products-page .products-banner-content {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 300px);
}

.products-page .products-banner-subtitle {
  display: inline-block;
  color: #fff;
  background: #f2277e;
  border-radius: 10px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  padding: 0 14px;
  margin-bottom: 14px;
}

.products-page .products-banner-title {
  margin: 0 0 30px;
  color: #0e1133;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.products-page .products-banner-btn {
  display: inline-block;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #2b4eff;
  font-size: 14px;
  line-height: 36px;
  font-weight: 500;
  padding: 0 20px;
}

.products-page .products-banner-btn:hover {
  color: #fff;
  background: #2f58ff;
}

.products-page .products-banner-thumb {
  position: absolute;
  right: 18px;
  bottom: 0;
}

.products-page .products-banner-img {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}

.products-page .products-banner-ikigai .products-banner-img {
  width: 250px;
}

.products-page .products-banner-planner .products-banner-thumb {
  right: 8px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.products-page .products-banner-planner .products-banner-img {
  width: 220px;
}

.products-page .products-banner-dashboard .products-banner-thumb {
  right: 24px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.products-page .products-banner-dashboard .products-banner-img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.products-page .products-banner-connect .products-banner-thumb {
  right: 10px;
  bottom: 0;
}

.products-page .products-banner-connect .products-banner-img {
  width: 260px;
}

@media (max-width: 1199px) {
  .products-page .products-banner-card {
    padding: 40px 28px;
  }

  .products-page .products-banner-content {
    max-width: calc(100% - 230px);
  }

  .products-page .products-banner-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .products-page .products-banner-ikigai .products-banner-img,
  .products-page .products-banner-planner .products-banner-img,
  .products-page .products-banner-connect .products-banner-img {
    width: 200px;
  }

  .products-page .products-banner-dashboard .products-banner-img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 991px) {
  .products-page .products-banner-card {
    min-height: 0;
    padding: 32px 24px;
  }

  .products-page .products-banner-content {
    max-width: 100%;
  }

  .products-page .products-banner-thumb,
  .products-page .products-banner-planner .products-banner-thumb,
  .products-page .products-banner-dashboard .products-banner-thumb,
  .products-page .products-banner-connect .products-banner-thumb {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin-top: 16px;
    text-align: right;
  }

  .products-page .products-banner-ikigai .products-banner-img,
  .products-page .products-banner-planner .products-banner-img,
  .products-page .products-banner-connect .products-banner-img {
    width: 180px;
    max-width: 70%;
  }

  .products-page .products-banner-dashboard .products-banner-img {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 992px) {
  .products-page .products-banner-grid > [class*='col-'],
  .products-page .ambition-series-grid > [class*='col-'] {
    display: flex;
  }

  .products-page .products-banner-card,
  .products-page .ambition-banner {
    width: 100%;
    height: 296px;
    min-height: 296px;
  }
}

/* Products page: Ambition Series live-style cards */
.products-page .ambition-series-grid {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 30px;
}

.products-page .ambition-banner {
  position: relative;
  overflow: visible;
  border-radius: 4px;
  min-height: 296px;
  padding: 50px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}

.products-page .ambition-banner-alt-1 {
  background-image: url('../images/banner-bg-1.jpg');
}

.products-page .ambition-banner-alt-2 {
  background-image: url('../images/banner-bg-2.jpg');
}

.products-page .ambition-banner-content {
  position: relative;
  z-index: 1;
}

.products-page .ambition-grade-badge {
  display: inline-block;
  color: #fff;
  background: #f2277e;
  border-radius: 10px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  padding: 0 14px;
  margin-bottom: 18px;
}

.products-page .ambition-banner h5 {
  margin: 0 0 30px;
  color: #0e1133;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.products-page .ambition-view-btn {
  display: inline-block;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #2b4eff;
  font-size: 14px;
  line-height: 36px;
  font-weight: 500;
  padding: 0 20px;
}

.products-page .ambition-view-btn:hover {
  color: #fff;
  background: #2f58ff;
}

.products-page .ambition-banner-thumb {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.products-page .ambition-banner-thumb img {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1199px) {
  .products-page .ambition-banner {
    min-height: 280px;
    padding: 44px 32px;
  }
  .products-page .ambition-banner-thumb img {
    width: 210px;
  }
}

/* Homepage product card alignment */
.products-section .product-feature {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 6px;
  min-height: 262px;
  overflow: visible;
}

.products-section .product-feature-content {
  flex: 1 1 52%;
  padding: 0;
}

.products-section .product-feature-title {
  font-size: clamp(1.25rem, 2.1vw, 2.05rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

.products-section .product-logo-panel {
  width: min(100%, 250px);
  min-height: 210px;
  padding: 0;
  justify-content: flex-end;
}

.products-section .product-logo-img {
  width: auto;
  max-width: 100%;
  max-height: 230px;
}

.home-page .products-section .section-tag {
  display: none;
}

.home-page .products-section .section-header h2 {
  color: #365fd8;
  position: relative;
  display: inline-block;
  margin-bottom: 2px;
}

.home-page .products-section .section-header h2::after {
  content: "";
  position: absolute;
  left: 54%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 168px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244,165,0,.05), rgba(244,165,0,.95) 28%, rgba(244,165,0,.95) 72%, rgba(244,165,0,.05));
}

.home-page .products-section .product-feature-subtitle {
  display: inline-block;
  background: #9f0058;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-size: .82rem;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.home-page .products-section .product-view-btn {
  background: #3f50f2;
  padding: 10px 22px;
}

.home-page .products-section .product-logo-ikigai {
  max-height: 250px;
}

.home-page .products-section .product-logo-career {
  max-height: 338px;
  transform: translate(14px, 20px);
}

.home-page .products-section .product-logo-dashboard {
  width: 184px;
  height: 184px;
  max-height: none;
  object-fit: cover;
  clip-path: none;
  border-radius: 50%;
}

.home-page .products-section .product-logo-connect {
  max-height: 250px;
}

/* ============================================
   MOTTO & VISION
   ============================================ */
.values-section { background: var(--bg-white); }

.value-box-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.value-box-link .motto-box {
  position: relative;
  overflow: hidden;
}

.value-box-link .motto-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .25s ease;
}

.value-box-link .motto-box::after {
  content: '\2192';
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity .2s ease, transform .2s ease;
}

.value-box {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  transition: var(--transition);
}
.value-box-link .value-box { cursor: pointer; }
.value-box:hover { transform: translateY(-4px); }

.value-box-link:hover .motto-box {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(22, 36, 114, .22);
}

.value-box-link:hover .motto-box::before {
  opacity: 1;
}

.value-box-link:hover .motto-box::after {
  opacity: 1;
  transform: translateX(0);
}

.value-box-link:focus-visible .motto-box {
  outline: 3px solid rgba(255,255,255,.72);
  outline-offset: 2px;
}

.motto-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}
.vision-box {
  background: linear-gradient(135deg, rgba(244,165,0,.1), rgba(244,165,0,.04));
  border: 2px solid rgba(244,165,0,.3);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.motto-box .value-icon {
  background: rgba(255,255,255,.15);
  color: var(--accent);
}
.vision-box .value-icon {
  background: var(--accent);
  color: #fff;
}

.value-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.motto-box h3 { color: #fff; }
.vision-box h3 { color: var(--primary); }

.motto-box p { color: rgba(255,255,255,.88); }
.vision-box p { color: var(--text-muted); }

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section { background: var(--bg-light); }

.package-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #fff 80%, rgba(244,165,0,.04) 100%);
  box-shadow: var(--shadow-md);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  color: var(--primary);
}
.package-header i { color: var(--accent); margin-bottom: 10px; }
.package-header h4 { font-weight: 800; font-size: 1.25rem; margin: 0; }

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.package-features li:last-child { border-bottom: none; }
.package-features li i {
  color: var(--accent);
  font-size: .8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: transparent;
  color: #fff;
  padding: 14px 0;
}

.cta-banner .container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--consult-cta-max-width));
  margin-inline: auto;
  min-height: 124px;
  border-radius: 10px;
  padding: 16px 28px;
  background: linear-gradient(90deg, #4451eb 0%, #4451eb 58%, #ef7d5b 58%, #ef7d5b 100%);
}

.cta-banner .container::before {
  content: "";
  position: absolute;
  left: 60%;
  top: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ef7d5b;
}

.cta-banner h3 {
  position: relative;
  z-index: 1;
  font-family: Hind, sans-serif;
  margin: 0;
  max-width: 52%;
  text-align: left;
  font-size: clamp(1.42rem, 2.1vw, 2.05rem);
  font-weight: 700;
  line-height: 1.12;
}

.cta-banner p {
  display: none;
}

.cta-banner .btn-light {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  border: 2px solid rgba(255,255,255,.24);
  background: transparent;
  border-radius: 4px;
  font-family: Hind, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: .84rem;
  line-height: 1.1;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
}

.cta-banner .btn-light i {
  display: none;
}

.cta-banner .btn-light:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-white); }

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card h6 {
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
  margin: 0;
}

/* Carousel dots override */
.carousel-indicators.carousel-dots {
  bottom: -8px;
}
.carousel-indicators.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  opacity: 1;
  transition: var(--transition);
}
.carousel-indicators.carousel-dots button.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-60%);
  opacity: .7;
}
.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }
.carousel-control-prev i,
.carousel-control-next i {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding-top: 70px;
  padding-bottom: 30px;
}

.site-footer .footer-brand-mark {
  width: 92px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-top: 12px;
  line-height: 1.7;
}

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin-bottom: 12px;
}
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

.footer-divider { border-color: rgba(255,255,255,.1); margin: 30px 0 20px; }

.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  z-index: 999;
  transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ============================================
   INNER PAGE – PAGE HERO
   ============================================ */
.page-hero {
  background-image: linear-gradient(120deg, rgba(20,25,72,.7), rgba(20,25,72,.6)), url('../images/page-hero-bg.png');
  background-size: cover;
  background-position: center;
  min-height: 470px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 120px 0 80px;
  text-align: left;
}

.about-page .page-hero {
  background-image: linear-gradient(120deg, rgba(20, 25, 72, .7), rgba(20, 25, 72, .6)), url('../images/about-hero-live.png');
  background-size: cover;
  background-position: center;
}

.why-wings-page .page-hero {
  background-image: url('../images/why-wings-hero-live.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 0;
  padding-top: 235px;
  padding-bottom: 130px;
  position: relative;
}

.why-wings-page .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 32, .6);
  pointer-events: none;
}

.why-wings-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.contact-page .page-hero {
  background-image: url('../images/contact-hero-live.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 0;
  padding-top: 235px;
  padding-bottom: 130px;
  position: relative;
}

.contact-page .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 32, .6);
  pointer-events: none;
}

.contact-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.student-form-page .page-hero {
  background-image: url('../images/student-form-hero-live.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 0;
  padding-top: 235px;
  padding-bottom: 130px;
  position: relative;
}

.student-form-page .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 32, .6);
  pointer-events: none;
}

.student-form-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.ikigai-page .page-hero {
  background-image: url('../images/ikigai-hero-live.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products-page .page-hero {
  background-image: url('../images/products-hero-live.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 0;
  padding-top: 235px;
  padding-bottom: 130px;
  position: relative;
}

.products-page .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 32, .6);
  pointer-events: none;
}

.products-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.my-wings-page .page-hero {
  background-image: url('../images/my-wings-hero-live.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.career-planner-page .page-hero {
  background-image: url('../images/career-planner-hero-live.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.student-forum-page .page-hero {
  background-image: linear-gradient(rgba(123, 182, 232, .62), rgba(123, 182, 232, .62)), url('../images/student-forum-hero-live.png');
  background-color: #7bb6e8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ambition-10-page .page-hero {
  background-image: url('../images/ambition-10-hero-live.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}

.ambition-10-page .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 32, .32);
  pointer-events: none;
}

.ambition-10-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.ambition-11-page .page-hero {
  background-image: url('../images/ambition-11-hero-live.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}

.ambition-11-page .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 32, .32);
  pointer-events: none;
}

.ambition-11-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.ambition-12-page .page-hero {
  background-image: url('../images/ambition-12-hero-live.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}

.ambition-12-page .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 32, .32);
  pointer-events: none;
}

.ambition-12-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.page-hero p { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb {
  justify-content: flex-start !important;
}
.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.page-hero .breadcrumb-item.active {
  color: rgba(255,255,255,.92);
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: rgba(255,255,255,.72);
}

.top-bar {
  display: none !important;
}

.site-header {
  background: transparent;
  box-shadow: none;
  padding: 16px 0;
}

.site-header:not(.scrolled) .brand-logo {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.site-header.scrolled .brand-logo {
  background: transparent;
  padding: 0;
}

.home-page .site-header.sticky-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.about-page .site-header.sticky-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.why-wings-page .site-header.sticky-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.contact-page .site-header.sticky-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.ikigai-page .site-header.sticky-top,
.products-page .site-header.sticky-top,
.my-wings-page .site-header.sticky-top,
.career-planner-page .site-header.sticky-top,
.student-form-page .site-header.sticky-top,
.student-forum-page .site-header.sticky-top,
.ambition-10-page .site-header.sticky-top,
.ambition-11-page .site-header.sticky-top,
.ambition-12-page .site-header.sticky-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.home-page .site-header:not(.scrolled) {
  background: transparent;
}

.about-page .site-header:not(.scrolled) {
  background: transparent;
}

.why-wings-page .site-header:not(.scrolled) {
  background: transparent;
}

.contact-page .site-header:not(.scrolled) {
  background: transparent;
}

.ikigai-page .site-header:not(.scrolled),
.products-page .site-header:not(.scrolled),
.my-wings-page .site-header:not(.scrolled),
.career-planner-page .site-header:not(.scrolled),
.student-form-page .site-header:not(.scrolled),
.student-forum-page .site-header:not(.scrolled),
.ambition-10-page .site-header:not(.scrolled),
.ambition-11-page .site-header:not(.scrolled),
.ambition-12-page .site-header:not(.scrolled) {
  background: transparent;
}

.home-page .site-header.scrolled.sticky-top {
  position: fixed;
}

.about-page .site-header.scrolled.sticky-top {
  position: fixed;
}

.why-wings-page .site-header.scrolled.sticky-top {
  position: fixed;
}

.contact-page .site-header.scrolled.sticky-top {
  position: fixed;
}

.ikigai-page .site-header.scrolled.sticky-top,
.products-page .site-header.scrolled.sticky-top,
.my-wings-page .site-header.scrolled.sticky-top,
.career-planner-page .site-header.scrolled.sticky-top,
.student-form-page .site-header.scrolled.sticky-top,
.student-forum-page .site-header.scrolled.sticky-top,
.ambition-10-page .site-header.scrolled.sticky-top,
.ambition-11-page .site-header.scrolled.sticky-top,
.ambition-12-page .site-header.scrolled.sticky-top {
  position: fixed;
}

.home-page .site-header:not(.scrolled) .site-brand-mark {
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.35));
}

.about-page .site-header:not(.scrolled) .site-brand-mark,
.about-page .site-header:not(.scrolled) .brand-logo .standard-logo-mark,
.about-page .site-header:not(.scrolled) .brand-logo .sticky-logo-mark {
  width: 156px;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .45));
}

.why-wings-page .site-header:not(.scrolled) .site-brand-mark {
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .45));
}

/* 404 page: white background, no hero — show the full branded circular logo */
.page-404 .site-header {
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.page-404 .brand-logo .standard-logo-mark {
  display: block;
  opacity: 1;
  width: 140px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.4));
}
.page-404 .brand-logo .sticky-logo-mark {
  display: none;
}
.page-404 .site-header .main-nav .nav-link,
.page-404 .site-header .btn-nav-cta {
  color: #fff;
}
.page-404 .site-header .hamburger span {
  background: #fff;
}

.contact-page .site-header:not(.scrolled) .site-brand-mark {
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .45));
}

.ikigai-page .site-header:not(.scrolled) .site-brand-mark,
.products-page .site-header:not(.scrolled) .site-brand-mark,
.my-wings-page .site-header:not(.scrolled) .site-brand-mark,
.career-planner-page .site-header:not(.scrolled) .site-brand-mark,
.student-form-page .site-header:not(.scrolled) .site-brand-mark,
.student-forum-page .site-header:not(.scrolled) .site-brand-mark,
.ambition-10-page .site-header:not(.scrolled) .site-brand-mark,
.ambition-11-page .site-header:not(.scrolled) .site-brand-mark,
.ambition-12-page .site-header:not(.scrolled) .site-brand-mark {
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .45));
}

.site-header.scrolled {
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 4px 18px rgba(10, 17, 56, .08);
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header.scrolled .container {
  min-height: 64px;
}

.site-brand-mark {
  width: 114px;
  height: auto;
  display: block;
}

.home-page .site-header:not(.scrolled) .main-nav .nav-link {
  color: #fff;
}

.about-page .site-header:not(.scrolled) .main-nav .nav-link {
  color: #fff;
}

.why-wings-page .site-header:not(.scrolled) .main-nav .nav-link {
  color: #fff;
}

.contact-page .site-header:not(.scrolled) .main-nav .nav-link {
  color: #fff;
}

.ikigai-page .site-header:not(.scrolled) .main-nav .nav-link,
.products-page .site-header:not(.scrolled) .main-nav .nav-link,
.my-wings-page .site-header:not(.scrolled) .main-nav .nav-link,
.career-planner-page .site-header:not(.scrolled) .main-nav .nav-link,
.student-form-page .site-header:not(.scrolled) .main-nav .nav-link,
.student-forum-page .site-header:not(.scrolled) .main-nav .nav-link,
.ambition-10-page .site-header:not(.scrolled) .main-nav .nav-link,
.ambition-11-page .site-header:not(.scrolled) .main-nav .nav-link,
.ambition-12-page .site-header:not(.scrolled) .main-nav .nav-link {
  color: #fff;
}

.home-page .site-header:not(.scrolled) .main-nav .nav-link.active {
  color: #fff;
}

.about-page .site-header:not(.scrolled) .main-nav .nav-link.active {
  color: #fff;
}

.why-wings-page .site-header:not(.scrolled) .main-nav .nav-link.active {
  color: #fff;
}

.contact-page .site-header:not(.scrolled) .main-nav .nav-link.active {
  color: #fff;
}

.ikigai-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.products-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.my-wings-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.career-planner-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.student-form-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.student-forum-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.ambition-10-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.ambition-11-page .site-header:not(.scrolled) .main-nav .nav-link.active,
.ambition-12-page .site-header:not(.scrolled) .main-nav .nav-link.active {
  color: #fff;
}

.home-page .site-header:not(.scrolled) .main-nav .nav-link::after {
  background: #fff;
}

.about-page .site-header:not(.scrolled) .main-nav .nav-link::after {
  background: #fff;
}

.why-wings-page .site-header:not(.scrolled) .main-nav .nav-link::after {
  background: #fff;
}

.contact-page .site-header:not(.scrolled) .main-nav .nav-link::after {
  background: #fff;
}

.why-wings-page .why-wings-reasons {
  padding-bottom: 56px;
}

.ikigai-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.products-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.my-wings-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.career-planner-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.student-form-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.student-forum-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.ambition-10-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.ambition-11-page .site-header:not(.scrolled) .main-nav .nav-link::after,
.ambition-12-page .site-header:not(.scrolled) .main-nav .nav-link::after {
  background: #fff;
}

.student-form-page .site-header:not(.scrolled) .brand-logo .standard-logo-mark,
.student-form-page .site-header:not(.scrolled) .brand-logo .sticky-logo-mark {
  width: 156px;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .45));
}

.site-header.scrolled .main-nav .nav-link {
  color: var(--text-dark);
}

.site-header.scrolled .main-nav .nav-link.active {
  color: var(--primary);
}

.site-header.scrolled .main-nav .nav-link::after {
  background: var(--primary);
}

.site-header.scrolled .brand-logo {
  min-width: 114px;
  min-height: 114px;
}

.site-header.scrolled .brand-logo .standard-logo-mark,
.site-header.scrolled .brand-logo .sticky-logo-mark,
.site-header.scrolled .site-brand-mark {
  width: 114px;
}

.site-header.scrolled .brand-logo .sticky-logo-mark {
  position: static;
  transform: translateY(-2px);
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.site-header.scrolled .brand-logo .standard-logo-mark {
  display: none;
}

.btn-nav-cta {
  background: #3249ff;
  border-radius: 4px;
  padding: 10px 18px !important;
}

.home-page .site-header:not(.scrolled) .hamburger {
  border-color: rgba(255,255,255,.95);
  border-radius: 2px;
}

.ikigai-page .site-header:not(.scrolled) .hamburger,
.products-page .site-header:not(.scrolled) .hamburger,
.my-wings-page .site-header:not(.scrolled) .hamburger,
.career-planner-page .site-header:not(.scrolled) .hamburger,
.student-forum-page .site-header:not(.scrolled) .hamburger,
.ambition-10-page .site-header:not(.scrolled) .hamburger,
.ambition-11-page .site-header:not(.scrolled) .hamburger,
.ambition-12-page .site-header:not(.scrolled) .hamburger {
  border-color: rgba(255,255,255,.95);
  border-radius: 2px;
}

.home-page .site-header:not(.scrolled) .hamburger span {
  background: #fff;
}

.ikigai-page .site-header:not(.scrolled) .hamburger span,
.products-page .site-header:not(.scrolled) .hamburger span,
.my-wings-page .site-header:not(.scrolled) .hamburger span,
.career-planner-page .site-header:not(.scrolled) .hamburger span,
.student-forum-page .site-header:not(.scrolled) .hamburger span,
.ambition-10-page .site-header:not(.scrolled) .hamburger span,
.ambition-11-page .site-header:not(.scrolled) .hamburger span,
.ambition-12-page .site-header:not(.scrolled) .hamburger span {
  background: #fff;
}

/* ============================================
   ABOUT / WHY-WINGS FEATURES
   ============================================ */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.feature-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  transition: var(--transition);
  background: var(--bg-white);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* ============================================
   ABOUT PAGE (SCOPED)
   ============================================ */
.about-page .about-content-main {
  padding-top: 86px;
  padding-bottom: 78px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 58%, #ffffff 100%);
}

.about-page .about-content-main .container {
  max-width: 1144px;
}

.about-page .about-main-shell {
  max-width: 100%;
  margin: 0 auto;
}

.about-page .about-intro-block {
  margin-bottom: 96px;
}

.about-page .about-intro-title {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 36.89px;
  line-height: 43.53px;
  font-weight: 800;
  color: #365fd8;
  margin-bottom: 3px;
}

.about-page .about-intro-copy {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #626b80;
  font-size: 14.4px;
  line-height: 25.92px;
  margin: 0 auto;
  max-width: 1105px;
}

.about-page .about-pillar-grid {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #e9edf6;
  margin-bottom: 26px;
  box-shadow: 0 8px 22px rgba(42, 62, 138, .08);
}

.about-page .about-pillar-card {
  background: #ffffff;
  padding: 30px;
  min-height: 324px;
  border-right: 1px solid #edf1f8;
}

.about-page .about-pillar-grid > div:last-child .about-pillar-card {
  border-right: none;
}

.about-page .about-pillar-card h6 {
  color: #365fd8;
  font-size: 22px;
  line-height: 26.4px;
  font-family: Hind, sans-serif;
  font-weight: 700;
  margin-bottom: 3px;
}

.about-page .about-pillar-card p {
  color: #5d657a;
  font-size: 14.4px;
  line-height: 25.92px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  margin: 0 0 15px;
}

.about-page .about-commitment-block {
  margin: 28px auto 34px;
  max-width: 1105px;
  padding: 2px 0;
}

.about-page .about-commitment-block h3 {
  font-family: Hind, sans-serif;
  color: #365fd8;
  font-size: 22px;
  line-height: 26.4px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-page .about-commitment-block p {
  font-family: Hind, sans-serif;
  color: #55607a;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 15px;
}

.about-page .about-cta-strip {
  background: linear-gradient(90deg, #4451eb 0%, #4451eb 58%, #ef7d5b 58%, #ef7d5b 100%);
  color: #fff;
  min-height: 124px;
  width: min(100%, var(--consult-cta-max-width));
  padding: 16px 28px;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(44, 66, 160, .18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 10px auto 40px;
  position: relative;
  overflow: hidden;
}

.about-page .about-cta-strip::before {
  content: "";
  position: absolute;
  left: 60%;
  top: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ef7d5b;
}

.about-page .about-cta-copy {
  font-family: Hind, sans-serif;
  font-size: clamp(1.42rem, 2.1vw, 2.05rem);
  font-weight: 700;
  line-height: 1.12;
  position: relative;
  z-index: 1;
  max-width: 52%;
}

.about-page .about-cta-btn {
  border: 2px solid rgba(255,255,255,.24);
  color: #fff;
  background: transparent;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: .84rem;
  font-family: Hind, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-right: 10px;
}

.about-page .about-cta-btn:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

.about-page .about-professional-kicker {
  color: #8a92a8;
  font-size: .78rem;
  margin-bottom: 8px;
}

.about-page .about-professional-title {
  color: #365fd8;
  font-size: clamp(1.75rem, 3.1vw, 2.35rem);
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-page .about-professional-copy {
  color: #5b6377;
  font-size: .9rem;
  line-height: 1.8;
}

.about-page .about-professional-link {
  color: #2f3650;
  font-size: .86rem;
  font-weight: 700;
}

.about-page .about-professional-image {
  border-radius: 2px;
  max-width: 95%;
  box-shadow: 0 14px 30px rgba(49, 74, 173, .12);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--primary); }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244,165,0,.12);
}
.form-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-section {
    height: clamp(260px, 62vw, 440px);
    min-height: 260px;
    background:
      linear-gradient(92deg, rgba(12, 15, 56, .26) 0%, rgba(19, 23, 74, .18) 48%, rgba(22, 30, 94, .12) 100%),
      url('../images/hero-slider.png') center top/100% auto no-repeat;
  }
  .home-page .site-header.sticky-top {
    position: absolute;
  }
  .home-page .site-header.scrolled.sticky-top {
    position: fixed;
  }
  .contact-form-wrapper { padding: 28px 20px; }
  .site-brand-mark { width: 92px; }
  .brand-logo { min-width: 92px; }
  .brand-logo .standard-logo-mark,
  .brand-logo .sticky-logo-mark { width: 92px; }
  .mobile-menu .mobile-menu-logo-img { width: 82px; }
  .site-footer .footer-brand-mark { width: 84px; }
  .page-hero {
    min-height: 420px;
    padding: 108px 0 64px;
    background-position: 58% center;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.4rem);
    margin-bottom: 14px;
  }
  .product-feature {
    padding: 24px 12px;
    border-radius: 18px;
  }
  .products-section .product-feature {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-section .product-logo-panel {
    width: 100%;
    min-height: 170px;
    margin-left: 0;
    justify-content: center;
  }
  .products-section .product-logo-img {
    max-height: 220px;
  }
  .product-feature-content { padding: 0; }
  .product-feature-title { font-size: 1.8rem; }
  .product-logo-panel {
    margin-top: 6px;
    min-height: 220px;
    width: 100%;
  }
  .home-hero-media {
    border-radius: 16px;
    width: 100%;
  }
  .home-hero-copy .hero-copy-pane,
  .home-hero-copy .hero-media-pane {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .home-hero-copy .hero-copy-pane {
    align-items: flex-start;
  }
  .home-hero-copy .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 14px;
  }
  .home-hero-copy .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }
  .home-hero-media video {
    aspect-ratio: 16 / 11;
  }
  .home-page .products-section .product-feature-subtitle {
    font-size: .9rem;
  }
  .home-page .products-section .product-logo-career {
    max-height: 248px;
    transform: none;
  }
  .about-page .about-content-main {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .about-page .about-main-shell {
    max-width: 100%;
  }
  .about-page .about-intro-block {
    margin-bottom: 34px;
  }
  .about-page .about-intro-copy {
    max-width: 100%;
  }
  .about-page .about-pillar-grid {
    margin-bottom: 26px;
  }
  .about-page .about-pillar-card {
    padding: 22px 20px;
    border-right: none;
    border-bottom: 1px solid #e6e8ef;
  }
  .about-page .about-pillar-grid > div:last-child .about-pillar-card {
    border-bottom: none;
  }
  .about-page .about-cta-strip {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px;
    min-height: 0;
  }
  .about-page .about-cta-strip::before {
    left: auto;
    right: -8px;
    top: 50%;
    width: 104px;
    height: 104px;
    transform: translateY(-50%);
  }
  .about-page .about-cta-copy {
    max-width: 100%;
    font-size: clamp(1rem, 4.9vw, 1.35rem);
  }
  .about-page .about-professional-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }
  .about-page .about-professional-image {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-section {
    height: clamp(220px, 64vw, 360px);
    min-height: 220px;
    background:
      linear-gradient(92deg, rgba(12, 15, 56, .24) 0%, rgba(19, 23, 74, .16) 48%, rgba(22, 30, 94, .1) 100%),
      url('../images/hero-slider.png') center top/100% auto no-repeat;
  }
  .hero-title { font-size: 2rem; }
  .package-card { padding: 28px 20px; }
  .testimonial-card { padding: 28px 20px; }
  .site-header {
    padding: 12px 0;
  }
  .site-brand-mark { width: 86px; }
  .brand-logo { min-width: 86px; }
  .brand-logo .standard-logo-mark,
  .brand-logo .sticky-logo-mark { width: 86px; }
  .mobile-menu .mobile-menu-logo-img { width: 76px; }
  .site-footer .footer-brand-mark { width: 78px; }
  .hamburger {
    padding: 4px 7px;
  }
  .hamburger span {
    width: 18px;
  }
  .product-feature-title { font-size: 1.55rem; }
  .products-section .product-feature-title { font-size: 1.35rem; }
  .product-feature-text { font-size: .92rem; }
  .product-view-btn {
    width: 100%;
    text-align: center;
  }
  .home-hero-copy .hero-subtitle {
    max-width: 100%;
  }
  .home-hero-media {
    border-radius: 14px;
  }
  .home-hero-media video {
    aspect-ratio: 4 / 3;
  }
  .home-hero-copy {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .cta-banner .container {
    min-height: 0;
    padding: 14px 12px;
    display: block;
  }
  .cta-banner .container::before {
    left: auto;
    right: -8px;
    top: 50%;
    width: 104px;
    height: 104px;
    transform: translateY(-50%);
  }
  .cta-banner h3 {
    max-width: 100%;
    font-size: clamp(1rem, 4.9vw, 1.35rem);
    margin-bottom: 7px;
  }
  .cta-banner .btn-light {
    width: auto;
  }
  .why-wings-page .why-wings-reasons {
    padding-bottom: 44px;
  }
  .products-page .products-banner-card {
    height: auto;
    min-height: 0;
    padding: 32px 22px;
  }
  .products-page .products-banner-content {
    max-width: 100%;
  }
  .products-page .products-banner-subtitle {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .products-page .products-banner-title {
    font-size: clamp(1.45rem, 7.8vw, 1.95rem);
    margin-bottom: 18px;
  }
  .products-page .products-banner-btn {
    font-size: 13px;
    line-height: 34px;
    padding: 0 16px;
  }
  .products-page .products-banner-thumb {
    display: none;
  }
  .products-page .ambition-banner {
    min-height: 0;
    padding: 32px 22px;
  }
  .products-page .ambition-grade-badge {
    font-size: 13px;
  }
  .products-page .ambition-banner h5 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 390px) {
  .products-page .products-banner-card {
    padding: 28px 18px;
  }

  .products-page .products-banner-subtitle {
    font-size: 11px;
    line-height: 18px;
    padding: 0 12px;
    margin-bottom: 8px;
  }

  .products-page .products-banner-title {
    font-size: clamp(1.3rem, 7vw, 1.65rem);
    line-height: 1.22;
    margin-bottom: 14px;
  }

  .products-page .products-banner-btn {
    line-height: 32px;
    padding: 0 14px;
    font-size: 12px;
  }

  .products-page .ambition-banner {
    padding: 28px 18px;
  }

  .products-page .ambition-grade-badge {
    font-size: 12px;
    line-height: 20px;
    padding: 0 12px;
    margin-bottom: 12px;
  }

  .products-page .ambition-banner h5 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .products-page .ambition-view-btn {
    line-height: 32px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .products-page .products-banner-card,
  .products-page .ambition-banner {
    padding: 26px 16px;
  }

  .products-page .products-banner-title {
    font-size: clamp(1.22rem, 6.8vw, 1.5rem);
  }

  .products-page .ambition-banner h5 {
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .products-page .products-banner-card,
  .products-page .ambition-banner {
    padding: 24px 14px;
  }

  .products-page .products-banner-title {
    font-size: 1.18rem;
    margin-bottom: 12px;
  }

  .products-page .ambition-banner h5 {
    font-size: 1.22rem;
    margin-bottom: 12px;
  }

  .products-page .products-banner-btn,
  .products-page .ambition-view-btn {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 30px;
    padding: 0 12px;
    font-size: 11.5px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .products-page .products-banner-card {
    height: auto;
    min-height: 0;
    padding: 38px 26px;
  }
  .products-page .products-banner-content {
    max-width: 100%;
  }
  .products-page .products-banner-title {
    font-size: clamp(1.55rem, 3.8vw, 2rem);
    margin-bottom: 22px;
  }
  .products-page .products-banner-thumb {
    display: none;
  }
  .products-page .ambition-series-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }
  .products-page .ambition-banner {
    height: auto;
    min-height: 0;
    padding: 38px 26px;
    margin-bottom: 0;
  }
  .products-page .ambition-banner-thumb {
    display: none !important;
  }
  .products-page .ambition-banner h5 {
    font-size: clamp(1.55rem, 3.8vw, 2rem);
    margin-bottom: 22px;
  }
}

@media (max-width: 575px) {
  .products-page .ambition-series-grid {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
  }
  .products-page .ambition-banner {
    min-height: 0;
    padding: 30px 20px;
    margin-bottom: 0;
  }
  .products-page .ambition-banner-thumb {
    display: none !important;
  }
  .products-page .ambition-grade-badge {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 14px;
  }
  .products-page .ambition-banner h5 {
    font-size: clamp(1.35rem, 8vw, 1.75rem);
    margin-bottom: 16px;
  }
  .products-page .ambition-view-btn {
    font-size: 13px;
    line-height: 34px;
    padding: 0 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .home-hero-copy .hero-copy-pane,
  .home-hero-copy .hero-media-pane {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .home-hero-media {
    max-width: 760px;
    margin: 0 auto;
  }
  .home-hero-copy .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
  }
  .home-hero-copy .hero-subtitle {
    max-width: 100%;
    font-size: 1.02rem;
  }
  .home-hero-media video {
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 1200px) {
  .home-hero-copy .row {
    --bs-gutter-x: 2.8rem;
  }
}

/* Pixel calibration: 1366x768 class laptops */
@media (min-width: 1280px) and (max-width: 1440px) and (max-height: 820px) {
  .home-hero-copy {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .home-hero-copy .row {
    --bs-gutter-x: 2.4rem;
  }
  .home-hero-copy .hero-title {
    font-size: clamp(2.9rem, 3.3vw, 3.7rem);
    margin-bottom: 14px;
  }
  .home-hero-copy .hero-subtitle {
    font-size: 1.04rem;
    line-height: 1.68;
    max-width: 600px;
  }
  .home-hero-media {
    max-width: 600px;
  }
  .home-hero-media video {
    aspect-ratio: 16 / 9;
  }
}

/* Pixel calibration: 768x1024 portrait tablets */
@media (min-width: 744px) and (max-width: 820px) and (orientation: portrait) {
  .home-hero-copy {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-hero-copy .row {
    --bs-gutter-y: 1.25rem;
  }
  .home-hero-copy .hero-title {
    font-size: clamp(2.2rem, 5.3vw, 3rem);
    margin-bottom: 12px;
  }
  .home-hero-copy .hero-subtitle {
    font-size: 1rem;
    line-height: 1.68;
  }
  .home-hero-media {
    max-width: 700px;
  }
  .home-hero-media video {
    aspect-ratio: 16 / 10;
  }
}

/* Pixel calibration: 390x844 class phones */
@media (max-width: 420px) {
  .home-hero-copy {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .home-hero-copy .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.1rem;
  }
  .home-hero-copy .hero-title {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
    line-height: 1.12;
    margin-bottom: 10px;
  }
  .home-hero-copy .hero-subtitle {
    font-size: .96rem;
    line-height: 1.66;
  }
  .home-hero-copy .btn-accent.btn-lg {
    padding: 9px 20px;
    font-size: 1rem;
  }
  .home-hero-media {
    border-radius: 12px;
  }
  .home-hero-media video {
    aspect-ratio: 16 / 11;
  }
}

/* Pixel calibration: narrow desktop landscape (around 934x570) */
@media (min-width: 900px) and (max-width: 991px) and (orientation: landscape) {
  .home-hero-copy {
    padding-top: 52px;
    padding-bottom: 56px;
  }
  .home-hero-copy .row {
    --bs-gutter-x: 1.8rem;
    --bs-gutter-y: 0;
  }
  .home-hero-copy .hero-copy-pane,
  .home-hero-copy .hero-media-pane {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .home-hero-copy .hero-title {
    font-size: clamp(2.15rem, 4.2vw, 2.85rem);
    margin-bottom: 10px;
  }
  .home-hero-copy .hero-subtitle {
    font-size: .98rem;
    line-height: 1.63;
    max-width: 100%;
    margin-bottom: 0;
  }
  .home-hero-copy .hero-media-pane {
    justify-content: flex-start;
  }
  .home-hero-media {
    max-width: 100%;
    border-radius: 14px;
  }
  .home-hero-media video {
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    height: clamp(420px, 72vw, 680px);
    min-height: 420px;
    background:
      linear-gradient(92deg, rgba(12, 15, 56, .28) 0%, rgba(19, 23, 74, .2) 46%, rgba(22, 30, 94, .14) 100%),
      url('../images/hero-slider.png') center top/112% auto no-repeat;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section {
    height: clamp(460px, 58vw, 760px);
    min-height: 460px;
    background:
      linear-gradient(92deg, rgba(12, 15, 56, .28) 0%, rgba(19, 23, 74, .2) 46%, rgba(22, 30, 94, .14) 100%),
      url('../images/hero-slider.png') center top/106% auto no-repeat;
  }
}

