:root {
  --primary: #0f4c81;
  --secondary: #1bb1a3;
  --accent: #f39c12;
  --accent-gold: #d4af37;
  --bg: #f8f9fc;
  --bg-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.95);
  --glass: rgba(255, 255, 255, 0.8);
  --glass-hover: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(15, 76, 129, 0.12);
  --glass-border-hover: rgba(15, 76, 129, 0.25);
  --text: #1a1f36;
  --text-muted: rgba(26, 31, 54, 0.7);
  --text-dim: rgba(26, 31, 54, 0.5);
  --glow-primary: rgba(15, 76, 129, 0.2);
  --glow-secondary: rgba(27, 177, 163, 0.2);
  --shadow-sm: 0 2px 8px rgba(15, 76, 129, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 76, 129, 0.12);
  --shadow-lg: 0 8px 32px rgba(15, 76, 129, 0.15);
  --shadow-xl: 0 16px 48px rgba(15, 76, 129, 0.18);
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui,
    sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(27, 177, 163, 0.05),
      transparent 50%
    ),
    radial-gradient(circle at 90% 80%, rgba(15, 76, 129, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 2rem;
  top: 2rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

/* Sticky Navigation */
nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  animation: nav-fade-in 0.6s ease-out;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  padding: 0.75rem 5%;
  box-shadow: var(--shadow-md);
}

@keyframes nav-fade-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

nav .logo:hover {
  opacity: 0.8;
}

nav .nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}

nav .nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}

nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: transform 0.3s ease;
}

nav .nav-links a:hover {
  color: var(--primary);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

nav .nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  nav {
    padding: 0.875rem 4%;
  }
  
  nav.scrolled {
    padding: 0.75rem 4%;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 10000;
  }

  nav .nav-links {
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease,
                visibility 0.3s ease;
  }

  nav .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav .nav-links li {
    width: 100%;
    text-align: center;
  }

  nav .nav-links a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }
  
  nav .nav-links a::after {
    display: none;
  }
}

/* Hero Section */
header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 5vw 6rem;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(15, 76, 129, 0.92),
      rgba(27, 177, 163, 0.85)
    ),
    url('https://images.unsplash.com/photo-1472289065668-ce650ac443d2?auto=format&fit=crop&w=1600&q=60')
      center/cover no-repeat;
  z-index: -1;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(15, 76, 129, 0.3) 100%
  );
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content > * {
  animation: hero-fade-up 1s ease-out backwards;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.6s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 76, 129, 0.25);
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: #ffffff;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 850px;
  margin: 0 auto 3.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  font-weight: 300;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1.1rem 2.8rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn::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 ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 6px 30px rgba(15, 76, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(15, 76, 129, 0.5);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Main Content */
main {
  position: relative;
  z-index: 1;
  padding: 0 5vw 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

section {
  margin-bottom: 8rem;
  padding: 4rem 0;
}

.glass-card {
  background: var(--surface);
  border: 2px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(15, 76, 129, 0.2);
  border-color: rgba(15, 76, 129, 0.25);
}

.glass-card:hover::before {
  transform: scaleX(1);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.75rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
  letter-spacing: -0.005em;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  transition: all 0.3s ease;
}

ul li:hover {
  color: var(--text);
  padding-right: 0.5rem;
}

ul li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
  background: var(--bg-elevated);
  border: 2px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(15, 76, 129, 0.08) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  border-radius: 50%;
  z-index: 0;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(15, 76, 129, 0.2);
  border-color: rgba(15, 76, 129, 0.3);
}

.feature-card:hover::after {
  width: 500px;
  height: 500px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  list-style: none;
  padding: 0;
}

.timeline li {
  background: var(--bg-elevated);
  border: 2px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.timeline li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.timeline li:hover::before {
  transform: scaleX(1);
}

.timeline li:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline li:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline li:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline li:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline li:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes timeline-slide-in {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline li::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(15, 76, 129, 0.4);
}

.timeline li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.timeline strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.timeline p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Tech Pills */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-pill {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 2px solid var(--glass-border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.tech-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: left 0.4s ease;
  z-index: 0;
}

.tech-pill span {
  position: relative;
  z-index: 1;
}

.tech-pill:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 30px rgba(15, 76, 129, 0.3);
  border-color: var(--primary);
  color: white;
}

.tech-pill:hover::before {
  left: 0;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 2px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 70px rgba(15, 76, 129, 0.25);
  border-color: var(--primary);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-width: 3px;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(15, 76, 129, 0.3);
}

.pricing-card.featured::before {
  transform: scaleX(1);
  height: 8px;
}

.pricing-card.featured:hover {
  transform: translateY(-15px) scale(1.06);
  box-shadow: 0 30px 80px rgba(15, 76, 129, 0.35);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.pricing-card strong {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  letter-spacing: -1.5px;
  line-height: 1;
}

.pricing-card .price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

.pricing-card ul {
  flex: 1;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* Color Palette */
.palette {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.swatch {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.swatch::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swatch:hover {
  transform: translateY(-8px) scale(1.1) rotate(5deg);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.swatch:hover::before {
  opacity: 1;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 5vw;
  background: var(--bg-elevated);
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 4%;
  }

  main {
    padding: 0 4vw 4rem;
  }
}

@media (max-width: 768px) {
  header {
    min-height: 85vh;
    padding: 7rem 4% 4rem;
  }

  header h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  header p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .badge {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    margin-bottom: 2rem;
  }

  .glass-card {
    padding: 2rem;
    border-radius: 20px;
  }

  section {
    margin-bottom: 4rem;
    padding: 2rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 3rem auto 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  h2 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
  
  h2::after {
    width: 50px;
    height: 3px;
  }

  h3 {
    font-size: 1.3rem;
  }

  .feature-card {
    padding: 1.75rem;
    border-radius: 16px;
  }

  .timeline li {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .tech-pill {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
  }
  
  .tech-list {
    gap: 0.75rem;
  }
  
  .swatch {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.875rem 4%;
  }
  
  nav.scrolled {
    padding: 0.75rem 4%;
  }

  nav .logo {
    font-size: 1.2rem;
  }

  header {
    padding: 6rem 4% 3rem;
    min-height: 90vh;
  }

  header h1 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }
  
  header p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .glass-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }
  
  section {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .timeline li {
    padding: 1.25rem;
  }
  
  .pricing-card {
    padding: 1.75rem 1.25rem;
  }
  
  .tech-pill {
    padding: 0.6rem 1.1rem;
    font-size: 0.8rem;
  }
  
  .swatch {
    width: 60px;
    height: 60px;
    font-size: 0.65rem;
  }
  
  ul li {
    padding: 0.6rem 0 0.6rem 1.75rem;
    font-size: 0.95rem;
  }
  
  ul li::before {
    font-size: 1.1rem;
  }
}

/* Smooth Scroll Reveal */
[data-scroll] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

[data-scroll].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-scroll] {
    opacity: 1;
    transform: none;
  }
}

/* Link Styling */
a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

/* Selection Styling */
::selection {
  background: rgba(15, 76, 129, 0.2);
  color: var(--text);
}

::-moz-selection {
  background: rgba(15, 76, 129, 0.2);
  color: var(--text);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}
