/* ==========================================================================
   CDF Manage — Shared Stylesheet
   Gestion Cdf Inc. | Professional Systems Integration Consulting
   ========================================================================== */

:root {
  --navy-deep: #0a1628;
  --navy-mid: #1a2d4a;
  --navy-light: #2c3e5c;
  --gold: #c8963e;
  --gold-light: #d4a853;
  --gold-pale: #f5e6cc;
  --cream: #f9f7f2;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef1f5;
  --gray-200: #dde2e8;
  --gray-300: #bcc3ce;
  --gray-400: #8b95a5;
  --gray-500: #5f6b7a;
  --gray-600: #3d4754;
  --gray-700: #2a3340;
  --gray-800: #1a2230;
  --text-primary: #1a2230;
  --text-secondary: #4a5568;
  --text-light: #8b95a5;
  --border: #dde2e8;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 12px rgba(10,22,40,0.10);
  --shadow-lg: 0 8px 30px rgba(10,22,40,0.12);
  --shadow-xl: 0 16px 48px rgba(10,22,40,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 76px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 10000;
  background: var(--navy-deep); color: var(--white); padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.25rem; color: var(--navy-deep); }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text span { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.925rem; font-weight: 500; color: var(--text-secondary); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--navy-deep); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--navy-deep) !important;
  padding: 10px 22px !important; border-radius: var(--radius-sm); font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; padding: 4px; z-index: 1001; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 32px 24px;
  flex-direction: column; gap: 16px; overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 18px; font-size: 1.1rem; font-weight: 500;
  color: var(--text-primary); border-radius: var(--radius-sm);
  background: var(--gray-50); transition: background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: var(--gold-pale); color: var(--navy-deep); }
.mobile-nav .mobile-cta { background: var(--gold); color: var(--navy-deep); font-weight: 700; text-align: center; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center;
  background: var(--navy-deep); color: var(--white); overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(200,150,62,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(44,62,92,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 60% 80%, rgba(200,150,62,0.08) 0%, transparent 70%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.3;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-block; background: rgba(200,150,62,0.15); border: 1px solid var(--gold);
  color: var(--gold-light); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; font-weight: 800;
  color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-lead {
  font-size: 1.125rem; color: #bcc3ce; line-height: 1.7; margin-bottom: 32px; max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 0.95rem; font-weight: 600; border-radius: var(--radius-sm); transition: all var(--transition); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,62,0.35); }
.btn-outline { border: 2px solid #4a5568; color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(200,150,62,0.08); }
.btn-light { background: var(--white); color: var(--navy-deep); }
.btn-light:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-orb {
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--gold-pale), var(--navy-mid));
  opacity: 0.6; filter: blur(60px); position: absolute;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.75; }
}
.hero-card {
  position: relative; z-index: 1; background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px; width: 100%; max-width: 380px;
}
.hero-card-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-card-item:last-child { border-bottom: none; }
.hero-card-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-icon.blue { background: rgba(59,130,246,0.2); color: #60a5fa; font-weight: 700; }
.hero-card-icon.gold { background: rgba(200,150,62,0.2); color: var(--gold-light); font-weight: 700; }
.hero-card-icon.green { background: rgba(34,197,94,0.2); color: #4ade80; font-weight: 700; }
.hero-card-text strong { display: block; font-size: 0.95rem; color: var(--white); font-weight: 600; }
.hero-card-text span { font-size: 0.8rem; color: #8b95a5; }

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy-deep); color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  color: inherit; margin-bottom: 14px; letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: #bcc3ce; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem;
}
.service-icon.navy { background: var(--navy-deep); color: var(--gold-light); }
.service-icon.gold { background: var(--gold-pale); color: var(--navy-deep); }
.service-icon.slate { background: var(--navy-light); color: var(--gold-pale); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-image-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-image {
  width: 100%; aspect-ratio: 4/3; background: var(--navy-mid); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.about-image-inner {
  position: relative; z-index: 1; text-align: center; color: var(--white);
}
.about-image-inner .big-num { font-size: 5rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.about-image-inner .big-label { font-size: 1.1rem; color: #bcc3ce; margin-top: 8px; }
.about-accent {
  position: absolute; bottom: -20px; left: -20px; width: 160px; height: 160px;
  background: var(--gold); border-radius: 50%; opacity: 0.15; filter: blur(40px);
}
.about-content h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; margin-bottom: 20px; color: var(--text-primary); }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; }
.about-stats-row { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.about-stat-item { text-align: left; }
.about-stat-item .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--navy-deep); }
.about-stat-item .stat-lbl { font-size: 0.85rem; color: var(--text-light); }

/* ==========================================================================
   STATS COUNTERS
   ========================================================================== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
}
.stat-card {
  padding: 36px 20px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-icon { font-size: 2.2rem; margin-bottom: 14px; }
.stat-value { font-size: 2.8rem; font-weight: 800; color: var(--gold-light); line-height: 1.1; }
.stat-value .suffix { font-size: 1.5rem; }
.stat-label { font-size: 0.95rem; color: #8b95a5; margin-top: 8px; font-weight: 500; }

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 48px; left: 12%; right: 12%; height: 2px;
  background: var(--border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--border); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; font-size: 1.3rem; font-weight: 800;
  color: var(--navy-deep); transition: all var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--gold); border-color: var(--gold); color: var(--navy-deep);
}
.process-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.process-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--white);
}
.testimonial-avatar.a1 { background: var(--navy-deep); }
.testimonial-avatar.a2 { background: var(--navy-light); }
.testimonial-avatar.a3 { background: var(--navy-mid); }
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info { padding-top: 12px; }
.contact-info h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; margin-bottom: 16px; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem; color: var(--navy-deep);
}
.contact-detail-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.contact-detail-text span { font-size: 0.9rem; color: var(--text-secondary); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--text-primary); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,62,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--navy-deep); color: var(--white);
  border: none; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
}
.btn-submit:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; color: #22c55e; margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: var(--white); text-align: center; padding: 72px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,150,62,0.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; color: #bcc3ce; margin-bottom: 28px; }
.cta-banner .btn { font-size: 1rem; padding: 16px 36px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--gray-800); color: #bcc3ce; padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 300px; }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 0.9rem; color: #8b95a5; padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #8b95a5; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ==========================================================================
   PRIVACY & TERMS CONTENT PAGES
   ========================================================================== */
.legal-hero {
  background: var(--navy-deep); color: var(--white); padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.legal-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(200,150,62,0.1) 0%, transparent 70%);
}
.legal-hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; position: relative; z-index: 1; }
.legal-hero .last-updated { color: #8b95a5; font-size: 0.9rem; margin-top: 10px; position: relative; z-index: 1; }

.legal-content { padding: 64px 0; }
.legal-content .container { max-width: 800px; }
.legal-content h2 {
  font-size: 1.4rem; font-weight: 700; color: var(--navy-deep); margin: 36px 0 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gold-pale);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; color: var(--text-secondary); line-height: 1.75; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--gold); font-weight: 600; }
.legal-content a:hover { color: var(--navy-deep); text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
