/* ============================================================
   AltEdge Solutions — Design System
   Brand: Sora font · Greens #15724E / #1E9E68 / #34C98A / #6FE3AE
   ============================================================ */

:root {
  --brand-900: #0B3D29;
  --brand-800: #15724E;
  --brand-600: #1E9E68;
  --brand-400: #34C98A;
  --brand-200: #6FE3AE;
  --brand-100: #D6F5E6;
  --brand-50:  #EDFBF4;

  --violet: #7C5CFF;
  --violet-soft: #EFEAFF;
  --amber: #F59E0B;
  --amber-soft: #FEF3D8;
  --rose: #F0567A;
  --rose-soft: #FDE8EE;
  --sky: #2AA7E8;
  --sky-soft: #E3F4FD;

  --bg: #F6FAF7;
  --bg-alt: #EDF5F0;
  --surface: #FFFFFF;
  --surface-2: #F0F7F3;
  --text: #12211B;
  --text-soft: #45564D;
  --muted: #6B7F74;
  --line: #DCE9E1;
  --shadow: 0 10px 30px -12px rgba(18, 33, 27, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(18, 33, 27, 0.28);
  --hero-grad: radial-gradient(1200px 600px at 85% -10%, rgba(52,201,138,.22), transparent 60%),
               radial-gradient(900px 500px at -10% 20%, rgba(124,92,255,.14), transparent 55%),
               radial-gradient(700px 420px at 50% 110%, rgba(245,158,11,.12), transparent 60%);
  --nav-bg: rgba(255,255,255,.82);
  --card-grad-top: linear-gradient(135deg, var(--brand-600), var(--brand-400));

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', 'Sora', sans-serif;
}

html[data-theme="dark"] {
  --bg: #0B1512;
  --bg-alt: #0F1D17;
  --surface: #13241C;
  --surface-2: #182D23;
  --text: #F2F6F3;
  --text-soft: #C4D4CB;
  --muted: #8FA79B;
  --line: #23392E;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px -18px rgba(0, 0, 0, 0.65);
  --hero-grad: radial-gradient(1200px 600px at 85% -10%, rgba(52,201,138,.14), transparent 60%),
               radial-gradient(900px 500px at -10% 20%, rgba(124,92,255,.12), transparent 55%),
               radial-gradient(700px 420px at 50% 110%, rgba(245,158,11,.08), transparent 60%);
  --nav-bg: rgba(11,21,18,.82);
  --violet-soft: rgba(124,92,255,.16);
  --amber-soft: rgba(245,158,11,.14);
  --rose-soft: rgba(240,86,122,.14);
  --sky-soft: rgba(42,167,232,.14);
  --brand-50: rgba(52,201,138,.10);
  --brand-100: rgba(52,201,138,.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head p { color: var(--text-soft); margin-top: 14px; font-size: 1.06rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-600); background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
html[data-theme="dark"] .eyebrow { color: var(--brand-200); }

.grad-text {
  background: linear-gradient(100deg, var(--brand-600) 10%, var(--brand-400) 50%, var(--violet) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--brand-800), var(--brand-600) 55%, var(--brand-400));
  background-size: 160% 100%;
  color: #fff; box-shadow: 0 12px 28px -10px rgba(30,158,104,.55);
}
.btn-primary:hover { transform: translateY(-3px); background-position: 90% 0; box-shadow: 0 18px 36px -12px rgba(30,158,104,.65); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--line); box-shadow: var(--shadow);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand-400); }
.btn-light { background: #fff; color: var(--brand-800); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(0,0,0,.35); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--nav-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 18px; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head); font-size: .95rem; font-weight: 500;
  padding: 9px 15px; border-radius: 999px; color: var(--text-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--brand-600); background: var(--brand-50); }
.nav-links a.active { color: var(--brand-600); background: var(--brand-50); font-weight: 700; }
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a.active { color: var(--brand-200); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--surface); cursor: pointer; display: grid; place-items: center;
  font-size: 1.15rem; transition: transform .25s ease, border-color .25s;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.06); border-color: var(--brand-400); }

.nav-burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--surface);
  cursor: pointer; font-size: 1.3rem; color: var(--text);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 18px 6%; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 18px; font-size: 1.05rem; }
  .nav-burger { display: block; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 170px 0 90px; overflow: hidden;
  background: var(--hero-grad), var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 22px; }
.hero-sub { font-size: 1.15rem; color: var(--text-soft); max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--bg);
  display: grid; place-items: center; font-size: 1.15rem; margin-left: -12px;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
}
.avatar-stack span:first-child { margin-left: 0; }
.hero-trust .stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; }
.hero-trust small { display: block; color: var(--muted); }
.hero-trust strong { font-family: var(--font-head); }

.hero-art { position: relative; }
.hero-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 10px; position: relative; z-index: 2;
  transform: rotate(1.5deg);
}
.hero-card img { border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; width: 100%; background: var(--surface-2); }

.float-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 12px 18px; font-family: var(--font-head);
  font-size: .88rem; font-weight: 600; animation: floaty 5.5s ease-in-out infinite;
}
.float-chip .fc-ico { font-size: 1.4rem; }
.float-chip small { display: block; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.fc-1 { top: -22px; left: -30px; animation-delay: 0s; }
.fc-2 { bottom: 34px; left: -46px; animation-delay: 1.4s; }
.fc-3 { top: 40%; right: -34px; animation-delay: 2.6s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  pointer-events: none; animation: blob-drift 16s ease-in-out infinite alternate;
}
.blob-green { width: 420px; height: 420px; background: var(--brand-400); top: -120px; right: -80px; }
.blob-violet { width: 340px; height: 340px; background: var(--violet); bottom: -140px; left: -110px; animation-delay: 4s; }
html[data-theme="dark"] .blob { opacity: .22; }

@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.12); }
}

@media (max-width: 980px) {
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .fc-1 { left: -8px; } .fc-2 { left: -8px; } .fc-3 { right: -8px; }
}

/* ---------- Logo marquee ---------- */
.marquee-band { padding: 40px 0 52px; overflow: hidden; }
.marquee-label {
  text-align: center; font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
}
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 64px; padding-right: 64px; animation: marquee 34s linear infinite; flex-shrink: 0; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo {
  display: flex; align-items: center; height: 56px; opacity: .85;
  filter: grayscale(1); transition: filter .3s, opacity .3s, transform .3s;
}
.client-logo img { max-height: 100%; max-width: 190px; width: auto; height: auto; object-fit: contain; }
.client-logo img.logo-wide { max-width: 240px; }
.client-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.07); }
html[data-theme="dark"] .client-logo { filter: none; background: #fff; border-radius: 10px; padding: 7px 14px; box-sizing: content-box; opacity: .92; }
html[data-theme="dark"] .client-logo:hover { opacity: 1; }
/* Partnership logo cards — bound by a box, not by height alone, so square-ish
   marks don't render tiny beside wide wordmarks (Deloitte, Airbus). */
.logo-real { width: auto; height: auto; max-width: min(200px, 100%); max-height: 70px; object-fit: contain; }
.logo-real.logo-wide { max-width: min(250px, 100%); }
html[data-theme="dark"] img.logo-real { background: #fff; padding: 10px 16px; border-radius: 12px; box-sizing: content-box; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------- Stats ---------- */
.stats-band { border-block: 1px solid var(--line); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 44px 0; text-align: center; }
.stat b { font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; color: var(--brand-600); display: block; }
html[data-theme="dark"] .stat b { color: var(--brand-200); }
.stat span { color: var(--muted); font-size: .95rem; }
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

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

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--brand-400); }
.card h3 { margin: 16px 0 10px; }
.card p { color: var(--text-soft); font-size: .98rem; }

.card-ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; background: var(--brand-50); border: 1px solid var(--brand-100);
}
.ico-violet { background: var(--violet-soft); border-color: transparent; }
.ico-amber { background: var(--amber-soft); border-color: transparent; }
.ico-rose { background: var(--rose-soft); border-color: transparent; }
.ico-sky { background: var(--sky-soft); border-color: transparent; }

/* ---------- Course cards ---------- */
.course-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.course-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.course-top {
  padding: 26px; color: #fff; position: relative; min-height: 130px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.course-top .c-emoji { font-size: 2.3rem; position: absolute; top: 20px; left: 24px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); }
.course-top h3 { color: #fff; margin: 0; font-size: 1.28rem; }
.ct-green { background: linear-gradient(130deg, #15724E, #34C98A); }
.ct-violet { background: linear-gradient(130deg, #4C2FD8, #9B7BFF); }
.ct-rose { background: linear-gradient(130deg, #C22853, #FF7BA0); }
.ct-sky { background: linear-gradient(130deg, #0F6FA8, #4FC3F7); }
.ct-amber { background: linear-gradient(130deg, #C2410C, #FBBF24); }
.ct-slate { background: linear-gradient(130deg, #1F2937, #64748B); }
.ct-teal { background: linear-gradient(130deg, #0F766E, #2DD4BF); }
.ct-indigo { background: linear-gradient(130deg, #312E81, #818CF8); }
.course-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.course-body p { color: var(--text-soft); font-size: .95rem; flex: 1; }
.course-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.course-link { font-family: var(--font-head); font-weight: 700; color: var(--brand-600); font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.course-link:hover { gap: 11px; } .course-link { transition: gap .25s ease; }
html[data-theme="dark"] .course-link { color: var(--brand-200); }

.tag {
  font-size: .74rem; font-weight: 600; font-family: var(--font-head);
  padding: 5px 12px; border-radius: 999px; background: var(--surface-2);
  border: 1px solid var(--line); color: var(--text-soft);
}
.tag-hot { background: linear-gradient(120deg, #FF4D4D, #F59E0B); color: #fff; border: none; animation: pulse-hot 2s infinite; }
@keyframes pulse-hot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,77,.45); }
  55% { box-shadow: 0 0 0 9px rgba(255,77,77,0); }
}

.rank-badge {
  position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,.94); color: #C2410C;
  font-family: var(--font-head); font-weight: 800; font-size: .78rem;
  padding: 6px 13px; border-radius: 999px; box-shadow: 0 6px 16px rgba(0,0,0,.22);
}

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev > .split-media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.rev > .split-media { order: 0; } }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4; object-fit: cover; width: 100%; background: var(--surface-2);
}
.split h2 { margin: 14px 0 18px; }
.split p { color: var(--text-soft); }

.check-list { margin-top: 22px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--text-soft); }
.check-list li b { color: var(--text); }
.check-list .ck {
  flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  display: grid; place-items: center; color: var(--brand-600); font-size: .8rem; font-weight: 800;
}
html[data-theme="dark"] .check-list .ck { color: var(--brand-200); }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.testi-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(30px, 5vw, 52px); text-align: center;
  display: none; animation: fade-in .5s ease;
}
.testi-card.active { display: block; }
.testi-card .quote-mark { font-size: 3.2rem; line-height: 1; color: var(--brand-400); font-family: Georgia, serif; }
.testi-card blockquote { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text); font-style: italic; margin: 10px 0 26px; }
.testi-who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-who .t-avatar {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem;
}
.testi-who b { display: block; font-family: var(--font-head); }
.testi-who small { color: var(--muted); }
.testi-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.testi-dots button {
  width: 11px; height: 11px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--line); transition: width .3s, background .3s;
}
.testi-dots button.active { width: 30px; background: var(--brand-600); }
@keyframes fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--brand-900), var(--brand-800) 45%, var(--brand-600));
  color: #fff; padding: clamp(44px, 7vw, 76px); text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08);
}
.cta-band::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.cta-band::after { width: 240px; height: 240px; bottom: -120px; left: -60px; }
.cta-band h2 { color: #fff; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.85); margin: 16px auto 30px; max-width: 620px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 165px 0 75px; text-align: center; position: relative; overflow: hidden;
  background: var(--hero-grad), var(--bg);
}
.page-hero p { max-width: 680px; margin: 18px auto 0; color: var(--text-soft); font-size: 1.12rem; }

/* ---------- Timeline / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; box-shadow: var(--shadow); position: relative;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem;
  background: linear-gradient(120deg, var(--brand-600), var(--brand-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: .93rem; }

/* ---------- Accordion ---------- */
.accordion { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.acc-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.acc-head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 600;
  font-size: 1.02rem; color: var(--text); text-align: left;
}
.acc-head .acc-arrow { transition: transform .3s; color: var(--brand-600); flex: none; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-body p { padding: 0 24px 22px; color: var(--text-soft); font-size: .97rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; }
.contact-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.contact-card a, .contact-card p { color: var(--text-soft); font-size: .98rem; }
.contact-card a:hover { color: var(--brand-600); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(26px, 4vw, 44px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; display: block; margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: .98rem; transition: border-color .25s, box-shadow .25s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 4px rgba(52,201,138,.18);
}
textarea { resize: vertical; min-height: 130px; }

/* ---------- Founder ---------- */
.founder-card {
  display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(28px, 4vw, 52px);
}
@media (max-width: 860px) { .founder-card { grid-template-columns: 1fr; text-align: center; } }
.founder-photo {
  aspect-ratio: 1; border-radius: 24px; overflow: hidden;
  background: linear-gradient(140deg, var(--brand-100), var(--violet-soft));
  display: grid; place-items: center; font-size: 5rem;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.footer { background: #0B1512; color: #C4D4CB; padding: 70px 0 0; margin-top: 0; }
html[data-theme="dark"] .footer { border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer a { color: #9DB3A8; font-size: .95rem; transition: color .2s; display: inline-block; padding: 4px 0; }
.footer a:hover { color: var(--brand-200); }
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: .95rem; color: #9DB3A8; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); font-size: 1.1rem; padding: 0;
  transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--brand-600); transform: translateY(-4px); color: #fff; }
.footer-cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 880px; margin: 0 auto; padding: 0 0 38px;
}
@media (max-width: 760px) { .footer-cta { grid-template-columns: 1fr; } }
.footer a.fcta {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 14px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.footer a.fcta-call {
  background: linear-gradient(120deg, #15724E, #1E9E68 55%, #34C98A);
  box-shadow: 0 8px 22px -12px rgba(52, 201, 138, .45);
}
.footer a.fcta-mail {
  background: linear-gradient(120deg, #2B1B67, #4C2FD8 55%, #7C5CFF);
  box-shadow: 0 8px 22px -12px rgba(124, 92, 255, .45);
}
.footer a.fcta:hover { transform: translateY(-3px); }
.footer a.fcta-call:hover { box-shadow: 0 14px 30px -12px rgba(52, 201, 138, .6); }
.footer a.fcta-mail:hover { box-shadow: 0 14px 30px -12px rgba(124, 92, 255, .6); }
.fcta::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); transition: left .65s ease;
}
.fcta:hover::after { left: 140%; }
.fcta-ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; font-size: 1.2rem;
}
.fcta-call .fcta-ico { animation: fcta-ring 2.4s ease-out infinite; }
@keyframes fcta-ring {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.45); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.fcta-txt { min-width: 0; line-height: 1.35; }
.fcta-txt small {
  display: block; color: rgba(255,255,255,.75); font-size: .74rem; margin-bottom: 1px;
}
.fcta-txt b {
  font-family: var(--font-head); color: #fff; font-size: .98rem;
  letter-spacing: -.01em; display: block; overflow-wrap: anywhere;
}
.fcta-arrow {
  margin-left: auto; flex: none; color: #fff; font-size: 1.15rem;
  transition: transform .3s ease; opacity: .85;
}
.fcta:hover .fcta-arrow { transform: translateX(6px); opacity: 1; }
@media (max-width: 480px) { .footer a.fcta { padding: 13px 15px; gap: 12px; } .fcta-ico { width: 38px; height: 38px; font-size: 1.05rem; } }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center;
  font-size: .88rem; color: #7E948A;
}

/* ---------- Mobile sticky Call-to-Action bar ---------- */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    display: flex; box-shadow: 0 -6px 24px rgba(0, 0, 0, .25);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-cta-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 10px; font-family: var(--font-head); font-weight: 700;
    font-size: 1rem; color: #fff;
  }
  .mobile-cta-call { background: linear-gradient(120deg, var(--brand-800), var(--brand-600)); }
  .mobile-cta-email { background: #12211B; border-left: 1px solid rgba(255,255,255,.14); }
  html[data-theme="dark"] .mobile-cta-email { background: #060D0A; }
  body { padding-bottom: 58px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

/* ---------- Misc ---------- */
.emoji-lg { font-size: 2rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  border-radius: 999px; background: var(--surface); border: 1.5px solid var(--line);
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  box-shadow: var(--shadow); transition: transform .25s, border-color .25s;
}
.pill:hover { transform: translateY(-4px) scale(1.04); border-color: var(--brand-400); }

.workshop-band {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(120deg, #2B1B67, #4C2FD8 50%, #7C5CFF); color: #fff;
  padding: clamp(38px, 6vw, 64px); display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 30px; align-items: center; box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) { .workshop-band { grid-template-columns: 1fr; text-align: center; } }
.workshop-band h2 { color: #fff; }
.workshop-band p { color: rgba(255,255,255,.85); margin-top: 12px; }
.workshop-emoji { font-size: clamp(4rem, 8vw, 6.5rem); text-align: center; animation: floaty 5s ease-in-out infinite; }

::selection { background: var(--brand-400); color: #fff; }
