﻿/* AR-ROHMAH PUTRA IBS - MODERN REDESIGN */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1E3A5F;
  --primary-light: #2563EB;
  --primary-dark: #0F172A;
  --gold: #B8860B;
  --gold-light: #DAA520;
  --gold-dark: #996515;
  --purple: #7C3AED;
  --blue: #3B82F6;
  --white: #FFFFFF;
  --bg: #FAFBFC;
  --bg-alt: #F1F5F9;
  --text: #0F172A;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --wa: #25D366;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-2xl: 2rem;
  --r-full: 9999px;
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 250ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons - Touch target min 44x44px, Focus states for keyboard */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  min-width: 44px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn--primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--white); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.btn--wa { background: var(--wa); color: var(--white); }
.btn--wa:hover { background: #20BD5A; transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn--light:hover { background: rgba(255,255,255,0.25); }
.btn--sm { padding: 0.5rem 1rem; min-height: 36px; }
.btn--lg { padding: 1rem 2rem; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(226, 232, 240, 0.5); transition: all var(--duration); }
.header.scrolled { box-shadow: var(--shadow); padding: 0.75rem 0; }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo__img { width: 44px; height: 44px; border-radius: var(--r-md); object-fit: cover; }
.logo__fallback { width: 44px; height: 44px; background: var(--primary); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; color: var(--white); }
.logo__text { display: flex; flex-direction: column; }
.logo__name { font-size: 0.9375rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.logo__tagline { font-size: 0.6875rem; color: var(--text-muted); }
.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop__link { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); transition: color var(--duration); }
.nav-desktop__link:hover, .nav-desktop__link.active { color: var(--primary); }
.nav-desktop__link.active { font-weight: 600; }
.nav-desktop__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}
.header__actions { display: flex; align-items: center; gap: 1rem; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.hero__shape--1 { width: 600px; height: 600px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); top: -200px; right: -200px; }
.hero__shape--2 { width: 400px; height: 400px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); bottom: -100px; left: -100px; }
.hero__shape--3 { width: 300px; height: 300px; background: var(--purple); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.2; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero__content { position: relative; z-index: 2; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: var(--r-full); font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.hero__badge-dot { width: 8px; height: 8px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.2); } }
.hero__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; color: var(--text); }
.text-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient--light { background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.8) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subtitle { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; line-height: 1.7; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero__stats { display: flex; align-items: center; gap: 2rem; }
.hero__stat { text-align: center; }
.hero__stat-number { display: block; font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.hero__stat-label { font-size: 0.75rem; color: var(--text-muted); }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero__visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero__card { background: var(--white); border-radius: var(--r-2xl); padding: 2rem; box-shadow: var(--shadow-xl); width: 100%; max-width: 400px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.hero__card-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(30, 58, 95, 0.08) 0%, transparent 50%); pointer-events: none; }
.hero__card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); position: relative; }
.hero__card-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem; }
.hero__card-title { font-size: 1.125rem; font-weight: 700; }
.hero__card-subtitle { font-size: 0.8125rem; color: var(--text-muted); }
.hero__steps { display: flex; flex-direction: column; gap: 0.75rem; }
.hero__step { display: flex; align-items: center; gap: 0.875rem; padding: 0.5rem; border-radius: var(--r-md); transition: all var(--duration); }
.hero__step:hover { background: var(--bg); }
.hero__step--highlight { background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%); }
.hero__step--highlight .hero__step-num { background: var(--primary); color: var(--white); }
.hero__step-num { width: 28px; height: 28px; background: var(--bg-alt); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.hero__step-text { font-size: 0.875rem; color: var(--text); }
.hero__card-cta { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.75rem; background: var(--bg); border-radius: var(--r-md); font-size: 0.875rem; font-weight: 600; color: var(--primary); transition: all var(--duration); }
.hero__card-cta:hover { background: var(--primary); color: var(--white); }
.hero__float { position: absolute; width: 50px; height: 50px; background: var(--white); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); color: var(--gold); font-size: 1.25rem; animation: float 3s ease-in-out infinite; }
.hero__float--1 { top: -20px; right: -20px; animation-delay: 0s; }
.hero__float--2 { bottom: -20px; left: -20px; animation-delay: 1s; }
.hero__float--3 { top: 50%; right: -30px; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Scroll Indicator */
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.75rem; animation: bounce 2s infinite; }
.hero__scroll-mouse { width: 24px; height: 40px; border: 2px solid var(--text-muted); border-radius: 12px; display: flex; justify-content: center; padding-top: 8px; }
.hero__scroll-wheel { width: 4px; height: 8px; background: var(--text-muted); border-radius: 2px; animation: scroll 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }
@keyframes scroll { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }

/* Sections */
.section { padding: 6rem 0; }
.section--alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-full); font-size: 0.75rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.section-label i { font-size: 0.875rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; color: var(--text); }
.section-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* Steps Grid */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { background: var(--white); border-radius: var(--r-xl); padding: 1.75rem; border: 1px solid var(--border); transition: all var(--duration) var(--ease-out); position: relative; overflow: hidden; }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%); opacity: 0; transition: opacity var(--duration); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-card:hover::before { opacity: 1; }
.step-card--highlight { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-color: transparent; }
.step-card--highlight::before { opacity: 1; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); }
.step-card--highlight .step-card__title, .step-card--highlight .step-card__desc { color: var(--white); }
.step-card--highlight .step-card__icon { background: rgba(255,255,255,0.2); color: var(--white); }
.step-card--highlight .step-card__desc strong { color: var(--gold-light); }
.step-card__badge { position: absolute; top: 1.25rem; right: 1.25rem; width: 40px; height: 40px; background: var(--bg-alt); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 800; color: var(--gold); }
.step-card__badge--light { background: rgba(255,255,255,0.2); color: var(--white); }
.step-card__icon { width: 56px; height: 56px; background: var(--bg-alt); color: var(--primary); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; transition: all var(--duration); }
.step-card:hover .step-card__icon { transform: scale(1.1); }
.step-card__icon--wa { background: rgba(37, 211, 102, 0.1); color: var(--wa); }
.step-card__icon--gold { background: rgba(184, 134, 11, 0.1); color: var(--gold); }
.step-card__icon--light { background: rgba(255,255,255,0.2); color: var(--white); }
.step-card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Payment Box */
.payment-box { background: var(--bg); border: 2px dashed var(--border); border-radius: var(--r-lg); padding: 1rem; margin-top: 1rem; text-align: center; }
.payment-box__header { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: var(--white); padding: 0.375rem 0.875rem; border-radius: var(--r-full); font-size: 0.75rem; font-weight: 600; margin-bottom: 0.5rem; }
.payment-box__account { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: 2px; }
.payment-box__name { font-size: 0.8125rem; color: var(--text-muted); }
.payment-box__amount { font-size: 1.125rem; font-weight: 700; color: var(--gold); margin-top: 0.5rem; }

/* Confirm Box */
.confirm-box { background: rgba(37, 211, 102, 0.08); border: 1px solid rgba(37, 211, 102, 0.2); border-radius: var(--r-lg); padding: 1rem; margin-top: 1rem; }
.confirm-box__title { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 600; color: #16A34A; margin-bottom: 0.75rem; }
.confirm-box__items { display: flex; flex-direction: column; gap: 0.5rem; }
.confirm-box__item { display: flex; align-items: center; gap: 0.75rem; background: var(--white); padding: 0.75rem 1rem; border-radius: var(--r-md); transition: all var(--duration); min-height: 44px; }
.confirm-box__item:hover { background: var(--wa); color: var(--white); transform: translateX(4px); }
.confirm-box__item:focus-visible { outline: 2px solid var(--wa); outline-offset: 2px; }
.confirm-box__label { font-size: 0.6875rem; font-weight: 700; background: var(--bg-alt); color: var(--text-muted); padding: 0.25rem 0.5rem; border-radius: var(--r-sm); }
.confirm-box__item:hover .confirm-box__label { background: rgba(255,255,255,0.2); color: var(--white); }
.confirm-box__number { flex: 1; font-size: 0.9375rem; font-weight: 600; }
.confirm-box__item i { color: var(--text-muted); font-size: 0.75rem; transition: color var(--duration); }
.confirm-box__item:hover i { color: var(--white); }

/* Requirements Grid */
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.req-card { background: var(--white); border-radius: var(--r-xl); padding: 1.75rem; border: 1px solid var(--border); transition: all var(--duration) var(--ease-out); }
.req-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.req-card__header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.req-card__icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem; flex-shrink: 0; }
.req-card__icon--blue { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.req-card__icon--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
.req-card__icon--purple { background: linear-gradient(135deg, var(--purple) 0%, #9333EA 100%); }
.req-card__title { font-size: 1.125rem; font-weight: 700; }
.req-card__subtitle { font-size: 0.8125rem; color: var(--text-muted); }
.req-card__list { display: flex; flex-direction: column; gap: 0.75rem; }
.req-card__item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--text); }
.req-card__item i { color: var(--gold); flex-shrink: 0; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 6rem 0; position: relative; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; }
.cta__shape { position: absolute; border-radius: 50%; }
.cta__shape--1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: -200px; right: -100px; opacity: 0.2; }
.cta__shape--2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%); bottom: -150px; left: -100px; opacity: 0.3; }
.cta__shape--3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--white) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.05; }
.cta__inner { text-align: center; position: relative; z-index: 2; }
.cta__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--r-full); font-size: 0.8125rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }
.cta__badge i { color: var(--gold-light); }
.cta__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.cta__subtitle { font-size: 1.125rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2.5rem; line-height: 1.7; }
.cta__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.btn--wa.btn--lg { padding: 1rem 2rem; }
.btn--wa.btn--lg i { font-size: 1.5rem; }
.btn--wa.btn--lg span { display: flex; flex-direction: column; text-align: left; }
.btn--wa.btn--lg small { font-size: 0.75rem; font-weight: 400; opacity: 0.9; }
.cta__social { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.cta__social span { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.cta__social-link { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.125rem; transition: all var(--duration); }
.cta__social-link:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.cta__social-link:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* Footer */
.footer { background: var(--text); color: var(--white); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand .logo__name { color: var(--white); }
.footer__brand .logo__tagline { color: rgba(255, 255, 255, 0.5); }
.footer__brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer__title { font-size: 0.875rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--white); }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; transition: color var(--duration); }
.footer__links a:hover { color: var(--gold-light); }
.footer__links a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; border-radius: 2px; }
.footer__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; transition: color var(--duration); }
.footer__contact-item:hover { color: var(--gold-light); }
.footer__contact-item i { color: var(--gold-light); width: 16px; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all var(--duration); }
.footer__social-link:hover { background: var(--gold); transform: translateY(-3px); }
.footer__social-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer__bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.footer__bottom p { color: rgba(255, 255, 255, 0.4); font-size: 0.8125rem; }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__buttons { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__card { max-width: 380px; margin: 0 auto; }
  .hero__stats { justify-content: center; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header__actions .btn--outline { display: none; }
  .header__actions .btn--primary { padding: 0.5rem 0.875rem; font-size: 0.75rem; }
  .hero { padding: 80px 0 40px; min-height: auto; }
  .hero__card { max-width: 320px; padding: 1.5rem; }
  .hero__float { display: none; }
  .hero__scroll { display: none; }
  .steps-grid, .req-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer__social { justify-content: center; }
  .footer__brand p { max-width: 100%; }
  .section { padding: 4rem 0; }
  .cta { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero__buttons { flex-direction: column; width: 100%; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__stat-divider { width: 40px; height: 1px; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .cta__buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* Reduced Motion - Respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__float, .hero__badge-dot, .hero__scroll {
    animation: none !important;
  }
}