@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0b1f3a;
  --navy-mid: #132d52;
  --navy-dark: #061326;
  --sky: #0ea5e9;
  --sky-light: #e0f2fe;
  --gold: #f59e0b;
  --orange: #f97316;
  --orange-glow: rgba(249, 115, 22, 0.4);
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --green: #16a34a;
  --red: #dc2626;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(11,31,58,0.06);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--navy); line-height: 1.6; overflow-x: hidden; }

/* ── URGENCY BAR ── */
.urgency-bar { background: linear-gradient(90deg, #b91c1c, #dc2626, #991b1b); background-size: 200% 200%; animation: gradientShift 4s ease infinite; color: #fff; text-align: center; padding: 12px 16px; font-size: 14px; font-weight: 500; letter-spacing: .02em; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.urgency-bar strong { font-weight: 700; }
#timer { font-family: 'Inter', sans-serif; font-variant-numeric: tabular-nums; font-weight: 700; font-size: 15px; display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; padding: 4px 12px; letter-spacing: 0.04em; color: #fef08a; text-shadow: 0 0 10px rgba(253,224,71,0.5); }
.bell-icon { animation: swing 2.5s infinite ease-in-out; transform-origin: top center; display: inline-block; vertical-align: middle; margin-right: 4px; }
@keyframes swing { 0%,100% { transform: rotate(0); } 10%,30%,50%,70%,90% { transform: rotate(8deg); } 20%,40%,60%,80% { transform: rotate(-8deg); } }

/* ── NAV ── */
nav { background: rgba(11, 31, 58, 0.95); backdrop-filter: blur(10px); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-logo { display: flex; align-items: center; gap: 10px; transition: transform 0.2s; }
.nav-logo:hover { transform: scale(1.02); }
.nav-pill { background: linear-gradient(135deg, var(--orange), #ea580c); color: #fff; border-radius: 999px; padding: 10px 22px; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: all 0.3s; box-shadow: 0 4px 15px var(--orange-glow); }
.nav-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--orange-glow); }

/* ── HERO ── */
.hero { background: url("public/Group%20Photo%20101.jpeg") center/cover no-repeat; padding: 100px 24px 120px; text-align: center; position: relative; overflow: hidden; z-index: 1; }
.hero::after { content: ''; position: absolute; inset: 0; background: url("public/Bossman.jpeg") center/cover no-repeat; z-index: -2; animation: heroFade 12s infinite alternate; }
@keyframes heroFade { 0%, 35% { opacity: 0; } 65%, 100% { opacity: 1; } }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,31,58,0.7), rgba(6,19,38,0.95)), radial-gradient(circle at 15% 50%, rgba(14,165,233,0.3), transparent 60%), radial-gradient(circle at 85% 30%, rgba(74,222,128,0.25), transparent 60%); z-index: -1; pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,165,233,.2); backdrop-filter: blur(8px); border: 1px solid rgba(14,165,233,.4); border-radius: 999px; padding: 8px 18px; margin-bottom: 32px; box-shadow: 0 4px 20px rgba(14,165,233,0.2); }
.hero-badge-dot { width: 10px; height: 10px; background: #4ade80; border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; box-shadow: 0 0 10px #4ade80; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(.85); } }
.hero-badge span { color: rgba(255,255,255,.95); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(38px, 8vw, 64px); color: #fff; line-height: 1.1; letter-spacing: -.02em; max-width: 800px; margin: 0 auto 24px; text-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.hero h1 em { color: var(--sky); font-style: normal; text-shadow: 0 0 30px rgba(14,165,233,0.5); position: relative; }
.hero h1 em::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 6px; background: var(--sky); opacity: 0.3; border-radius: 4px; }
.hero-sub { font-size: clamp(17px, 3.5vw, 21px); color: rgba(255,255,255,.85); max-width: 650px; margin: 0 auto 40px; font-weight: 300; line-height: 1.6; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 56px; }
.btn-primary { background: linear-gradient(135deg, var(--orange), #ea580c); color: #fff; border: none; border-radius: 999px; padding: 16px 36px; font-size: 17px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 6px 20px var(--orange-glow); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--orange-glow); }
.btn-secondary { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 15px 32px; font-size: 16px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; }
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); transform: translateY(-3px); }

.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; max-width: 850px; margin: 0 auto; }
.hero-stat { background: rgba(255,255,255,.05); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 20px 16px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.2); transition: transform 0.3s, background 0.3s; }
.hero-stat:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: #fff; display: block; margin-bottom: 4px; text-shadow: 0 4px 12px rgba(255,255,255,0.25); }
.hero-stat-lbl { font-size: 12px; color: var(--sky-light); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy-mid); padding: 20px 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 40px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; transition: color 0.3s; }
.trust-item:hover { color: #fff; }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; fill: var(--sky); }

/* ── SECTION HELPERS ── */
.section { padding: 90px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; display: inline-block; padding: 4px 12px; background: var(--sky-light); border-radius: 999px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4.5vw, 44px); color: var(--navy); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--gray-500); max-width: 600px; margin-bottom: 48px; line-height: 1.6; }

/* ── PROBLEM SECTION ── */
.problem { background: #fff; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:768px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card { border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-300); transition: transform 0.3s, box-shadow 0.3s; }
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-card.bad { background: linear-gradient(145deg, #fff, #fff5f5); border-color: #fecaca; }
.problem-card.good { background: linear-gradient(145deg, #fff, #f0fdf4); border-color: #bbf7d0; }
.problem-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.problem-card.bad .problem-card-icon { background: #fee2e2; }
.problem-card.good .problem-card-icon { background: #dcfce7; }
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.problem-card.bad h3 { color: var(--red); }
.problem-card.good h3 { color: var(--green); }
.problem-card p { font-size: 15px; color: var(--gray-700); line-height: 1.6; }

/* ── PROGRAMS ── */
.programs { background: var(--cream); position: relative; }
.programs::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 100% 0%, rgba(14,165,233,0.05), transparent 40%); pointer-events: none; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.prog-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--sky-light); }
.prog-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.prog-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--sky-light), #bae6fd); display: flex; align-items: center; justify-content: center; color: var(--sky); box-shadow: 0 4px 12px rgba(14,165,233,0.15); }
.prog-duration { font-size: 12px; font-weight: 700; color: var(--sky); background: #fff; border: 1px solid var(--sky-light); border-radius: 999px; padding: 6px 12px; letter-spacing: .04em; }
.prog-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.prog-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.prog-tag { display: inline-block; font-size: 12px; font-weight: 600; background: var(--gray-100); color: var(--gray-700); border-radius: 999px; padding: 5px 14px; align-self: flex-start; }

/* ── TESTIMONIALS ── */
.testimonials { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: var(--cream); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(0,0,0,0.03); position: relative; transition: transform 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-card::before { content: '\201C'; font-family: 'DM Serif Display', serif; font-size: 80px; color: rgba(14,165,233,0.15); position: absolute; top: 10px; left: 24px; line-height: 1; }
.testi-text { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; padding-top: 36px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 18px; color: #fff; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.testi-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.testi-role { font-size: 13px; color: var(--gray-500); }
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 8px; letter-spacing: 2px; }

/* ── LEAD FORM SECTION ── */
.form-section { background: var(--navy-dark); position: relative; overflow: hidden; padding: 100px 24px; }
.form-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(14,165,233,.15) 0%, transparent 60%); pointer-events: none; }
.form-section::after { content: ''; position: absolute; bottom: -20%; right: -20%; width: 80%; height: 80%; background: radial-gradient(circle at center, rgba(74,222,128,.1) 0%, transparent 50%); pointer-events: none; }
.form-wrapper { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; }
@media(max-width:900px) { .form-wrapper { grid-template-columns: 1fr; } }
.form-left h2 { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 4.5vw, 48px); color: #fff; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 20px; }
.form-left p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; font-weight: 300; line-height: 1.6; }
.form-promise { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.form-promise-item { display: flex; align-items: flex-start; gap: 14px; }
.promise-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; box-shadow: 0 0 10px rgba(14,165,233,0.2); }
.promise-icon svg { width: 14px; height: 14px; fill: var(--sky); }
.form-promise-item span { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.5; }
.trust-logos { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-logo-badge { background: rgba(255,255,255,.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 10px 18px; font-size: 13px; color: rgba(255,255,255,.8); font-weight: 600; display: flex; align-items: center; gap: 8px; transition: background 0.3s; }
.trust-logo-badge:hover { background: rgba(255,255,255,.1); }

/* ── FORM CARD (GLASSMORPHISM) ── */
.form-card { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-card-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid.full { grid-template-columns: 1fr; }
@media(max-width:500px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--gray-700); letter-spacing: .02em; }
.field input, .field select { border: 1.5px solid var(--gray-300); border-radius: 12px; padding: 14px 16px; font-size: 15px; color: var(--navy); font-family: 'Inter', sans-serif; outline: none; transition: all .2s; background: rgba(255,255,255,0.8); width: 100%; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.field input:focus, .field select:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(14,165,233,.15), inset 0 2px 4px rgba(0,0,0,0.02); background: #fff; }
.field input::placeholder { color: var(--gray-300); }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' 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; background-size: 16px; padding-right: 40px; }
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.radio-chip { padding: 10px 18px; border: 1.5px solid var(--gray-300); border-radius: 999px; font-size: 14px; cursor: pointer; color: var(--gray-700); transition: all .2s; user-select: none; font-family: 'Inter', sans-serif; font-weight: 500; background: rgba(255,255,255,0.6); }
.radio-chip:hover { border-color: var(--sky); background: rgba(14,165,233,0.05); }
.radio-chip.active { border-color: var(--sky); background: var(--sky-light); color: var(--sky); font-weight: 700; box-shadow: 0 2px 8px rgba(14,165,233,0.15); }
.field-label-row { display: flex; justify-content: space-between; align-items: baseline; }
.field-opt { font-size: 12px; color: var(--gray-500); font-weight: 400; }
.form-submit { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--orange), #ea580c); color: #fff; border: none; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Inter', sans-serif; transition: all .2s; box-shadow: 0 6px 16px var(--orange-glow); position: relative; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--orange-glow); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-footer-note { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 500; }
.form-footer-note svg { width: 14px; height: 14px; fill: var(--gray-500); }

/* Error state for inputs */
.field.error input, .field.error select { border-color: var(--red); background-color: #fef2f2; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1); }
.error-msg { color: var(--red); font-size: 12px; margin-top: 4px; font-weight: 500; display: none; }
.field.error .error-msg { display: block; animation: fadeIn 0.3s; }

/* ── SUCCESS STATE ── */
.success-state { display: none; text-align: center; padding: 24px 0; animation: fadeIn 0.5s ease; }
.success-state.show { display: block; }
.success-icon-wrap { width: 80px; height: 80px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(22,163,74,0.15); animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.success-icon-wrap svg { width: 40px; height: 40px; fill: var(--green); }
.success-state h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.success-state p { font-size: 15px; color: var(--gray-700); margin-bottom: 24px; line-height: 1.6; }
.wa-cta { display: inline-flex; align-items: center; justify-content: center; width: 100%; gap: 10px; background: #25D366; color: #fff; border-radius: 12px; padding: 16px 24px; font-size: 16px; font-weight: 700; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.3s; box-shadow: 0 6px 16px rgba(37,211,102,0.3); }
.wa-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.4); }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 60px 24px 30px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
footer .footer-brand { font-family: 'DM Serif Display', serif; font-size: 24px; color: #fff; margin-bottom: 10px; }
footer .footer-brand span { color: var(--sky); }
footer p { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
footer .footer-links { display: flex; gap: 24px; justify-content: center; margin: 24px 0; flex-wrap: wrap; }
footer .footer-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.6); text-decoration: none; transition: color 0.2s; }
footer .footer-links a:hover { color: var(--sky); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 32px 0; }

/* ── STEP PROGRESS ── */
.step-bar { display: flex; gap: 6px; margin-bottom: 24px; }
.step-seg { height: 6px; flex: 1; border-radius: 3px; background: var(--gray-100); transition: background .4s ease; }
.step-seg.done { background: var(--sky); }
.step-seg.active { background: var(--orange); box-shadow: 0 0 8px var(--orange-glow); }

/* ── FLOATING WA BUTTON ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); cursor: pointer; text-decoration: none; transition: transform .2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.wa-float:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 12px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* Loader */
.loader-spinner { border: 3px solid rgba(255,255,255,0.3); border-top: 3px solid white; border-radius: 50%; width: 20px; height: 20px; animation: spin 1s linear infinite; display: none; }
.form-submit.loading .loader-spinner { display: inline-block; }
.form-submit.loading svg { display: none; }

/* Animations */
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.animate-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.animate-up.visible { opacity: 1; transform: translateY(0); }

@media(max-width:768px) {
  nav { padding: 12px 16px; }
  .hero { padding: 60px 16px 80px; }
  .section { padding: 60px 16px; }
  .form-card { padding: 24px; }
  .form-section { padding: 60px 16px; }
}
