/* ==========================================
   ATTEBBA — LIGHT THEME STYLESHEET
   Navy + Teal palette from logo
   Fraunces (display) + DM Sans (body)
   ========================================== */

:root {
  --navy:       #1B3D7B;
  --navy-dark:  #122960;
  --navy-light: #2A5096;
  --teal:       #2BC4B4;
  --teal-dark:  #1EA898;
  --teal-light: #4DD4C6;
  --teal-pale:  #E8F9F7;
  --navy-pale:  #EEF2FA;

  --bg:         #FFFFFF;
  --bg2:        #F7F9FC;
  --bg3:        #EEF2FA;
  --surface:    #FFFFFF;
  --border:     rgba(27,61,123,0.1);
  --border-md:  rgba(27,61,123,0.18);

  --text:       #0F2148;
  --text-muted: #4A6490;
  --text-dim:   #8FA3C0;

  --radius:     14px;
  --radius-sm:  8px;
  --shadow-sm:  0 2px 12px rgba(27,61,123,0.08);
  --shadow:     0 8px 40px rgba(27,61,123,0.12);
  --shadow-lg:  0 20px 60px rgba(27,61,123,0.16);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:      72px;
  --max-w:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  box-shadow: 0 4px 14px rgba(27,61,123,0.3);
}
.nav-cta:hover { background: var(--navy-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 24px 32px 32px;
  gap: 20px;
  z-index: 99;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mobile-menu a:last-child {
  color: var(--navy);
  font-weight: 600;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(27,61,123,0.3);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,61,123,0.35);
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(43,196,180,0.35);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--navy); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border: 2px solid var(--navy);
  border-radius: 100px;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* ==========================================
   SECTION HEADS
   ========================================== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid rgba(43,196,180,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-head h2 em {
  font-style: italic;
  color: var(--teal-dark);
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 0 60px;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb1 {
  width: 500px; height: 500px;
  background: var(--teal-pale);
  top: -80px; right: -100px;
  opacity: 0.8;
}
.orb2 {
  width: 400px; height: 400px;
  background: var(--navy-pale);
  bottom: -60px; left: -80px;
  opacity: 0.7;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27,61,123,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid rgba(43,196,180,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--navy);
}
.hero-title em {
  font-style: italic;
  color: var(--teal-dark);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border-md);
}

/* --- LOGO in HERO --- */
.hero-logo-display {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-logo-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(27,61,123,0.15));
  animation: floatLogo 5s ease-in-out infinite;
}

.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.6s ease both;
}
.hero-pill:nth-child(1) { animation-delay: 0.3s; }
.hero-pill:nth-child(2) { animation-delay: 0.45s; }
.hero-pill:nth-child(3) { animation-delay: 0.6s; }

.pill-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.pill-icon.teal { background: var(--teal-pale); }
.pill-icon.navy { background: var(--navy-pale); }
.pill-icon.green { background: #EEF7EE; }

.pill-text { flex: 1; }
.pill-title { font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 2px; }
.pill-sub { font-size: 0.72rem; color: var(--text-dim); }
.pill-check {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feat-card:hover {
  border-color: rgba(43,196,180,0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feat-card:hover::after { transform: scaleX(1); }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feat-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================
   MODULES
   ========================================== */
.modules {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.modules-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.module-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  transition: all 0.25s;
}
.module-item:hover {
  border-color: rgba(43,196,180,0.35);
  background: var(--teal-pale);
  box-shadow: var(--shadow-sm);
}

.module-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--teal);
  opacity: 0.5;
  min-width: 48px;
  line-height: 1;
  padding-top: 2px;
}

.module-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.module-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.module-content ul { display: flex; flex-direction: column; gap: 5px; }
.module-content ul li {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
}
.module-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
}

/* ==========================================
   WHY ATTEBBA
   ========================================== */
.why {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(43,196,180,0.07);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.why .section-tag {
  color: var(--teal-light);
  background: rgba(43,196,180,0.12);
  border-color: rgba(43,196,180,0.2);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-left { max-width: 440px; }
.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: #fff;
}
.why-left h2 em {
  font-style: italic;
  color: var(--teal-light);
}
.why-left p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  font-size: 1rem;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(43,196,180,0.3);
}
.why-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  background: linear-gradient(135deg, var(--teal-pale) 0%, #fff 50%, var(--navy-pale) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 16px;
}
.cta-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 14px;
}
.footer-dichir { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-dichir a { color: var(--teal-light); font-weight: 500; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fl-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.fl-col a:hover { color: rgba(255,255,255,0.9); }
.footer-cta-link { color: var(--teal-light) !important; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-hero {
  padding-top: var(--nav-h);
  padding-bottom: 100px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-hero .orb1 { opacity: 0.5; }
.contact-hero .orb2 { opacity: 0.5; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-top: 72px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--navy);
}
.contact-info h1 em { font-style: italic; color: var(--teal-dark); }
.contact-info > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.cd-item { display: flex; align-items: flex-start; gap: 16px; }
.cd-icon {
  width: 40px; height: 40px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.cd-item a, .cd-item span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}
.cd-item a:hover { color: var(--teal-dark); }

.contact-promise { display: flex; flex-direction: column; gap: 10px; }
.cp-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cp-check {
  width: 18px; height: 18px;
  background: var(--teal);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* FORM */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,196,180,0.12);
  background: #fff;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6490' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; font-size: 0.95rem; }
.form-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; line-height: 1.5; }

.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; gap: 16px; }
.form-success.visible { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--teal-pale);
  border: 2px solid rgba(43,196,180,0.3);
  color: var(--teal-dark);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.form-success p { color: var(--text-muted); max-width: 320px; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.feat-card, .module-item, .why-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, background 0.25s, box-shadow 0.3s;
}
.feat-card.visible, .module-item.visible, .why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; padding: 0 32px; padding-top: calc(var(--nav-h) + 40px); min-height: auto; padding-bottom: 60px; }
  .hero-logo-display { display: none; }
  .hero-content { max-width: 100%; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .modules-list { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
}

/* ==========================================
   LANGUAGE SWITCHER (English pages)
   ========================================== */
.lang-switch-en {
  font-family: 'Cairo', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 5px 14px;
  transition: all 0.2s;
  text-decoration: none;
  margin-right: 8px;
}
.lang-switch-en:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
