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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1e293b;
  background: #f0f7fc;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; color: #0f172a; }
a { color: #0083ca; text-decoration: none; transition: color 0.2s; }
a:hover { color: #004b84; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== CURSOR ===== */
.cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: #0083ca; border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s; mix-blend-mode: difference; }
.cursor-follower { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border: 1.5px solid rgba(0,131,202,0.4); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, border-color 0.3s; }
.cursor.hover { width: 48px; height: 48px; background: rgba(0,131,202,0.15); }
.cursor-follower.hover { width: 56px; height: 56px; border-color: #0083ca; }

/* ===== PROGRESS BAR ===== */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, #0083ca, #004b84); z-index: 10001; width: 0; transition: width 0.1s; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: background 0.4s, box-shadow 0.4s; }
.header.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 32px; max-width: 1200px; margin: 0 auto; }
.logo img { max-height: 48px; width: auto; transition: max-height 0.3s; }
.header.scrolled .logo img { max-height: 42px; }
.nav { display: flex; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.75); padding: 8px 18px; font-size: 14px; font-weight: 500; border-radius: 8px; transition: all 0.25s; font-family: 'Space Grotesk', sans-serif; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.header.scrolled .nav-link { color: #475569; }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: #0083ca; background: rgba(0,131,202,0.06); }

.logo-box { background: rgba(255,255,255,0.92); padding: 10px 16px; border-radius: 10px; transition: background 0.3s, padding 0.3s; }
.header.scrolled .logo-box { background: transparent; padding: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.header.scrolled .hamburger span { background: #004b84; }

.mobile-nav { display: none; position: fixed; top: 0; right: 0; width: 300px; height: 100%; background: #004b84; z-index: 2000; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); padding: 60px 32px; }
.mobile-nav.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; opacity: 0.7; }
.mobile-close:hover { opacity: 1; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-link { color: rgba(255,255,255,0.8); font-size: 18px; font-weight: 500; padding: 12px 16px; border-radius: 10px; text-align: center; transition: all 0.2s; }
.mobile-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.mobile-backdrop { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,59,128,0.35); z-index: 1999; opacity: 0; transition: opacity 0.4s; }
.mobile-backdrop.open { display: block; opacity: 1; }

/* ===== SIDE NAV ===== */
.side-nav { position: fixed; left: 24px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 12px; }
.side-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,75,132,0.2); border: none; cursor: pointer; transition: all 0.3s; position: relative; }
.side-dot.active { background: #0083ca; transform: scale(1.4); }
.side-dot span { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 600; color: #004b84; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; font-family: 'Space Grotesk', sans-serif; }
.side-dot:hover span { opacity: 1; }

/* ===== HERO ===== */
.hero { display: flex; min-height: 100vh; }
.hero-left { flex: 1; position: relative; overflow: hidden; }
.hero-video-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero-left-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,75,132,0.85), rgba(0,42,77,0.9)); }
.hero-left-title { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; pointer-events: none; white-space: nowrap; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hlt-badge { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.65); font-family: 'Space Grotesk', sans-serif; }
.hlt-line { font-family: 'Space Grotesk', sans-serif; font-size: 72px; font-weight: 700; color: #fff; letter-spacing: -2px; line-height: 1; text-shadow: 0 2px 40px rgba(0,0,0,0.2); }
.hlt-accent { font-weight: 300; opacity: 0.85; }
.hero-deco { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.3; }
.dna-helix { width: 120px; height: auto; animation: dnaRotate 8s linear infinite; }
@keyframes dnaRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.hero-right { flex: 1; display: flex; align-items: center; justify-content: center; padding: 100px 48px 60px; background: #f0f7fc; position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,131,202,0.04); }
.hero-right::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(0,75,132,0.03); }

.hero-right-content { position: relative; z-index: 1; max-width: 500px; }

.hero-badge { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #0083ca; margin-bottom: 24px; padding: 6px 16px; border: 1px solid rgba(0,131,202,0.2); border-radius: 100px; background: rgba(0,131,202,0.04); }

.hero-title { font-size: 56px; font-weight: 700; letter-spacing: -2px; margin-bottom: 8px; line-height: 1.05; }
.hero-title .accent { color: #0083ca; font-weight: 300; }

.hero-sub { font-size: 18px; font-weight: 500; text-transform: uppercase; letter-spacing: 4px; color: #64748b; margin-bottom: 20px; }

.hero-desc { font-size: 16px; color: #475569; line-height: 1.8; margin-bottom: 32px; max-width: 440px; }

.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 24px; align-items: center; }
.hs-item { text-align: center; }
.hs-num { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; color: #0083ca; }
.hs-plus { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 300; color: #0083ca; }
.hs-label { display: block; font-size: 12px; color: #64748b; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.hs-divider { width: 1px; height: 40px; background: #cbd5e0; }

.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, #0083ca, transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.hero-scroll-indicator span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: #94a3b8; font-family: 'Space Grotesk', sans-serif; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; cursor: pointer; transition: all 0.3s; border: none; text-decoration: none; position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.15); border-radius: 50%; transition: width 0.4s, height 0.4s; transform: translate(-50%, -50%); }
.btn:active::after { width: 300px; height: 300px; }

.btn-primary { background: #0083ca; color: #fff; }
.btn-primary:hover { background: #004b84; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,75,132,0.25); color: #fff; }
.btn-outline { background: transparent; color: #1e293b; border: 2px solid #cbd5e0; }
.btn-outline:hover { border-color: #0083ca; color: #0083ca; transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ===== SECTION LABEL ===== */
.section-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #0083ca; margin-bottom: 12px; font-family: 'Space Grotesk', sans-serif; }
.section-label.light { color: rgba(255,255,255,0.6); }

/* ===== ANIMATIONS ===== */
.reveal-text { overflow: hidden; }
.reveal-text .line, .reveal-text .word { display: inline-block; }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); transition-delay: var(--delay, 0s); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path 1s cubic-bezier(0.16,1,0.3,1); transition-delay: var(--delay, 0s); }
.reveal-clip.visible { clip-path: inset(0 0 0% 0); }

/* ===== WELCOME ===== */
.welcome { padding: 100px 0; position: relative; background: #f0f7fc; overflow: hidden; }
.welcome-bg-molecules { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.molecule { position: absolute; }
.molecule.m1 { top: 10%; right: 5%; width: 200px; animation: moleculeFloat 6s ease-in-out infinite; }
.molecule.m2 { bottom: 15%; left: 3%; width: 160px; animation: moleculeFloat 8s ease-in-out infinite reverse; }
@keyframes moleculeFloat { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(15px,-20px) rotate(10deg); } }

.welcome-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.welcome-header h2 { font-size: 36px; letter-spacing: -1px; margin-bottom: 14px; }
.welcome-header p { color: #64748b; font-size: 16px; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto auto; gap: 16px; max-width: 960px; margin: 0 auto; }
.bento-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px 24px; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,75,132,0.08); }
.bento-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #0083ca; transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.bento-card:hover::after { transform: scaleX(1); }

.bento-main { grid-column: span 2; padding: 36px; }
.bento-main .bento-icon { width: 48px; height: 48px; background: rgba(0,131,202,0.06); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.bento-main p { font-size: 16px; color: #475569; line-height: 1.8; }

.bento-stat { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bento-num { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; color: #0083ca; line-height: 1.1; margin-bottom: 4px; }
.bento-label { font-size: 12px; color: #64748b; font-weight: 500; }

.bento-feat { display: flex; flex-direction: column; }
.bento-feat svg { margin-bottom: 12px; }
.bento-feat h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.bento-feat p { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }
.about-split { display: flex; gap: 80px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.about-left { flex: 1; position: relative; }
.about-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,75,132,0.1); }
.about-img-wrap img { width: 100%; display: block; }
.about-img-small { position: absolute; bottom: -40px; right: -30px; width: 55%; border: 4px solid #fff; box-shadow: 0 8px 40px rgba(0,75,132,0.15); }
.about-right { flex: 1; }
.about-right h2 { font-size: 36px; letter-spacing: -1px; margin-bottom: 24px; }
.about-content p { font-size: 15px; color: #475569; line-height: 1.8; margin-bottom: 16px; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.value-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(0,131,202,0.04); border: 1px solid rgba(0,131,202,0.12); border-radius: 100px; font-size: 13px; font-weight: 600; color: #004b84; font-family: 'Space Grotesk', sans-serif; }
.about-split-text { margin-top: 20px; }
.about-split-text p { font-size: 15px; color: #475569; line-height: 1.8; }

/* ===== TRAINERS ===== */
.trainers { padding: 100px 0 60px; background: #004b84; overflow: hidden; }
.trainers-header { text-align: center; margin-bottom: 48px; }
.trainers-header h2 { font-size: 36px; color: #fff; margin-bottom: 12px; letter-spacing: -1px; }
.trainers-header p { color: rgba(255,255,255,0.5); font-size: 16px; }

.trainers-scroll { overflow-x: auto; padding: 0 48px 40px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.trainers-scroll::-webkit-scrollbar { display: none; }
.trainers-track { display: flex; gap: 28px; }

.trainer-card-3d { flex: 0 0 340px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; transition: transform 0.4s, box-shadow 0.4s; transform-style: preserve-3d; perspective: 800px; }
.trainer-card-3d:hover { transform: translateY(-8px) rotateX(2deg); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.tc-image { height: 240px; overflow: hidden; }
.tc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.trainer-card-3d:hover .tc-image img { transform: scale(1.05); }
.tc-info { padding: 24px; }
.tc-info h4 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.tc-info p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== PROGRAMS ===== */
.programs { padding: 100px 0; background: #f0f7fc; }
.programs-header { text-align: center; margin-bottom: 48px; }
.programs-header h2 { font-size: 36px; letter-spacing: -1px; margin-bottom: 12px; }
.programs-header p { color: #64748b; font-size: 16px; }

.accordion { max-width: 860px; margin: 0 auto; }
.accordion-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s; }
.accordion-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.accordion-item.active { box-shadow: 0 4px 20px rgba(0,75,132,0.08); border-color: rgba(0,131,202,0.2); }

.accordion-trigger { display: flex; align-items: center; gap: 20px; width: 100%; padding: 24px 28px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Space Grotesk', sans-serif; transition: background 0.2s; }
.accordion-trigger:hover { background: rgba(0,131,202,0.02); }
.acc-number { font-size: 28px; font-weight: 700; color: #cbd5e0; font-family: 'Space Grotesk', sans-serif; min-width: 48px; transition: color 0.3s; }
.accordion-item.active .acc-number { color: #0083ca; }
.acc-info { flex: 1; }
.acc-title { display: block; font-size: 17px; font-weight: 600; color: #0f172a; margin-bottom: 4px; }
.acc-meta { font-size: 13px; color: #94a3b8; font-weight: 400; }
.acc-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,131,202,0.06); display: flex; align-items: center; justify-content: center; color: #0083ca; flex-shrink: 0; transition: transform 0.3s, background 0.3s; }
.accordion-item.active .acc-icon { transform: rotate(45deg); background: #0083ca; color: #fff; }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); }
.accordion-item.active .accordion-body { max-height: 2000px; }
.accordion-body-inner, .accordion-body { padding: 0 28px 28px; }

.acc-img { width: 100%; border-radius: 12px; margin-bottom: 24px; }
.acc-meta-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 28px; }
.am-item { background: #f0f7fc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px; text-align: center; }
.am-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #94a3b8; margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.am-val { font-size: 14px; font-weight: 600; color: #1e293b; }

.acc-detail { margin-bottom: 20px; }
.acc-detail h4 { font-size: 16px; color: #004b84; margin-bottom: 8px; padding-bottom: 6px; border-bottom: 2px solid #e2e8f0; }
.acc-detail p { margin-bottom: 8px; color: #475569; }
.acc-detail ul { padding-left: 20px; margin-bottom: 8px; }
.acc-detail ul li { margin-bottom: 6px; color: #475569; }

/* ===== REGISTRATION ===== */
.registration { padding: 100px 0; background: #004b84; position: relative; overflow: hidden; }
.reg-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 200px; font-weight: 700; color: rgba(255,255,255,0.02); white-space: nowrap; font-family: 'Space Grotesk', sans-serif; pointer-events: none; letter-spacing: -8px; }
.reg-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.reg-header h2 { font-size: 36px; color: #fff; letter-spacing: -1px; margin-bottom: 12px; }
.reg-header p { color: rgba(255,255,255,0.5); font-size: 16px; }

.reg-intro { display: flex; align-items: center; gap: 48px; margin-bottom: 48px; position: relative; z-index: 1; }
.reg-intro-text { flex: 1; }
.reg-intro-text h3 { font-size: 20px; color: #fff; line-height: 1.4; margin-bottom: 16px; }
.reg-intro-text p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.reg-intro-img { flex: 0 0 340px; }
.reg-intro-img img { width: 100%; border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }

.form-card { background: #fff; border-radius: 20px; padding: 48px; color: #1e293b; margin-bottom: 24px; position: relative; z-index: 1; }
.form-section { margin-bottom: 36px; }
.form-section:last-of-type { margin-bottom: 0; }
.form-title { font-size: 18px; color: #004b84; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; display: flex; align-items: center; gap: 10px; }
.form-title::before { content: ''; width: 4px; height: 22px; background: #0083ca; border-radius: 2px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row:last-child { margin-bottom: 0; }
.field { margin-bottom: 16px; }
.form-row .field { margin-bottom: 0; }
.field label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: #475569; }
.field label span { color: #e53e3e; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: #1e293b; background: #f8fafc; transition: all 0.25s; outline: none; }
.field input::placeholder, .field textarea::placeholder { color: #94a3b8; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #0083ca; background: #fff; box-shadow: 0 0 0 3px rgba(0,131,202,0.1); }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field textarea { resize: vertical; min-height: 80px; }

.radio-group { display: flex; gap: 24px; margin-top: 8px; }
.radio { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; cursor: pointer; color: #475569; }
.radio input { display: none; }
.radio-mark { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #cbd5e0; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; }
.radio input:checked + .radio-mark { border-color: #0083ca; background: #0083ca; box-shadow: inset 0 0 0 3px #fff; }

.form-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.captcha label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: #475569; }
.captcha input { width: 60px; padding: 10px 12px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 14px; text-align: center; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s; }
.captcha input:focus { border-color: #0083ca; box-shadow: 0 0 0 3px rgba(0,131,202,0.1); }

.reg-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 1; }
.reg-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; }
.rc-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: #0083ca; }
.reg-card h4 { font-size: 15px; color: #fff; margin-bottom: 12px; }
.reg-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 8px; }
.reg-card ul { list-style: none; padding: 0; }
.reg-card ul li { font-size: 14px; color: rgba(255,255,255,0.65); padding: 6px 0; padding-left: 20px; position: relative; }
.reg-card ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: #0083ca; }

/* ===== FOOTER ===== */
.footer { position: relative; }
.footer-wave { margin-top: -1px; }
.footer-wave svg { display: block; width: 100%; height: 80px; }
.footer-inner { background: #002a4d; color: #fff; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr 1fr; gap: 32px; }
.footer-brand img { max-width: 160px; margin: 0 auto 12px; }
.footer-brand p { font-size: 16px; font-weight: 300; letter-spacing: 2px; margin-bottom: 6px; text-align: center; }
.footer-hours { display: block; font-size: 12px; opacity: 0.4; text-align: center; }

.footer-contact h5, .footer-form-wrap h5, .footer-map-wrap h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin-bottom: 16px; font-family: 'Space Grotesk', sans-serif; }

.fc-list { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; }
.fc-icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: 8px; color: #0083ca; flex-shrink: 0; }
.fc-item div { font-size: 12px; line-height: 1.4; }
.fc-item div strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.35); font-weight: 600; }
.fc-item a { color: #0083ca; font-weight: 500; font-size: 13px; }
.fc-item small { display: block; opacity: 0.4; font-size: 11px; }

.footer-form .field input, .footer-form .field textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 8px; }
.footer-form .field input::placeholder, .footer-form .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.footer-form .field input:focus, .footer-form .field textarea:focus { border-color: #0083ca; background: rgba(255,255,255,0.08); box-shadow: none; }
.footer-form .btn { margin-top: 4px; padding: 10px 24px; font-size: 13px; }

.footer-map { border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.footer-map iframe { width: 100%; height: 150px; border: 0; display: block; }
.footer-info { display: flex; flex-direction: column; gap: 8px; }
.footer-info span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-info svg { flex-shrink: 0; color: #0083ca; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0 0; text-align: center; margin-top: 32px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .side-nav { display: none; }
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { height: 50vh; min-height: 360px; }
  .hero-right { padding: 60px 24px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-main { grid-column: span 2; }
  .about-split { flex-direction: column; gap: 48px; }
  .about-img-small { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
  .accordion { max-width: 100%; }
  .acc-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 14px; letter-spacing: 2px; }
  .hlt-badge { font-size: 10px; letter-spacing: 1.5px; }
  .hlt-line { font-size: 48px; }
  .welcome { padding: 60px 0; }
  .welcome-header h2 { font-size: 28px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main { grid-column: span 1; }
  .about { padding: 60px 0; }
  .about-right h2 { font-size: 28px; }
  .trainers { padding: 60px 0 40px; }
  .trainers-header h2 { font-size: 28px; }
  .trainers-scroll { padding: 0 24px 32px; }
  .programs { padding: 60px 0; }
  .programs-header h2 { font-size: 28px; }
  .registration { padding: 60px 0; }
  .reg-header h2 { font-size: 28px; }
  .reg-intro { flex-direction: column-reverse; gap: 28px; }
  .reg-intro-img { flex: none; width: 100%; max-width: 400px; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .reg-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hlt-badge { font-size: 9px; letter-spacing: 1px; }
  .hlt-line { font-size: 36px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hs-divider { width: 40px; height: 1px; }
  .bento-num { font-size: 28px; }
  .acc-meta-grid { grid-template-columns: 1fr; }
}
