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

:root {
  --bg: #1a2430;
  --bg-light: #202d3a;
  --bg-lighter: #243242;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --text-faint: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.2);
  --accent: #FF3366;
  --accent-secondary: #00D4FF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(26,36,48,0.9);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links a,
.nav-dropdown-toggle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #121a23;
  backdrop-filter: blur(10px);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 120;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  text-transform: none;
  color: rgba(255,255,255,0.85);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-dropdown-toggle svg {
  display: block;
}

.nav-cta {
  padding: 12px 24px;
  border: 1px solid #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: #fff;
  color: #000;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding-top: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-services-dropdown {
  width: 100%;
  max-width: 320px;
}

.mobile-services-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.mobile-services-dropdown summary::-webkit-details-marker {
  display: none;
}

.mobile-services-dropdown a {
  display: block;
  text-align: center;
  font-size: 1rem;
  margin-top: 10px;
  color: rgba(255,255,255,0.8);
}

/* ============ SECTIONS ============ */
section {
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 0 24px;
}

.caption {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  margin: 24px 0;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.02);
}

.btn-solid {
  background: #fff;
  color: #000;
  border: none;
}

.btn-solid:hover {
  background: var(--accent);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============ FLOATING ELEMENTS ============ */
.float-el {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.float-1 { animation: float 4s ease-in-out infinite; }
.float-2 { animation: float 4s ease-in-out infinite 0.5s; }
.float-3 { animation: float 4s ease-in-out infinite 1s; }
.float-slow-1 { animation: float-slow 6s ease-in-out infinite; }
.float-slow-2 { animation: float-slow 6s ease-in-out infinite 0.8s; }
.rotate-slow { animation: rotate-slow 20s linear infinite; }

/* ============ ABOUT ============ */
.about {
  padding: 96px 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
  .about {
    padding: 160px 0;
  }
}

.about h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

.about p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 560px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.stat-value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Orbit Animation */
.orbit-container {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.orbit-ring-2 {
  inset: 32px;
  animation: spin-reverse 25s linear infinite;
}

.orbit-ring-3 {
  inset: 64px;
  animation: spin 20s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-dot-2 {
  width: 10px;
  height: 10px;
  background: var(--accent-secondary);
  bottom: -5px;
  top: auto;
}

.orbit-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ SERVICES ============ */
.services {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .services {
    padding: 160px 0;
  }
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 24px 0 16px;
}

.services-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Full-bleed carousel wrapper */
.services-slider {
  display: block;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.services-grid {
  display: flex;
  gap: 24px;
  padding: 8px 48px 24px;
  cursor: grab;
  user-select: none;
  width: max-content;
  touch-action: pan-y;
  will-change: transform;
}

.services-grid.dragging {
  cursor: grabbing;
}

.services-nav {
  display: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
  scroll-snap-align: start;
  min-height: 520px;
  height: 520px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(12,18,27,0.68);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(10px) brightness(0.45) saturate(1.1);
  transform: scale(1.08);
  z-index: -2;
  transition: transform 0.4s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(9,13,21,0.78), rgba(9,13,21,0.52));
  z-index: -1;
}

.services-grid .service-card:nth-child(7n + 1)::before { background-image: url("../images/chart.png"); }
.services-grid .service-card:nth-child(7n + 2)::before { background-image: url("../images/star.png"); }
.services-grid .service-card:nth-child(7n + 3)::before { background-image: url("../images/rocket.png"); }
.services-grid .service-card:nth-child(7n + 4)::before { background-image: url("../images/arrow-up.png"); }
.services-grid .service-card:nth-child(7n + 5)::before { background-image: url("../images/trophy.png"); }
.services-grid .service-card:nth-child(7n + 6)::before { background-image: url("../images/chart.png"); }
.services-grid .service-card:nth-child(7n)::before { background-image: url("../images/rocket.png"); }

.service-card.clone::before {
  filter: blur(10px) brightness(0.45) saturate(1.1);
}

.service-card:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scale(1.14);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  stroke-width: 1.5;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.service-card:hover .icon {
  color: var(--accent);
}

.service-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s;
  text-align: center;
}

.service-card:hover h3 {
  color: var(--accent);
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 100%;
  text-align: center;
}

.service-card .learn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  margin-top: auto;
}

.service-card:hover .learn-more {
  color: var(--accent);
}

.service-card .learn-more svg {
  transition: transform 0.3s;
}

.service-card:hover .learn-more svg {
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  margin-top: 64px;
}

.services-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

/* ============ SHOWCASE ============ */
.showcase {
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .showcase {
    padding: 160px 0;
  }
}

.showcase-header {
  text-align: center;
  margin-bottom: 64px;
}

.showcase-header h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 24px 0 16px;
}

.showcase-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-item .value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-visual {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
}

.showcase-visual-inner {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 8px;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.grid-line-h {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
}

.grid-line-v {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
}

.growth-curve {
  position: absolute;
  inset: 0;
}

.growth-curve svg {
  width: 100%;
  height: 100%;
}

.data-points {
  position: absolute;
  inset: 0;
}

.data-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: #fff;
  color: #000;
  padding: 16px 24px;
}

.badge .num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.badge .txt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-cta {
  text-align: center;
  margin-top: 64px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 160px 0;
  }
}

.cta-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: pulse-circle 8s ease-in-out infinite;
}

.cta-circle-2 {
  width: 800px;
  height: 800px;
  animation-delay: -2s;
  animation-duration: 10s;
  border-color: rgba(255,255,255,0.05);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content > p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============ CONTACT ============ */
.contact {
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact {
    padding: 160px 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}

.contact h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact > .container > p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item .value {
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-item a {
  transition: color 0.2s;
}

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

/* Form */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #fff;
}

.form-group textarea {
  resize: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ FOOTER ============ */
footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-inner {
    padding: 0 48px;
  }
}

.footer-logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-top: 8px;
}

.footer-contact {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-contact {
    text-align: right;
  }
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* ============ SERVICE PAGE ============ */
.service-page nav {
  background: rgba(26,36,48,0.9);
  backdrop-filter: blur(10px);
}

.service-hero {
  padding: 128px 0 80px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-hero {
    padding: 160px 0 128px;
  }
}

.service-hero .service-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.service-hero .service-label svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.service-hero h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 800px;
}

.service-hero h1 span {
  color: rgba(255,255,255,0.8);
}

.service-hero > .container > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 640px;
  line-height: 1.6;
}

.service-content {
  padding: 64px 0 96px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}

.service-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-block .block-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-block .block-icon.accent {
  background: rgba(255,51,102,0.1);
}

.service-block .block-icon.accent-2 {
  background: rgba(0,212,255,0.1);
}

.service-block .block-icon svg {
  width: 24px;
  height: 24px;
}

.service-block .block-icon.accent svg {
  color: var(--accent);
}

.service-block .block-icon.accent-2 svg {
  color: var(--accent-secondary);
}

.service-block h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-block p,
.service-block li {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.service-block ul {
  list-style: none;
}

.service-block li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.service-block li span {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.cta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
}

.cta-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-card p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* ============ SCROLL REVEAL ============ */
/* Content always visible - animations enhance when JS adds .visible */
.reveal,
.reveal-left,
.reveal.visible,
.reveal-left.visible {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* ============ HERO ENTRANCE ANIMATIONS ============ */
.hero-caption {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.6s 0.2s forwards;
}

.hero-title-1 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-up 0.8s 0.4s forwards;
}

.hero-title-2 {
  opacity: 0;
  transform: translateY(50px);
  animation: fade-up 0.8s 0.8s forwards;
}

.hero-sub {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.6s 1.4s forwards;
}

.hero-btn {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.6s 1.6s forwards;
}

.hero-float {
  opacity: 0;
  transform: scale(0.8);
  animation: float-in 0.6s 1.2s forwards;
}

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

@keyframes float-slow {
  0%, 100% { transform: translateY(-15px) rotate(0deg); }
  50% { transform: translateY(15px) rotate(5deg); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulse-circle {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,51,102,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,51,102,0.6); }
}

@keyframes path-draw {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .services-slider {
    grid-template-columns: 1fr;
  }
  .services-nav {
    display: none;
  }
  .service-card {
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
    min-height: 520px;
    height: 520px;
    padding: 24px 20px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .float-el {
    display: none;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

::selection {
  background: rgba(255,51,102,0.3);
  color: #fff;
}
