/* ================================================================
   AVIOTECH TECHNOLOGIES - style.css
   World-Class IT Brand Design | 2026
   
   Fonts: Syne (display) · DM Sans (text)
   Palette: Electric Azure · Vibrant Teal · Pure White
   
   Inspired by: Stripe · Linear · Vercel · IBM · Accenture
   Goal: Exceed them all.
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --azure:      #1752F0;   /* Primary electric blue */
  --azure-hi:   #3D72FF;   /* Hover / lighter blue */
  --azure-soft: #EBF0FF;   /* Surface tint */
  --azure-mid:  #C8D6FF;   /* Border accent */
  --teal:       #06C4CD;   /* Secondary cyan-teal */
  --teal-soft:  #E3FAFB;
  --coral:      #FF5733;   /* Action warm accent */
  --green:      #10B981;
  --amber:      #F59E0B;

  /* Surfaces (all light) */
  --bg:         #FFFFFF;
  --surf-1:     #F6F9FF;   /* Primary alternate bg */
  --surf-2:     #EDF2FF;   /* Card hover / deep tint */
  --surf-dark:  #0B1120;   /* Footer, hero overlay only */

  /* Typography */
  --ink:        #080F26;   /* Near-black with blue tint */
  --ink-2:      #354474;   /* Secondary text */
  --ink-3:      #7E8EB5;   /* Muted */
  --ink-4:      #B8C3DC;   /* Placeholder */

  /* Borders */
  --line:       #E2E8F6;
  --line-2:     #C5D2EE;

  /* Shadows */
  --s-xs: 0 1px 4px rgba(15,23,60,.05);
  --s-sm: 0 4px 16px rgba(15,23,60,.08);
  --s-md: 0 8px 32px rgba(15,23,60,.11);
  --s-lg: 0 20px 60px rgba(15,23,60,.14);
  --s-xl: 0 40px 100px rgba(15,23,60,.18);
  --s-glow: 0 0 40px rgba(23,82,240,.18);

  /* Radii */
  --r-xs: 6px; --r-sm: 10px; --r: 16px; --r-lg: 22px; --r-xl: 32px; --r-pill: 100px;

  /* Fonts */
  --f-display: 'Outfit', sans-serif;
  --f-body:    'DM Sans', sans-serif;

  /* Transition */
  --ease: .24s cubic-bezier(.4,0,.2,1);
  --ease-spring: .4s cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}
img { max-width: 100%; display: block }
a { text-decoration: none; color: inherit }
ul, ol { list-style: none }
button { cursor: pointer; font-family: var(--f-body); border: none; background: none }
input, textarea, select { font-family: var(--f-body); outline: none }
::selection { background: var(--azure); color: #fff }
::-webkit-scrollbar { width: 3px }
::-webkit-scrollbar-thumb { background: var(--azure); border-radius: 2px }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem }
.section { padding: 7rem 0 }
.section-sm { padding: 4.5rem 0 }

/* ── Gradient Meshes (used in section backgrounds) ──────────── */
.mesh-bg {
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(23,82,240,.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(6,196,205,.06) 0%, transparent 70%),
    var(--bg)
}
.mesh-bg-2 {
  background:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(23,82,240,.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 100% 0%, rgba(6,196,205,.05) 0%, transparent 60%),
    var(--surf-1)
}

/* ── Section Header ─────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .7rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--azure);
  margin-bottom: 1rem
}
.label::before {
  content: ''; width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--teal));
  border-radius: 1px
}
.label-light { color: rgba(255,255,255,.75) }
.label-light::before { background: rgba(255,255,255,.5) }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.1; letter-spacing: -.025em
}
.section-title .hi {
  background: linear-gradient(135deg, var(--azure), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text
}
.section-sub {
  font-size: 1rem; color: var(--ink-2);
  max-width: 540px; margin: 1rem auto 0; line-height: 1.8
}
.hc { text-align: center; margin-bottom: 3.5rem }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:none } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes pulse  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
@keyframes float  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes shimmer {
  0% { background-position: -200% 0 }
  100% { background-position: 200% 0 }
}

/* data-reveal: text/card elements fade up on scroll */

/* Safety fallback: always show after 1.2s regardless */

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 600; letter-spacing: .01em;
  transition: all var(--ease); cursor: pointer;
  white-space: nowrap; font-family: var(--f-body); line-height: 1; border: none
}
.btn-primary {
  background: var(--azure); color: #fff;
  box-shadow: 0 4px 20px rgba(23,82,240,.35)
}
.btn-primary:hover {
  background: var(--azure-hi); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(23,82,240,.45)
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), #00A8B5); color: #fff;
  box-shadow: 0 4px 20px rgba(6,196,205,.35)
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(6,196,205,.45) }
.btn-outline {
  background: transparent; color: var(--azure);
  border: 1.5px solid var(--azure-mid)
}
.btn-outline:hover { background: var(--azure-soft); transform: translateY(-2px) }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--s-sm) }
.btn-white:hover { box-shadow: var(--s-md); transform: translateY(-2px) }
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.22)
}
.btn-ghost:hover { background: rgba(255,255,255,.2) }
.btn-lg { padding: .9rem 2.25rem; font-size: .95rem }
.btn-sm { padding: .42rem 1.1rem; font-size: .78rem }
.btn-full { width: 100%; justify-content: center }

/* ── Grids ───────────────────────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem }

/* ════════════════════════════════════════════════════════════
   NAVBAR - ultra-clean, Stripe-inspired
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease)
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(15,23,60,.07) }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; height: 66px; gap: 2rem
}
.nav-brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0 }
.nav-logo-wrap {
  background: transparent; border-radius: 0;
  padding: 0; display: flex; align-items: center
}
.nav-logo-wrap img { height: 30px; width: auto }
.nav-brand-name {
  font-family: var(--f-display); font-size: 1.05rem;
  font-weight: 800; color: var(--ink); letter-spacing: -.03em
}
.nav-brand-name span { color: var(--azure) }
.nav-menu { display: flex; align-items: center; gap: .05rem; flex: 1 }
.nav-item {
  padding: .42rem .85rem; border-radius: var(--r-sm);
  font-size: .855rem; font-weight: 500; color: var(--ink-2);
  transition: var(--ease); cursor: pointer; text-decoration: none; display: block
}
.nav-item:hover { color: var(--ink); background: var(--surf-1) }
.nav-item.active { color: var(--azure); background: var(--azure-soft); font-weight: 600 }
.nav-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0 }
.nav-user-pill { display: flex; align-items: center; gap: .55rem }
.nav-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--teal));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: .82rem
}
.nav-uname { font-size: .84rem; font-weight: 600; color: var(--ink) }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--ease) }
.mob-nav {
  display: none; position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999; overflow-y: auto; padding: 1.25rem;
  flex-direction: column; gap: .15rem; border-top: 1px solid var(--line)
}
.mob-nav.open { display: flex; animation: fadeIn .2s ease }
.mob-nav .nav-item { font-size: 1rem; padding: .75rem 1rem }
.mob-divider { height: 1px; background: var(--line); margin: .75rem 0 }

/* ════════════════════════════════════════════════════════════
   HERO - cinematic video with gradient overlay
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center; padding-top: 66px
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0
}
/* Beautiful gradient overlay - not just dark, has color depth */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(8,15,38,.92) 0%,
    rgba(10,20,60,.82) 45%,
    rgba(6,100,130,.5) 100%
  )
}
/* Mesh glow on hero */
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 90% 30%, rgba(23,82,240,.18), transparent),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(6,196,205,.12), transparent)
}
.hero-content {
  position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
  padding: 4rem 2rem; display: grid;
  grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: center
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.5rem; animation: fadeUp .5s ease both
}
.hero-kicker::before {
  content: ''; width: 24px; height: 1.5px;
  background: var(--teal); border-radius: 1px
}
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800; color: #fff; line-height: 1.05;
  letter-spacing: -.03em; animation: fadeUp .5s .08s ease both
}
.hero-h1 .grad {
  background: linear-gradient(135deg, #60A8FF, var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block
}
.hero-p {
  font-size: 1.05rem; color: rgba(255,255,255,.68);
  margin: 1.75rem 0 2.25rem; line-height: 1.85; max-width: 440px;
  animation: fadeUp .5s .16s ease both; font-weight: 300
}
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; animation: fadeUp .5s .24s ease both }

/* Hero stats strip */
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  animation: fadeUp .5s .32s ease both; flex-wrap: wrap
}
.hstat-n {
  font-family: var(--f-display); font-size: 2.2rem;
  font-weight: 800; color: #fff; line-height: 1
}
.hstat-l { font-size: .65rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: 1.2px; margin-top: .3rem }

/* Hero right floating cards */
.hero-right { animation: fadeUp .6s .36s ease both }
.hcard {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px); border-radius: var(--r-lg);
  padding: 1.6rem; margin-bottom: .85rem
}
.hcard-lbl { font-size: .62rem; font-weight: 600; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: .65rem }
.hcard-val { font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1 }
.hcard-sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .25rem }
.live-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 600; color: var(--green); margin-top: .75rem
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; flex-shrink: 0 }

/* ── Stats strip (below hero) ────────────────────────────────── */
.stat-strip {
  background: var(--ink);
  padding: 1.5rem 0
}
.stat-strip-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-evenly; align-items: center; flex-wrap: wrap; gap: 1.5rem
}
.sstat { text-align: center }
.sstat-n { font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; color: #fff }
.sstat-l { font-size: .62rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.38); margin-top: 2px }

/* ════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════════════════ */
.page-hero { position: relative; overflow: hidden; padding-top: 66px }
.page-hero-video, .page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0 }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(8,15,38,.9) 0%, rgba(10,30,80,.65) 100%)
}
.page-hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 80% 30%, rgba(6,196,205,.12), transparent)
}
.page-hero-body { position: relative; z-index: 2; min-height: 300px; display: flex; align-items: flex-end; padding-bottom: 3.5rem }
.page-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .65rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: .85rem
}
.page-kicker::before { content: ''; width: 18px; height: 1.5px; background: var(--teal); border-radius: 1px }
.page-h1 {
  font-family: var(--f-display); font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 800; color: #fff; letter-spacing: -.025em; line-height: 1.1
}
.page-h1 span { color: #60A8FF }
.page-sub { font-size: .97rem; color: rgba(255,255,255,.62); max-width: 520px; line-height: 1.8; margin-top: .75rem; font-weight: 300 }

/* ════════════════════════════════════════════════════════════
   VIDEO SECTION
   ════════════════════════════════════════════════════════════ */
.vsection { background: var(--ink); overflow: hidden }
.vsplit { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px }
.vsplit-text { padding: 4.5rem 3.5rem; display: flex; flex-direction: column; justify-content: center }
.vsplit-text h2 {
  font-family: var(--f-display); font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800; color: #fff; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1rem
}
.vsplit-text p { color: rgba(255,255,255,.55); line-height: 1.88; margin-bottom: 1.25rem; font-size: .92rem; font-weight: 300 }
.vframe { overflow: hidden; background: #000 }
.vframe video { width: 100%; height: 100%; min-height: 480px; object-fit: cover; display: block }

/* Standalone video card */
.vid-card {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--s-lg);
  aspect-ratio: 16/9; position: relative; background: var(--surf-dark)
}
.vid-card video { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover }

/* Feature checklist in video sections */
.vcheck { display: flex; flex-direction: column; gap: .7rem; margin: 1.25rem 0 1.75rem }
.vcheck-item { display: flex; align-items: center; gap: .75rem; font-size: .88rem; color: rgba(255,255,255,.72); font-weight: 400 }
.vcheck-dot {
  width: 18px; height: 18px; min-width: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--teal));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0
}
.vcheck-dot svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round }

/* ════════════════════════════════════════════════════════════
   CARDS - Premium, Stripe-level
   ════════════════════════════════════════════════════════════ */
.card {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease)
}
.card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); border-color: var(--azure-mid) }
.card-img { width: 100%; height: 220px; object-fit: cover; display: block }
.card-body { padding: 1.75rem }
.card-body h3 { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; letter-spacing: -.02em }
.card-body p { font-size: .86rem; color: var(--ink-2); line-height: 1.8; font-weight: 300 }

/* Gradient-border category label */
.card-tag, .card-cat {
  font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--azure), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .85rem; display: block
}

.card-features { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem }
.card-features li { display: flex; align-items: flex-start; gap: .65rem; font-size: .84rem; color: var(--ink-2); line-height: 1.55; font-weight: 300 }
.card-features li::before {
  content: ''; width: 16px; height: 16px; min-width: 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--teal));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1 4.6-4.6L12.5 5.5z'/%3E%3C/svg%3E");
  background-size: cover; margin-top: 1px
}
.card-foot {
  padding: 1.1rem 1.75rem; border-top: 1px solid var(--line);
  background: var(--surf-1); display: flex; align-items: center; justify-content: space-between
}

/* Info card (why us, etc.) */
.icard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; transition: var(--ease) }
.icard:hover { box-shadow: var(--s-md); border-color: var(--azure-mid); transform: translateY(-4px) }
.icard-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 1.2rem;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}
.icard h3 { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem }
.icard p { font-size: .855rem; color: var(--ink-2); line-height: 1.8; font-weight: 300 }

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; padding: 4.5rem 0;
  border-bottom: 1px solid var(--line)
}
.svc-row:last-of-type { border-bottom: none }
.svc-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--s-xl); position: relative }
.svc-img img { width: 100%; height: 360px; object-fit: cover; display: block }
/* Gradient overlay on service images */
.svc-img::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(23,82,240,.1), rgba(6,196,205,.1))
}
.svc-txt h2 { font-family: var(--f-display); font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 800; color: var(--ink); letter-spacing: -.025em; margin-bottom: 1rem; line-height: 1.15 }
.svc-txt p { color: var(--ink-2); line-height: 1.9; margin-bottom: 1.25rem; font-size: .93rem; font-weight: 300 }
.ck-list { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.75rem }
.ck-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; color: var(--ink-2); line-height: 1.6; font-weight: 300 }
.ck, .ck-ico {
  width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--teal));
  flex-shrink: 0; margin-top: 1px; display: inline-flex; align-items: center; justify-content: center
}
.ck svg, .ck-ico svg { width: 11px; height: 11px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round }

/* ── Ticket System ───────────────────────────────────────────── */
.ticket-bg { background: var(--surf-1) }
.ticket-wrap { max-width: 680px; margin: 0 auto }
.ticket-form { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line); padding: 2.5rem; box-shadow: var(--s-sm) }
.fgroup { margin-bottom: 1.15rem }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem }
label { display: block; font-size: .7rem; font-weight: 700; color: var(--ink); letter-spacing: .6px; text-transform: uppercase; margin-bottom: .42rem }
.finput { width: 100%; padding: .75rem 1rem; border-radius: var(--r-sm); background: var(--surf-1); border: 1.5px solid var(--line); color: var(--ink); font-size: .9rem; transition: var(--ease) }
.finput:focus { border-color: var(--azure); background: #fff; box-shadow: 0 0 0 3px rgba(23,82,240,.1) }
.finput::placeholder { color: var(--ink-4) }
textarea.finput { min-height: 130px; resize: vertical }
select.finput { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892B0' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; appearance: none }
.prio-row { display: flex; gap: .75rem }
.prio-btn { flex: 1; padding: .6rem; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--surf-1); color: var(--ink-3); font-size: .8rem; font-weight: 600; cursor: pointer; transition: var(--ease); text-align: center }
.prio-btn.on-low { border-color: #10B981; color: #065F46; background: #ECFDF5 }
.prio-btn.on-medium { border-color: #F59E0B; color: #92400E; background: #FFFBEB }
.prio-btn.on-high { border-color: #EF4444; color: #991B1B; background: #FEF2F2 }
.tlist { margin-top: 2.5rem }
.tlist h3 { font-family: var(--f-display); font-size: 1.15rem; color: var(--ink); margin-bottom: 1rem; font-weight: 700 }
.ticket-row { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.25rem; margin-bottom: .65rem; transition: var(--ease) }
.ticket-row:hover { border-color: var(--azure-mid); box-shadow: var(--s-xs) }
.tid { font-family: monospace; font-size: .76rem; font-weight: 700; color: var(--azure); background: var(--azure-soft); padding: .2rem .55rem; border-radius: 4px; white-space: nowrap }
.tinfo { flex: 1; min-width: 0 }
.tsubj { font-weight: 600; font-size: .88rem; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap }
.tmeta { font-size: .75rem; color: var(--ink-3); margin-top: 2px }
.sbadge { padding: .2rem .7rem; border-radius: var(--r-pill); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap }
.s-open { background: #DBEAFE; color: #1D4ED8 } .s-pending { background: #FEF3C7; color: #92400E } .s-closed { background: #D1FAE5; color: #065F46 } .s-cancelled { background: #FEE2E2; color: #991B1B } .s-resolved { background: #D1FAE5; color: #065F46 }
.empty-box { text-align: center; padding: 3rem; color: var(--ink-3); font-size: .9rem }

/* ════════════════════════════════════════════════════════════
   ACADEMY
   ════════════════════════════════════════════════════════════ */
.mode-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-bottom: 4rem }
.mode-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--s-xs); transition: var(--ease); background: #fff }
.mode-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg) }
.mode-img { width: 100%; height: 190px; object-fit: cover }
.mode-body { padding: 1.5rem }
.mode-tag { font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: linear-gradient(135deg, var(--azure), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: .55rem }
.mode-body h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem }
.mode-body p { font-size: .84rem; color: var(--ink-2); line-height: 1.78; font-weight: 300 }
.filter-row { display: flex; gap: .55rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem }
.filt { padding: .48rem 1.2rem; border-radius: var(--r-pill); font-size: .83rem; font-weight: 500; cursor: pointer; border: 1px solid var(--line); background: #fff; color: var(--ink-2); transition: var(--ease) }
.filt:hover, .filt.on { border-color: var(--azure); color: var(--azure); background: var(--azure-soft); font-weight: 600 }
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: flex-start;
}
.courses-grid .ccard {
  flex: 1 1 calc(33.333% - 1.75rem);
  min-width: 260px;
  max-width: calc(33.333% - 1.75rem);
}
@media(max-width:1024px){
  .courses-grid .ccard { flex: 1 1 calc(50% - 1.75rem); max-width: calc(50% - 1.75rem); }
}
@media(max-width:640px){
  .courses-grid .ccard { flex: 1 1 100%; max-width: 100%; }
}
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: var(--ease) }
.ccard:hover { transform: translateY(-5px); box-shadow: var(--s-lg); border-color: var(--azure-mid) }
.cimg { width: 100%; height: 185px; object-fit: cover }
.cbody { padding: 1.5rem }
.clevel { display: inline-block; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: .18rem .6rem; border-radius: var(--r-xs); margin-bottom: .75rem }
.lv-beg { background: #D1FAE5; color: #065F46 } .lv-int { background: #FEF3C7; color: #92400E } .lv-adv { background: #FEE2E2; color: #991B1B }
.cbody h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .42rem; line-height: 1.3 }
.cbody p { font-size: .82rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 1rem; font-weight: 300 }
.cmeta { display: flex; gap: 1rem }
.cpill { font-size: .72rem; color: var(--ink-3); font-weight: 500 }
.expand-btn { width: 100%; padding: .72rem 1.5rem; border-top: 1px solid var(--line); background: var(--surf-1); color: var(--azure); font-size: .8rem; font-weight: 600; cursor: pointer; transition: var(--ease); display: flex; align-items: center; justify-content: center; gap: .4rem }
.expand-btn:hover { background: var(--azure-soft) }
.syllabus { border-top: 1px solid var(--line); background: var(--surf-1); padding: 0; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease }
.syllabus.open { max-height: 600px; padding: 1.5rem }
.sw { font-size: .62rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-top: .8rem }
.sw:first-child { margin-top: 0 }
.st { font-size: .84rem; color: var(--ink-2); margin-top: .2rem; margin-bottom: .45rem; line-height: 1.6; font-weight: 300 }
.sp { font-size: .8rem; color: var(--azure); font-weight: 600; margin-top: 1rem; padding-top: .75rem; border-top: 1px dashed var(--line) }
.cert-block { background: linear-gradient(135deg, var(--ink) 0%, #0B1540 100%); border-radius: var(--r-xl); padding: 4rem 3rem; text-align: center; margin-top: 4rem }
.cert-block h2 { font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: .75rem }
.cert-block p { color: rgba(255,255,255,.55); max-width: 560px; margin: 0 auto 2rem; line-height: 1.85; font-size: .93rem; font-weight: 300 }
.cert-block strong { color: rgba(255,255,255,.88); font-weight: 600 }
.cert-pills { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap }
.cpill-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 1rem 1.75rem; text-align: center; transition: var(--ease) }
.cpill-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22) }
.cpill-name { font-family: var(--f-display); font-weight: 700; font-size: .95rem; color: #fff }
.cpill-sub { font-size: .72rem; color: rgba(255,255,255,.42); margin-top: .25rem }
.cpill-via { font-size: .66rem; color: var(--teal); font-weight: 600; margin-top: .45rem; letter-spacing: .5px; text-transform: uppercase }

/* ════════════════════════════════════════════════════════════
   CAREER
   ════════════════════════════════════════════════════════════ */
.career-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem }
.cpath-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: var(--ease) }
.cpath-card:hover { transform: translateY(-6px); box-shadow: var(--s-lg); border-color: var(--azure-mid) }
.cpath-img { width: 100%; height: 210px; object-fit: cover }
.cpath-body { padding: 1.5rem }
.cpath-body h3 { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem }
.cpath-body p { font-size: .82rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 1rem; font-weight: 300 }
.prog { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; margin-bottom: .9rem }
.prog-s { background: var(--azure-soft); color: var(--azure); font-size: .65rem; font-weight: 700; padding: .18rem .52rem; border-radius: var(--r-xs) }
.prog-a { color: var(--ink-4); font-size: .75rem }
.stags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .9rem }
.stag { background: var(--surf-1); border: 1px solid var(--line); color: var(--ink-2); font-size: .65rem; padding: .14rem .48rem; border-radius: var(--r-xs); font-weight: 500 }
.salary { font-size: .78rem; color: var(--ink-3) }
.salary span { color: #059669; font-weight: 700 }
.roadmap { background: linear-gradient(135deg, var(--ink) 0%, #0B1540 100%); border-radius: var(--r-xl); padding: 4rem 3rem; text-align: center; margin-top: 4rem }
.roadmap h2 { font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 2.5rem; letter-spacing: -.03em }
.rm-steps { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem }
.rm-step { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 1.25rem 2rem; min-width: 130px; text-align: center }
.rm-step-n { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; color: var(--teal) }
.rm-step-l { font-size: .72rem; color: rgba(255,255,255,.58); margin-top: .3rem; font-weight: 500 }
.rm-arr { color: rgba(255,255,255,.22); font-size: 1.2rem }

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center }
.about-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--s-xl); position: relative }
.about-img img { width: 100%; height: 500px; object-fit: cover }
.about-img::after { content: ''; position: absolute; inset: 0; border-radius: var(--r-xl); background: linear-gradient(135deg, rgba(23,82,240,.08), rgba(6,196,205,.08)) }
.about-txt h2 { font-family: var(--f-display); font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800; color: var(--ink); letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1.2rem }
.about-txt p { color: var(--ink-2); line-height: 1.9; margin-bottom: .95rem; font-size: .93rem; font-weight: 300 }
.about-stats-bar { background: linear-gradient(135deg, var(--azure) 0%, #0B40CC 100%); border-radius: var(--r-xl); padding: 2.5rem 2rem }
.asgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center }
.as-n { font-family: var(--f-display); font-size: 2.4rem; font-weight: 800; color: #fff }
.as-l { font-size: .62rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.5); margin-top: .3rem }
.values-g { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem; transition: var(--ease) }
.vcard:hover { border-color: var(--azure-mid); box-shadow: var(--s-sm) }
.vcard h4 { font-family: var(--f-display); font-size: .95rem; font-weight: 700; color: var(--azure); margin-bottom: .38rem }
.vcard p { font-size: .82rem; color: var(--ink-2); line-height: 1.7; font-weight: 300 }
.team-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem }
.tm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: var(--ease) }
.tm-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg) }
.tm-img { width: 100%; height: 270px; object-fit: cover; object-position: top }
.tm-body { padding: 1.5rem; text-align: center }
.tm-name { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--ink) }
.tm-role { font-size: .75rem; background: linear-gradient(135deg, var(--azure), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; margin-top: .25rem }
.tm-bio { font-size: .8rem; color: var(--ink-2); margin-top: .65rem; line-height: 1.7; font-weight: 300 }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testi-bg { background: var(--surf-1) }
.testi-card { background: #fff; border-radius: var(--r-lg); padding: 2rem; border: 1px solid var(--line); transition: var(--ease); position: relative; overflow: hidden }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--azure), var(--teal)) }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--s-md) }
.testi-txt { font-size: .9rem; color: var(--ink-2); line-height: 1.85; font-style: italic; margin-bottom: 1.25rem; font-weight: 300 }
.testi-auth { display: flex; align-items: center; gap: .85rem }
.tauth-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--azure-mid) }
.tauth-name { font-weight: 600; font-size: .88rem; color: var(--ink) }
.tauth-role { font-size: .74rem; color: var(--ink-3); margin-top: 1px }
.tstars { display: flex; gap: 2px; margin-top: 3px }
.star { width: 9px; height: 9px; background: var(--amber); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%) }

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start }
.contact-info h3 { font-family: var(--f-display); font-size: 1.45rem; font-weight: 700; color: var(--ink); margin-bottom: .75rem }
.contact-info p { color: var(--ink-2); line-height: 1.85; margin-bottom: 2rem; font-size: .93rem; font-weight: 300 }
.citem { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem }
.cico { width: 44px; height: 44px; min-width: 44px; border-radius: 11px; background: linear-gradient(135deg, var(--azure), var(--teal)); display: flex; align-items: center; justify-content: center }
.cico svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.cl { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-3); font-weight: 700 }
.cv { font-size: .9rem; color: var(--ink); font-weight: 500; margin-top: 3px }
.cform-wrap { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line); padding: 2.5rem; box-shadow: var(--s-sm) }
.cform-wrap h3 { font-family: var(--f-display); font-size: 1.35rem; color: var(--ink); margin-bottom: 1.75rem; font-weight: 700 }
.map-ph { background: var(--surf-1); border: 1px solid var(--line); border-radius: var(--r-lg); height: 200px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--ink-3); margin-top: 2rem; flex-direction: column; gap: .5rem; font-size: .88rem }
.nl-strip { background: linear-gradient(135deg, var(--azure) 0%, #0B40CC 100%); border-radius: var(--r-xl); padding: 3.5rem; text-align: center; margin-top: 4rem; color: #fff }
.nl-strip h3 { font-family: var(--f-display); font-size: 1.75rem; font-weight: 800; margin-bottom: .5rem }
.nl-strip p { color: rgba(255,255,255,.65); margin-bottom: 1.75rem; font-size: .92rem; font-weight: 300 }
.nl-row { display: flex; gap: .75rem; max-width: 400px; margin: 0 auto }
.nl-input { flex: 1; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff; border-radius: var(--r-pill); padding: .75rem 1.2rem; font-size: .88rem }
.nl-input::placeholder { color: rgba(255,255,255,.42) }
.nl-input:focus { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4) }

/* ════════════════════════════════════════════════════════════
   TERMS
   ════════════════════════════════════════════════════════════ */
.terms-wrap { max-width: 800px; margin: 0 auto }
.terms-wrap h2 { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; color: var(--ink); margin: 2.5rem 0 .7rem; padding-top: 2.5rem; border-top: 1px solid var(--line) }
.terms-wrap h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0 }
.terms-wrap h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--azure); margin: 1.5rem 0 .45rem }
.terms-wrap p, .terms-wrap li { color: var(--ink-2); line-height: 1.9; margin-bottom: .75rem; font-size: .92rem; font-weight: 300 }
.terms-wrap ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem }
.terms-meta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); font-size: .8rem; color: var(--ink-3) }

/* ════════════════════════════════════════════════════════════
   MODALS
   ════════════════════════════════════════════════════════════ */
.overlay { position: fixed; inset: 0; background: rgba(8,15,38,.7); backdrop-filter: blur(10px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s ease; padding: 1rem }
.overlay.open { opacity: 1; pointer-events: all }
.modal { background: #fff; border-radius: var(--r-xl); padding: 2.5rem; width: 100%; max-width: 430px; transform: scale(.96) translateY(8px); transition: transform .25s ease; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: var(--s-xl) }
.overlay.open .modal { transform: scale(1) translateY(0) }
.modal-x { position: absolute; top: 1.2rem; right: 1.2rem; width: 28px; height: 28px; border-radius: 50%; background: var(--surf-1); color: var(--ink-2); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .8rem; transition: var(--ease); border: none; font-weight: 700 }
.modal-x:hover { background: var(--line) }
.modal-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem }
.modal-brand .logo-b { background: transparent; border-radius: 0; padding: 0 }
.modal-brand .logo-b img { height: 26px }
.modal-brand span { font-family: var(--f-display); font-size: .95rem; font-weight: 800; color: var(--ink) }
.modal h2 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; color: var(--ink) }
.modal-s { font-size: .83rem; color: var(--ink-3); margin-bottom: 1.7rem; margin-top: .2rem }
.rem-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem }
.rem-lbl { display: flex; align-items: center; gap: .45rem; font-size: .83rem; color: var(--ink-2); cursor: pointer }
.rem-lbl input { accent-color: var(--azure) }
.forgot { font-size: .81rem; color: var(--azure); cursor: pointer; font-weight: 600 }
.sw-txt { text-align: center; margin-top: 1.2rem; font-size: .83rem; color: var(--ink-3) }
.sw-txt a { color: var(--azure); font-weight: 600; cursor: pointer }
.alert { padding: .65rem 1rem; border-radius: var(--r-sm); font-size: .83rem; margin-bottom: 1rem; display: none }
.alert-e { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA }
.alert-s { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0 }

/* ════════════════════════════════════════════════════════════
   CTA - gradient, not flat dark
   ════════════════════════════════════════════════════════════ */
.cta-wrap {
  background: linear-gradient(135deg, var(--azure) 0%, #0B40CC 50%, #082080 100%);
  position: relative; overflow: hidden
}
.cta-wrap::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(6,196,205,.2), transparent),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(255,255,255,.05), transparent)
}
.cta-inner { position: relative; z-index: 1; text-align: center }
.cta-inner h2 { font-family: var(--f-display); font-size: clamp(2rem,4.5vw,3rem); font-weight: 800; color: #fff; letter-spacing: -.025em; margin-bottom: 1rem; line-height: 1.1 }
.cta-inner h2 span { color: #60C8FF }
.cta-inner p { color: rgba(255,255,255,.65); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.85; font-size: .93rem; font-weight: 300 }
.cta-acts { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer { background: var(--surf-dark); color: rgba(255,255,255,.6); padding: 4.5rem 0 2.25rem }
.footer-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.38); line-height: 1.85; max-width: 270px; margin-top: 1rem; font-weight: 300 }
.footer-logo-wrap { background: rgba(255,255,255,.06); display: inline-flex; border-radius: 10px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.1) }
.footer-logo-wrap img { height: 32px }
.footer-soc { display: flex; gap: .5rem; margin-top: 1.2rem }
.soc-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; cursor: pointer; transition: var(--ease); color: rgba(255,255,255,.42); text-transform: uppercase; font-family: var(--f-display) }
.soc-btn:hover { background: rgba(255,255,255,.12); color: #fff }
.fcol h4 { font-family: var(--f-display); font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.1rem }
.fcol ul { display: flex; flex-direction: column; gap: .5rem }
.fcol ul li a { font-size: .83rem; color: rgba(255,255,255,.38); transition: var(--ease); font-weight: 300 }
.fcol ul li a:hover { color: rgba(255,255,255,.85) }
.footer-btm { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem }
.footer-btm p { font-size: .76rem; color: rgba(255,255,255,.28) }
.footer-btm-links { display: flex; gap: 1.5rem }
.footer-btm-links a { font-size: .76rem; color: rgba(255,255,255,.28); transition: var(--ease) }
.footer-btm-links a:hover { color: rgba(255,255,255,.65) }

/* ════════════════════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════════════════════ */
.toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 3000; background: var(--ink); color: rgba(255,255,255,.9); border-radius: var(--r); padding: .9rem 1.4rem; display: flex; align-items: center; gap: .75rem; box-shadow: var(--s-xl); font-size: .85rem; transform: translateY(120px); opacity: 0; transition: .35s cubic-bezier(.4,0,.2,1); pointer-events: none; max-width: 320px }
.toast.on { transform: none; opacity: 1 }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media(max-width:1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem } .hero-right { display: none }
  .g4 { grid-template-columns: 1fr 1fr }
  .footer-g { grid-template-columns: 1fr 1fr }
  .about-stats-bar .asgrid { grid-template-columns: 1fr 1fr; gap: 1rem }
  .svc-row { grid-template-columns: 1fr; gap: 2.5rem }
  .contact-split, .about-split { grid-template-columns: 1fr; gap: 2.5rem }
  .career-grid { grid-template-columns: 1fr 1fr }
  .vsplit { grid-template-columns: 1fr } .vsplit-text { padding: 3rem 2rem }
  .mode-grid { grid-template-columns: 1fr }
  .courses-grid { grid-template-columns: 1fr 1fr }
}
@media(max-width:1024px) {
  .nav-menu { display: none } .hamburger { display: flex }
  .g3, .g2, .g4 { grid-template-columns: 1fr }
  .career-grid { grid-template-columns: 1fr }
  .team-g { grid-template-columns: 1fr 1fr }
  .footer-g { grid-template-columns: 1fr }
  .courses-grid { grid-template-columns: 1fr }
  .values-g, .frow { grid-template-columns: 1fr }
  .cta-acts { flex-direction: column; align-items: center }
  .nl-row { flex-direction: column }
  .cert-pills { flex-direction: column; align-items: center }
  .rm-arr { display: none }
  .page-hero-body { min-height: 240px; padding-bottom: 2.5rem }
  .section { padding: 4rem 0 }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem }
}
@media(max-width:480px) {
  .container { padding: 0 1.25rem }
  .modal { padding: 2rem; max-width: 100% }
  .team-g { grid-template-columns: 1fr }
}
.hidden { display: none !important }
.text-c { text-align: center }
.grad-text { background: linear-gradient(135deg, var(--azure), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }

/* Fix: card-tag used on index/services */
.card-foot { padding: 1.1rem 1.75rem; border-top: 1px solid var(--line); background: var(--surf-1); display: flex; align-items: center; justify-content: space-between }

/* Fix: vcheck items in video sections */
.vcheck { display: flex; flex-direction: column; gap: .7rem; margin: 1.25rem 0 1.75rem }
.vcheck-item { display: flex; align-items: center; gap: .75rem; font-size: .88rem; color: rgba(255,255,255,.72); font-weight: 400 }
.vcheck-dot { width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--azure), var(--teal)); display: flex; align-items: center; justify-content: center; flex-shrink: 0 }
.vcheck-dot svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round }

/* Fix: hero-kicker needs styling */
.hero-kicker { display: inline-flex; align-items: center; gap: .75rem; font-size: .68rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem }
.hero-kicker::before { content: ''; width: 24px; height: 1.5px; background: var(--teal); border-radius: 1px }

/* Fix: stat strip needs complete styling */
.stat-strip { background: var(--ink); padding: 1.6rem 0 }
.stat-strip-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-evenly; align-items: center; flex-wrap: wrap; gap: 1.5rem }
.sstat { text-align: center }
.sstat-n { font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; color: #fff }
.sstat-l { font-size: .62rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.38); margin-top: 2px }

/* Fix: ck-list li needs display flex */
.ck-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; color: var(--ink-2); line-height: 1.6; font-weight: 300 }


/* ================================================================
   SCROLL REVEAL - Single definitive implementation
   Rule: Images are ALWAYS visible. Only text/UI elements animate.
   ================================================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(18px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* Default: hidden, waiting for .visible class from JS */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* JS adds .visible when element enters viewport */
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CRITICAL: Images inside ANY container must always show ── */
img,
video,
.icard-img,
.card-img,
.card-img,
.tauth-photo,
.cimg,
.cpath-img,
.mode-img,
.tm-img,
.svc-img img,
.about-img img,
.hero-video,
.page-hero-video,
.page-hero-img {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* icard cards: never animate, always show */
.icard {
  opacity: 1 !important;
  transform: none !important;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.icard:hover {
  transform: translateY(-4px) !important;
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS — appended safely, no existing rules touched
   ═══════════════════════════════════════════════════════════════ */

/* Keep language switcher visible on all sizes */
.av-ls-wrap {
  display: flex !important;
  visibility: visible !important;
  flex-shrink: 0;
}

/* Tablet nav (768-1024px): hide login buttons, keep switcher + hamburger */
@media(max-width:1024px) {
  .nav-inner { padding: 0 1rem; gap: .5rem; height: 60px }
  .nav-brand-name { font-size: .88rem }
  #navGuest .btn { display: none }
  .av-ls-btn { padding: 4px 9px 4px 6px }
  .av-ls-code { font-size: .68rem }
}

/* Phone portrait (max-width:640px) */
@media(max-width:640px) {
  /* Nav */
  .nav-inner { padding: 0 .85rem; height: 56px }
  .nav-brand-name { font-size: .82rem }

  /* Hero: single column */
  .hero { min-height: 100svh; padding-top: 56px; align-items: flex-start }
  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 2.5rem 1rem 4rem !important;
  }
  .hero-right { display: none !important }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem) !important; line-height: 1.15 !important }
  .hero-kicker { font-size: .7rem }
  .hero-acts { flex-direction: column; align-items: flex-start; gap: .6rem }
  .hero-acts .btn { width: 100%; max-width: 300px; justify-content: center }
  .hero-stats { flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem }
  .hero-stat { flex: 1 1 calc(50% - .5rem) }

  /* Sections */
  .section { padding: 3rem 0 !important }
  .container { padding: 0 1rem !important }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem) !important }
  h3 { font-size: clamp(1rem, 4vw, 1.3rem) !important }

  /* Grids → 1 column */
  .about-split,
  .contact-split,
  .svc-row,
  .values-g,
  .frow,
  .mode-grid,
  .vsplit { grid-template-columns: 1fr !important; gap: 1.5rem !important }

  /* Page hero banners */
  .page-hero-body {
    padding: 3.5rem 1rem 2.5rem !important;
    min-height: 180px !important;
  }
  .page-hero-body h1 { font-size: clamp(1.4rem, 6vw, 2rem) !important }

  /* Footer */
  .footer-g { grid-template-columns: 1fr !important; gap: 1.5rem }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center }

  /* CTA / newsletter */
  .cta-acts { flex-direction: column !important; align-items: center !important; gap: .6rem }
  .cta-acts .btn { width: 100% !important; max-width: 300px }
  .nl-row { flex-direction: column !important; gap: .6rem }
  .nl-row input { max-width: 100% !important }
  .nl-row .btn { width: 100% !important }

  /* Services portal */
  .portal-tabs { flex-wrap: wrap; gap: .35rem }
  .portal-tab { flex: 1; min-width: 105px; text-align: center; font-size: .77rem; padding: .5rem }
  .ticket-row { flex-direction: column; gap: .4rem }
}

/* Modals: slide up from bottom on mobile */
@media(max-width:520px) {
  .overlay { align-items: flex-end !important; padding: 0 }
  .modal {
    border-radius: 1rem 1rem 0 0 !important;
    margin: 0 !important;
    padding: 1.5rem 1rem 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 92svh !important;
    overflow-y: auto !important;
  }
  .modal h2 { font-size: 1.05rem !important }
  /* Prevent iOS auto-zoom on input focus */
  .finput, input, textarea, select { font-size: 16px !important }
}

/* Very small phones */
@media(max-width:420px) {
  .nav-brand-name { display: none }
  .hero h1 { font-size: 1.65rem !important }
  .hero-stat { flex: 1 1 100% }
  .team-g { grid-template-columns: 1fr !important }
  .section { padding: 2.5rem 0 !important }
}

/* Medium desktop: prevent nav overflow (1025–1280px) */
@media(min-width:1025px) and (max-width:1280px) {
  .nav-inner { gap: .8rem !important; padding: 0 1.25rem !important }
  .nav-menu { gap: .1rem !important }
  .nav-item { padding: .42rem .5rem !important; font-size: .81rem !important }
  .nav-actions { gap: .3rem !important }
  .nav-actions .btn { padding: .38rem .75rem !important; font-size: .78rem !important }
}
