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

:root {
  --navy-950: #031025;
  --navy-900: #071a3a;
  --navy-800: #0a2852;
  --navy-700: #123d73;
  --blue: #4667ff;
  --blue-2: #2f52df;
  --cyan: #2dd4ff;
  --cyan-soft: #dff9ff;
  --violet: #8b5cf6;
  --gold: #f4c95d;
  --gold-2: #ffdf87;
  --ink: #0e1d34;
  --text: #263853;
  --muted: #66748b;
  --surface: #ffffff;
  --soft: #f5f8ff;
  --soft-2: #edf3ff;
  --line: #dbe5f5;
  --success: #0e8e65;
  --danger: #b4233c;
  --warning: #8a6510;
  --shadow-sm: 0 12px 28px rgba(9, 31, 68, .08);
  --shadow: 0 24px 60px rgba(9, 31, 68, .13);
  --shadow-lg: 0 34px 90px rgba(3, 16, 37, .22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1210px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--cyan); color: var(--navy-950); }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-family: 'Outfit', 'Manrope', sans-serif;
  letter-spacing: -.025em;
  line-height: 1.15;
}
h1, h2, h3, p { margin-top: 0; }
p:last-child { margin-bottom: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 66px 0; }
.soft-bg { background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%); }
.dark-bg { background: var(--navy-950); color: #fff; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy-950);
  padding: 10px 16px;
  border-radius: 0 0 12px 12px;
  font-weight: 800;
  transition: top .25s ease;
}
.skip-link:focus { top: 0; }

.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 40px rgba(3, 16, 37, .1); }
.top-strip { background: var(--navy-950); color: #dceaff; }
.top-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .78rem;
  font-weight: 700;
}
.top-contact { display: flex; align-items: center; gap: 11px; }
.top-contact a { color: #fff; }
.top-contact a:hover { color: var(--cyan); }
.brand-row {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: min(520px, 49vw); height: 74px; object-fit: contain; object-position: left center; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-action {
  display: grid;
  line-height: 1.25;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.header-action span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.header-action strong { color: var(--navy-900); font-size: .9rem; }
.header-action:hover strong { color: var(--blue); }

.main-nav { background: linear-gradient(90deg, var(--navy-900), var(--navy-800)); }
.nav-links { display: flex; align-items: stretch; min-height: 54px; }
.nav-links > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eaf2ff;
  font-size: .84rem;
  font-weight: 800;
  padding: 0 15px;
  position: relative;
  transition: background .22s ease, color .22s ease;
}
.nav-links > a::after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-links > a:hover, .nav-links > a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); }
.nav-links .admin-link { margin-left: auto; background: rgba(244,201,93,.15); color: var(--gold-2); }
.nav-links .logout-link { margin-left: 0; color: #ffc3cd; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  place-items: center;
  padding: 11px;
}
.nav-toggle span { width: 23px; height: 2px; background: var(--navy-900); display: block; margin: 4px 0; transition: .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--violet)); color: #fff; box-shadow: 0 14px 30px rgba(70,103,255,.25); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(70,103,255,.32); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy-950); box-shadow: 0 14px 30px rgba(244,201,93,.25); }
.btn-dark { background: var(--navy-950); color: #fff; }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline-dark { border: 2px solid var(--navy-900); color: var(--navy-900); background: transparent; }
.btn-outline-light { border: 1px solid rgba(255,255,255,.65); color: #fff; background: transparent; }
.btn-small { min-height: 42px; padding: 10px 18px; font-size: .82rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; }
.text-link:hover { color: var(--violet); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; border-radius: 999px; }
.eyebrow.light { color: var(--cyan); }
.section-head { max-width: 780px; margin-bottom: 38px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 15px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.dark-bg .section-head h2, .dark-bg h2, .dark-bg h3 { color: #fff; }
.dark-bg .section-head p { color: #c9d8ef; }

.hero {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(45,212,255,.22), transparent 24%),
    radial-gradient(circle at 22% 80%, rgba(139,92,246,.25), transparent 28%),
    linear-gradient(105deg, rgba(3,16,37,.98) 0%, rgba(7,26,58,.93) 48%, rgba(8,35,73,.72) 100%),
    url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?auto=format&fit=crop&w=2000&q=85'),
    url('uploads/hero-conference-1.jpg');
  background-size: auto, auto, auto, cover, cover;
  background-position: center, center, center, center, center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(45,212,255,.25);
  border-radius: 50%;
  right: -170px;
  top: 45px;
  box-shadow: 0 0 0 58px rgba(45,212,255,.05), 0 0 0 116px rgba(139,92,246,.04);
  animation: orbitPulse 6s ease-in-out infinite;
}
.hero-inner {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr);
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 72px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.09);
  color: #dff8ff;
  font-weight: 800;
  font-size: .8rem;
  backdrop-filter: blur(10px);
}
.hero-badge i { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 7px rgba(45,212,255,.12); }
.hero h1 { color: #fff; font-size: clamp(3rem, 6.2vw, 6rem); line-height: .98; margin: 22px 0; max-width: 950px; }
.hero h1 span { background: linear-gradient(90deg, var(--cyan), #9cecff 42%, var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy > p { max-width: 740px; color: #dce9ff; font-size: clamp(1rem, 1.5vw, 1.16rem); }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 30px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; color: #c9d8ef; font-size: .88rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: '✓'; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(45,212,255,.14); color: var(--cyan); }
.hero-panel {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  padding: 26px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform .18s ease;
}
.hero-panel::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(45,212,255,.12); border-radius: 25px; pointer-events: none; }
.hero-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; position: relative; z-index: 2; }
.hero-panel-head strong { color: #fff; font-family: 'Outfit'; font-size: 1.18rem; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: #bcf4ff; font-size: .76rem; font-weight: 800; }
.live-dot::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #45e49e; box-shadow: 0 0 0 6px rgba(69,228,158,.12); }
.hero-module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; position: relative; z-index: 2; }
.hero-module {
  min-height: 128px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(3,16,37,.48);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .25s ease, background .25s ease;
}
.hero-module:hover { transform: translateY(-5px); background: rgba(8,35,73,.72); }
.hero-module .icon { font-size: 1.55rem; margin-bottom: 12px; }
.hero-module h3 { color: #fff; font-size: .98rem; margin-bottom: 5px; }
.hero-module p { color: #b9cbe7; font-size: .76rem; line-height: 1.55; }
.hero-panel-note { position: relative; z-index: 2; margin-top: 14px; padding: 13px 15px; border-radius: 16px; background: linear-gradient(90deg, rgba(45,212,255,.12), rgba(139,92,246,.15)); color: #e9f6ff; font-size: .8rem; font-weight: 700; }

.stats-strip { margin-top: -48px; position: relative; z-index: 3; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat { padding: 25px 28px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.stat strong { display: block; color: var(--navy-900); font-family: 'Outfit'; font-size: 2rem; }
.stat span { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #b9caff; }
.icon-card { position: relative; overflow: hidden; }
.icon-card::after { content: ''; position: absolute; width: 110px; height: 110px; border-radius: 50%; right: -42px; top: -44px; background: linear-gradient(135deg, rgba(45,212,255,.16), rgba(139,92,246,.14)); }
.icon-box { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, var(--cyan-soft), #ece8ff); font-size: 1.65rem; margin-bottom: 18px; position: relative; z-index: 2; }
.icon-card h3 { margin-bottom: 9px; font-size: 1.16rem; }
.icon-card p { color: var(--muted); font-size: .92rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.image-stack { position: relative; min-height: 460px; }
.image-stack .main-image { width: 88%; height: 430px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow-lg); }
.image-stack .small-image { position: absolute; right: 0; bottom: 0; width: 46%; height: 220px; object-fit: cover; border-radius: 26px; border: 8px solid #fff; box-shadow: var(--shadow); }
.image-stack .image-badge { position: absolute; left: 26px; bottom: -18px; padding: 15px 20px; border-radius: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy-950); font-weight: 900; box-shadow: var(--shadow-sm); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 33px; color: var(--text); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; background: #dff8ef; color: var(--success); font-weight: 900; font-size: .74rem; }

.program-card { padding: 0; overflow: hidden; }
.program-card .program-image { height: 210px; width: 100%; object-fit: cover; }
.program-card .program-body { padding: 23px; }
.program-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px; background: var(--soft-2); color: var(--blue-2); font-weight: 900; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.tag.gold { background: #fff7dc; color: #8c6511; }
.program-card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.program-card p { color: var(--muted); font-size: .9rem; }
.program-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.program-footer span { color: var(--muted); font-size: .78rem; font-weight: 700; }

.focus-card {
  min-height: 240px;
  color: #fff;
  border: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.focus-card::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(145deg, var(--navy-800), var(--blue)); }
.focus-card:nth-child(2)::before { background: linear-gradient(145deg, #3a1c71, #8b5cf6); }
.focus-card:nth-child(3)::before { background: linear-gradient(145deg, #054a5f, #14a3c7); }
.focus-card:nth-child(4)::before { background: linear-gradient(145deg, #5f3905, #d69a21); }
.focus-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -70px; top: -65px; background: rgba(255,255,255,.1); z-index: -1; }
.focus-card h3 { color: #fff; }
.focus-card p { color: rgba(255,255,255,.86); }
.focus-card .icon-box { background: rgba(255,255,255,.13); color: #fff; backdrop-filter: blur(8px); }

.membership-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.membership-card {
  position: relative;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.membership-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.membership-card.featured { background: linear-gradient(160deg, var(--navy-900), #102f63); color: #fff; border-color: transparent; transform: scale(1.03); }
.membership-card.featured:hover { transform: scale(1.03) translateY(-9px); }
.membership-card::after { content: ''; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: -70px; top: -70px; background: linear-gradient(135deg, rgba(45,212,255,.12), rgba(139,92,246,.12)); }
.membership-card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.membership-card.featured h3, .membership-card.featured p, .membership-card.featured li { color: #fff; }
.membership-price { font-family: 'Outfit'; font-size: 2.7rem; font-weight: 800; color: var(--blue); line-height: 1; margin: 22px 0 8px; }
.membership-card.featured .membership-price { color: var(--gold-2); }
.membership-card .price-note { color: var(--muted); font-size: .78rem; }
.membership-card.featured .price-note { color: #cbd9ee; }
.membership-card ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 11px; }
.membership-card li { position: relative; padding-left: 28px; color: var(--text); font-size: .9rem; }
.membership-card li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.membership-card.featured li::before { color: var(--cyan); }
.featured-label { position: absolute; top: 18px; right: 18px; z-index: 2; padding: 6px 10px; border-radius: 999px; background: var(--gold); color: var(--navy-950); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }

.process { counter-reset: process; }
.process-card { position: relative; padding-top: 72px; }
.process-card::before {
  counter-increment: process;
  content: '0' counter(process);
  position: absolute;
  top: 18px;
  left: 26px;
  color: var(--blue);
  font-family: 'Outfit';
  font-size: 2rem;
  font-weight: 800;
  opacity: .75;
}
.process-card::after { content: ''; position: absolute; left: 26px; top: 61px; width: 50px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--violet)); }

.news-card { padding: 0; overflow: hidden; }
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-card .event-content { padding: 22px; }
.news-card h3 { margin: 10px 0; min-height: 55px; }
.news-card p { color: var(--muted); font-size: .9rem; }
.meta { color: var(--muted); font-size: .78rem; font-weight: 700; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(45,212,255,.19), transparent 22%),
    linear-gradient(115deg, rgba(3,16,37,.98), rgba(7,26,58,.88)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=85'),
    url('pics/1.png');
  background-size: auto, auto, cover, cover;
  background-position: center;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 36px 36px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.7rem, 6vw, 5rem); margin: 10px 0 14px; max-width: 950px; }
.page-hero p { color: #dce9ff; font-size: 1.05rem; max-width: 820px; }
.breadcrumb { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; color: #b8cae8; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a { color: var(--cyan); }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 38px; align-items: start; }
.prose { font-size: 1rem; }
.prose h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); margin-top: 38px; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: var(--text); }
.prose img { border-radius: 26px; box-shadow: var(--shadow-sm); }
.side-panel { position: sticky; top: 20px; display: grid; gap: 12px; }
.side-panel a, .side-panel .side-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 17px; padding: 15px 17px; font-weight: 800; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.side-panel a:hover { border-color: var(--blue); color: var(--blue); transform: translateX(4px); }
.side-panel .primary { background: linear-gradient(135deg, var(--blue), var(--violet)); color: #fff; border: 0; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 32px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { min-width: 0; }
.field.full, .full { grid-column: 1 / -1; }
.field label { display: block; color: var(--navy-900); font-size: .82rem; font-weight: 900; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid #cfdced;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(70,103,255,.1); }
.field textarea { min-height: 135px; resize: vertical; }
.field small { display: block; color: var(--muted); margin-top: 6px; font-size: .74rem; }
.form-note { padding: 16px; border-radius: 15px; background: var(--soft); border: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.fee-display { padding: 18px; border-radius: 18px; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; }
.fee-display small { color: #bed0eb; display: block; }
.fee-display strong { display: block; color: var(--gold-2); font-family: 'Outfit'; font-size: 2rem; margin-top: 5px; }
.notice { padding: 14px 17px; border-radius: 15px; margin: 16px 0; font-weight: 750; }
.notice.success, .success { background: #e2f8ef; color: #075f45; border: 1px solid #b9ead7; }
.notice.error, .error { background: #fff0f2; color: #9c1d35; border: 1px solid #ffc6d0; }
.notice.warning, .warning { background: #fff8df; color: #73530b; border: 1px solid #f5dd91; }

.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f4f7fe; color: var(--navy-900); font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; }
td { color: var(--text); font-size: .88rem; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-btn { display: inline-flex; padding: 7px 11px; border-radius: 9px; background: var(--blue); color: #fff; font-weight: 800; font-size: .76rem; }
.mini-btn.danger { background: var(--danger); }
.tiny { font-size: .78rem; color: var(--muted); }

.admin-wrap { min-height: 70vh; padding: 45px 0; background: var(--soft); }
.admin-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 28px; align-items: start; }
.admin-sidebar { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: #fff; border-radius: 24px; padding: 22px; position: sticky; top: 16px; box-shadow: var(--shadow); }
.admin-sidebar h3 { color: var(--cyan); }
.admin-sidebar a { display: block; color: #e6eeff; padding: 10px 12px; border-radius: 11px; margin: 4px 0; font-size: .84rem; font-weight: 700; }
.admin-sidebar a:hover { background: rgba(255,255,255,.1); color: #fff; }
.admin-sidebar .danger { color: #ffc3cd; }

.cta-band { position: relative; overflow: hidden; padding: 70px 0; color: #fff; background: linear-gradient(120deg, var(--navy-950), var(--navy-700) 60%, #3d2d8b); }
.cta-band::before { content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%; right: -160px; top: -220px; border: 1px solid rgba(45,212,255,.2); box-shadow: 0 0 0 60px rgba(45,212,255,.04), 0 0 0 120px rgba(139,92,246,.04); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 2; }
.cta-inner > div:first-child { max-width: 820px; }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 12px; }
.cta-inner p { color: #d4e1f6; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; min-width: max-content; }

.footer { background: #020b19; color: #d2def0; padding-top: 66px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .9fr 1fr; gap: 38px; }
.footer-logo { width: 300px; max-width: 100%; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer p { color: #aebdd2; font-size: .88rem; }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: 17px; }
.footer a { display: block; color: #c9d6e9; margin: 8px 0; font-size: .86rem; }
.footer a:hover { color: var(--cyan); }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; margin: 0; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: #fff; }
.socials a:hover { background: var(--blue); border-color: var(--blue); }
.footer-admin { display: inline-flex !important; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 9px 12px; }
.copyright { margin-top: 45px; min-height: 70px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #8fa1ba; font-size: .75rem; }
.floating-whatsapp { position: fixed; left: 18px; bottom: 18px; z-index: 100; display: inline-flex; align-items: center; gap: 8px; background: #21c66b; color: #fff; padding: 11px 15px; border-radius: 999px; font-weight: 900; font-size: .82rem; box-shadow: 0 14px 36px rgba(0,0,0,.25); }
.back-to-top { position: fixed; right: 18px; bottom: 18px; z-index: 100; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--navy-900); color: #fff; opacity: 0; pointer-events: none; transform: translateY(12px); transition: .25s ease; box-shadow: var(--shadow-sm); }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: none; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-sm); }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.associate-logo { min-height: 100px; display: grid; place-items: center; border-radius: 18px; border: 1px solid var(--line); background: #fff; color: var(--navy-900); font-weight: 900; text-align: center; padding: 14px; box-shadow: var(--shadow-sm); }
.member-card { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: center; }
.avatar { width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--violet)); color: #fff; font-size: 1.8rem; font-weight: 900; }
.journal-card { display: flex; flex-direction: column; gap: 11px; }
.journal-card .abbr { font-family: 'Outfit'; font-size: 2rem; font-weight: 900; color: var(--blue); }
.policy-item { display: flex; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.policy-item b { color: var(--blue); font-size: 1.3rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay, 0ms), transform .7s ease var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes orbitPulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.05); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .header-action { display: none; }
  .nav-links > a { padding-inline: 11px; font-size: .78rem; }
  .hero-inner { grid-template-columns: 1fr .72fr; gap: 38px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .top-message { display: none; }
  .top-strip-inner { justify-content: center; }
  .brand img { width: 430px; max-width: calc(100vw - 105px); height: 66px; }
  .header-actions { display: none; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 128px; max-height: calc(100vh - 128px); overflow-y: auto; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: block; }
  .nav-links { flex-direction: column; align-items: stretch; padding: 10px 20px 20px; }
  .nav-links > a { min-height: 46px; justify-content: flex-start; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links > a::after { left: 0; top: 9px; bottom: 9px; right: auto; width: 3px; height: auto; transform: scaleY(0); }
  .nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleY(1); }
  .nav-links .admin-link { margin-left: 0; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 76px 0 110px; }
  .hero-panel { max-width: 650px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .split, .content-layout, .admin-grid { grid-template-columns: 1fr; }
  .image-stack { max-width: 700px; }
  .membership-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .membership-card.featured { transform: none; }
  .membership-card.featured:hover { transform: translateY(-9px); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .side-panel, .admin-sidebar { position: static; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .top-contact { font-size: .7rem; gap: 7px; }
  .brand-row { min-height: 78px; }
  .brand img { height: 55px; max-width: calc(100vw - 90px); }
  .main-nav { top: 116px; max-height: calc(100vh - 116px); }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero-module-grid { grid-template-columns: 1fr; }
  .hero-module { min-height: 0; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 10px; }
  .stats-strip { margin-top: -56px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { left: 24px; right: 24px; top: auto; bottom: 0; width: auto; height: 1px; }
  .stat:nth-child(2)::after { display: block; }
  .section-pad { padding: 66px 0; }
  .section-pad-sm { padding: 52px 0; }
  .grid-2, .grid-3, .grid-4, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full, .full { grid-column: auto; }
  .image-stack { min-height: 390px; }
  .image-stack .main-image { width: 100%; height: 350px; }
  .image-stack .small-image { width: 52%; height: 175px; border-width: 6px; }
  .page-hero { padding: 76px 0; }
  .page-hero h1 { font-size: 2.65rem; }
  .form-card { padding: 22px; border-radius: 22px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .copyright { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 240px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .member-card { grid-template-columns: 1fr; }
  .floating-whatsapp { width: 46px; height: 46px; padding: 0; justify-content: center; font-size: 0; }
  .floating-whatsapp span { font-size: 1.1rem; }
}
