/* =========================================================
   أركان إنجلش — نظام التصميم
   Palette drawn directly from the client's brand profile:
   navy (primary), warm orange (accent), muted lavender
   (secondary panel), warm paper background instead of pure
   white. Display type = Cairo (matches the blocky Arabic
   headings in the brand PDF), body = Tajawal, Latin/numerals
   & eyebrows = Poppins (matches "ARKAN ENGLISH" / "Thank You").
   ========================================================= */

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

:root{
  --navy:        #1B1B4E;
  --navy-2:      #24245e;
  --navy-soft:   #35356f;
  --orange:      #F2793C;
  --orange-dark: #D65E24;
  --lavender:    #6E6DA1;
  --lavender-dk: #565587;
  --paper:       #FBF7F1;
  --paper-2:     #F3EDE3;
  --ink:         #1C1B2E;
  --ink-soft:    #55536e;
  --line:        #E4DDCF;
  --white:       #ffffff;

  --font-display: 'Cairo', system-ui, sans-serif;
  --font-body:    'Tajawal', system-ui, sans-serif;
  --font-eyebrow: 'Poppins', system-ui, sans-serif;

  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 45px -20px rgba(27,27,78,0.28);
  --shadow-card: 0 12px 30px -16px rgba(27,27,78,0.22);
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; color: var(--navy); line-height:1.25; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow{
  font-family: var(--font-eyebrow);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--orange);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background: var(--orange);
  display:inline-block;
}

/* ---------- background pillar texture (signature) ---------- */
.pillar-field{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.pillar-field svg{ position:absolute; opacity:.07; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-eyebrow);
  font-weight:600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--orange); color:#fff; box-shadow: 0 14px 30px -12px rgba(242,121,60,.6); }
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline{ border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-navy{ background: var(--navy); color:#fff; }
.btn-navy:hover{ background: var(--navy-2); transform: translateY(-2px); }
.btn-ghost{ border-color: var(--line); color: var(--navy); }
.btn-ghost:hover{ border-color: var(--navy); }

/* ---------- nav ---------- */
.site-header{
  position: sticky; top:0; z-index:100;
  padding: 16px 0;
}
.nav-shell{
  max-width: var(--container);
  margin-inline:auto;
  padding-inline: 10px 10px;
}
.nav-pill{
  background: rgba(27,27,78,.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  display:flex; align-items:center; justify-content:space-between;
  padding: 8px 10px 8px 22px;
  box-shadow: var(--shadow-soft);
}
.brand{ display:flex; align-items:center; gap:12px; padding:4px; }
.brand img{ width:44px; height:44px; border-radius:12px; object-fit:cover; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text b{ font-family: var(--font-eyebrow); color:#fff; font-size: .92rem; letter-spacing:.03em; }
.brand-text span{ font-family: var(--font-body); color: rgba(255,255,255,.6); font-size:.72rem; }

.nav-links{ display:flex; align-items:center; gap:4px; }
.nav-links a{
  color: rgba(255,255,255,.78);
  font-weight:500;
  font-size:.94rem;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover{ background: rgba(255,255,255,.1); color:#fff; }
.nav-links a.active{ background: var(--orange); color:#fff; }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-cta .btn{ padding:11px 22px; font-size:.85rem; }

.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:50%;
  background: rgba(255,255,255,.1);
  border:none;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background:#fff; position:relative; transition:.25s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

@media (max-width: 900px){
  .nav-links{
    position:absolute; inset-inline:0; top: calc(100% + 10px);
    background: var(--navy); border-radius: 22px;
    flex-direction:column; align-items:stretch;
    padding:10px; gap:2px;
    box-shadow: var(--shadow-soft);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:14px 18px; text-align:center; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  background: var(--navy);
  color:#fff;
  padding: 78px 0 110px;
  overflow:hidden;
}
.hero-grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items:center;
}
.hero h1{
  color:#fff;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight:900;
  margin: 18px 0 20px;
}
.hero h1 em{ color: var(--orange); font-style:normal; }
.hero p.lead{
  color: rgba(255,255,255,.72);
  font-size:1.08rem;
  line-height:1.9;
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-visual{ position:relative; height: 420px; }
.blob{
  position:absolute; inset:0;
  background: var(--orange);
  border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
}
.hero-visual img{
  position:absolute; width: 78%; aspect-ratio: 1/1; object-fit:cover;
  border-radius:50%; border: 8px solid var(--navy);
  top:50%; right:6%; transform: translateY(-50%);
  box-shadow: 0 25px 60px -20px rgba(0,0,0,.5);
}
.hero-dots{ position:absolute; top:10px; left:0; display:flex; gap:8px; opacity:.5; }
.hero-dots span{ width:6px; height:6px; border-radius:50%; background:#fff; }

.hero-quote{
  position:relative; z-index:2;
  margin-top: 56px;
  display:flex; align-items:center; gap:16px;
}
.hero-quote .mark{ font-family: var(--font-display); font-size:3.4rem; color: var(--orange); font-weight:900; line-height:.6; }
.hero-quote span{ color: rgba(255,255,255,.75); font-size:1.05rem; font-weight:700; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ height: 300px; order:-1; }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero{
  position:relative;
  background: var(--navy);
  color:#fff;
  padding: 64px 0 92px;
  overflow:hidden;
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color:#fff; font-size: clamp(2rem,3.6vw,2.9rem); font-weight:900; margin-top:14px; }
.page-hero p{ color: rgba(255,255,255,.7); max-width:60ch; margin-top:14px; font-size:1.02rem; line-height:1.85; }
.crumb{ color: rgba(255,255,255,.55); font-size:.85rem; display:flex; gap:8px; align-items:center; }
.crumb b{ color:#fff; font-weight:600; }

/* ---------- sections ---------- */
section{ position:relative; }
.section-pad{ padding: 88px 0; }
.section-head{ max-width: 640px; margin-bottom: 46px; }
.section-head h2{ font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight:800; margin-top:14px; }
.section-head p{ color: var(--ink-soft); margin-top:14px; line-height:1.85; font-size:1.02rem; }
.section-head.center{ margin-inline:auto; text-align:center; }

.bg-paper2{ background: var(--paper-2); }
.bg-navy{ background: var(--navy); color:#fff; }
.bg-navy h2, .bg-navy h3{ color:#fff; }
.bg-lavender{ background: var(--lavender); color:#fff; }
.bg-lavender h2, .bg-lavender h3{ color:#fff; }

/* ---------- feature / info cards ---------- */
.grid{ display:grid; gap: 26px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){ .grid-3{ grid-template-columns: repeat(2,1fr); } .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; } }

.card{
  background:#fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27,27,78,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(27,27,78,.3); }
.card .icon{
  width:54px; height:54px; border-radius:16px;
  background: rgba(242,121,60,.12);
  color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.card h3{ font-size:1.12rem; font-weight:800; margin-bottom:10px; }
.card p{ color: var(--ink-soft); font-size:.95rem; line-height:1.8; }

.check-list{ display:flex; flex-direction:column; gap:14px; }
.check-list li{ display:flex; align-items:flex-start; gap:12px; font-weight:600; color: var(--navy); }
.check-list li svg{ flex:none; margin-top:3px; color: var(--orange); }

/* ---------- split (image + text) ---------- */
.split{ display:grid; grid-template-columns: .95fr 1.05fr; gap:56px; align-items:center; }
.split.reverse{ grid-template-columns: 1.05fr .95fr; }
.split.reverse .split-media{ order:2; }
.split-media{ position:relative; }
.split-media .frame{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.split-media .frame img{ width:100%; height: 100%; object-fit:cover; aspect-ratio: 4/3; }
.split-media .badge{
  position:absolute; bottom:-22px; left:-22px;
  background: var(--orange); color:#fff;
  padding: 18px 22px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-family: var(--font-eyebrow); font-weight:700;
  display:flex; align-items:center; gap:10px;
}
.split h2{ font-size: clamp(1.6rem,2.4vw,2.1rem); margin-bottom:18px; }
.split p{ color: var(--ink-soft); line-height:1.9; font-size:1.02rem; margin-bottom:16px; }
@media (max-width: 900px){
  .split, .split.reverse{ grid-template-columns:1fr; }
  .split.reverse .split-media{ order:0; }
}

/* ---------- programs ---------- */
.program-card{
  background:#fff; border-radius: var(--radius-lg);
  padding:28px; box-shadow: var(--shadow-card);
  border-top: 5px solid var(--orange);
  display:flex; flex-direction:column; gap:14px;
  height:100%;
}
.program-card.alt{ border-top-color: var(--lavender); }
.program-card .tag{
  align-self:flex-start;
  font-family: var(--font-eyebrow); font-size:.72rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  background: rgba(242,121,60,.12); color: var(--orange-dark);
  padding:6px 14px; border-radius: var(--radius-pill);
}
.program-card.alt .tag{ background: rgba(110,109,161,.14); color: var(--lavender-dk); }
.program-card h3{ font-size:1.25rem; font-weight:800; }
.program-card .meta{ display:flex; flex-wrap:wrap; gap:10px; font-size:.85rem; color: var(--ink-soft); }
.program-card .meta span{ background: var(--paper-2); padding:6px 12px; border-radius: var(--radius-pill); }
.program-card .goal{
  margin-top:auto; padding-top:14px; border-top:1px dashed var(--line);
  font-size:.92rem; color: var(--navy); font-weight:700;
}
.program-card .goal small{ display:block; font-weight:500; color: var(--ink-soft); margin-top:4px; }

.category-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.category-tabs button{
  padding:10px 20px; border-radius: var(--radius-pill);
  border:2px solid var(--line); background:#fff; color: var(--ink-soft);
  font-family: var(--font-eyebrow); font-weight:600; font-size:.85rem;
  transition:.2s;
}
.category-tabs button.active, .category-tabs button:hover{ border-color: var(--orange); color: var(--orange-dark); background: rgba(242,121,60,.08); }

/* ---------- levels path ---------- */
.levels-wrap{ position:relative; padding: 20px 0; }
.levels-track{
  display:grid; grid-template-columns: repeat(7,1fr); gap:14px;
  position:relative;
}
.levels-track::before{
  content:""; position:absolute; top:38px; right:6%; left:6%; height:3px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
  z-index:0;
}
.level-stop{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; }
.level-num{
  width:76px; height:76px; border-radius:50%;
  background:#fff; border:3px solid var(--orange);
  color: var(--navy); font-family: var(--font-eyebrow); font-weight:800; font-size:1.3rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card);
}
.level-stop.bookend .level-num{ border-color: var(--lavender); background: var(--lavender); color:#fff; font-size:.85rem; }
.level-stop h4{ font-size:.92rem; font-weight:800; color:var(--navy); }
.level-stop p{ font-size:.8rem; color: var(--ink-soft); }
@media (max-width: 1080px){
  .levels-track{ grid-template-columns: repeat(2,1fr); }
  .levels-track::before{ display:none; }
}

/* ---------- gallery ---------- */
.masonry{ columns: 3; gap:22px; }
.masonry figure{ margin:0 0 22px; break-inside:avoid; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); position:relative; }
.masonry img{ width:100%; display:block; }
.masonry figcaption{
  position:absolute; inset-inline:0; bottom:0; padding:16px 18px;
  background: linear-gradient(0deg, rgba(27,27,78,.88), transparent);
  color:#fff; font-weight:700; font-size:.85rem;
}
@media (max-width:900px){ .masonry{ columns:2; } }
@media (max-width:560px){ .masonry{ columns:1; } }

.activity-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
@media (max-width:900px){ .activity-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .activity-grid{ grid-template-columns: 1fr 1fr; } }
.activity-pill{
  background:#fff; border-radius: var(--radius-pill);
  padding: 18px 16px; display:flex; align-items:center; gap:14px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27,27,78,.05);
}
.activity-pill .ic{
  width:46px; height:46px; border-radius:50%; flex:none;
  background: var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.25rem;
}
.activity-pill span{ font-weight:700; color:var(--navy); font-size:.92rem; }

/* ---------- stats / trust strip ---------- */
.trust-strip{
  display:flex; flex-wrap:wrap; gap:16px 34px; align-items:center; justify-content:space-between;
}
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item .ic{ width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; color:var(--orange); flex:none; }
.trust-item b{ display:block; color:#fff; font-size:.92rem; }
.trust-item small{ color: rgba(255,255,255,.6); font-size:.78rem; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 50px 50px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
  color:#fff;
}
.cta-banner h2{ color:#fff; font-size: clamp(1.5rem,2.4vw,2rem); max-width: 480px; }
.cta-banner .btn-navy{ flex:none; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width:760px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  background:#fff; border-radius: var(--radius-lg); padding:28px;
  display:flex; align-items:center; gap:18px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
}
.contact-card:hover{ transform: translateY(-4px); }
.contact-card .ic{
  width:56px; height:56px; border-radius:50%; flex:none;
  background: var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.contact-card b{ display:block; color: var(--navy); font-size:1rem; margin-bottom:4px; }
.contact-card span{ color: var(--ink-soft); font-size:.9rem; direction:ltr; display:inline-block; }

.map-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); border:0; width:100%; height:360px; }

/* ---------- footer ---------- */
footer{ background: var(--navy); color: rgba(255,255,255,.7); padding: 70px 0 26px; position:relative; overflow:hidden; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap:40px; position:relative; z-index:1; }
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ width:46px; height:46px; border-radius:12px; }
.footer-brand b{ color:#fff; font-family: var(--font-eyebrow); font-size:1rem; }
footer p{ line-height:1.85; font-size:.92rem; max-width:32ch; }
footer h4{ color:#fff; font-size:.95rem; margin-bottom:18px; }
.footer-links{ display:flex; flex-direction:column; gap:11px; }
.footer-links a{ font-size:.9rem; transition:color .2s; }
.footer-links a:hover{ color:#fff; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; transition:.2s;
}
.footer-social a:hover{ background: var(--orange); color:#fff; }
.footer-bottom{
  margin-top:54px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.82rem; color: rgba(255,255,255,.45);
}

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- misc ---------- */
.tag-quote{ display:flex; align-items:center; gap:14px; }
.tag-quote .mark{ font-family:var(--font-display); font-size:2.6rem; font-weight:900; color:var(--orange); line-height:.5; }
.tag-quote span{ font-weight:800; color:var(--navy); }

.wa-float{
  position:fixed; bottom:26px; left:26px; z-index:90;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
  transition: transform .25s ease;
}
.wa-float:hover{ transform: scale(1.08); }

/* ---------- nav shrink on scroll ---------- */
.site-header.scrolled .nav-pill{ padding-block:5px; }
.site-header.scrolled .brand img{ width:36px; height:36px; }
.nav-pill{ transition: padding .3s ease; }
.brand img{ transition: width .3s ease, height .3s ease; }

/* ---------- animated counters ---------- */
.stat-num{
  font-family: var(--font-eyebrow); font-weight:800; font-size:1.2rem;
  color:#fff; display:inline-block;
}

/* ---------- lightbox ---------- */
.lightbox-trigger{ cursor: zoom-in; position:relative; }
.lightbox-trigger::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(27,27,78,0);
  transition: background .25s ease;
  pointer-events:none;
}
.lightbox-trigger:hover::after{ background: rgba(27,27,78,.15); }
.lightbox-trigger .zoom-ic{
  position:absolute; top:14px; left:14px;
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,.92); color: var(--navy);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform: scale(.8);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events:none;
}
.lightbox-trigger:hover .zoom-ic{ opacity:1; transform:scale(1); }

.lightbox-overlay{
  position:fixed; inset:0; z-index:300;
  background: rgba(15,15,40,.92);
  display:flex; align-items:center; justify-content:center;
  padding: 40px;
  opacity:0; visibility:hidden;
  transition: opacity .3s ease;
}
.lightbox-overlay.open{ opacity:1; visibility:visible; }
.lightbox-overlay img{
  max-width: min(900px, 92vw); max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform .3s ease;
}
.lightbox-overlay.open img{ transform: scale(1); }
.lightbox-close{
  position:absolute; top:26px; left:26px;
  width:46px; height:46px; border-radius:50%;
  background: rgba(255,255,255,.12); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease;
}
.lightbox-close:hover{ background: rgba(255,255,255,.25); }

/* ---------- FAQ accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; max-width:760px; margin-inline:auto; }
.faq-item{
  background:#fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow:hidden;
}
.faq-q{
  width:100%; text-align:right; background:none; border:none;
  padding: 20px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family: var(--font-display); font-weight:700; font-size:1.02rem; color: var(--navy);
}
.faq-q .plus{
  flex:none; width:30px; height:30px; border-radius:50%;
  background: rgba(242,121,60,.12); color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  transition: transform .3s ease;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden;
  transition: max-height .35s ease;
}
.faq-a p{ padding: 0 24px 22px; color: var(--ink-soft); line-height:1.85; font-size:.95rem; }

/* ---------- contact form ---------- */
.form-card{
  background:#fff; border-radius: var(--radius-lg); padding:34px;
  box-shadow: var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.form-field{ display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.form-field label{ font-size:.88rem; font-weight:700; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea{
  border: 2px solid var(--line); border-radius: 14px;
  padding: 13px 16px; font-family: var(--font-body); font-size:.95rem;
  background: var(--paper); color: var(--ink);
  transition: border-color .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color: var(--orange);
}
.form-field textarea{ resize: vertical; min-height:110px; }
.form-submit{ width:100%; justify-content:center; border:none; }
.form-note{ font-size:.8rem; color: var(--ink-soft); margin-top:10px; text-align:center; }

/* =========================================================
   Homepage V1.1 — premium marketing header + hero
   ========================================================= */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  top:0;
  z-index:100;
  padding:22px 0;
  transition:padding .3s ease, background .3s ease;
}
.nav-shell{max-width:1240px;padding-inline:24px;}
.nav-pill{
  min-height:68px;
  padding:8px 10px 8px 18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(17,17,59,.55);
  box-shadow:none;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.site-header.scrolled{padding:10px 0;}
.site-header.scrolled .nav-pill{
  padding-block:6px;
  background:rgba(27,27,78,.96);
  box-shadow:0 14px 36px -20px rgba(10,10,40,.55);
  border-color:rgba(255,255,255,.08);
}
.nav-links{gap:2px;}
.nav-links a{padding:10px 15px;font-weight:600;font-size:.91rem;}
.nav-links a.active{background:rgba(242,121,60,.14);color:#fff;box-shadow:inset 0 0 0 1px rgba(242,121,60,.24);}
.nav-links a.active::after{content:"";display:block;width:18px;height:2px;background:var(--orange);margin:5px auto -4px;border-radius:99px;}
.nav-cta .btn{padding:11px 21px;}
.brand img{background:transparent;object-fit:contain;}

.hero-v2{
  min-height:760px;
  padding:142px 0 72px;
  background:
    radial-gradient(circle at 18% 28%, rgba(110,109,161,.19), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(242,121,60,.10), transparent 23%),
    linear-gradient(135deg,#171744 0%,#1d1d55 52%,#171744 100%);
  isolation:isolate;
}
.hero-v2::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.11;
  background-image:radial-gradient(rgba(255,255,255,.7) .7px, transparent .7px);
  background-size:28px 28px;
  mask-image:linear-gradient(to left,transparent 4%,#000 34%,#000 76%,transparent 97%);
  pointer-events:none;
}
.hero-v2-container{position:relative;z-index:3;}
.hero-v2-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:76px;
}
.hero-copy{padding-top:12px;}
.hero-kicker{display:flex;align-items:center;gap:12px;color:#ff9866;font-weight:700;font-size:.92rem;}
.hero-kicker-line{width:38px;height:2px;border-radius:9px;background:var(--orange);}
.hero-v2 h1{
  max-width:680px;
  margin:20px 0 22px;
  font-size:clamp(3rem,5.1vw,4.9rem);
  line-height:1.17;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.hero-v2 h1 em{color:#ff8952;position:relative;}
.hero-v2 h1 em::after{
  content:"";
  position:absolute;
  right:2px;
  left:5px;
  bottom:4px;
  height:8px;
  border-radius:50%;
  border-bottom:3px solid rgba(242,121,60,.38);
  transform:rotate(-1deg);
}
.hero-v2 p.lead{
  max-width:59ch;
  margin-bottom:30px;
  color:rgba(255,255,255,.72);
  font-size:1.08rem;
  line-height:1.95;
}
.hero-v2 .hero-actions{align-items:center;gap:12px;}
.hero-v2 .btn{padding:14px 23px;}
.hero-main-cta svg{transition:transform .25s ease;}
.hero-main-cta:hover svg{transform:translateX(-4px);}
.hero-proof-note{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:28px;
  color:rgba(255,255,255,.58);
  font-size:.9rem;
}
.hero-proof-note strong{color:#fff;font-weight:700;}
.proof-dot{width:8px;height:8px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 6px rgba(242,121,60,.10);flex:none;}

.hero-stage{position:relative;min-height:500px;display:flex;align-items:center;justify-content:center;perspective:1000px;}
.hero-photo-card{position:relative;width:min(440px,90%);transition:transform .35s ease;transform-style:preserve-3d;}
.hero-photo-frame{
  position:relative;
  aspect-ratio:4/5;
  border-radius:42px 42px 130px 42px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 42px 80px -36px rgba(0,0,0,.72);
  background:#24245e;
}
.hero-photo-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 54%,rgba(17,17,56,.34));
  pointer-events:none;
}
.hero-photo-frame img{width:100%;height:100%;object-fit:cover;object-position:center 35%;filter:saturate(.88) contrast(1.02);}
.hero-photo-card::before{
  content:"";
  position:absolute;
  width:82%;
  aspect-ratio:1;
  border-radius:50%;
  border:38px solid var(--orange);
  left:-72px;
  bottom:-58px;
  opacity:.95;
  z-index:-1;
}
.hero-photo-card::after{
  content:"";
  position:absolute;
  width:118px;
  height:118px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:30px;
  right:-34px;
  top:-30px;
  transform:rotate(16deg);
  z-index:-1;
}
.hero-student-chip{
  position:absolute;
  right:-34px;
  bottom:30px;
  display:flex;
  align-items:center;
  gap:11px;
  min-width:240px;
  padding:13px 15px;
  border-radius:18px;
  background:rgba(255,255,255,.96);
  color:var(--navy);
  box-shadow:0 18px 42px -24px rgba(0,0,0,.62);
}
.hero-student-chip .chip-icon{width:40px;height:40px;border-radius:13px;display:grid;place-items:center;background:rgba(242,121,60,.13);color:var(--orange);flex:none;}
.hero-student-chip span:last-child{display:flex;flex-direction:column;gap:2px;}
.hero-student-chip small{font-size:.72rem;color:#77738b;}
.hero-student-chip strong{font-family:var(--font-display);font-size:.9rem;}
.hero-mini-card{
  position:absolute;
  z-index:5;
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 14px;
  border-radius:17px;
  background:rgba(28,28,78,.84);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  box-shadow:0 20px 45px -28px #000;
}
.hero-mini-card .mini-icon{width:34px;height:34px;border-radius:11px;display:grid;place-items:center;background:rgba(242,121,60,.16);color:#ff9461;font-family:var(--font-eyebrow);font-weight:800;}
.hero-mini-card span:last-child{display:flex;flex-direction:column;}
.hero-mini-card small{font-size:.67rem;color:rgba(255,255,255,.55);}
.hero-mini-card strong{font-size:.78rem;color:#fff;}
.mini-card-top{top:52px;right:-8px;}
.mini-card-bottom{left:-24px;bottom:82px;}

.hero-trust{
  margin-top:58px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.045);
  border-radius:24px;
  overflow:hidden;
  backdrop-filter:blur(8px);
}
.hero-trust-item{display:flex;align-items:center;gap:12px;padding:19px 21px;position:relative;}
.hero-trust-item:not(:last-child)::after{content:"";position:absolute;left:0;top:22%;height:56%;width:1px;background:rgba(255,255,255,.09);}
.hero-trust-item .trust-icon{width:41px;height:41px;border-radius:13px;display:grid;place-items:center;background:rgba(242,121,60,.11);color:var(--orange);flex:none;}
.hero-trust-item>span:last-child{display:flex;flex-direction:column;gap:2px;}
.hero-trust-item b{font-size:.9rem;color:#fff;}
.hero-trust-item small{font-size:.73rem;color:rgba(255,255,255,.52);}
.hero-trust-item .stat-num{font-size:inherit;color:inherit;}

.hero-brand-mark{position:absolute;left:4.5%;top:25%;width:220px;color:#fff;opacity:.035;transform:rotate(-10deg);z-index:0;}
.hero-orbit{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.07);pointer-events:none;}
.hero-orbit-a{width:420px;height:420px;left:-260px;top:90px;}
.hero-orbit-b{width:260px;height:260px;right:-120px;bottom:55px;border-color:rgba(242,121,60,.13);}
.hero-scroll-cue{position:absolute;z-index:4;bottom:22px;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:7px;color:rgba(255,255,255,.47);font-size:.75rem;transition:color .2s ease;}
.hero-scroll-cue:hover{color:#fff;}
.hero-scroll-cue svg{animation:heroBounce 1.9s ease-in-out infinite;}

.hero-enter{opacity:0;transform:translateY(18px);animation:heroEnter .75s cubic-bezier(.22,.72,.27,1) forwards;}
.hero-enter-1{animation-delay:.08s;}
.hero-enter-2{animation-delay:.18s;}
.hero-enter-3{animation-delay:.32s;}
@keyframes heroEnter{to{opacity:1;transform:none;}}
@keyframes heroBounce{0%,100%{transform:translateY(0)}50%{transform:translateY(4px)}}

@media (max-width:1050px){
  .hero-v2-grid{gap:38px;}
  .hero-v2 h1{font-size:clamp(2.7rem,5vw,4rem);}
  .hero-stage{min-height:440px;}
  .hero-photo-card{width:min(380px,88%);}
  .hero-trust-item{padding:17px 14px;}
}
@media (max-width:900px){
  .site-header{padding:12px 0;}
  .nav-shell{padding-inline:14px;}
  .nav-pill{min-height:60px;background:rgba(27,27,78,.94);padding:6px 8px 6px 14px;}
  .brand img{width:38px;height:38px;}
  .brand-text b{font-size:.8rem;}
  .nav-links{inset-inline:14px;top:calc(100% + 8px);background:rgba(27,27,78,.98);border:1px solid rgba(255,255,255,.08);}
  .hero-v2{padding:110px 0 58px;min-height:auto;}
  .hero-v2-grid{grid-template-columns:1fr;gap:30px;}
  .hero-copy{text-align:center;padding-top:0;}
  .hero-kicker{justify-content:center;}
  .hero-v2 h1{margin-inline:auto;font-size:clamp(2.55rem,9vw,4rem);}
  .hero-v2 p.lead{margin-inline:auto;}
  .hero-v2 .hero-actions{justify-content:center;}
  .hero-proof-note{justify-content:center;}
  .hero-stage{order:-1;min-height:360px;}
  .hero-photo-card{width:min(330px,72vw);}
  .hero-photo-card::before{border-width:27px;left:-50px;bottom:-38px;}
  .hero-student-chip{right:-22px;bottom:20px;min-width:210px;padding:10px 12px;}
  .mini-card-top{top:24px;right:7%;}
  .mini-card-bottom{left:7%;bottom:46px;}
  .hero-trust{grid-template-columns:repeat(2,1fr);margin-top:42px;}
  .hero-trust-item:nth-child(2)::after{display:none;}
  .hero-trust-item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.08);}
  .hero-scroll-cue{display:none;}
}
@media (max-width:560px){
  .container{padding-inline:18px;}
  .brand-text span{display:none;}
  .hero-v2{padding-top:96px;}
  .hero-stage{min-height:330px;margin-bottom:6px;}
  .hero-photo-card{width:min(288px,74vw);}
  .hero-photo-frame{border-radius:30px 30px 94px 30px;}
  .hero-mini-card{display:none;}
  .hero-student-chip{right:50%;transform:translateX(50%);bottom:-18px;min-width:235px;justify-content:center;}
  .hero-v2 h1{font-size:clamp(2.25rem,11vw,3.05rem);line-height:1.21;margin-top:18px;}
  .hero-v2 p.lead{font-size:.98rem;line-height:1.85;}
  .hero-v2 .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-v2 .btn{width:100%;}
  .hero-proof-note{align-items:flex-start;text-align:right;font-size:.82rem;}
  .hero-trust{grid-template-columns:1fr;border-radius:20px;}
  .hero-trust-item{padding:14px 16px;}
  .hero-trust-item::after{display:none!important;}
  .hero-trust-item:not(:last-child){border-bottom:1px solid rgba(255,255,255,.08);}
  .hero-trust-item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.08);}
}

/* =========================================================
   Homepage V1.2 — header + hero polish only
   ========================================================= */
.site-header{
  padding:18px 0;
}
.nav-shell{
  max-width:1280px;
}
.nav-pill{
  min-height:72px;
  padding:7px 9px 7px 20px;
  border-color:rgba(255,255,255,.10);
  background:rgba(17,17,58,.64);
  box-shadow:0 18px 45px -32px rgba(0,0,0,.72);
}
.brand{
  gap:11px;
}
.brand img{
  width:46px;
  height:46px;
  border-radius:0;
}
.brand-text b{
  font-size:.96rem;
  letter-spacing:.055em;
}
.brand-text span{
  margin-top:2px;
  color:rgba(255,255,255,.55);
}
.nav-links{
  gap:5px;
}
.nav-links a{
  position:relative;
  padding:10px 14px;
  font-size:.92rem;
}
.nav-links a::before{
  content:"";
  position:absolute;
  right:50%;
  bottom:4px;
  width:0;
  height:2px;
  border-radius:99px;
  background:var(--orange);
  transform:translateX(50%);
  transition:width .22s ease;
}
.nav-links a:hover::before{width:16px;}
.nav-links a.active{
  background:rgba(255,255,255,.065);
  box-shadow:inset 0 0 0 1px rgba(242,121,60,.22);
}
.nav-links a.active::before{width:20px;}
.nav-links a.active::after{display:none;}
.nav-cta .btn{
  padding:11px 23px;
  box-shadow:0 12px 25px -16px rgba(242,121,60,.85);
}
.site-header.scrolled .nav-pill{
  background:rgba(22,22,67,.97);
  box-shadow:0 16px 38px -24px rgba(8,8,33,.72);
}
.site-header.scrolled .brand img{
  width:42px;
  height:42px;
}

.hero-v2{
  min-height:748px;
  padding:136px 0 70px;
  background:
    radial-gradient(circle at 22% 31%, rgba(110,109,161,.17), transparent 26%),
    radial-gradient(circle at 83% 15%, rgba(242,121,60,.085), transparent 22%),
    linear-gradient(135deg,#171744 0%,#1d1d55 50%,#171744 100%);
}
.hero-v2-grid{
  grid-template-columns:1.04fr .96fr;
  gap:82px;
}
.hero-copy{
  padding-top:2px;
}
.hero-kicker{
  font-size:.88rem;
  letter-spacing:.005em;
}
.hero-kicker-line{
  width:30px;
}
.hero-v2 h1{
  max-width:650px;
  margin:18px 0 20px;
  font-size:clamp(2.85rem,4.55vw,4.35rem);
  line-height:1.14;
  letter-spacing:-.028em;
}
.hero-v2 h1 em{
  display:inline-block;
}
.hero-v2 h1 em::after{
  bottom:2px;
  height:6px;
  border-bottom-width:2px;
  opacity:.75;
}
.hero-future{
  display:block;
  margin-top:2px;
  font-size:.72em;
  font-weight:800;
  letter-spacing:-.018em;
  color:rgba(255,255,255,.94);
}
.hero-v2 p.lead{
  max-width:57ch;
  margin-bottom:27px;
  font-size:1.02rem;
  line-height:1.9;
  color:rgba(255,255,255,.69);
}
.hero-v2 .btn{
  min-height:52px;
  padding:13px 22px;
}
.hero-v2 .btn-outline{
  border-color:rgba(255,255,255,.30);
  background:rgba(255,255,255,.025);
}
.hero-v2 .btn-outline:hover{
  border-color:rgba(255,255,255,.58);
  background:rgba(255,255,255,.08);
}
.hero-proof-note{
  margin-top:23px;
  font-size:.86rem;
  color:rgba(255,255,255,.53);
}

.hero-stage{
  min-height:478px;
}
.hero-photo-card{
  width:min(420px,89%);
}
.hero-photo-frame{
  border-radius:38px 38px 112px 38px;
  box-shadow:0 38px 72px -38px rgba(0,0,0,.78);
}
.hero-photo-frame img{
  object-position:center 36%;
  filter:saturate(.92) contrast(1.025);
}
.hero-photo-card::before{
  width:76%;
  border-width:30px;
  left:-58px;
  bottom:-48px;
  opacity:.92;
}
.hero-photo-card::after{
  width:104px;
  height:104px;
  right:-24px;
  top:-24px;
  border-color:rgba(255,255,255,.15);
  border-radius:26px;
}
.hero-student-chip{
  right:-14px;
  bottom:24px;
  min-width:222px;
  padding:11px 13px;
  border-radius:16px;
}
.hero-student-chip .chip-icon{
  width:37px;
  height:37px;
  border-radius:11px;
}
.hero-student-chip small{font-size:.68rem;}
.hero-student-chip strong{font-size:.86rem;}
.hero-mini-card{
  padding:9px 11px;
  border-radius:15px;
  background:rgba(23,23,67,.86);
}
.hero-mini-card .mini-icon{
  width:31px;
  height:31px;
  border-radius:10px;
  font-size:.82rem;
}
.hero-mini-card small{font-size:.63rem;}
.hero-mini-card strong{font-size:.74rem;}
.mini-card-bottom{
  left:-10px;
  bottom:90px;
}

.hero-trust{
  margin-top:44px;
  border-radius:20px;
  background:rgba(255,255,255,.038);
}
.hero-trust-item{
  gap:10px;
  padding:16px 18px;
}
.hero-trust-item .trust-icon{
  width:38px;
  height:38px;
  border-radius:12px;
}
.hero-trust-item b{font-size:.86rem;}
.hero-trust-item small{font-size:.69rem;}
.hero-scroll-cue{
  bottom:14px;
  font-size:.71rem;
}

@media (max-width:1050px){
  .hero-v2-grid{gap:44px;}
  .hero-v2 h1{font-size:clamp(2.65rem,4.8vw,3.8rem);}
  .hero-photo-card{width:min(380px,88%);}
  .hero-stage{min-height:430px;}
}
@media (max-width:900px){
  .site-header{padding:11px 0;}
  .nav-pill{min-height:62px;}
  .brand img{width:40px;height:40px;}
  .hero-v2{padding:106px 0 58px;}
  .hero-v2-grid{gap:28px;}
  .hero-stage{min-height:350px;}
  .hero-photo-card{width:min(320px,70vw);}
  .hero-photo-card::before{border-width:24px;left:-40px;bottom:-34px;}
  .hero-student-chip{right:-10px;bottom:16px;}
  .mini-card-bottom{left:6%;bottom:55px;}
  .hero-trust{margin-top:38px;}
}
@media (max-width:560px){
  .hero-v2{padding-top:92px;}
  .hero-stage{min-height:316px;}
  .hero-photo-card{width:min(278px,73vw);}
  .hero-photo-frame{border-radius:28px 28px 82px 28px;}
  .hero-photo-card::before{width:72%;border-width:20px;left:-28px;bottom:-28px;}
  .hero-student-chip{right:50%;transform:translateX(50%);bottom:-18px;min-width:228px;}
  .hero-v2 h1{font-size:clamp(2.15rem,10.6vw,2.85rem);line-height:1.18;}
  .hero-future{font-size:.74em;margin-top:4px;}
  .hero-v2 p.lead{font-size:.95rem;line-height:1.82;}
  .hero-proof-note{font-size:.79rem;}
}

/* ===== Stage 1 V1.3: user review refinements ===== */
/* Brand: make the header identity orange against the navy hero. */
.site-header .brand-text b{color:var(--orange);}
.site-header .brand img{
  filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(2600%) hue-rotate(338deg) brightness(104%) contrast(101%);
}

/* Motivational English copy: decorative, readable, and deliberately quiet. */
.hero-motivation{
  position:absolute;
  left:clamp(34px,5vw,88px);
  top:clamp(165px,23vh,245px);
  z-index:2;
  width:min(270px,20vw);
  min-height:74px;
  direction:ltr;
  text-align:left;
  pointer-events:none;
  color:var(--orange);
  font-family:var(--font-eyebrow);
}
.hero-motivation::before{
  content:"";
  display:block;
  width:42px;
  height:2px;
  margin-bottom:12px;
  background:var(--orange);
  opacity:.75;
}
.hero-motivation-line{
  position:absolute;
  left:0;
  top:14px;
  max-width:100%;
  font-size:clamp(.95rem,1.25vw,1.22rem);
  line-height:1.45;
  font-weight:600;
  letter-spacing:.015em;
  opacity:0;
  transform:translateY(10px);
  animation:arkanMotivation 8s ease-in-out infinite;
}
.hero-motivation-line:nth-child(2){animation-delay:4s;}
@keyframes arkanMotivation{
  0%,7%{opacity:0;transform:translateY(10px)}
  14%,43%{opacity:1;transform:translateY(0)}
  50%,100%{opacity:0;transform:translateY(-8px)}
}

/* Scroll cue must read as an actual invitation, not tiny helper text. */
.hero-scroll-cue{
  bottom:10px;
  gap:7px;
  padding:8px 15px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.78);
  font-size:.84rem;
  font-weight:700;
  backdrop-filter:blur(8px);
  transition:background .25s ease,color .25s ease,border-color .25s ease;
}
.hero-scroll-cue:hover{
  color:#fff;
  background:rgba(247,117,51,.12);
  border-color:rgba(247,117,51,.42);
}
.hero-scroll-cue svg{color:var(--orange);animation:arkanCue 1.7s ease-in-out infinite;}
@keyframes arkanCue{0%,100%{transform:translateY(0)}50%{transform:translateY(4px)}}

/* Real WhatsApp glyph + a restrained attention pulse. */
.wa-float svg{width:29px;height:29px;}
.wa-float{overflow:visible;}
.wa-float::after{
  content:"";
  position:absolute;
  inset:-5px;
  border:1px solid rgba(37,211,102,.42);
  border-radius:50%;
  animation:waPulse 2.4s ease-out infinite;
  pointer-events:none;
}
@keyframes waPulse{0%{transform:scale(.86);opacity:.75}70%,100%{transform:scale(1.25);opacity:0}}

@media (max-width:1180px){.hero-motivation{left:26px;width:185px;opacity:.75;}}
@media (max-width:980px){.hero-motivation{display:none;}}
@media (prefers-reduced-motion:reduce){
  .hero-motivation-line{animation:none;opacity:0;transform:none;}
  .hero-motivation-line:first-child{opacity:1;}
  .hero-scroll-cue svg,.wa-float::after{animation:none;}
}


/* ===== Stage 1 V1.4: exact logo mark + handwritten motivation ===== */
/* Keep the original Arkan geometric mark, only recolored to brand orange. */
.site-header .brand img{
  filter:none;
  object-fit:contain;
  background:transparent;
}
.site-header .brand-text b{color:var(--orange);}

/* Handwritten English motivation inspired by the approved visual direction. */
.hero-motivation{
  width:min(310px,22vw);
  min-height:100px;
  font-family:"Segoe Script","Segoe Print","Bradley Hand","Lucida Handwriting",cursive;
}
.hero-motivation::before{
  width:34px;
  height:2px;
  margin-bottom:14px;
  opacity:.55;
}
.hero-motivation-line{
  top:12px;
  font-size:clamp(1.15rem,1.65vw,1.65rem);
  line-height:1.38;
  font-weight:600;
  letter-spacing:.01em;
  text-wrap:balance;
  text-shadow:0 8px 24px rgba(247,117,51,.12);
  animation:arkanMotivationV14 12s cubic-bezier(.4,0,.2,1) infinite;
}
.hero-motivation-line:nth-child(2){animation-delay:4s;}
.hero-motivation-line:nth-child(3){animation-delay:8s;}
@keyframes arkanMotivationV14{
  0%,5%{opacity:0;transform:translateY(10px) rotate(-1deg)}
  11%,28%{opacity:1;transform:translateY(0) rotate(-1deg)}
  33%,100%{opacity:0;transform:translateY(-8px) rotate(-1deg)}
}
@media (max-width:1180px){
  .hero-motivation{width:220px;}
  .hero-motivation-line{font-size:1.2rem;}
}
@media (prefers-reduced-motion:reduce){
  .hero-motivation-line{animation:none;opacity:0;transform:none;}
  .hero-motivation-line:first-child{opacity:1;}
}

/* =========================================================
   Stage 1 V1.5 — Mobile-first hero repair
   Desktop/tablet >= 901px intentionally untouched.
   ========================================================= */
@media (max-width:900px){
  html,body{max-width:100%;overflow-x:hidden;}
  .hero-v2{overflow:hidden;}
  .hero-v2-container{width:100%;max-width:100%;}
  .hero-v2-grid{
    grid-template-columns:minmax(0,1fr);
    gap:32px;
    width:100%;
  }
  .hero-copy,
  .hero-stage{min-width:0;width:100%;}

  /* On mobile the sales message comes first; the visual supports it below. */
  .hero-copy{order:1;}
  .hero-stage{order:2;}
  .hero-trust{order:3;}

  .hero-v2 h1,
  .hero-v2 p.lead{max-width:100%;}
  .hero-v2 h1{overflow-wrap:normal;word-break:normal;}
  .hero-v2 .hero-actions{width:100%;}

  .hero-photo-card,
  .hero-photo-card::before,
  .hero-photo-card::after,
  .hero-student-chip{box-sizing:border-box;}
  .hero-photo-card::after{right:-8px;}

  .wa-float{
    left:16px;
    bottom:18px;
    width:52px;
    height:52px;
  }
  .wa-float svg{width:26px;height:26px;}
}

@media (max-width:560px){
  .site-header{padding:10px 0;}
  .nav-shell{padding-inline:12px;}
  .nav-pill{
    min-height:58px;
    width:100%;
    padding:6px 8px;
    border-radius:22px;
  }
  .brand{gap:8px;padding:2px;}
  .brand img{width:34px!important;height:34px!important;border-radius:0;}
  .brand-text b{font-size:.76rem;letter-spacing:.02em;white-space:nowrap;}
  .nav-toggle{width:40px;height:40px;flex:none;}
  .nav-links{inset-inline:12px;top:calc(100% + 7px);}

  .hero-v2{
    min-height:auto;
    padding:146px 0 48px;
  }
  .hero-v2::before{opacity:.075;background-size:24px 24px;}
  .hero-orbit-a{width:250px;height:250px;left:-185px;top:110px;}
  .hero-orbit-b{width:170px;height:170px;right:-115px;bottom:160px;}
  .hero-brand-mark{width:118px;left:-28px;top:48%;opacity:.025;}

  /* Keep the approved English micro-copy, but make it compact and safe. */
  .hero-motivation{
    display:block;
    position:absolute;
    top:92px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 64px);
    min-height:36px;
    text-align:center;
    z-index:4;
  }
  .hero-motivation::before{display:none;}
  .hero-motivation-line{
    top:0;
    left:0;
    width:100%;
    max-width:none;
    font-size:.98rem;
    line-height:1.35;
    text-align:center;
    white-space:normal;
  }

  .hero-v2-grid{gap:28px;}
  .hero-copy{text-align:center;padding:0;}
  .hero-kicker{justify-content:center;gap:9px;font-size:.76rem;}
  .hero-kicker-line{width:22px;}
  .hero-v2 h1{
    margin:14px auto 14px;
    font-size:clamp(2.05rem,10.2vw,2.55rem);
    line-height:1.17;
    letter-spacing:-.02em;
    text-wrap:balance;
  }
  .hero-v2 h1 em{display:inline;}
  .hero-v2 h1 em::after{height:4px;bottom:0;}
  .hero-future{
    margin-top:2px;
    font-size:.72em;
    line-height:1.2;
  }
  .hero-v2 p.lead{
    margin:0 auto 20px;
    font-size:.89rem;
    line-height:1.78;
    color:rgba(255,255,255,.7);
  }
  .hero-v2 .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-inline:auto;
    max-width:330px;
  }
  .hero-v2 .btn{
    width:100%;
    min-height:48px;
    padding:12px 16px;
    justify-content:center;
    font-size:.88rem;
  }
  .hero-proof-note{
    justify-content:center;
    align-items:center;
    max-width:330px;
    margin:17px auto 0;
    text-align:center;
    font-size:.74rem;
    line-height:1.6;
  }

  .hero-stage{
    min-height:322px;
    margin:0;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:4px;
  }
  .hero-photo-card{
    width:min(270px,72vw);
    max-width:270px;
    margin-inline:auto;
  }
  .hero-photo-frame{
    aspect-ratio:4/5;
    border-radius:26px 26px 72px 26px;
  }
  .hero-photo-frame img{object-position:center 34%;}
  .hero-photo-card::before{
    width:70%;
    left:-24px;
    bottom:-23px;
    border-width:18px;
  }
  .hero-photo-card::after{
    width:66px;
    height:66px;
    right:-4px;
    top:-12px;
    border-radius:18px;
  }
  .hero-mini-card{display:none!important;}
  .hero-student-chip{
    right:50%;
    bottom:-17px;
    transform:translateX(50%);
    width:min(230px,82vw);
    min-width:0;
    padding:9px 11px;
    gap:8px;
    border-radius:14px;
    justify-content:center;
  }
  .hero-student-chip .chip-icon{width:34px;height:34px;border-radius:10px;}
  .hero-student-chip small{font-size:.62rem;}
  .hero-student-chip strong{font-size:.76rem;white-space:nowrap;}

  .hero-trust{
    grid-template-columns:repeat(2,minmax(0,1fr));
    margin-top:14px;
    border-radius:18px;
  }
  .hero-trust-item{
    min-width:0;
    gap:8px;
    padding:12px 10px;
  }
  .hero-trust-item::after{display:none!important;}
  .hero-trust-item:nth-child(odd){border-left:1px solid rgba(255,255,255,.08);}
  .hero-trust-item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.08);}
  .hero-trust-item .trust-icon{width:34px;height:34px;border-radius:10px;}
  .hero-trust-item .trust-icon svg{width:16px;height:16px;}
  .hero-trust-item b{font-size:.72rem;line-height:1.35;}
  .hero-trust-item small{font-size:.59rem;line-height:1.4;}

  .hero-scroll-cue{display:none!important;}
}

@media (max-width:370px){
  .hero-v2{padding-top:142px;}
  .brand-text b{font-size:.7rem;}
  .hero-v2 h1{font-size:1.95rem;}
  .hero-photo-card{width:248px;max-width:70vw;}
  .hero-student-chip{width:214px;}
  .hero-student-chip strong{font-size:.71rem;}
  .hero-trust-item{padding:11px 8px;}
  .hero-trust-item b{font-size:.68rem;}
}

/* =========================================================
   Homepage — Why Arkan (stage 1 / v1.6)
   ========================================================= */
.why-arkan{
  background:
    radial-gradient(circle at 12% 16%, rgba(242,121,60,.11), transparent 22%),
    linear-gradient(180deg, #fffaf5 0%, var(--paper) 100%);
  overflow:hidden;
  isolation:isolate;
}
.why-arkan::before{
  content:"WHY ARKAN";
  position:absolute;
  inset-inline-start:-18px;
  top:32px;
  font-family:var(--font-eyebrow);
  font-size:clamp(4rem,9vw,8.5rem);
  font-weight:800;
  letter-spacing:.04em;
  color:rgba(27,27,78,.035);
  direction:ltr;
  pointer-events:none;
  z-index:-1;
}
.why-orbit{position:absolute;border:1px solid rgba(27,27,78,.075);border-radius:50%;pointer-events:none;z-index:-1}
.why-orbit-1{width:340px;height:340px;right:-210px;bottom:-150px}
.why-orbit-2{width:170px;height:170px;left:6%;top:10%}
.why-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:76px;align-items:center}
.why-content h2{font-size:clamp(2rem,3.1vw,3.05rem);font-weight:900;max-width:13ch;margin:16px 0 20px}
.why-content h2 span{color:var(--orange)}
.why-intro{max-width:61ch;color:var(--ink-soft);font-size:1.04rem;line-height:1.95}
.why-points{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:30px}
.why-point{
  appearance:none;width:100%;border:1px solid rgba(27,27,78,.09);background:rgba(255,255,255,.78);
  min-height:92px;padding:15px 16px;border-radius:20px;display:grid;grid-template-columns:auto auto 1fr auto;
  gap:11px;align-items:center;text-align:right;color:var(--navy);box-shadow:0 12px 30px -24px rgba(27,27,78,.35);
  transition:transform .25s ease,border-color .25s ease,background .25s ease,box-shadow .25s ease,color .25s ease;
}
.why-point:hover{transform:translateY(-3px);border-color:rgba(242,121,60,.35);box-shadow:0 20px 38px -25px rgba(27,27,78,.38)}
.why-point.active{background:var(--navy);border-color:var(--navy);color:#fff;box-shadow:0 24px 48px -28px rgba(27,27,78,.6)}
.why-num{font-family:var(--font-eyebrow);font-size:.68rem;font-weight:700;opacity:.45;align-self:start;margin-top:4px}
.why-point-icon{width:42px;height:42px;border-radius:13px;background:rgba(242,121,60,.12);color:var(--orange);display:flex;align-items:center;justify-content:center;transition:.25s}
.why-point.active .why-point-icon{background:var(--orange);color:#fff}
.why-point-text{display:flex;flex-direction:column;gap:3px;min-width:0}
.why-point-text b{font-size:.98rem}
.why-point-text small{font-size:.78rem;color:var(--ink-soft);line-height:1.5}
.why-point.active .why-point-text small{color:rgba(255,255,255,.65)}
.why-arrow{font-size:1.05rem;color:var(--orange);opacity:0;transform:translate(4px,-4px);transition:.25s}
.why-point.active .why-arrow{opacity:1;transform:none}
.why-live{margin-top:15px;display:flex;align-items:flex-start;gap:10px;padding:13px 16px;border-right:3px solid var(--orange);background:rgba(242,121,60,.07);border-radius:14px}
.why-live-dot{width:8px;height:8px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 5px rgba(242,121,60,.12);margin-top:8px;flex:none}
.why-live b{display:block;color:var(--navy);font-size:.9rem;margin-bottom:3px}
.why-live p{color:var(--ink-soft);font-size:.84rem;line-height:1.6}
.why-link{display:inline-flex;align-items:center;gap:10px;margin-top:24px;color:var(--navy);font-weight:800;border-bottom:1px solid rgba(27,27,78,.2);padding-bottom:5px;transition:.2s}
.why-link:hover{color:var(--orange);border-color:var(--orange);gap:14px}
.why-visual{position:relative;min-height:560px}
.why-photo-wrap{position:absolute;inset:28px 0 28px 54px;border-radius:42px 42px 150px 42px;overflow:hidden;background:var(--navy);box-shadow:0 32px 65px -42px rgba(27,27,78,.55)}
.why-photo-wrap img{width:100%;height:100%;object-fit:cover;filter:grayscale(1);transition:filter .55s ease,transform .65s ease}
.why-visual:hover .why-photo-wrap img{filter:grayscale(.25);transform:scale(1.025)}
.why-photo-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(27,27,78,.78) 0%,rgba(27,27,78,.08) 48%,transparent 70%)}
.why-photo-caption{position:absolute;bottom:30px;right:30px;color:#fff;display:flex;flex-direction:column;gap:5px}
.why-photo-caption small{font-size:.78rem;color:rgba(255,255,255,.65)}
.why-photo-caption strong{font-family:var(--font-display);font-size:1.22rem}
.why-seal{position:absolute;top:0;right:-22px;width:128px;height:128px;border-radius:50%;background:var(--orange);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 18px 38px -22px rgba(214,94,36,.7);transform:rotate(6deg);direction:ltr}
.why-seal span,.why-seal b{font-family:var(--font-eyebrow);line-height:1}
.why-seal span{font-size:.72rem;letter-spacing:.16em}.why-seal b{font-size:1.02rem;margin-top:5px}.why-seal small{font-family:var(--font-eyebrow);font-size:.42rem;letter-spacing:.06em;margin-top:8px;opacity:.8}
.why-quote{position:absolute;left:0;bottom:0;width:255px;background:#fff;border:1px solid rgba(27,27,78,.07);border-radius:22px;padding:19px 22px 18px;box-shadow:var(--shadow-soft);z-index:2}
.why-quote-mark{position:absolute;left:18px;top:-13px;color:var(--orange);font-family:Georgia,serif;font-size:3rem;line-height:1}
.why-quote p{font-size:.9rem;line-height:1.65;color:var(--navy);font-weight:700;padding-left:15px}

@media (max-width: 980px){
  .why-grid{grid-template-columns:1fr;gap:44px}
  .why-content h2{max-width:18ch}
  .why-visual{min-height:500px;max-width:650px;width:100%;margin-inline:auto}
}
@media (max-width: 640px){
  .why-arkan{padding:72px 0 78px}
  .why-arkan::before{font-size:3.6rem;top:30px;inset-inline-start:-8px}
  .why-grid{gap:32px}
  .why-content{text-align:right}
  .why-content h2{font-size:1.9rem;line-height:1.35;margin-top:12px;max-width:none}
  .why-intro{font-size:.95rem;line-height:1.85}
  .why-points{grid-template-columns:1fr;gap:10px;margin-top:24px}
  .why-point{min-height:82px;border-radius:17px;padding:13px 14px;grid-template-columns:auto auto 1fr auto}
  .why-point-icon{width:39px;height:39px}
  .why-live{margin-top:12px}
  .why-link{margin-top:20px}
  .why-visual{min-height:420px;margin-top:4px}
  .why-photo-wrap{inset:18px 0 26px 22px;border-radius:30px 30px 105px 30px}
  .why-photo-caption{right:20px;bottom:22px}
  .why-photo-caption strong{font-size:1.05rem}
  .why-seal{width:96px;height:96px;right:-4px;top:0}
  .why-seal span{font-size:.57rem}.why-seal b{font-size:.8rem}.why-seal small{font-size:.32rem;margin-top:5px}
  .why-quote{left:0;bottom:0;width:210px;border-radius:18px;padding:15px 17px}
  .why-quote p{font-size:.8rem;padding-left:8px}
}

/* =========================================================
   Homepage V1.7 — Interactive programs showcase
   ========================================================= */
.programs-showcase{
  position:relative;
  overflow:hidden;
  background:#f3eee5;
  padding-top:96px;
  padding-bottom:104px;
}
.programs-showcase::after{
  content:"";
  position:absolute;
  width:340px;height:340px;
  border:1px solid rgba(29,30,83,.09);
  border-radius:50%;
  inset-inline-end:-170px;
  bottom:70px;
  pointer-events:none;
}
.programs-watermark{
  position:absolute;
  top:42px;
  inset-inline-start:2vw;
  color:rgba(29,30,83,.035);
  font-size:clamp(4.2rem,10vw,9.5rem);
  font-weight:900;
  letter-spacing:.02em;
  line-height:1;
  pointer-events:none;
  user-select:none;
}
.programs-intro{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 190px;
  align-items:end;
  gap:56px;
  margin-bottom:36px;
  z-index:1;
}
.programs-intro-copy{max-width:760px}
.programs-intro h2{
  max-width:690px;
  margin:10px 0 16px;
  font-size:clamp(2rem,3.55vw,3.35rem);
  line-height:1.22;
  letter-spacing:-.025em;
}
.programs-intro h2 span{color:var(--orange)}
.programs-lead{
  max-width:720px;
  color:var(--ink-soft);
  line-height:1.95;
  font-size:1.02rem;
}
.programs-summary{
  min-height:164px;
  border-radius:28px;
  background:var(--navy);
  color:#fff;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
}
.programs-summary::before{
  content:"";
  position:absolute;
  width:96px;height:96px;
  border:22px solid rgba(242,121,60,.22);
  border-radius:50%;
  top:-38px;inset-inline-start:-24px;
}
.programs-summary strong{
  font-size:3rem;
  line-height:1;
  color:var(--orange);
  margin-bottom:5px;
}
.programs-summary span{font-weight:800;font-size:1rem}
.programs-summary small{color:rgba(255,255,255,.62);margin-top:5px}
.program-filter{
  position:relative;
  z-index:2;
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  padding:9px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(29,30,83,.08);
  border-radius:24px;
  width:max-content;
  max-width:100%;
  margin-bottom:28px;
  backdrop-filter:blur(8px);
}
.program-filter-btn{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--navy);
  min-height:44px;
  padding:8px 14px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:9px;
  font:inherit;
  font-weight:750;
  cursor:pointer;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.program-filter-btn b{
  min-width:24px;height:24px;
  display:grid;place-items:center;
  border-radius:999px;
  font-size:.72rem;
  background:rgba(29,30,83,.08);
  color:var(--ink-soft);
  transition:.25s ease;
}
.program-filter-btn:hover{background:#fff;transform:translateY(-1px)}
.program-filter-btn.active{background:var(--navy);color:#fff}
.program-filter-btn.active b{background:var(--orange);color:#fff}
.programs-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.program-tile{
  --tile-border:rgba(29,30,83,.1);
  position:relative;
  min-height:350px;
  padding:24px;
  border-radius:26px;
  border:1px solid var(--tile-border);
  background:rgba(255,255,255,.86);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.75,.2,1),box-shadow .35s ease,border-color .35s ease,opacity .25s ease;
  transition-delay:var(--program-delay,0ms);
}
.program-tile::before{
  content:"";
  position:absolute;
  inset-inline-start:0;
  top:0;
  width:4px;
  height:0;
  background:var(--orange);
  transition:height .35s ease;
}
.program-tile::after{
  content:"";
  position:absolute;
  width:120px;height:120px;
  border-radius:50%;
  border:24px solid rgba(242,121,60,.055);
  inset-inline-end:-58px;
  bottom:-62px;
  pointer-events:none;
}
.program-tile:hover{
  transform:translateY(-7px);
  border-color:rgba(242,121,60,.36);
  box-shadow:0 24px 52px rgba(29,30,83,.12);
}
.program-tile:hover::before{height:100%}
.program-tile.is-hidden{display:none}
.program-tile-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:20px}
.program-index{font-size:.72rem;font-weight:800;color:rgba(29,30,83,.42);letter-spacing:.08em}
.program-category{
  font-size:.78rem;
  font-weight:800;
  color:var(--orange-dark);
  background:rgba(242,121,60,.1);
  padding:7px 11px;
  border-radius:999px;
}
.program-icon-wrap{
  width:54px;height:54px;
  border-radius:17px;
  display:grid;place-items:center;
  background:var(--navy);
  color:var(--orange);
  margin-bottom:20px;
  transition:transform .3s ease,background .3s ease,color .3s ease;
}
.program-icon-wrap svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.program-tile:hover .program-icon-wrap{transform:rotate(-5deg) scale(1.06);background:var(--orange);color:#fff}
.program-title-wrap{margin-bottom:13px}
.program-en{display:block;color:rgba(29,30,83,.43);font-size:.72rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;margin-bottom:4px}
.program-title-wrap h3{font-size:1.12rem;line-height:1.55;margin:0;color:var(--navy)}
.program-audience{
  display:flex;
  gap:8px;
  align-items:flex-start;
  color:var(--ink-soft);
  font-size:.84rem;
  line-height:1.7;
  margin:0 0 10px;
}
.program-audience span{color:var(--navy);font-weight:800;white-space:nowrap}
.program-goal{color:var(--ink-soft);line-height:1.75;font-size:.9rem;margin:0 0 20px}
.program-link{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid rgba(29,30,83,.08);
  padding-top:16px;
  color:var(--navy);
  font-weight:800;
  text-decoration:none;
}
.program-link svg,.programs-all-btn svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s ease}
.program-link:hover svg,.programs-all-btn:hover svg{transform:translateX(-4px)}
.programs-bottom{
  position:relative;
  z-index:1;
  margin-top:28px;
  padding:24px 26px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(29,30,83,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.programs-bottom p{margin:0;display:flex;flex-direction:column;gap:3px}
.programs-bottom p b{color:var(--navy);font-size:1rem}
.programs-bottom p span{color:var(--ink-soft);font-size:.9rem}
.programs-all-btn{display:inline-flex;align-items:center;gap:10px;white-space:nowrap}
@media (max-width:1050px){
  .programs-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:760px){
  .programs-showcase{padding:72px 0 78px}
  .programs-showcase::after{width:220px;height:220px;inset-inline-end:-130px;bottom:40px}
  .programs-watermark{top:34px;font-size:4rem}
  .programs-intro{grid-template-columns:1fr;gap:22px;margin-bottom:28px}
  .programs-intro h2{font-size:2.05rem;line-height:1.28}
  .programs-lead{font-size:.94rem;line-height:1.85}
  .programs-summary{
    min-height:auto;
    padding:17px 20px;
    border-radius:20px;
    flex-direction:row;
    align-items:baseline;
    justify-content:flex-start;
    gap:8px;
  }
  .programs-summary strong{font-size:2.2rem;margin:0}
  .programs-summary small{margin-inline-start:auto}
  .program-filter{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto;
    scrollbar-width:none;
    padding:7px;
    border-radius:19px;
    margin-bottom:20px;
  }
  .program-filter::-webkit-scrollbar{display:none}
  .program-filter-btn{flex:0 0 auto;min-height:41px;padding:7px 12px;border-radius:14px;font-size:.88rem}
  .programs-grid{grid-template-columns:1fr;gap:14px}
  .program-tile{min-height:auto;padding:20px;border-radius:22px}
  .program-tile-top{margin-bottom:15px}
  .program-icon-wrap{width:48px;height:48px;border-radius:15px;margin-bottom:15px}
  .program-title-wrap h3{font-size:1.05rem}
  .programs-bottom{align-items:stretch;flex-direction:column;padding:20px;border-radius:22px}
  .programs-all-btn{width:100%;justify-content:center}
}
@media (max-width:420px){
  .programs-intro h2{font-size:1.82rem}
  .programs-summary small{display:none}
  .program-filter-btn b{min-width:22px;height:22px}
}
@media (prefers-reduced-motion:reduce){
  .program-tile,.program-icon-wrap,.program-link svg,.programs-all-btn svg,.program-filter-btn{transition:none!important}
}

/* V1.7.1 — mobile polish for program filters */
@media (max-width:760px){
  .programs-showcase{padding-top:62px}
  .programs-intro{gap:16px;margin-bottom:20px}
  .programs-intro h2{margin-bottom:12px}
  .programs-summary{padding:14px 18px;border-radius:18px}
  .programs-summary strong{font-size:2rem}
  .programs-summary span{font-size:.94rem}
  .program-filter{
    position:relative;
    margin-bottom:22px;
    padding-inline-end:42px;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
    mask-image:linear-gradient(to left,transparent 0,#000 36px,#000 100%);
    -webkit-mask-image:linear-gradient(to left,transparent 0,#000 36px,#000 100%);
  }
  .program-filter-btn{scroll-snap-align:start}
  .program-filter::after{
    content:"‹";
    position:sticky;
    inset-inline-end:4px;
    flex:0 0 28px;
    height:28px;
    border-radius:50%;
    display:grid;
    place-items:center;
    align-self:center;
    color:var(--orange);
    background:rgba(255,255,255,.94);
    box-shadow:0 5px 14px rgba(29,30,83,.12);
    font-size:1.35rem;
    font-weight:900;
    pointer-events:none;
    animation:filterNudge 1.8s ease-in-out infinite;
  }
}
@media (max-width:420px){
  .programs-showcase{padding-top:56px}
  .programs-intro{gap:14px;margin-bottom:18px}
  .programs-lead{line-height:1.72}
  .programs-summary{padding:12px 16px}
}
@keyframes filterNudge{0%,100%{transform:translateX(0);opacity:.7}50%{transform:translateX(-5px);opacity:1}}
@media (prefers-reduced-motion:reduce){.program-filter::after{animation:none!important}}

/* ---------- Home final CTA / 2026 refinement ---------- */
.home-final-cta-section{padding-top:72px;padding-bottom:72px;}
.cta-banner-premium{
  background:linear-gradient(118deg,#17174e 0%,#20205d 58%,#27215c 100%);
  border:1px solid rgba(255,255,255,.09);
  min-height:250px;
  padding:48px 56px;
  flex-wrap:nowrap;
  box-shadow:0 22px 55px rgba(20,20,65,.16);
}
.cta-banner-premium::before{
  content:"";position:absolute;inset:auto -80px -125px auto;width:310px;height:310px;border-radius:50%;
  background:radial-gradient(circle,rgba(248,115,54,.28) 0%,rgba(248,115,54,.08) 38%,transparent 68%);
}
.cta-banner-premium::after{
  content:"";position:absolute;top:0;bottom:0;right:51%;width:1px;
  background:linear-gradient(transparent,rgba(255,255,255,.11),transparent);
}
.cta-copy,.cta-actions{position:relative;z-index:2;}
.cta-copy{max-width:610px;}
.cta-kicker{display:inline-flex;align-items:center;gap:10px;color:var(--orange);font-family:"Segoe Script","Segoe Print","Bradley Hand","Lucida Handwriting",cursive;font-weight:600;font-size:1.08rem;letter-spacing:.01em;margin-bottom:13px;direction:ltr;transform:rotate(-1deg);text-shadow:0 8px 24px rgba(247,117,51,.12);}
.cta-kicker::before{content:"";width:30px;height:2px;background:var(--orange);border-radius:9px;}
.cta-banner-premium h2{font-size:clamp(1.85rem,3vw,2.65rem);max-width:none;margin:0 0 11px;line-height:1.35;}
.cta-banner-premium p{color:rgba(255,255,255,.7);font-size:1rem;line-height:1.9;max-width:540px;margin:0;}
.cta-actions{display:flex;flex-direction:column;gap:12px;min-width:225px;}
.cta-actions .btn{min-height:52px;justify-content:center;white-space:nowrap;border-radius:16px;}
.cta-whatsapp{background:var(--orange);color:#fff;box-shadow:0 12px 30px rgba(248,115,54,.25);}
.cta-whatsapp:hover{transform:translateY(-2px);filter:brightness(1.04);}
.cta-programs{color:#fff;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.045);}
.cta-programs:hover{background:rgba(255,255,255,.1);transform:translateY(-2px);}
.cta-programs svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;}
.cta-orbit{position:absolute;border:1px solid rgba(248,115,54,.18);border-radius:50%;pointer-events:none;}
.cta-orbit-one{width:145px;height:145px;left:-52px;top:-58px;}
.cta-orbit-two{width:78px;height:78px;left:42px;bottom:-45px;border-color:rgba(255,255,255,.08);}

/* Footer identity refinement */
.footer-brand img{border-radius:0;object-fit:contain;filter:none;background:transparent;}
.footer-brand b{color:var(--orange);letter-spacing:.35px;}
.footer-links a{line-height:1.55;}

@media (max-width:760px){
  .home-final-cta-section{padding:48px 0;}
  .cta-banner-premium{padding:38px 25px;min-height:auto;flex-direction:column;align-items:stretch;text-align:center;gap:28px;border-radius:24px;}
  .cta-banner-premium::after{display:none;}
  .cta-copy{max-width:none;}
  .cta-kicker{justify-content:center;font-size:.69rem;}
  .cta-banner-premium h2{font-size:1.75rem;}
  .cta-banner-premium p{font-size:.92rem;margin-inline:auto;}
  .cta-actions{width:100%;min-width:0;}
  .cta-actions .btn{width:100%;}
}
@media (max-width:420px){
  .cta-banner-premium{padding:34px 20px;}
  .cta-banner-premium h2{font-size:1.58rem;}
}

/* V1.7.2 footer fixes */
.footer-social .footer-whatsapp svg{width:18px;height:18px;display:block;}
.footer-brand img{width:46px;height:46px;object-fit:contain;background:transparent;}
@media (max-width:760px){.cta-kicker{font-size:.98rem;letter-spacing:0;}}

/* ===== About page v1.8 ===== */
.about-hero-v2{position:relative;overflow:hidden;background:linear-gradient(135deg,#17174e 0%,#20205e 58%,#17174e 100%);color:#fff;padding:150px 0 76px;text-align:center}
.about-hero-v2:before{content:"OUR STORY";position:absolute;inset:auto auto -42px 3%;font-weight:900;font-size:clamp(90px,14vw,220px);letter-spacing:.02em;color:rgba(255,255,255,.025);direction:ltr;white-space:nowrap}
.about-hero-v2 .container{position:relative;z-index:2}.about-kicker{display:inline-flex;align-items:center;gap:12px;color:#ff7a3d;font-size:.82rem;font-weight:800;letter-spacing:.08em}.about-kicker:before{content:"";width:30px;height:2px;background:#ff7a3d}.about-hero-v2 h1{max-width:850px;margin:18px auto 14px;font-size:clamp(2.2rem,4.5vw,4.5rem);line-height:1.15}.about-hero-v2 h1 span{color:#ff7a3d}.about-hero-v2 p{max-width:680px;margin:auto;color:rgba(255,255,255,.68);font-size:1.02rem;line-height:1.9}
.about-story{position:relative;overflow:hidden}.about-story:before{content:"ARKAN";position:absolute;top:30px;left:2%;font-size:clamp(80px,12vw,180px);font-weight:900;color:rgba(31,31,88,.035);direction:ltr}.about-story-grid{display:grid;grid-template-columns:1fr 1.08fr;gap:72px;align-items:center;position:relative}.about-story-media{position:relative;padding:18px 0 28px 28px}.about-story-media .frame{border-radius:30px 30px 90px 30px;overflow:hidden;box-shadow:0 25px 55px rgba(30,29,82,.16);aspect-ratio:1.08/1}.about-story-media img{width:100%;height:100%;object-fit:cover;filter:grayscale(1)}.about-story-media:before{content:"";position:absolute;width:180px;height:180px;border:18px solid #ff7838;border-radius:50%;left:-24px;bottom:-8px;z-index:-1}.about-story-seal{position:absolute;right:-20px;top:-18px;width:104px;height:104px;border-radius:50%;display:grid;place-items:center;text-align:center;background:#ff7838;color:#fff;font-size:.7rem;font-weight:800;line-height:1.3;box-shadow:0 14px 30px rgba(255,120,56,.25)}.about-story-copy h2{font-size:clamp(2rem,3.4vw,3.55rem);line-height:1.25;margin:14px 0 18px;color:#191950}.about-story-copy h2 span{color:#ff7838}.about-story-copy>p:not(.eyebrow){line-height:2;color:#77758a}.about-proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:26px}.about-proof{padding:18px 15px;border:1px solid #e8e1d8;border-radius:18px;background:#fff;min-height:120px}.about-proof:first-child{background:#1e1d58;color:#fff;border-color:#1e1d58}.about-proof .num{display:block;font-size:.68rem;opacity:.55;margin-bottom:18px}.about-proof strong{display:block;font-size:.95rem;margin-bottom:5px}.about-proof small{font-size:.72rem;opacity:.65}.about-proof-icon{width:38px;height:38px;border-radius:12px;background:#fff1e9;color:#f66f32;display:grid;place-items:center;float:left;margin-right:4px}.about-proof:first-child .about-proof-icon{background:#ff7838;color:#fff}
.about-values{position:relative;overflow:hidden}.about-values:before{content:"VISION • MISSION • GOALS";position:absolute;top:5px;right:2%;font-size:clamp(55px,8vw,120px);font-weight:900;color:rgba(31,31,88,.035);direction:ltr;white-space:nowrap}.about-values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:38px}.about-value-card{position:relative;background:#fff;border:1px solid #ebe5dd;border-radius:26px;padding:34px 30px 32px;min-height:270px;box-shadow:0 14px 35px rgba(28,27,74,.06);overflow:hidden;transition:.3s ease}.about-value-card:hover{transform:translateY(-6px);box-shadow:0 22px 45px rgba(28,27,74,.1)}.about-value-card.featured{background:#1e1d58;color:#fff;border-color:#1e1d58}.about-value-card .value-num{position:absolute;top:22px;left:24px;font-size:.72rem;font-weight:800;opacity:.38}.about-value-card .icon{margin-bottom:38px}.about-value-card h3{font-size:1.35rem;margin-bottom:12px}.about-value-card p{line-height:1.95;color:#77758a}.about-value-card.featured p{color:rgba(255,255,255,.68)}.about-value-card.featured .icon{background:#ff7838;color:#fff}
.about-cta-v2{position:relative;overflow:hidden;background:linear-gradient(125deg,#18174f,#242164);border-radius:28px;padding:52px 58px;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:35px;box-shadow:0 24px 50px rgba(29,28,80,.15)}.about-cta-v2:after{content:"";position:absolute;width:220px;height:220px;border-radius:50%;right:-80px;bottom:-120px;background:radial-gradient(circle,rgba(255,120,56,.38),transparent 68%)}.about-cta-copy{position:relative;z-index:2}.about-cta-copy .en{font-family:'Caveat',cursive;color:#ff7838;font-size:1.25rem;direction:ltr;text-align:right}.about-cta-v2 h2{font-size:clamp(1.8rem,3vw,3rem);margin:5px 0 8px}.about-cta-v2 p{color:rgba(255,255,255,.65);margin:0}.about-cta-actions{display:flex;gap:12px;position:relative;z-index:2;flex-shrink:0}
@media(max-width:900px){.about-hero-v2{padding:125px 20px 60px}.about-story-grid{grid-template-columns:1fr;gap:38px}.about-story-copy{order:1}.about-story-media{order:2;max-width:600px;margin:auto}.about-values-grid{grid-template-columns:1fr}.about-cta-v2{padding:40px 32px;flex-direction:column;text-align:center}.about-cta-copy .en{text-align:center}.about-proof-grid{grid-template-columns:1fr}}
@media(max-width:560px){.about-hero-v2{padding:112px 18px 48px}.about-hero-v2 h1{font-size:2.25rem}.about-story{padding-top:58px}.about-story-grid{gap:28px}.about-story-copy h2{font-size:2rem}.about-story-media{padding:10px 0 18px 14px}.about-story-media .frame{border-radius:22px 22px 58px 22px}.about-story-seal{width:82px;height:82px;right:-4px;top:-14px}.about-story-media:before{width:130px;height:130px;border-width:13px}.about-proof{min-height:100px}.about-values-grid{gap:14px;margin-top:25px}.about-value-card{min-height:auto;padding:28px 24px}.about-value-card .icon{margin-bottom:28px}.about-cta-v2{border-radius:22px;padding:34px 22px}.about-cta-actions{width:100%;flex-direction:column}.about-cta-actions .btn{width:100%;justify-content:center}}

/* ===== About page polish v1.8.1 ===== */
.about-hero-v2 h1{color:#fff;}
.about-value-card .icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#fff1e9;
  color:#f66f32;
  margin-bottom:38px;
}
.about-value-card.featured h3{color:#fff;}
.about-value-card.featured .icon{
  width:48px;
  height:48px;
  background:#ff7838;
  color:#fff;
}
.about-cta-v2 h2{color:#fff;}
.about-cta-v2 h2 span{color:#ff7838;}
@media(max-width:560px){
  .about-value-card .icon{margin-bottom:28px;}
}

/* About page final CTA — aligned with the approved homepage CTA */
.about-final-cta h2{color:#fff;}
.about-final-cta h2 span{color:var(--orange);}
