/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --color-bg-primary: #0A0B0E;
  --color-bg-secondary: #0D2C4E;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #A9B0B8;
  --color-accent-blue: #4379FF;
  --color-border: #20252B;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8A2BE2 0%, #22E1FF 45%, #1DFFB0 100%);
  --gradient-hero-glow: radial-gradient(60% 60% at 50% 10%, rgba(138,43,226,0.18), rgba(34,225,255,0.12) 40%, rgba(29,255,176,0.08) 70%, rgba(10,11,14,0) 100%);
  
  /* Shadows */
  --shadow-card: 0 10px 30px rgba(67,121,255,0.12);
  --shadow-glow: 0 0 20px rgba(67,121,255,0.3);
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Font Sizes */
  --font-size-h1-desktop: 64px;
  --font-size-h1-mobile: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 22px;
  
  /* Spacing */
  --border-radius: 8px;
  --section-padding-desktop: 96px;
  --section-padding-tablet: 64px;
  --section-padding-mobile: 48px;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: 24px;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-h1-desktop);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent-blue);
  text-decoration: underline;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding-desktop) 0;
}

.section__title {
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-text-primary);
  border: none;
}

.btn--primary:hover {
  filter: brightness(1.12);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  color: var(--color-text-primary);
}

.btn--primary:active {
  filter: brightness(0.88);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-accent-blue);
}

.btn--secondary:hover {
  background: rgba(67, 121, 255, 0.08);
  text-decoration: none;
  color: var(--color-text-primary);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 11, 14, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
}

.nav__brand {
  display: flex;
  align-items: center;
}

.brand__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand__link:hover {
  transform: translateY(-1px);
}

.brand__logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
  transition: filter 0.3s ease;
}

.brand__link:hover .brand__logo {
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
}

.brand__text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-right: 2rem;
}

.nav__link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--color-accent-blue);
  text-decoration: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  cursor: pointer;
  color: var(--color-text-primary);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  background-image: url('bn.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 11, 14, 0.85) 0%,
    rgba(10, 11, 14, 0.7) 50%,
    rgba(0, 212, 255, 0.1) 100%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-glow);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 20px;
  margin-bottom: 2.5rem;
  color: var(--color-text-secondary);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.95) 0%, rgba(10, 10, 15, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about__description {
  font-size: 20px;
  margin-bottom: 3rem;
  color: var(--color-text-secondary);
  padding: 2rem;
  background: linear-gradient(145deg, rgba(25, 25, 30, 0.6) 0%, rgba(15, 15, 20, 0.8) 100%);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(5px);
  line-height: 1.8;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.value {
  background: linear-gradient(145deg, rgba(25, 25, 30, 0.8) 0%, rgba(15, 15, 20, 0.9) 100%);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  text-align: left;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value:hover::before {
  transform: scaleX(1);
}

.value:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
  border-color: var(--color-accent-blue);
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.9) 0%, rgba(20, 20, 25, 0.95) 100%);
}

.value__title {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.value__text {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(135deg, rgba(13, 13, 18, 0.95) 0%, rgba(18, 18, 23, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(67,121,255,0.2);
  border-color: var(--color-accent-blue);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: var(--color-text-primary);
  font-size: 2.5rem;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.service-card__title {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.service-card__description {
  color: var(--color-text-secondary);
  margin: 0;
  flex-grow: 1;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  justify-content: center;
}

.tag {
  background: rgba(67, 121, 255, 0.1);
  color: var(--color-accent-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(67, 121, 255, 0.2);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(67, 121, 255, 0.2);
  transform: translateY(-1px);
}

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(20, 20, 25, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.feature {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  background: linear-gradient(145deg, rgba(25, 25, 30, 0.8) 0%, rgba(15, 15, 20, 0.9) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
  border-color: var(--color-accent-blue);
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.9) 0%, rgba(20, 20, 25, 0.95) 100%);
}

.feature__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature__description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 15, 20, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact__intro {
  font-size: 18px;
  margin-bottom: 3rem;
  color: var(--color-text-secondary);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(145deg, rgba(25, 25, 30, 0.8) 0%, rgba(15, 15, 20, 0.9) 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.form__input,
.form__textarea {
  padding: 12px 16px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-text-primary);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(67, 121, 255, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-secondary);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(145deg, rgba(20, 20, 25, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(5px);
}

.contact__item {
  padding: 1rem;
  background: rgba(25, 25, 30, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.contact__item:hover {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.contact__item h4,
.contact__social h4 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-size: 18px;
}

.contact__item a {
  color: var(--color-accent-blue);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact__item a:hover {
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.contact__social {
  padding: 1rem;
  background: rgba(25, 25, 30, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.social__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.8) 0%, rgba(20, 20, 25, 0.9) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  opacity: 0.1;
}

.social__link:hover::before {
  left: 0;
}

.social__link:hover {
  background: var(--gradient-primary);
  border-color: var(--color-accent-blue);
  transform: translateY(-2px) scale(1.05);
  text-decoration: none;
  color: var(--color-text-primary);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.contact__success {
  background: linear-gradient(145deg, rgba(29, 255, 176, 0.1) 0%, rgba(29, 255, 176, 0.05) 100%);
  border: 1px solid rgba(29, 255, 176, 0.3);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-top: 1rem;
  color: #1DFFB0;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 20px rgba(29, 255, 176, 0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-secondary);
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright,
.footer__disclaimer {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin: 0;
}

.footer__link {
  color: var(--color-accent-blue);
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --section-padding-desktop: var(--section-padding-mobile);
  }
  
  h1 {
    font-size: var(--font-size-h1-mobile);
  }
  
  h2 {
    font-size: 28px;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
  }
  
  .nav__menu.show {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    text-align: center;
  }
  
  .nav__link {
    font-size: 24px;
  }
  
  .nav__close {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .nav__actions .btn {
    display: none;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__subtitle {
    font-size: 18px;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .about__values {
    grid-template-columns: 1fr;
  }
  
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .service-card,
  .value {
    padding: 1.5rem;
  }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content {
  animation: fadeInUp 1s ease-out;
}

.hero__title {
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__subtitle {
  animation: fadeInUp 1s ease 0.4s both;
}

.hero__actions {
  animation: fadeInUp 1s ease 0.6s both;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav__link:focus,
.form__input:focus,
.form__textarea:focus {
  outline: 2px solid var(--color-accent-blue);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-text-secondary: #FFFFFF;
    --color-border: #FFFFFF;
  }
}