:root {
  --primary-dark: #0a0a14;
  --secondary-dark: #121220;
  --accent-blue: #00d4ff;
  --accent-green: #00ff9d;
  --accent-orange: #ff6b35;
  --light-text: #f0f0f0;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --header-height: 70px;
}

html {
  background: #0f0f1a;
  /* Disable scroll anchoring. Chromium/Edge otherwise auto-adjusts the scroll
     position when the lazy YouTube iframe loads mid-scroll, which yanks the
     page as you scroll past the reel. Our dynamic content uses transforms
     (no layout shift), so anchoring isn't needed. */
  overflow-anchor: none;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: #0f0f1a;
  scroll-behavior: auto;
  overflow-anchor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  text-wrap: balance;
}

::selection {
  background: var(--accent-blue);
  color: var(--primary-dark);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-blue) var(--primary-dark);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 212, 255, 0.7); }

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */

.sticky-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateZ(0);
  will-change: transform;
  height: var(--header-height);
  overflow: visible;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-orange));
  z-index: 1;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

.sticky-header.scrolled {
  height: 56px;
}

.sticky-header.scrolled .header-container {
  height: 56px;
}

.sticky-header.scrolled .logo a {
  font-size: 1.4rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-height);
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo a span {
  color: var(--accent-blue);
}

.logo-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.1em;
  flex-shrink: 0;
}

.logo a:hover {
  color: var(--accent-blue);
  transform: scale(1.05);
}

/* ── Mobile Menu Toggle ── */

.menu-toggle {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  cursor: pointer;
  padding: 0.6rem;
  width: 40px;
  height: 40px;
  z-index: 1001;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  margin: 3px 0;
  transition: 0.3s ease;
  border-radius: 1px;
  transform-origin: center;
}

/* ── Navigation ── */

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 1rem 1.2rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
  position: relative;
  border-radius: var(--border-radius);
  -webkit-tap-highlight-color: transparent;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a.active {
  color: var(--accent-blue);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 2px;
}

/* ── Hero ── */

.hero {
  height: 100vh;
  /* svh = small viewport height: stays fixed when the mobile address bar
     shows/hides, so the hero doesn't resize and thrash layout on scroll. */
  height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 4;
}

.hero-service-cycle {
  color: var(--accent-green);
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-service-cycle.cycling {
  opacity: 0;
  transform: translateY(-10px);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 20, 0.75) 0%,
    rgba(10, 10, 20, 0.5) 50%,
    rgba(10, 10, 20, 0.82) 100%
  );
  z-index: 2;
}

@supports (animation-timeline: scroll()) {
  /* Desktop only: the vh-based scroll range recalculates when the mobile
     address bar changes the viewport height, which causes the hero to snap
     during scroll. Limit the scroll-driven fade to pointer/desktop devices. */
  @media (min-width: 769px) {
    .hero-content {
      animation: hero-scroll-out linear both;
      animation-timeline: scroll(root);
      animation-range: 15vh 65vh;
    }
  }

  @keyframes hero-scroll-out {
    to {
      opacity: 0;
      transform: translateY(-70px) scale(0.93);
    }
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  -webkit-text-fill-color: var(--accent-green);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

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

/* ── Buttons ── */

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-orange) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px) scale(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px) scale(1.05);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ── Showreel ── */

.showreel {
  padding: 5rem 0;
  background: #0f0f1a;
}

.showreel h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.video-wrapper {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: #000;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  display: block;
}

.video-wrapper video { height: auto; }

.video-wrapper iframe {
  aspect-ratio: 16 / 9;
  border: none;
}

/* Click-to-play facade: thumbnail + play button, loads the real iframe only
   when clicked. Prevents the mid-scroll iframe load that jerked the page. */
.video-facade {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: none;
  cursor: pointer;
  background-color: #000;
  background-size: cover;
  background-position: center;
  position: relative;
}

.video-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  transition: background 0.3s ease;
}

.video-facade:hover::after,
.video-facade:focus-visible::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 59px;
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.video-play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.video-facade:hover .video-play,
.video-facade:focus-visible .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-facade:hover .video-play circle {
  fill: var(--accent-blue);
}

/* ── About ── */

.about {
  padding: 5rem 0;
  background: #121220;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-image {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  border-radius: var(--border-radius);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Equipment Card ── */

.equipment-card {
  width: 100%;
  padding: 2.2rem 2rem;
  color: var(--light-text);
}

.equipment-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.equipment-drone-svg {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.equipment-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.3px;
}

.equipment-badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 0.15rem 0.65rem;
}

.equipment-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.equipment-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.equipment-specs li:last-child {
  border-bottom: none;
}

.equipment-specs li:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

.spec-label {
  color: rgba(255, 255, 255, 0.55);
}

.spec-value {
  font-weight: 600;
  color: var(--accent-blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
}

/* ── Service Area Chips ── */

.service-area {
  margin-top: 1.6rem;
}

.service-area-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-area-label i {
  color: var(--accent-blue);
}

.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-area-chips span {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 212, 255, 0.05);
  transition: var(--transition);
  cursor: default;
}

.service-area-chips span:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Services ── */

.services {
  padding: 5rem 0;
  background: #0f0f1a;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateZ(0);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon {
  font-size: 2.8rem;
  color: var(--accent-blue);
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border: 1px solid rgba(0, 212, 255, 0.12);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.18) 0%, transparent 70%);
  border-color: rgba(0, 212, 255, 0.28);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* ── Bento grid (large screens only) ── */

@media (min-width: 993px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .service-card:nth-child(1) {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-card:nth-child(4) {
    grid-column: span 2;
  }
}

/* ── Section Wave Dividers ── */

.hero,
.showreel,
.about,
.services,
.pricing,
.testimonials,
.process,
.contact {
  position: relative;
}

.hero::after,
.showreel::after,
.about::after,
.services::after,
.pricing::after,
.testimonials::after,
.process::after,
.contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  pointer-events: none;
  z-index: 5;
}

.hero::after         { background: #0f0f1a;            clip-path: polygon(0 100%, 100% 30%, 100% 100%); }
.showreel::after     { background: #121220;            clip-path: polygon(0 30%, 100% 100%, 0 100%); }
.about::after        { background: #0f0f1a;            clip-path: polygon(0 100%, 100% 30%, 100% 100%); }
.services::after     { background: #121220;            clip-path: polygon(0 30%, 100% 100%, 0 100%); }
.pricing::after      { background: #0f0f1a;            clip-path: polygon(0 100%, 100% 30%, 100% 100%); }
.testimonials::after { background: #121220;            clip-path: polygon(0 30%, 100% 100%, 0 100%); }
.process::after      { background: #0f0f1a;            clip-path: polygon(0 100%, 100% 30%, 100% 100%); }
.contact::after      { background: var(--primary-dark); clip-path: polygon(0 30%, 100% 100%, 0 100%); }

/* ── Pricing ── */

.pricing {
  padding: 5rem 0;
  background: #121220;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 993px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Cards 1–3 fill row 1; card 5 (Aerial Videography) spans 2 cols in row 2 */
  .pricing-card:nth-child(5) {
    grid-column: span 2;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  position: relative;
  transform: translateZ(0);
  will-change: transform;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes card-glow {
  0%, 100% { box-shadow: 0 0 14px rgba(0, 212, 255, 0.15), 0 8px 28px rgba(0, 0, 0, 0.3); }
  50%       { box-shadow: 0 0 26px rgba(0, 212, 255, 0.28), 0 8px 28px rgba(0, 0, 0, 0.3); }
}

.pricing-card--featured {
  background: #0d1525;
  border-color: var(--accent-blue);
  animation: card-glow 3s ease-in-out infinite;
}

.pricing-card--featured:hover {
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.38), 0 12px 36px rgba(0, 0, 0, 0.35);
}

.pricing-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-orange) 100%);
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2.2rem;
  color: var(--accent-blue);
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border: 1px solid rgba(0, 212, 255, 0.12);
  transition: var(--transition);
}

.pricing-card:hover .pricing-icon {
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.18) 0%, transparent 70%);
  border-color: rgba(0, 212, 255, 0.28);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.price-from {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--accent-blue);
  line-height: 1.1;
}

.price-unit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-features li i {
  color: var(--accent-green);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin-top: 2rem;
}

.pricing-note i {
  color: var(--accent-blue);
  margin-right: 0.4rem;
}

/* ── Pricing add-ons ── */

.pricing-addons {
  max-width: 760px;
  margin: 3rem auto 0;
  background: #0f0f1a;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 14px;
  padding: 1.75rem 2rem;
}

.pricing-addons h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  margin-bottom: 1.25rem;
  text-align: center;
}

.addon-list {
  list-style: none;
}

.addon-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.3rem 1.5rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.addon-list li:first-child {
  border-top: none;
}

.addon-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.addon-name i {
  color: var(--accent-blue);
  margin-right: 0.5rem;
}

.addon-desc {
  grid-column: 1;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.addon-price {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent-green);
  white-space: nowrap;
}

.addon-hint {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Testimonials ── */

.testimonials {
  padding: 5rem 0;
  background: #0f0f1a;
  position: relative;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
  transform: translateZ(0);
  will-change: transform;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--accent-orange);
  font-size: 0.95rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.author-role {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}

/* ── How It Works ── */

.process {
  padding: 5rem 0;
  background: #121220;
  position: relative;
}

.process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

@media (min-width: 769px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: -0.1rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 2%,
      rgba(0, 212, 255, 0.35) 12%,
      rgba(0, 212, 255, 0.35) 88%,
      transparent 98%
    );
    pointer-events: none;
  }
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  transform: translateZ(0);
  will-change: transform;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.step-number {
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  background: var(--accent-blue);
  color: var(--primary-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 1px;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--accent-blue);
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 1.2rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border: 1px solid rgba(0, 212, 255, 0.12);
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.18) 0%, transparent 70%);
  border-color: rgba(0, 212, 255, 0.28);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Contact ── */

.contact {
  padding: 5rem 0;
  background: #0f0f1a;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--accent-blue);
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--accent-blue);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300d4ff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group .field-error {
  display: none;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 0.35rem;
  padding-left: 0.2rem;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.18);
}

.form-group.is-valid input,
.form-group.is-valid textarea,
.form-group.is-valid select {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.15);
}

/* ── Footer ── */

.footer {
  background: var(--primary-dark);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  content-visibility: auto;
  contain-intrinsic-size: 0 220px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-logo a span {
  color: var(--accent-blue);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-blue);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--accent-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent-blue);
}

/* ── Section heading accents ── */

.showreel h2,
.about h2,
.services h2,
.pricing h2,
.testimonials h2,
.process h2,
.contact h2 {
  position: relative;
  padding-bottom: 0.9rem;
}

.showreel h2::after,
.about h2::after,
.services h2::after,
.pricing h2::after,
.testimonials h2::after,
.process h2::after,
.contact h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-orange));
  border-radius: 2px;
}

/* ── Floating CTA ── */

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-orange) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.5);
}

/* ── Touch optimization ── */

.btn, .menu-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ── Responsive ── */

@media screen and (max-width: 992px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo a {
    justify-content: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

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

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding-top: var(--header-height);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateZ(0);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-nav a {
    padding: 1.2rem 1.5rem;
  }

  .menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    -webkit-tap-highlight-color: transparent;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }

  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.45), transparent);
    pointer-events: none;
  }

  .about-content,
  .contact-content {
    gap: 2rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about h2,
  .services h2,
  .showreel h2,
  .pricing h2,
  .testimonials h2,
  .process h2,
  .contact h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .header-container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .btn {
    width: 100%;
  }

  .main-nav {
    width: 100%;
  }

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    padding: 0.9rem 1rem;
    border-radius: 50%;
  }
}


/* ========== Skip-to-content link (accessibility) ========== */

.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.3);
  transition: top 0.2s ease;
  isolation: isolate;
}

.skip-link:hover {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent-orange);
  outline-offset: -3px;
}


/* ========== Hero headline glow ========== */

.hero h1 {
  filter: drop-shadow(0 0 28px rgba(0, 212, 255, 0.35));
}


/* ========== Hero scroll indicator ========== */

.scroll-indicator {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: block;
  animation: scroll-indicator-fade 2.4s ease-in-out infinite;
}

.scroll-indicator-mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  position: relative;
}

.scroll-indicator-wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--accent-blue);
  border-radius: 2px;
  animation: scroll-indicator-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-indicator-wheel {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

@keyframes scroll-indicator-fade {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator,
  .scroll-indicator-wheel {
    animation: none;
  }
}


/* ========== Trust bar ========== */

.trust-bar {
  background: #121220;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  padding: 1.1rem 0;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.5rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--light-text);
  white-space: nowrap;
}

.trust-list i {
  color: var(--accent-blue);
  font-size: 1.05rem;
}


/* ========== Social links (contact + footer) ========== */

.contact-social {
  margin-top: 1.5rem;
}

.contact-social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent-blue);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-social a:hover,
.footer-social a:hover {
  background: var(--accent-blue);
  color: #0f0f1a;
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}


/* ========== Gallery ========== */

.gallery {
  padding: 5rem 0;
  background: #0f0f1a;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== FAQ ========== */

.faq {
  padding: 5rem 0;
  background: #0f0f1a;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #121220;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(0, 212, 255, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--accent-blue);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--accent-blue);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent-blue);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}


/* ========== Legal pages (privacy) ========== */

.legal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-back {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--accent-blue);
}

.legal {
  padding: 3.5rem 0 4.5rem;
}

.legal .container {
  max-width: 760px;
}

.legal h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--white);
}

.legal p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal a {
  color: var(--accent-blue);
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.9rem;
  margin-bottom: 2rem !important;
}

.legal-note {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55) !important;
}


/* ========== 404 page ========== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-drone {
  width: 72px;
  height: 72px;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.4));
  animation: error-hover 3s ease-in-out infinite;
}

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

.error-page h1 {
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.error-page h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.error-page p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .error-drone {
    animation: none;
  }
}

/* For users who prefer reduced motion — still make skip-link visible */
@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}
