@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700;800&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --bg-base: #000000;
  --bg-surface: #0a0a0c;
  --bg-surface-light: #121215;
  --bg-glass: rgba(10, 10, 12, 0.6);
  --bg-glass-heavy: rgba(10, 10, 12, 0.85);

  --primary: #ff0000;
  --primary-hover: #ff3333;
  --primary-glow: rgba(255, 0, 0, 0.4);
  --primary-glare: rgba(255, 0, 0, 0.1);
  --accent: #ff003c; /* subtle glitch accent */
  --accent-blue: #00f0ff; /* subtle tech accent */

  --text-primary: #ffffff;
  --text-secondary: #a0a0a5;
  --text-muted: #66666e;
  --font-en: 'Montserrat', sans-serif;
  --font-ar: 'Almarai', sans-serif;

  --nav-height: 350px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-default: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--primary);
  color: #000;
}

html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--bg-base) !important;
  color: var(--text-primary);
  font-family: var(--font-en);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section, header, footer {
  background-color: transparent !important;
  background-image: none !important;
}
.hero-bg-layer {
  display: none !important;
}
.hero-wrapper::after, .coming-soon-hero::after, .work-with-me-hero::after {
  display: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Handled by Lenis for smooth scrolling */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); text-transform: none; }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); text-transform: none; }
p { font-size: 1.125rem; color: var(--text-secondary); }

.ar-text {
  font-family: var(--font-ar);
  direction: rtl;
  letter-spacing: normal;
  text-transform: none;
}

.text-primary { color: var(--primary); }
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-red {
  background: linear-gradient(135deg, var(--primary) 0%, #cc0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }

/* Global Utilities */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
  transform-style: preserve-3d;
}

.section {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
  perspective: 1500px;
}

.section-title-wrapper {
  margin-bottom: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
  display: block;
}

/* Glass & Surfaces */
.glass-panel {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
}

.glow-box {
  position: relative;
}
.glow-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, transparent, var(--primary), transparent);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-default);
}
.glow-box:hover::before {
  opacity: 0.5;
}

/* Glow Utilities */
.glow-check {
  color: #fff !important;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 25px rgba(255, 255, 255, 0.4);
}
.glow-cross {
  color: #ff3333 !important;
  text-shadow: 0 0 15px rgba(255, 51, 51, 0.9), 0 0 25px rgba(255, 51, 51, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
  border: none;
  z-index: 1;
  gap: 0.75rem;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 10px 30px -10px var(--primary-glow);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: .5s;
  z-index: -1;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px -10px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(255, 0, 0, 0.05);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Loader */
#loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-base);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.loader-counter {
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-muted);
  position: relative;
}
.loader-counter::after {
  content: attr(data-progress);
  position: absolute;
  left: 0; top: 0;
  color: var(--primary);
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.1s;
}
.loader-bar-bg {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: 1rem;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1rem 2rem 0.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition-default);
  gap: 1.5rem;
}
.navbar.scrolled {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  padding: 0.5rem 3rem 0.5rem 3rem;
  box-shadow: none;
  gap: 0.5rem;
}
.logo {
  order: 2;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  z-index: 1001;
  display: flex;
  align-items: center;
  animation: fadeInLogo 1.5s ease-out forwards;
}
@keyframes fadeInLogo {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.logo span { color: var(--primary); }
.nav-links {
  order: 1;
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap !important;
  white-space: nowrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: none;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: hidden;
  height: auto;
}
@media (max-width: 991px) {
  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden !important;
    padding: 0.5rem 0.6rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    height: 70px;
  }
}
.nav-links::-webkit-scrollbar {
  height: 0px; 
}
.nav-item {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  position: relative;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  scroll-snap-align: start;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}

.nav-item:hover, .nav-item.active {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.nav-item:hover::after, .nav-item.active::after {
  width: 80%;
}

.nav-links .btn-primary {
  background: rgba(255, 0, 0, 0.15) !important;
  color: #fff !important;
  border: 1px solid var(--primary) !important;
  border-radius: 8px !important;
  padding: 0.6rem 1.2rem !important;
  font-family: inherit;
  font-size: 0.8rem !important;
  height: auto !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2) !important;
}
.nav-links .btn-primary:hover {
  background: var(--primary) !important;
  box-shadow: 0 0 25px var(--primary-glow) !important;
}

.mobile-toggle {
  display: none !important;
}

/* Footer */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 50vw; height: 1px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 100%);
  opacity: 0.5;
}
.footer-logo { font-size: 2.5rem; margin-bottom: 1.5rem; }
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.social-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: center; align-items: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
  color: #fff; text-decoration: none; position: relative;
}
.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

/* Nav Socials */
.nav-socials {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.6rem;
  align-items: center;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.4rem;
  list-style: none;
}
@media (max-width: 991px) {
  .nav-socials { border-left: none; padding-left: 0.5rem; }
}

.nav-social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: none;
}

.nav-social-icon:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: none;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .nav-social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    box-shadow: none;
  }
}
.nav-social-icon::after {
  content: attr(title);
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 0, 0, 0.4);
  font-weight: 600;
}
.nav-social-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 991px) {
  .nav-socials {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 1.5rem;
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
}

/* Base grids */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Glitch effect class */
.glitch-text {
  position: relative;
}
.glitch-text::before, .glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-base);
}
.glitch-text::before {
  left: 2px;
  text-shadow: -1px 0 var(--accent);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}
.glitch-text::after {
  left: -2px;
  text-shadow: -1px 0 var(--accent-blue);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(23px, 9999px, 86px, 0); }
  5% { clip: rect(98px, 9999px, 14px, 0); }
  10% { clip: rect(6px, 9999px, 83px, 0); }
  15% { clip: rect(15px, 9999px, 63px, 0); }
  20% { clip: rect(89px, 9999px, 32px, 0); }
  25% { clip: rect(4px, 9999px, 5px, 0); }
  30% { clip: rect(25px, 9999px, 78px, 0); }
  35% { clip: rect(74px, 9999px, 16px, 0); }
  40% { clip: rect(31px, 9999px, 20px, 0); }
  45% { clip: rect(20px, 9999px, 4px, 0); }
  50% { clip: rect(9px, 9999px, 73px, 0); }
  55% { clip: rect(94px, 9999px, 13px, 0); }
  60% { clip: rect(58px, 9999px, 49px, 0); }
  65% { clip: rect(87px, 9999px, 91px, 0); }
  70% { clip: rect(59px, 9999px, 43px, 0); }
  75% { clip: rect(32px, 9999px, 27px, 0); }
  80% { clip: rect(82px, 9999px, 57px, 0); }
  85% { clip: rect(29px, 9999px, 81px, 0); }
  90% { clip: rect(100px, 9999px, 88px, 0); }
  95% { clip: rect(3px, 9999px, 5px, 0); }
  100% { clip: rect(79px, 9999px, 72px, 0); }
}

@keyframes glitch-anim-2 {
  0% { clip: rect(42px, 9999px, 66px, 0); }
  5% { clip: rect(9px, 9999px, 7px, 0); }
  10% { clip: rect(52px, 9999px, 40px, 0); }
  15% { clip: rect(39px, 9999px, 82px, 0); }
  20% { clip: rect(24px, 9999px, 58px, 0); }
  25% { clip: rect(39px, 9999px, 54px, 0); }
  30% { clip: rect(4px, 9999px, 3px, 0); }
  35% { clip: rect(92px, 9999px, 88px, 0); }
  40% { clip: rect(54px, 9999px, 12px, 0); }
  45% { clip: rect(21px, 9999px, 56px, 0); }
  50% { clip: rect(70px, 9999px, 26px, 0); }
  55% { clip: rect(93px, 9999px, 45px, 0); }
  60% { clip: rect(7px, 9999px, 89px, 0); }
  65% { clip: rect(100px, 9999px, 85px, 0); }
  70% { clip: rect(33px, 9999px, 93px, 0); }
  75% { clip: rect(44px, 9999px, 79px, 0); }
  80% { clip: rect(99px, 9999px, 9px, 0); }
  85% { clip: rect(13px, 9999px, 81px, 0); }
  90% { clip: rect(59px, 9999px, 44px, 0); }
  95% { clip: rect(89px, 9999px, 14px, 0); }
  100% { clip: rect(13px, 9999px, 18px, 0); }
}

/* Background grid effect */
.bg-grid {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: 50px 50px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Custom Additions: Reasons, Notice, FAQ */

.reason-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.reason-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 0, 0,0.15);
}
.reason-icon {
  width: 60px; height: 60px;
  background: rgba(255, 0, 0,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}
.reason-card:hover .reason-icon {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
}
.reason-title {
  font-size: 1.1rem;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
}
.notice-item {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--primary);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: var(--radius-sm);
}
.notice-icon {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 30px;
  text-align: center;
}
.text-accent {
  color: var(--accent);
}
.notice-item p {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-btn {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  transition: var(--transition-fast);
}
.faq-btn h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.faq-icon {
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}
.faq-btn:hover {
  background: rgba(255,255,255,0.02);
}
.faq-btn:hover h4 {
  color: var(--primary);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(0,0,0,0.2);
}
.faq-content p {
  padding: 0 2rem;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 0, 0,0.05);
}
.faq-item.active .faq-btn h4 {
  color: var(--primary);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq-item.active .faq-content p {
  opacity: 1;
  padding-top: 1rem;
}

.logo-img { max-height: 250px; width: auto; object-fit: contain; transition: var(--transition-default); filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.2)); }
.logo-img:hover { filter: drop-shadow(0 0 30px rgba(255,0,0,0.6)); transform: scale(1.05); }
.navbar.scrolled .logo-img { max-height: 120px; }


/* ==========================================================================
   Mobile UI/UX Optimization (@media max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Typography Scaling */
  html { font-size: 14px !important; }
  h1 { font-size: clamp(2rem, 10vw, 3rem) !important; letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.8rem, 8vw, 2.5rem) !important; }
  h3 { font-size: clamp(1.4rem, 6vw, 1.8rem) !important; margin-bottom: 0.5rem; }
  h4 { font-size: clamp(1.1rem, 5vw, 1.3rem) !important; }
  p, .hero-desc { font-size: 1rem !important; line-height: 1.5; }
  
  /* Global Layout & Paddings */
  .section { padding: 4rem 0 !important; }
  .section-title-wrapper { margin-bottom: 2rem !important; align-items: center !important; text-align: center !important; }
  .section-label { font-size: 0.8rem !important; margin-bottom: 0.5rem !important; justify-content: center !important; }
  .container { padding: 0 4% !important; }
  
  /* Fixing Background Images for Mobile */
  body {
    background-attachment: scroll !important;
    background-position: top center !important;
    background-size: cover !important;
  }
  .hero-bg-layer {
    display: block !important;
    opacity: 0.4 !important;
  }
  
  /* Feature Cards & Panels */
  .reason-card, .feature-card, .glass-panel {
    padding: 1.5rem !important;
    gap: 1rem;
  }
  .reason-icon { width: 45px; height: 45px; font-size: 1.25rem; }
  .reason-title { font-size: 1rem; }
  
  .notice-item {
    padding: 1rem 1.25rem !important;
    gap: 1rem !important;
    flex-direction: column !important;
    text-align: center !important;
  }
  .notice-icon { font-size: 1.25rem; margin-bottom: 0.2rem; }
  .notice-item p { font-size: 0.95rem !important; }
  
  /* Buttons */
  .btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
    justify-content: center;
  }
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    gap: 1rem !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  
  /* Logos and Nav */
  .logo-img { max-height: 40px !important; }
  .nav-item { font-size: 0.9rem !important; }
  .footer-logo { font-size: 2rem !important; }
  
  /* FAQ Section */
  .faq-btn { padding: 1.25rem 1rem !important; }
  .faq-btn h4 { font-size: 0.95rem !important; }
  .faq-content p { padding: 0 1rem !important; font-size: 0.9rem !important; }
  .faq-item.active .faq-content { padding-bottom: 1rem !important; }
  .faq-item.active .faq-content p { padding-top: 0.5rem !important; }
  
  /* Grids */
  .grid { gap: 1rem !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  
  /* Glow Orb Scaling */
  .glow-orb { width: 250px !important; height: 250px !important; }
  
  /* Cinematic Timeline */
  .cinematic-timeline { height: 50px !important; }
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1) rotate(-10deg);
  background-color: #20b858;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .floating-wa {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Adobe Premiere Pro Global Timeline Background
   ========================================================================== */
:root {
  --pr-bg: #1a1a1a;
  --pr-panel: #262626;
  --pr-border: #0a0a0a;
  --pr-track-bg: #1f1f1f;
  --pr-ruler-bg: #2d2d2d;
  --pr-ruler-text: #8c8c8c;
  --pr-video-clip: #3B728D; /* Classic blue */
  --pr-video-clip-hover: #4b8ba8;
  --pr-audio-clip: #3A6953; /* Classic green */
  --pr-audio-clip-hover: #467e65;
  --pr-playhead: #FF2E2E; /* Red line */
  --pr-playhead-head: #2d60b3; /* The blue top part if needed, but red is good */
  --pr-text: #b3b3b3;
  --pr-text-bright: #ffffff;
}

#global-timeline-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  background-color: var(--pr-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}

/* Vignette to darken center reading area */
#global-timeline-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.85) 0%, rgba(10,10,12,0.95) 100%);
  z-index: 100;
  pointer-events: none;
}

/* Timeline Layout */
.pr-timeline {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}

.pr-left-headers {
  width: 120px;
  background: var(--pr-panel);
  border-right: 2px solid var(--pr-border);
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.pr-right-tracks {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Timecode Ruler */
.pr-ruler {
  height: 30px;
  background: var(--pr-ruler-bg);
  border-bottom: 2px solid var(--pr-border);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.pr-ruler-ticks {
  position: absolute;
  top: 0; left: 0; width: 300%;
  height: 100%;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 19px, var(--pr-ruler-text) 19px, var(--pr-ruler-text) 20px, transparent 20px, transparent 99px, #fff 99px, #fff 100px);
}

.pr-header-ruler {
  height: 30px;
  background: var(--pr-ruler-bg);
  border-bottom: 2px solid var(--pr-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 0.75rem;
  color: var(--pr-text-bright);
  font-family: monospace;
}

/* Tracks */
.pr-track-header {
  height: 70px;
  background: var(--pr-panel);
  border-bottom: 1px solid var(--pr-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}
.pr-header-title {
  color: var(--pr-text);
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 5px;
}
.pr-header-controls {
  display: flex;
  gap: 5px;
}
.pr-h-btn {
  width: 14px;
  height: 14px;
  background: #333;
  border-radius: 2px;
}

.pr-tracks-viewport {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

/* The wide container holding all clips, moving via GSAP */
.pr-tracks-container {
  width: 300%; /* wide to allow scrolling */
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
}

/* Middle divider V/A */
.pr-track-divider {
  height: 4px;
  background: var(--pr-border);
  width: 100%;
}

.pr-track-row {
  height: 70px;
  border-bottom: 1px solid var(--pr-border);
  position: relative;
  background: var(--pr-track-bg);
}
.pr-track-row:nth-child(even) { background: #1d1d1d; }

/* Clips */
.pr-clip {
  position: absolute;
  height: 60px;
  top: 5px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  padding-left: 5px;
  overflow: hidden;
}

.pr-clip-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  font-family: monospace;
}
.pr-clip-fx {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px; height: 12px;
  background: #bbbbbb; 
  color: #000;
  font-size: 8px;
  font-weight: bold;
  display: flex; justify-content: center; align-items: center;
  border-radius: 2px;
}

.pr-clip.video { background: var(--pr-video-clip); border-top: 1px solid #73b3d3; }
.pr-clip.audio { background: var(--pr-audio-clip); border-bottom: 1px solid #7bb396; }

/* Playhead */
.pr-playhead {
  position: absolute;
  top: 0;
  left: 20%;
  width: 1px;
  height: 100%;
  background: var(--pr-playhead);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pr-playhead-cap {
  width: 12px;
  height: 12px;
  background: var(--pr-playhead-head);
  clip-path: polygon(0 0, 100% 0, 100% 64%, 50% 100%, 0 64%);
  position: absolute;
  top: 10px;
}
