/*
Theme Name: Saasunekk
Theme URI: https://www.saasunekk.sn
Author: Saasunekk
Author URI: https://www.saasunekk.sn
Description: Thème professionnel pour Saasunekk Services Numériques & Digitaux. Marketing Digital, Sites Web, Création Graphique, Formation, Photo & Vidéo. Basé à Dakar, Sénégal.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saasunekk
Tags: digital, agency, dakar, senegal, business, one-page, responsive
*/

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0D1525;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══ CHARTE GRAPHIQUE SAASUNEKK ═══ */
:root {
  --orange:   #F4A200;
  --orange2:  #E8920A;
  --navy:     #1E2D8F;
  --navy-dk:  #131D5E;
  --navy-lt:  #2A3DA8;
  --white:    #ffffff;
  --light:    #F5F7FF;
  --light2:   #EEF1FF;
  --text:     #0D1525;
  --muted:    #5A6380;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(30,45,143,.10);
  --shadow-lg:0 12px 48px rgba(30,45,143,.15);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: var(--navy);
  margin: 12px 0 16px; line-height: 1.15;
}
.section-header p { color: var(--muted); font-size: 17px; }
.section-tag {
  display: inline-block; background: #FFF3D4; color: var(--orange2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .4px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .2s ease; white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(244,162,0,.35); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid rgba(30,45,143,.25); }
.btn-outline:hover { border-color: var(--navy); background: var(--light2); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f0f4ff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* ═══ NAVBAR ═══ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,45,143,.08);
  transition: all .3s ease;
}
#navbar.scrolled { padding: 10px 0; box-shadow: 0 2px 20px rgba(30,45,143,.12); }
.nav-inner { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all .2s; }
.nav-links a:hover { color: var(--navy); background: var(--light2); }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding-top: 100px;
  position: relative; overflow: hidden; background: var(--navy-dk);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.blob1 { width: 600px; height: 600px; background: var(--orange); top: -100px; right: -100px; opacity:.18; }
.blob2 { width: 400px; height: 400px; background: var(--navy-lt); bottom: -50px; left: -50px; opacity:.4; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--orange) 0%, var(--orange2) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 80px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,162,0,.15); border: 1px solid rgba(244,162,0,.35);
  color: var(--orange); padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(36px, 6vw, 72px); font-weight: 800; color: #fff; line-height: 1.08; margin-bottom: 24px; max-width: 800px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.65); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; flex-wrap: wrap; }
.stat { text-align: center; padding: 0 32px 0 0; }
.stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat span { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; display: block; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.12); margin-right: 32px; }
.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-mouse { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,.3); border-radius: 13px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--orange); border-radius: 2px; animation: scrollDown 1.8s infinite; }
@keyframes scrollDown { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }

/* ═══ SERVICES ═══ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid rgba(30,45,143,.1); border-radius: var(--radius-lg); padding: 32px; transition: all .3s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--navy); border-color: var(--navy); }
.service-card.featured::before { background: var(--orange); transform: scaleX(1); }
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.6); }
.service-card.featured .service-list li { color: rgba(255,255,255,.75); }
.service-card.featured .service-list li::before { background: var(--orange); }
.service-card.featured .service-link { color: var(--orange); }
.service-badge { position: absolute; top: 20px; right: 20px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.service-icon { width: 56px; height: 56px; background: color-mix(in srgb, var(--ic) 12%, transparent); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--ic); margin-bottom: 20px; }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.service-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }
.service-list { margin-bottom: 24px; }
.service-list li { font-size: 13.5px; color: var(--muted); padding: 5px 0 5px 18px; position: relative; border-bottom: 1px solid rgba(30,45,143,.06); }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--navy); transition: gap .2s; }
.service-link:hover { gap: 10px; color: var(--orange); }

/* ═══ ABOUT ═══ */
.about-section { background: var(--light); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-card-main { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; color: #fff; }
.about-icon-row { display: flex; gap: 12px; margin-bottom: 28px; }
.about-badge-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.about-card-main h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.about-card-main p { color: rgba(255,255,255,.6); font-size: 14.5px; margin-bottom: 28px; }
.about-metrics { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.about-metrics div strong { display: block; font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--orange); }
.about-metrics div small { font-size: 12px; color: rgba(255,255,255,.5); }
.about-card-float { position: absolute; bottom: -24px; right: -24px; background: #fff; border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.float-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.about-card-float strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.about-card-float span { font-size: 12px; color: var(--muted); }
.about-content h2 { font-family: 'Syne', sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy); margin: 12px 0 20px; line-height: 1.2; }
.about-content > p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-check { width: 28px; height: 28px; background: #FFF3D4; color: var(--orange2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.feature-item p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ═══ PRICING ═══ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-card { background: #fff; border: 1px solid rgba(30,45,143,.1); border-radius: var(--radius-lg); padding: 28px; position: relative; transition: all .3s; }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pricing-card.featured-pricing { border: 2px solid var(--orange); }
.pricing-badge-top { position: absolute; top: -14px; left: 24px; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 100px; }
.pricing-category { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--cat, var(--navy)); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid color-mix(in srgb, var(--cat, var(--navy)) 15%, transparent); text-transform: uppercase; letter-spacing: .5px; }
.price-row { display: flex; flex-direction: column; gap: 16px; }
.price-item { display: flex; flex-direction: column; gap: 3px; padding-bottom: 16px; border-bottom: 1px solid rgba(30,45,143,.06); }
.price-item:last-child { border-bottom: none; padding-bottom: 0; }
.price-item strong { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.price-item span { font-size: 12.5px; color: var(--muted); }
.price-item em { font-style: normal; font-size: 15px; font-weight: 700; color: var(--orange); margin-top: 4px; }
.pricing-note { margin-top: 40px; padding: 20px 24px; background: var(--light2); border-radius: 12px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pricing-note svg { flex-shrink: 0; color: var(--navy); }
.pricing-note a { color: var(--orange); font-weight: 600; margin-left: auto; }

/* ═══ PORTFOLIO ═══ */
.portfolio-section { background: var(--light); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.portfolio-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(30,45,143,.08); transition: all .3s; }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-thumb { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-mock { background: rgba(255,255,255,.1); border-radius: 10px; padding: 12px; width: 80%; }
.mock-bar { display: flex; gap: 5px; margin-bottom: 8px; }
.mock-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
.mock-lines div { height: 8px; background: rgba(255,255,255,.2); border-radius: 4px; margin-bottom: 6px; }
.mock-lines div:first-child { width: 100%; }
.portfolio-brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.brand-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
.brand-lines div { height: 8px; background: rgba(255,255,255,.3); border-radius: 4px; width: 80px; margin-bottom: 6px; }
.portfolio-social { width: 80%; }
.social-post { background: rgba(255,255,255,.15); border-radius: 10px; padding: 10px; }
.post-header { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.post-av { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.post-header div { flex: 1; }
.post-header div::before, .post-header div::after { content: ''; display: block; height: 6px; background: rgba(255,255,255,.3); border-radius: 3px; margin-bottom: 4px; }
.post-header div::after { width: 60%; }
.post-img { height: 60px; background: rgba(255,255,255,.15); border-radius: 6px; }
.portfolio-video { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.play-btn { width: 64px; height: 64px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.4); }
.portfolio-info { padding: 20px 24px; }
.portfolio-tag { display: inline-block; background: color-mix(in srgb, var(--tc) 12%, transparent); color: var(--tc); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 10px; }
.portfolio-info h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.portfolio-info p { font-size: 13px; color: var(--muted); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--light); border-radius: var(--radius-lg); padding: 32px; transition: all .3s; border: 1px solid rgba(30,45,143,.06); }
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-author small { font-size: 12px; color: var(--muted); }

/* ═══ CTA ═══ */
.cta-section { background: var(--navy); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.cta-blob { position: absolute; width: 500px; height: 500px; background: var(--orange); border-radius: 50%; filter: blur(120px); opacity: .12; top: -100px; left: 50%; transform: translateX(-50%); }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-inner p { color: rgba(255,255,255,.6); font-size: 17px; max-width: 500px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══ CONTACT ═══ */
.contact-layout { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; background: var(--light); border-radius: var(--radius); padding: 20px; }
.contact-icon { width: 44px; height: 44px; background: color-mix(in srgb, var(--ci) 12%, transparent); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--ci); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-card a { display: block; font-size: 14px; color: var(--orange); margin-bottom: 2px; }
.contact-card span { font-size: 14px; color: var(--muted); }
.contact-form { background: #fff; border: 1px solid rgba(30,45,143,.1); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(30,45,143,.12); border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px; color: var(--text); background: #fff; transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,162,0,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.form-success { display: none; align-items: center; gap: 12px; background: #FFF3D4; border: 1px solid rgba(244,162,0,.4); color: #7A4F00; padding: 16px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; margin-top: 16px; }
.form-success.show { display: flex; }

/* ═══ FOOTER ═══ */
.footer { background: var(--navy-dk); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col h4::after { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); margin-top: 6px; border-radius: 2px; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.45); margin: 16px 0 24px; line-height: 1.65; }
.footer-logo-img { height: 52px; width: auto; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all .2s; }
.social-links a:hover { background: var(--orange); color: #fff; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col > p { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 6px; }
.footer-col > p a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col > p a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom strong { color: rgba(255,255,255,.5); }

/* ═══ WHATSAPP ═══ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999; transition: all .3s; animation: floatIn .5s .5s both; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes floatIn { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }

/* ═══ ANIMATIONS ═══ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].visible { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-card-float { right: 12px; bottom: -12px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(19,29,94,.98); justify-content: center; align-items: center; gap: 8px; z-index: 999; }
  .nav-links.open a { font-size: 20px; color: #fff; padding: 12px 24px; }
  .nav-links.open a:hover { color: var(--orange); background: transparent; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero h1 { font-size: 36px; }
  .stat-sep { display: none; }
  .stat { padding: 0 16px 0 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .pricing-note { flex-direction: column; }
  .pricing-note a { margin-left: 0; }
}
