/* ==========================================
   NiceChat - Index Page CSS (مصحح)
   الحفاظ على التصميم العربي + دعم الإنجليزية
   ========================================== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #77bd20;
  --dark-green: #39a750;
  --text-color: #39a750;
  --special-btn-1: #082611;
  --special-btn-2: #114922;
  --gradient-green: linear-gradient(135deg, #77bd20, #39a750);
  --dark-gradient: linear-gradient(135deg, #0d2818, #1a3d2e, #082611);
  --mysterious-gradient: linear-gradient(
    135deg,
    #000000,
    #1a3d2e,
    #39a750,
    #77bd20
  );
  --glow-green: #77bd20;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(57, 167, 80, 0.1);
  --dark-shadow: rgba(0, 0, 0, 0.3);
  --glass: rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #1a3d2e, #39a750);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-green);
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #77bd20, #39a750);
}

/* تعريف خط Bahij TheSansArabic */
@font-face {
  font-family: "Bahij TheSansArabic";
  src: url("../fonts/Bahij_TheSansArabic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bahij TheSansArabic";
  src: url("../fonts/alfont_com_ArbFONTS-Bahij_TheSansArabic-Plain.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bahij TheSansArabic";
  src: url("../fonts/ArbFONTS-Bahij_TheSansArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* حماية شاملة للخط - تطبيق على جميع العناصر */
* {
  font-family: inherit;
}

body,
html {
  font-family: "Bahij TheSansArabic", -apple-system, BlinkMacSystemFont,
    sans-serif !important;
}

/* تطبيق الخط على جميع الأزرار والنماذج */
button,
input,
textarea,
select,
.cta-button,
.hero-btn,
.form-btn,
.faq-question,
.nav-link,
.mobile-menu-btn,
.language-toggle,
.close {
  font-family: "Bahij TheSansArabic", -apple-system, BlinkMacSystemFont,
    sans-serif !important;
}

/* تطبيق على العربي والإنجليزي */
body[dir="rtl"] *,
body[dir="ltr"] * {
  font-family: "Bahij TheSansArabic", -apple-system, BlinkMacSystemFont,
    sans-serif !important;
}

/* Body & Background */
body {
  font-family: "Bahij TheSansArabic", -apple-system, BlinkMacSystemFont,
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #000;
  position: relative;
  text-align: justify;
}

/* English Font Support */
body[dir="ltr"] {
  font-family: "Bahij TheSansArabic", -apple-system, BlinkMacSystemFont,
    sans-serif;
  text-align: left;
}

/* Animated Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mysterious-gradient);
  z-index: -2;
  animation: backgroundShift 25s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g1"><stop offset="0%" stop-color="%2377bd20" stop-opacity="0.15"/><stop offset="100%" stop-color="%2377bd20" stop-opacity="0"/></radialGradient><radialGradient id="g2"><stop offset="0%" stop-color="%2339a750" stop-opacity="0.08"/><stop offset="100%" stop-color="%2339a750" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="400" fill="url(%23g1)" opacity="0.8"><animate attributeName="cx" values="200;800;200" dur="35s" repeatCount="indefinite"/><animate attributeName="cy" values="200;600;200" dur="30s" repeatCount="indefinite"/></circle><circle cx="800" cy="800" r="350" fill="url(%23g2)" opacity="0.6"><animate attributeName="cy" values="800;200;800" dur="28s" repeatCount="indefinite"/><animate attributeName="r" values="350;500;350" dur="32s" repeatCount="indefinite"/></circle><circle cx="500" cy="500" r="450" fill="url(%23g1)" opacity="0.4"><animate attributeName="r" values="450;650;450" dur="40s" repeatCount="indefinite"/><animate attributeName="cx" values="500;300;500" dur="25s" repeatCount="indefinite"/></circle></svg>')
    center/cover;
  z-index: -1;
  opacity: 0.7;
}

@keyframes backgroundShift {
  0%,
  100% {
    background: linear-gradient(
      135deg,
      #000000 0%,
      #1a3d2e 25%,
      #39a750 75%,
      #77bd20 100%
    );
  }
  25% {
    background: linear-gradient(
      225deg,
      #082611 0%,
      #1a3d2e 35%,
      #39a750 65%,
      #77bd20 100%
    );
  }
  50% {
    background: linear-gradient(
      315deg,
      #000000 0%,
      #082611 30%,
      #1a3d2e 70%,
      #39a750 100%
    );
  }
  75% {
    background: linear-gradient(
      45deg,
      #1a3d2e 0%,
      #39a750 40%,
      #77bd20 80%,
      #39a750 100%
    );
  }
}

/* ==========================================
   HEADER STYLES
   ========================================== */
header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(119, 189, 32, 0.2);
  box-shadow: 0 4px 30px rgba(119, 189, 32, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(119, 189, 32, 0.5));
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(119, 189, 32, 0.8));
}

.logo img {
  height: clamp(60px, 7vw, 90px);
  width: auto;
  max-width: clamp(200px, 35vw, 350px);
  object-fit: contain;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 5px;
}

.logo-text {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-green);
  text-shadow: 0 0 10px rgba(119, 189, 32, 0.3);
}

@media (max-width: 480px) {
  .logo img {
    height: 65px;
    max-width: 220px;
  }
  .logo-text {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .logo img {
    height: 90px;
    max-width: 350px;
  }
  .logo-text {
    font-size: 2.5rem;
  }
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.8rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-green);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(119, 189, 32, 0.5);
  border-radius: 2px;
}

body[dir="ltr"] .nav-link::after {
  right: auto;
  left: 0;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--glow-green);
  text-shadow: 0 0 15px rgba(119, 189, 32, 0.8);
  transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
  background: var(--gradient-green);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(119, 189, 32, 0.4);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(119, 189, 32, 0.6);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Toggle Button */
.language-toggle {
  background: rgba(119, 189, 32, 0.1);
  border: 1px solid rgba(119, 189, 32, 0.3);
  border-radius: 25px;
  padding: 0.6rem 1.2rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.language-toggle:hover {
  background: rgba(119, 189, 32, 0.2);
  border-color: rgba(119, 189, 32, 0.5);
  transform: translateY(-2px);
}

.globe-icon {
  width: 20px;
  height: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--primary-green);
  transform: scale(1.1);
}

.mobile-menu-btn.active {
  color: var(--primary-green);
  transform: scale(1.1) rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-nav-links .nav-link {
  font-size: 1.2rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(119, 189, 32, 0.2);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(26, 61, 46, 0.9)
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  padding: 2rem 0;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
  text-align: justify;
}

body[dir="ltr"] .hero-content {
  text-align: left;
}

.hero-badge {
  background: rgba(119, 189, 32, 0.2);
  color: var(--primary-green);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(119, 189, 32, 0.3);
}

.hero-badge img {
  width: 80px;
  height: 50px;
  border-radius: 6px;
  padding: 3px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInRight 1s ease-out;
  background: linear-gradient(45deg, #fff, #77bd20, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem;
  opacity: 0.95;
  animation: fadeInRight 1s ease-out 0.2s both;
  color: #77bd20;
  text-shadow: 0 0 10px rgba(119, 189, 32, 0.3);
  font-weight: 600;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.8;
  animation: fadeInRight 1s ease-out 0.4s both;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  text-align: justify;
}

body[dir="ltr"] .hero-description {
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-shadow: none;
  min-width: 250px;
  text-align: center;
}

@media (min-width: 769px) {
  .hero-btn {
    padding: 1.3rem 2.5rem;
    border-radius: 35px;
    font-size: 1.1rem;
    min-width: 200px;
  }
}

.hero-btn-primary {
  background: linear-gradient(45deg, #000, #1a3d2e);
  color: var(--white);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
  .hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  }
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  animation: fadeInRight 1s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  color: white;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 1s ease-out 0.8s both;
  position: relative;
}

/* Phone Mockup */
.phone-mockup {
  width: clamp(350px, 40vw, 450px);
  height: clamp(700px, 80vw, 900px);
  background: linear-gradient(45deg, #1a1a1a, #000);
  border-radius: 35px;
  padding: 12px;
  box-shadow: 0 0 60px rgba(119, 189, 32, 0.4);
  position: relative;
  animation: float 8s ease-in-out infinite;
  border: 2px solid rgba(119, 189, 32, 0.2);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-header {
  height: 35px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px 30px 0 0;
  position: relative;
}

.dynamic-island {
  width: 100px;
  height: 24px;
  background: #333;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.signal-dot {
  width: 4px;
  height: 4px;
  background: #77bd20;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.chat-interface {
  padding: 20px 15px;
  height: calc(100% - 35px);
  overflow-y: auto;
  position: relative;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(90deg, #1a3d2e, #39a750);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.ai-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(119, 189, 32, 0.6);
  position: relative;
}

.ai-avatar::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid #fff;
}

.ai-avatar img {
  width: 80px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  padding: 2px;
}

.chat-info {
  color: white;
  flex: 1;
}

.chat-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.chat-status {
  font-size: 0.85rem;
  opacity: 0.9;
  color: #a8e6a1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-status img {
  width: 40px;
  height: 30px;
  border-radius: 2px;
  padding: 1px;
}

.message-container {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  animation: messageSlide 0.6s ease-out;
}

.message-container.user {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 75%;
  padding: 14px 18px;
  border-radius: 22px;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.message-container.bot .message-bubble {
  background: linear-gradient(45deg, #2a2a2a, #404040);
  color: #fff;
  border-bottom-left-radius: 8px;
}

body[dir="ltr"] .message-container.bot .message-bubble {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 22px;
}

body[dir="rtl"] .message-container.bot .message-bubble {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 22px;
}

.message-container.user .message-bubble {
  background: var(--gradient-green);
  color: white;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 15px rgba(119, 189, 32, 0.3);
}

body[dir="ltr"] .message-container.user .message-bubble {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 22px;
}

body[dir="rtl"] .message-container.user .message-bubble {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 22px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 18px;
  background: #2a2a2a;
  border-radius: 22px;
  border-bottom-left-radius: 8px;
  max-width: 75%;
  margin-bottom: 18px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #77bd20;
  border-radius: 50%;
  animation: typingDots 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDots {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-20px) rotateY(3deg);
  }
  50% {
    transform: translateY(-25px) rotateY(0deg);
  }
  75% {
    transform: translateY(-15px) rotateY(-3deg);
  }
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
  background: linear-gradient(135deg, #0d2818, #1a3d2e);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0,0 Q500,300 1000,0 L1000,1000 Q500,700 0,1000 Z" fill="rgba(119,189,32,0.08)"/></svg>')
    center/cover;
  z-index: 1;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title-main {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 0 30px rgba(119, 189, 32, 0.5);
  line-height: 1.2;
}

.section-subtitle-main {
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #77bd20;
  margin-bottom: 4rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

body[dir="ltr"] .section-subtitle-main {
  text-align: center;
}

/* Features Showcase */
.features-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

@media (max-width: 1200px) {
  .features-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .features-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.feature-post {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(26, 61, 46, 0.6)
  );
  border-radius: 30px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid rgba(119, 189, 32, 0.2);
  backdrop-filter: blur(15px);
}

.feature-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-green);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.feature-post::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(119, 189, 32, 0.1) 0%,
    transparent 50%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 1;
}

.feature-post:hover::before {
  transform: scaleX(1);
}

.feature-post:hover::after {
  transform: scale(1);
}

.feature-post:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(119, 189, 32, 0.3);
  border-color: rgba(119, 189, 32, 0.6);
}

.post-content {
  position: relative;
  z-index: 2;
}

.post-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(119, 189, 32, 0.4);
  line-height: 1.3;
}

.post-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: justify;
}

body[dir="ltr"] .post-description {
  text-align: center;
}

.post-visual {
  width: 100%;
  height: 180px;
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 25px rgba(119, 189, 32, 0.15);
}

.mock-chat {
  width: 95%;
  height: 85%;
  background: #000;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  position: relative;
}

.mock-message {
  background: var(--gradient-green);
  color: white;
  padding: 8px 12px;
  border-radius: 15px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  align-self: flex-end;
  max-width: 75%;
  animation: mockType 3s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(119, 189, 32, 0.3);
}

.mock-response {
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 15px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  align-self: flex-start;
  max-width: 75%;
  animation: mockType 3s ease-in-out 0.8s infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes mockType {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(119, 189, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient-green);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.waiting-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #77bd20;
  text-align: center;
}

.waiting-content {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: none !important;
  color: #77bd20;
}

.customer-number-display {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
}

.customer-number-content {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
}

.customer-number-content img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  padding: 3px;
}

.customer-message {
  font-size: 0.9rem;
  background: #333;
  padding: 10px;
  border-radius: 10px;
  color: #ccc;
  margin-top: 10px;
}

/* ==========================================
   AI HUMAN SECTION
   ========================================== */
.ai-human-section {
  background: linear-gradient(135deg, #082611, #1a3d2e, #000);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ai-human-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(119, 189, 32, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: aiGlow 5s ease-in-out infinite;
}

@keyframes aiGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.9;
  }
}

.human-ai-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.human-ai-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 25px rgba(119, 189, 32, 0.5);
}

.human-ai-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #77bd20;
  margin-bottom: 4rem;
  opacity: 0.9;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ai-demo {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 0 50px rgba(119, 189, 32, 0.4);
  border: 1px solid rgba(119, 189, 32, 0.3);
}

.demo-avatar {
  width: 100px;
  height: 100px;
  background: var(--gradient-green);
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 0 30px rgba(119, 189, 32, 0.6);
  animation: avatarPulse 4s ease-in-out infinite;
  position: relative;
}

.demo-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  padding: 5px;
}

.demo-avatar::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  background: #25d366;
  border-radius: 50%;
  border: 3px solid #fff;
}

@keyframes avatarPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(119, 189, 32, 0.8);
  }
}

.demo-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-message {
  background: var(--gradient-green);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  color: white;
  text-align: right;
  animation: demoSlide 0.8s ease-out;
}

body[dir="ltr"] .demo-message {
  text-align: right;
}

.demo-response {
  background: #333;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  color: white;
  text-align: justify;
  font-size: 0.95rem;
  animation: demoSlide 0.8s ease-out 0.4s both;
}

body[dir="ltr"] .demo-response {
  text-align: left;
}

@keyframes demoSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-section {
  background: linear-gradient(135deg, #1a3d2e, #39a750);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="800" r="200" fill="rgba(255,255,255,0.03)"/><circle cx="500" cy="600" r="100" fill="rgba(255,255,255,0.07)"/></svg>');
  animation: benefitsFloat 20s ease-in-out infinite;
}

@keyframes benefitsFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 80px;
}

.benefit-icon svg {
  width: 48px;
  height: 48px;
  fill: white;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.1);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.benefit-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: justify;
}

body[dir="ltr"] .benefit-description {
  text-align: center;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  background: linear-gradient(135deg, #0d2818, #000);
  padding: 6rem 2rem;
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(26, 61, 46, 0.8),
    rgba(0, 0, 0, 0.9)
  );
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(119, 189, 32, 0.2);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(119, 189, 32, 0.5);
  box-shadow: 0 15px 40px rgba(119, 189, 32, 0.2);
}

.testimonial-quote {
  font-size: 1.2rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  text-align: justify;
}

body[dir="ltr"] .testimonial-quote {
  text-align: left;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-green);
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  opacity: 0.3;
}

body[dir="ltr"] .testimonial-quote::before {
  right: auto;
  left: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.author-info h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, #39a750, #77bd20, #39a750);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="150" cy="150" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="850" cy="850" r="120" fill="rgba(255,255,255,0.05)"/><circle cx="500" cy="300" r="80" fill="rgba(255,255,255,0.08)"/></svg>');
  animation: ctaFloat 18s ease-in-out infinite;
}

@keyframes ctaFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(8deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  background: linear-gradient(135deg, #000, #1a1a1a);
  padding: 6rem 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(119, 189, 32, 0.05);
  border: 1px solid rgba(119, 189, 32, 0.2);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

body[dir="ltr"] .faq-question {
  text-align: left;
}

.faq-question:hover {
  background: rgba(119, 189, 32, 0.1);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  display: none;
  text-align: justify;
}

body[dir="ltr"] .faq-answer {
  text-align: left;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-green);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================
   MODAL STYLES
   ========================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  margin: 3% auto;
  padding: 0;
  border-radius: 30px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(119, 189, 32, 0.3);
  box-shadow: 0 0 80px rgba(119, 189, 32, 0.3);
}

.modal-header {
  background: var(--gradient-green);
  color: white;
  padding: 2rem 2.5rem;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(119, 189, 32, 0.3);
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Bahij TheSansArabic", -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

body[dir="ltr"] .form-input {
  font-family: "Bahij TheSansArabic", sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(119, 189, 32, 0.2);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 3rem;
}

.form-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1rem;
  min-width: 140px;
}

.form-btn-primary {
  background: var(--gradient-green);
  color: white;
  box-shadow: 0 0 20px rgba(119, 189, 32, 0.3);
}

.form-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
footer {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: white;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(119, 189, 32, 0.2);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 769px) {
  .footer-container {
    text-align: right;
  }

  body[dir="ltr"] .footer-container {
    text-align: left;
  }
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-section p {
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

body[dir="ltr"] .footer-section p {
  text-align: left;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-green);
  text-shadow: 0 0 10px rgba(119, 189, 32, 0.3);
  transform: translateX(-5px);
}

body[dir="ltr"] .footer-links a:hover {
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

.footer-bottom a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(119, 189, 32, 0.5);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(119, 189, 32, 0.1);
  border-radius: 50%;
  transition: all 0.4s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--gradient-green);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(119, 189, 32, 0.4);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    text-align: center !important;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .phone-mockup {
    width: 350px;
    height: 700px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .header-container {
    padding: 1rem;
  }

  .hero {
    padding: 1rem 0;
  }

  .hero-container {
    padding: 1rem;
    gap: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .feature-post {
    padding: 2rem;
  }

  .phone-mockup {
    width: 320px;
    height: 640px;
  }

  .modal-content {
    margin: 5% auto;
    width: 95%;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-body {
    padding: 2rem;
  }

  .form-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0.5rem;
  }

  .hero-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    min-width: 160px;
  }

  .feature-post {
    padding: 1.5rem;
  }

  .post-title {
    font-size: 1.3rem;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
  }

  .section-title-main {
    font-size: 1.8rem;
  }

  .ai-demo {
    padding: 2rem;
  }

  .demo-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1rem;
  }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
  .mobile-menu-btn,
  .modal,
  .language-toggle {
    display: none !important;
  }

  body::before,
  body::after {
    display: none;
  }

  * {
    background: white !important;
    color: black !important;
  }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #00ff00;
    --dark-green: #008000;
  }

  .hero-title {
    -webkit-text-fill-color: white;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .phone-mockup {
    animation: none;
  }

  body::before {
    animation: none;
  }
}
