/* ==========================================================================
   OPTIMAL MARKETING SOLUTIONS - LIGHT THEME (LITE THEME) DESIGN SYSTEM
   Theme: Strategic, Luxurious, Modern, Executive, Minimal, Light Mode RTL
   Colors: Royal Blue (#0025CC), Executive Purple (#8F1EAE), White (#FFFFFF), Gold (#C6A75E)
   Typography: Cairo (Arabic) & Manrope (English)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES (LIGHT THEME)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Core Colors */
  --color-royal-blue: #0025CC;
  --color-royal-blue-glow: rgba(0, 37, 204, 0.25);
  --color-royal-blue-light: #1A40FF;
  
  --color-executive-purple: #8F1EAE;
  --color-executive-purple-glow: rgba(143, 30, 174, 0.25);
  --color-executive-purple-light: #B428DC;

  --color-gold: #C6A75E;
  --color-gold-glow: rgba(198, 167, 94, 0.3);
  --color-gold-dark: #9E7D33;

  --color-dark-heading: #070B26;
  --color-text-body: #1E2445;
  --color-text-muted: #525C86;
  --color-text-dim: #848EB7;

  /* Light Theme Surfaces & Backgrounds */
  --bg-main: #FFFFFF;
  --bg-surface-soft: #F4F6FF;
  --bg-card-glass: rgba(255, 255, 255, 0.85);
  --bg-card-glass-hover: rgba(255, 255, 255, 0.98);
  
  --border-glass: rgba(0, 37, 204, 0.08);
  --border-glass-bright: rgba(0, 37, 204, 0.16);
  --border-gold-accent: rgba(198, 167, 94, 0.45);

  /* Typography */
  --font-arabic: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-english: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Shadows & Reflections */
  --shadow-luxury: 0 20px 50px -10px rgba(0, 37, 204, 0.09), 0 10px 25px -15px rgba(143, 30, 174, 0.12);
  --shadow-hover: 0 30px 60px -12px rgba(0, 37, 204, 0.18), 0 15px 30px -10px rgba(198, 167, 94, 0.2);
  --shadow-glow-blue: 0 0 30px rgba(0, 37, 204, 0.2);
  --shadow-glow-gold: 0 0 25px rgba(198, 167, 94, 0.3);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-out-expo);
  --transition-normal: 0.45s var(--ease-out-expo);

  /* Layout */
  --container-max-width: 1280px;
  --header-height: 100px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
  background-color: var(--bg-main);
  color: var(--color-text-body);
  font-family: var(--font-arabic);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: var(--bg-main);
}

::selection {
  background: var(--color-royal-blue);
  color: #FFFFFF;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F0F3FC;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 37, 204, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-royal-blue);
}

/* Custom Cursor Effects */
.cursor-dot, .cursor-glow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.15s ease-out;
  display: none;
}

@media (pointer: fine) {
  .cursor-dot {
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-royal-blue);
    box-shadow: 0 0 10px var(--color-royal-blue);
  }
  .cursor-glow {
    display: block;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(0, 37, 204, 0.3);
    background: radial-gradient(circle, rgba(143, 30, 174, 0.08) 0%, transparent 70%);
  }
}

/* --------------------------------------------------------------------------
   3. HERO DYNAMIC BACKGROUND & AMBIENT LIGHT MESH
   -------------------------------------------------------------------------- */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

#hero-dynamic-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: floatOrbLight 20s infinite alternate ease-in-out;
}

.hero-orb-1 {
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 37, 204, 0.4) 0%, rgba(0, 37, 204, 0) 70%);
}

.hero-orb-2 {
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 30, 174, 0.35) 0%, rgba(143, 30, 174, 0) 70%);
  animation-delay: -6s;
}

.hero-orb-gold {
  bottom: 0%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 167, 94, 0.3) 0%, rgba(198, 167, 94, 0) 70%);
  animation-delay: -12s;
}

@keyframes floatOrbLight {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
  100% { transform: translate(40px, -30px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   4. UTILITY & TYPOGRAPHY STYLES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.english-tagline {
  font-family: var(--font-english);
  direction: ltr;
  display: inline-block;
}

.gold-accent-text {
  color: var(--color-gold-dark);
  background: linear-gradient(135deg, #B89344 0%, #856621 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-heading-text {
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-executive-purple) 60%, var(--color-dark-heading) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  border-radius: 9999px;
  background: rgba(0, 37, 204, 0.04);
  border: 1px solid rgba(0, 37, 204, 0.15);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-royal-blue);
  box-shadow: 0 4px 15px rgba(0, 37, 204, 0.06);
}

.badge-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold-dark);
  box-shadow: 0 0 10px var(--color-gold);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* --------------------------------------------------------------------------
   5. NAVIGATION HEADER (PROMINENT LOGO)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 37, 204, 0.1);
  box-shadow: 0 10px 30px rgba(0, 37, 204, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

/* Increased Logo Size in Header (78px height) */
.brand-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 37, 204, 0.15));
  transition: transform 0.4s var(--ease-out-expo), filter 0.4s var(--ease-out-expo);
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 20px rgba(143, 30, 174, 0.25));
}

.logo-infinity-glow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(143, 30, 174, 0.25) 0%, rgba(198, 167, 94, 0.15) 60%, transparent 100%);
  filter: blur(12px);
  opacity: 0.6;
  pointer-events: none;
  animation: logoSoftGlowLight 3.5s infinite alternate ease-in-out;
}

@keyframes logoSoftGlowLight {
  0% { opacity: 0.4; transform: translateY(-50%) scale(0.9); }
  100% { opacity: 0.85; transform: translateY(-50%) scale(1.2); }
}

.nav-cta-btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 99px;
  color: var(--color-royal-blue);
  background: rgba(0, 37, 204, 0.06);
  border: 1px solid rgba(0, 37, 204, 0.2);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-cta-btn:hover {
  background: var(--color-royal-blue);
  color: #FFFFFF;
  border-color: var(--color-royal-blue-light);
  box-shadow: 0 8px 24px var(--color-royal-blue-glow);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FE 100%);
}

.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 900;
  line-height: 1.25;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-dark-heading);
}

.hero-tagline-en {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-royal-blue);
  margin-bottom: 2rem;
  position: relative;
  padding: 0.5rem 1.8rem;
  background: rgba(0, 37, 204, 0.05);
  border: 1.5px solid rgba(0, 37, 204, 0.15);
  border-radius: 99px;
  backdrop-filter: blur(8px);
}

.hero-description {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.85;
  color: var(--color-text-muted);
  max-width: 820px;
  margin-bottom: 3rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Premium Light Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-executive-purple) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px var(--color-royal-blue-glow);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px var(--color-executive-purple-glow), 0 0 25px rgba(198, 167, 94, 0.4);
  border-color: var(--color-gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-royal-blue);
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 37, 204, 0.2);
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 37, 204, 0.06);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
  background: var(--bg-surface-soft);
  border-color: var(--color-royal-blue);
  color: var(--color-royal-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 37, 204, 0.12);
}

/* --------------------------------------------------------------------------
   7. EMAIL SUBSCRIPTION (MAILCHIMP LIGHT GLASS CARD)
   -------------------------------------------------------------------------- */
.subscription-section {
  padding: 5rem 0 6rem 0;
  position: relative;
  background: #FFFFFF;
}

.subscription-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 37, 204, 0.12);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  backdrop-filter: blur(25px);
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.subscription-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-royal-blue), var(--color-executive-purple), var(--color-gold));
}

.subscription-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-dark-heading);
}

.subscription-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.input-wrap {
  flex: 1;
  position: relative;
}

.email-input {
  width: 100%;
  padding: 1.15rem 1.5rem;
  font-size: 1rem;
  font-family: var(--font-arabic);
  color: var(--color-dark-heading);
  background: #F7F9FF;
  border: 1.5px solid rgba(0, 37, 204, 0.15);
  border-radius: 14px;
  outline: none;
  transition: all 0.3s var(--ease-out-expo);
  direction: rtl;
}

.email-input::placeholder {
  color: var(--color-text-dim);
}

.email-input:focus {
  border-color: var(--color-royal-blue);
  box-shadow: 0 0 20px rgba(0, 37, 204, 0.15);
  background: #FFFFFF;
}

.btn-submit {
  padding: 1.15rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-executive-purple) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--color-executive-purple-glow);
  border-color: var(--color-gold);
}

/* Success Message Overlay */
.subscription-success {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  animation: fadeIn 0.5s ease-out;
}

.subscription-success.active {
  display: flex;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(198, 167, 94, 0.15);
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  box-shadow: var(--shadow-glow-gold);
}

.success-icon-wrap svg {
  width: 32px;
  height: 32px;
}

/* --------------------------------------------------------------------------
   8. COMPANY METHODOLOGY (المنهجية الاستراتيجية - LIGHT CARD STYLING)
   -------------------------------------------------------------------------- */
.methodology-section {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-surface-soft);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem auto;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-dark-heading);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.methodology-grid-wrap {
  position: relative;
  margin-top: 2rem;
}

.connector-line-svg {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.connector-line-svg path {
  stroke: url(#lineGradient);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  animation: dashFlow 30s linear infinite;
  fill: none;
}

@keyframes dashFlow {
  from { stroke-dashoffset: 500; }
  to { stroke-dashoffset: 0; }
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.method-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 37, 204, 0.08);
  border-radius: 24px;
  padding: 2.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 37, 204, 0.04);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.method-card:hover {
  transform: translateY(-10px);
  background: #FFFFFF;
  border-color: rgba(0, 37, 204, 0.2);
  box-shadow: var(--shadow-hover);
}

.method-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 37, 204, 0.08) 0%, rgba(143, 30, 174, 0.08) 100%);
  border: 1px solid rgba(0, 37, 204, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-royal-blue);
  box-shadow: 0 6px 15px rgba(0, 37, 204, 0.08);
  transition: all 0.4s ease;
}

.method-card:hover .method-number {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-executive-purple) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow-gold);
  transform: scale(1.1) rotate(-5deg);
}

.method-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem auto;
  color: var(--color-gold-dark);
}

.method-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-dark-heading);
}

.method-desc {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. PHILOSOPHY QUOTE SECTION
   -------------------------------------------------------------------------- */
.quote-section {
  padding: 6rem 0;
  position: relative;
  background: #FFFFFF;
}

.quote-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FE 100%);
  border: 1.5px solid var(--border-gold-accent);
  border-radius: 32px;
  padding: 4.5rem 3.5rem;
  text-align: center;
  backdrop-filter: blur(25px);
  position: relative;
  box-shadow: var(--shadow-luxury);
  max-width: 960px;
  margin: 0 auto;
}

.quote-mark {
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.6;
  margin-bottom: 1rem;
  font-family: serif;
}

.quote-text {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.6;
  color: var(--color-dark-heading);
  margin-bottom: 1.5rem;
}

.quote-author {
  font-size: 1.1rem;
  color: var(--color-gold-dark);
  letter-spacing: 1px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. LAUNCH COUNTDOWN SECTION
   -------------------------------------------------------------------------- */
.countdown-section {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-surface-soft);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  direction: rtl;
}

.countdown-box {
  background: #FFFFFF;
  border: 1px solid rgba(0, 37, 204, 0.12);
  border-radius: 24px;
  padding: 2.25rem 1rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 37, 204, 0.05);
  transition: all 0.3s ease;
}

.countdown-box:hover {
  border-color: var(--color-royal-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.countdown-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  font-family: var(--font-english);
  background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-executive-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   11. FOOTER & FACEBOOK SOCIAL LINK (PROMINENT LOGO)
   -------------------------------------------------------------------------- */
.footer-section {
  padding: 5rem 0 3rem 0;
  border-top: 1px solid rgba(0, 37, 204, 0.08);
  position: relative;
  background: #FFFFFF;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

/* Increased Logo Size in Footer (84px height) */
.footer-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 37, 204, 0.12));
}

.footer-tagline {
  font-family: var(--font-english);
  color: var(--color-royal-blue);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.social-links-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon-btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  background: rgba(0, 37, 204, 0.06);
  border: 1.5px solid rgba(0, 37, 204, 0.18);
  color: var(--color-royal-blue);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 15px rgba(0, 37, 204, 0.06);
}

.social-icon-btn-fb svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon-btn-fb:hover {
  background: var(--color-royal-blue);
  border-color: var(--color-royal-blue);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px var(--color-royal-blue-glow);
}

.footer-copyright {
  font-size: 0.95rem;
  color: var(--color-text-dim);
  margin-top: 1rem;
  DIRECTION: ltr;
}

/* --------------------------------------------------------------------------
   12. MOTION & SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal-blur {
  opacity: 0;
  filter: blur(15px);
  transform: scale(0.95);
  transition: opacity 1s var(--ease-out-expo), filter 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

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

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .connector-line-svg {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 85px;
  }
  .brand-logo-img {
    height: 60px;
  }
  .footer-logo-img {
    height: 65px;
  }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .subscribe-form {
    flex-direction: column;
    width: 100%;
  }
  .btn-submit {
    width: 100%;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-card {
    padding: 3rem 1.5rem;
  }
  .subscription-card {
    padding: 2.5rem 1.5rem;
  }
}
