/* ===================================================================
   Mustafa Mamdouh — Growth Partner & Marketing Strategist
   Style Architecture: Growth Machine Style (Inspired by buildinggrowthmachine.com)
   Palette: Black + Gold Yellow (#FFD11A) + Brand Cream (#F7F4EE) + Precision Grids
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Brand Core (Building Growth Machine Palette) */
  --yellow: #FFD11A;
  --yellow-hover: #FFE047;
  --yellow-dark: #D4AA00;
  --yellow-alpha-10: rgba(255, 209, 26, 0.1);
  --yellow-alpha-20: rgba(255, 209, 26, 0.2);

  /* Dark Theme (Default) */
  --bg-primary: #090A0C;
  --bg-secondary: #0E1013;
  --bg-card: #13161A;
  --bg-card-hover: #181C22;
  --text-main: #FAF7F2;
  --text-muted: #9BA3AF;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: #FFD11A;
  --grid-line: rgba(255, 255, 255, 0.035);
  --faded-text: rgba(250, 247, 242, 0.03);

  /* Cream Accents */
  --brand-cream: #F7F4EE;
  --brand-black: #0B0C0E;
  
  /* Fonts */
  --font-ar: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg-primary: #F7F4EE;
  --bg-secondary: #EFEBE1;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFAF6;
  --text-main: #0B0C0E;
  --text-muted: #5A606A;
  --border-light: rgba(11, 12, 14, 0.09);
  --border-active: #FFD11A;
  --grid-line: rgba(11, 12, 14, 0.04);
  --faded-text: rgba(11, 12, 14, 0.04);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: var(--font-ar);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Subtle Geometric Grid Lines */
.bg-grid {
  background-image: 
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 54px 54px;
}

/* Faded Background Monogram / Typography */
.faded-watermark {
  position: absolute;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 22rem);
  color: var(--faded-text);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.section-tag::before {
  content: '//';
  opacity: 0.7;
}

.highlight-word {
  background: var(--yellow);
  color: #0B0C0E;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-weight: 900;
  display: inline-block;
  transform: skewX(-4deg);
}

.highlight-outline {
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(255, 209, 26, 0.3);
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.25;
}

.text-display {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.15;
}

/* Top Command Bar / Header */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(9, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

[data-theme="light"] .top-header {
  background: rgba(247, 244, 238, 0.9);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-badge {
  background: var(--yellow);
  color: #0B0C0E;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: -0.02em;
}

.logo-text h2 {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.logo-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10B981;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-primary {
  background: var(--yellow);
  color: #0B0C0E;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 209, 26, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-alpha-10);
}

/* ===================================================================
   SECTION 1: HERO (GROWTH COMMAND CENTER)
   =================================================================== */
.hero-section {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-tags-ticker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.ticker-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

/* Hero Portrait Visual Frame */
.hero-visual-wrap {
  position: relative;
  z-index: 2;
}

.hero-portrait-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.hero-portrait-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
}

.portrait-img-inner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5.2;
}

.portrait-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
  transition: transform 0.6s ease;
}

.hero-portrait-card:hover .portrait-img-inner img {
  transform: scale(1.04);
}

.portrait-glow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 10, 12, 0.88) 100%);
  pointer-events: none;
}

.portrait-hud-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background: rgba(19, 22, 26, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 209, 26, 0.35);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.hud-info p {
  font-size: 0.78rem;
  color: var(--yellow);
  font-family: var(--font-mono);
}

.hud-stat {
  text-align: left;
}

.hud-stat span {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--yellow);
  display: block;
  line-height: 1;
}

.hud-stat small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===================================================================
   SECTION 2: PROOF & LIVE DASHBOARDS (UPDATED AS REQUESTED)
   =================================================================== */
.section-dashboards {
  padding: 90px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

/* Proof Numbers Bento Grid */
.proof-numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.proof-number-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.proof-number-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.proof-number-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.metric-num {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.metric-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Proof Portrait Feature Card */
.proof-narrative-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.proof-operator-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 209, 26, 0.25);
  flex-shrink: 0;
}

.proof-operator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-narrative-text h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.proof-narrative-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Dashboard Filter Tabs */
.dashboard-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
  color: var(--text-main);
  border-color: var(--yellow);
}

.filter-tab-btn.active {
  background: var(--yellow);
  color: #0B0C0E;
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(255, 209, 26, 0.3);
}

/* Dashboard Cards Grid (With Hover Zoom & Magnifier Effect) */
.dashboards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.dashboard-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5);
}

/* Dashboard Image Container & Hover Zoom */
.dashboard-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #000;
}

.dashboard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

/* HOVER ZOOM REQUIREMENT: تكبير الصورة بسلاسة */
.dashboard-card:hover .dashboard-img-wrap img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

/* Floating Metric HUD On Hover */
.dashboard-hud-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.2) 0%, rgba(9, 10, 12, 0.92) 85%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.dashboard-card:hover .dashboard-hud-overlay {
  opacity: 1;
}

.hud-top-pills {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pill-platform {
  background: rgba(255, 209, 26, 0.18);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.pill-zoom-hint {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hud-bottom-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(19, 22, 26, 0.88);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.75rem;
  backdrop-filter: blur(12px);
}

.kpi-box small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.kpi-box span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: var(--font-en);
}

/* Card Body Content */
.dashboard-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dash-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.dash-badge-highlight {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  background: var(--yellow-alpha-10);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.dash-platform-name {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dashboard-card-body h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.dashboard-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.dash-impact-box {
  background: rgba(255, 255, 255, 0.025);
  border-right: 3px solid var(--yellow);
  padding: 0.6rem 0.85rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.8rem;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.dash-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
}

/* ===================================================================
   SECTION 3: GROWTH SYSTEM (ENGINES & CAPABILITIES)
   =================================================================== */
.section-growth-system {
  padding: 100px 0;
  position: relative;
}

.system-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.system-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}

.system-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.engines-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.engine-item-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  transition: all var(--transition-fast);
}

.engine-item-card:hover {
  background: rgba(255, 209, 26, 0.05);
  border-color: var(--yellow);
  transform: translateX(-6px);
}

.engine-step-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  background: var(--yellow-alpha-10);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.engine-item-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.engine-item-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.engine-arrow {
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.1rem;
}

/* Capabilities Cloud */
.capabilities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.capability-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  display: inline-flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  cursor: default;
}

.capability-pill:hover {
  border-color: var(--yellow);
  background: var(--yellow-alpha-10);
  transform: translateY(-3px);
}

.capability-pill strong {
  font-size: 0.92rem;
  font-family: var(--font-en);
  color: var(--yellow);
}

.capability-pill span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Philosophy Quote Box */
.philosophy-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 209, 26, 0.05) 100%);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.philosophy-photo-box {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--yellow);
  box-shadow: 0 10px 25px rgba(255, 209, 26, 0.2);
}

.philosophy-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-text blockquote {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.philosophy-text cite {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--yellow);
  font-style: normal;
}

/* ===================================================================
   SECTION 4: INDUSTRIES (THE 25 SECTORS)
   =================================================================== */
.section-industries {
  padding: 90px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.industry-icon {
  font-size: 1.75rem;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.industry-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: block;
}

/* ===================================================================
   SECTION 5: MARKETS (8 MARKETS WITH AI BUSINESS VISUALS)
   =================================================================== */
.section-markets {
  padding: 100px 0;
  position: relative;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.market-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.market-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.market-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.market-card:hover .market-img-wrap img {
  transform: scale(1.08);
}

.market-flag-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(19, 22, 26, 0.9);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.market-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.market-card-body h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.market-country-en {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  display: block;
}

.market-focus-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.market-channels-box {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-main);
}

/* ===================================================================
   SECTION 6: PLATFORMS & CHANNELS
   =================================================================== */
.section-platforms {
  padding: 90px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.platform-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all var(--transition-fast);
}

.platform-box:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.platform-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.platform-logo-icon {
  font-size: 1.8rem;
}

.platform-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--yellow);
  background: var(--yellow-alpha-10);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.platform-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.platform-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================================
   SECTION 7: THE VAULT (ALL 48 STRATEGIC FILES & TOOLS)
   =================================================================== */
.section-vault {
  padding: 100px 0;
  position: relative;
}

.vault-stats-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vault-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.vault-filter-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: var(--font-ar);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.vault-filter-btn:hover {
  border-color: var(--yellow);
  color: var(--text-main);
}

.vault-filter-btn.active {
  background: var(--yellow);
  color: #0B0C0E;
  border-color: var(--yellow);
}

.vault-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.2rem;
}

.vault-file-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.vault-file-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.file-ext-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 0.72rem;
}

.ext-pdf { background: rgba(239, 68, 68, 0.15); color: #EF4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.ext-xlsx { background: rgba(16, 185, 129, 0.15); color: #10B981; border: 1px solid rgba(16, 185, 129, 0.3); }
.ext-docx { background: rgba(59, 130, 246, 0.15); color: #3B82F6; border: 1px solid rgba(59, 130, 246, 0.3); }

.file-meta-content h4 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  line-height: 1.35;
  word-break: break-word;
}

.file-meta-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.file-action-btn {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.vault-file-card:hover .file-action-btn {
  color: var(--yellow);
}

/* ===================================================================
   SECTION 8: PROBLEMS I SOLVE (THE 30 PROBLEMS & SOLUTIONS)
   =================================================================== */
.section-problems {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.problems-intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.problems-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
}

.problems-intro-text {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.9;
  white-space: pre-line;
}

.problems-accordion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.problem-accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.problem-accordion-item:hover, .problem-accordion-item.active {
  border-color: var(--yellow);
}

.problem-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 1.5rem;
}

.problem-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.problem-index-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  background: var(--yellow-alpha-10);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-header h3 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.accordion-toggle-icon {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.problem-accordion-item.active .accordion-toggle-icon {
  transform: rotate(45deg);
  color: var(--yellow);
}

.problem-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: none;
}

.problem-accordion-item.active .problem-content {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.solution-box {
  background: rgba(255, 209, 26, 0.04);
  border-right: 3px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.75;
}

.solution-box strong {
  color: var(--yellow);
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  margin-bottom: 0.35rem;
}

/* ===================================================================
   SECTION 9: SERVICES & CAPABILITIES
   =================================================================== */
.section-services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all var(--transition-fast);
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-deliverables {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.service-deliverables li {
  font-size: 0.82rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-deliverables li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 900;
}

/* ===================================================================
   SECTION 10: ABOUT MUSTAFA MAMDOUH
   =================================================================== */
.section-about {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-portrait-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  padding: 1rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.about-portrait-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(19, 22, 26, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 209, 26, 0.35);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.about-badge-float strong {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  display: block;
}

.about-badge-float p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-highlight-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.1rem;
}

.about-highlight-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}

.about-highlight-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ===================================================================
   SECTION 11: FINAL CONVERSION CTA & WHATSAPP
   =================================================================== */
.section-final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-box-center {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255, 209, 26, 0.08) 100%);
  border: 1px solid rgba(255, 209, 26, 0.35);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.cta-photo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  overflow: hidden;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 30px rgba(255, 209, 26, 0.3);
}

.cta-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-box-center h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-box-center p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.8;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-whatsapp-large {
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.95rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-large:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ===================================================================
   FLOATING PULSING MAGNETIC WHATSAPP BUTTON (2027 BENCHMARK)
   =================================================================== */
.whatsapp-magnetic-wrap {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-tooltip-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  animation: floatTooltip 3s ease-in-out infinite;
}

@keyframes floatTooltip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.whatsapp-btn-core {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn-core:hover {
  transform: scale(1.08);
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: sonarWave 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  pointer-events: none;
}

.whatsapp-pulse-ring.ring-2 {
  animation-delay: 0.65s;
}

@keyframes sonarWave {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===================================================================
   LIGHTBOX MODAL FOR FULL INSPECTION & ZOOM
   =================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 10, 12, 0.95);
  backdrop-filter: blur(25px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close-btn {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--yellow);
  color: #0B0C0E;
}

.lightbox-img-side {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}

.lightbox-img-side img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-info-side {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.lightbox-platform-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.6rem;
  display: block;
}

.lightbox-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.lightbox-metric-badge {
  background: var(--yellow-alpha-10);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.lightbox-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem;
}

.lightbox-kpi-box small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.lightbox-kpi-box strong {
  font-size: 0.95rem;
  color: var(--yellow);
  font-family: var(--font-en);
}

.lightbox-desc-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.lightbox-impact-text {
  background: rgba(255, 255, 255, 0.03);
  border-right: 3px solid var(--yellow);
  padding: 0.85rem 1.1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: #060708;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 35px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--yellow);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===================================================================
   RESPONSIVENESS (MOBILE, TABLET, DESKTOP)
   =================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .proof-numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .system-layout-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lightbox-container {
    grid-template-columns: 1fr;
  }
}

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

  .proof-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-narrative-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .proof-operator-avatar {
    margin: 0 auto;
  }

  .dashboards-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .philosophy-photo-box {
    margin: 0 auto;
  }

  .about-highlights-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-tooltip-badge {
    display: none;
  }
}
