:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent: #ec4899;
  --accent-dark: #db2777;
  --accent-light: #f472b6;
  --success: #10b981;
  --bg: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(99, 102, 241, 0.4);
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);
  --glow-primary: rgba(99, 102, 241, 0.4);
  --glow-accent: rgba(236, 72, 153, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--glow-primary);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

canvas#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.app {
  position: relative;
  min-height: 100vh;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header__nav {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  padding: 10px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-item:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-item:hover::after {
  transform: scaleX(1);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--glow-primary);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-primary);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow-primary), transparent 70%);
  filter: blur(100px);
  opacity: 0.5;
  animation: float-glow 15s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-accent), transparent 70%);
  filter: blur(100px);
  opacity: 0.4;
  animation: float-glow 20s ease-in-out infinite reverse;
}

@keyframes float-glow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(5%, 5%) scale(1.1);
    opacity: 0.6;
  }
}

.hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.4);
  }
}

.hero__name {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.name-greeting {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__role {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 650px;
  font-weight: 400;
}

.hero__value-props {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.value-prop i {
  color: var(--success);
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg);
  box-shadow: 0 8px 30px var(--glow-primary);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--glow-primary);
}

.btn--secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stats-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 400px;
}

.stat-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.8s ease both;
}

.stat-card:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), 0 0 30px var(--glow-primary);
}

.stat-card--featured {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
  border-color: rgba(99, 102, 241, 0.3);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  font-size: 1.8rem;
  color: var(--bg);
  box-shadow: 0 8px 24px var(--glow-primary);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.stat-description {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Why Section */
.why-section {
  padding: 120px 0;
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.benefit-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.benefit-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px var(--glow-primary);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 2rem;
  color: var(--bg);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.services-category {
  margin-bottom: 80px;
}

.services-category:last-child {
  margin-bottom: 0;
}

.services-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.services-category-title i {
  font-size: 2rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.service-item {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.service-item-featured {
  border: 2px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(99, 102, 241, 0.03) 100%);
}

.service-item-featured::before {
  height: 5px;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.15));
}

.service-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.service-item > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.service-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
}

/* Work Section */
.work-section {
  padding: 120px 0;
}

.projects-grid {
  display: grid;
  gap: 48px;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.project-showcase:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-image {
  height: 400px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
}

.project-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}

.project-category {
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid var(--primary);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.project-image--1 {
  background-image: url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=1100&q=80");
}
.project-image--2 {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1100&q=80");
}
.project-image--3 {
  background-image: url("https://images.unsplash.com/photo-1545239351-1141bd82e8a6?auto=format&fit=crop&w=1100&q=80");
}
.project-image--4 {
  background-image: url("https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=1100&q=80");
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.project-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

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

.result-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.result-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.project-tech {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-tech span {
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.expertise-item {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.expertise-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.expertise-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.expertise-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.expertise-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cta-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary);
}

.cta-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
}

.cta-banner {
  padding: 80px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, var(--glow-primary), transparent 70%);
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.trust-item i {
  color: var(--success);
  font-size: 1.2rem;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .brand-logo {
  font-size: 1.5rem;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Cursor */
.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 10000;
}

.cursor__outer {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor__inner {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}

/* Page Opening Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: auto;
  overflow: hidden;
  perspective: 1000px;
  opacity: 1;
  visibility: visible;
  background: linear-gradient(135deg, #0a0a0f 0%, #111118 50%, #0a0a0f 100%);
  animation: hideLoader 0.8s ease 5.5s forwards;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.15), transparent 50%);
  animation: bgPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes bgPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Animated Background Particles */
.loader-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Large Orbs */
.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.loader-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 10%;
  left: 10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.loader-orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent), transparent);
  bottom: 15%;
  right: 15%;
  animation: orbFloat2 14s ease-in-out infinite;
}

.loader-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.2);
  }
  66% {
    transform: translate(-30px, 50px) scale(0.8);
  }
}

@keyframes orbFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-40px, 40px) scale(1.1);
  }
  66% {
    transform: translate(40px, -40px) scale(0.9);
  }
}

@keyframes orbFloat3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* Animated Rings */
.loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

.loader-ring-2 {
  width: 500px;
  height: 500px;
  border-color: rgba(236, 72, 153, 0.3);
  animation: ringRotate 25s linear infinite reverse;
}

@keyframes ringRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.loader-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary);
  opacity: 0.8;
}

.loader-particle:nth-child(4) {
  top: 15%;
  left: 15%;
  animation: floatParticle 10s ease-in-out infinite;
}

.loader-particle:nth-child(5) {
  top: 25%;
  left: 70%;
  animation: floatParticle 12s ease-in-out infinite 0.8s;
}

.loader-particle:nth-child(6) {
  top: 45%;
  left: 25%;
  animation: floatParticle 11s ease-in-out infinite 1.6s;
}

.loader-particle:nth-child(7) {
  top: 55%;
  left: 75%;
  animation: floatParticle 13s ease-in-out infinite 0.4s;
}

.loader-particle:nth-child(8) {
  top: 75%;
  left: 20%;
  animation: floatParticle 9s ease-in-out infinite 2s;
}

.loader-particle:nth-child(9) {
  top: 85%;
  left: 80%;
  animation: floatParticle 14s ease-in-out infinite 1.2s;
}

.loader-particle:nth-child(10) {
  top: 35%;
  left: 50%;
  animation: floatParticle 10s ease-in-out infinite 0.6s;
}

.loader-particle:nth-child(11) {
  top: 65%;
  left: 60%;
  animation: floatParticle 12s ease-in-out infinite 1.8s;
}

.loader-particle:nth-child(12) {
  top: 5%;
  left: 50%;
  animation: floatParticle 11s ease-in-out infinite 2.4s;
}

.loader-particle:nth-child(13) {
  top: 95%;
  left: 40%;
  animation: floatParticle 13s ease-in-out infinite 1.4s;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(40px, -40px) scale(1.3);
    opacity: 1;
  }
  50% {
    transform: translate(-30px, 30px) scale(0.7);
    opacity: 0.6;
  }
  75% {
    transform: translate(30px, 40px) scale(1.2);
    opacity: 0.9;
  }
}

/* Loader Panels */
.loader-left,
.loader-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.loader-left {
  left: 0;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(99, 102, 241, 0.2) 100%);
  transform-origin: left center;
  animation: slideLeft 3.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.loader-right {
  right: 0;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, var(--bg) 100%);
  transform-origin: right center;
  animation: slideRight 3.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.loader-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.loader-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.3) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(236, 72, 153, 0.3) 50%, transparent 70%);
  background-size: 60px 60px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, -60px -60px;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%) rotateY(-20deg);
    opacity: 0;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) rotateY(20deg);
    opacity: 0;
  }
}

/* Loader Center Content */
.loader-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInOut 5s ease forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  90% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.loader-logo-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px;
}

.loader-logo {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 3;
  background-size: 300% 300%;
  animation: logoPulse 1.5s ease-in-out infinite, gradientShift 4s ease infinite;
  text-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
  margin-bottom: 8px;
  line-height: 1.2;
}

.loader-logo-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards, subtitleShimmer 3s ease-in-out infinite 1.8s;
  text-align: center;
}

.loader-logo-ring {
  position: absolute;
  inset: -30px;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: logoRingRotate 3s linear infinite;
  z-index: 1;
}

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

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.loader-logo-glow {
  position: absolute;
  inset: -40px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  filter: blur(50px);
  opacity: 0.6;
  z-index: 2;
  animation: glowPulse 2s ease-in-out infinite, glowRotate 8s linear infinite;
  border-radius: 50%;
  background-size: 200% 200%;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

@keyframes glowRotate {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.loader-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards, subtitleShimmer 3s ease-in-out infinite 1.5s;
  position: relative;
}

@keyframes subtitleShimmer {
  0%, 100% {
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-progress {
  width: 280px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  border-radius: 100px;
  box-shadow: 0 0 30px var(--glow-primary), 0 0 60px var(--glow-primary);
  animation: progressFill 3.5s ease 1s forwards, progressShimmer 1.5s ease-in-out infinite;
  position: relative;
}

.loader-progress-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(15px);
  transform: translateY(-50%);
  animation: progressGlow 3.5s ease 1s forwards;
  box-shadow: 0 0 30px var(--primary);
}

@keyframes progressFill {
  0% {
    width: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes progressShimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

@keyframes progressGlow {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.app {
  position: relative;
  opacity: 0;
  visibility: hidden;
  animation: contentFadeIn 1.2s ease 5s forwards;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

/* Hide loader after animation */
@keyframes hideLoader {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Scroll Animations */
[data-observe] {
  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);
}

[data-observe].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }

  .hero__content {
    text-align: center;
    align-items: center;
  }

  .hero__intro {
    align-items: center;
  }

  .hero__badge {
    margin: 0 auto;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero-stats-wrapper {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .header {
    top: 12px;
  }

  .header__container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .header__brand {
    flex: 1;
    min-width: 120px;
  }

  .brand-logo {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .header__nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .nav-item {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .header__cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero__container {
    padding: 0 16px;
    gap: 40px;
  }

  .hero__content {
    gap: 32px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero__role {
    font-size: 1.1rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .hero__value-props {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 24px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-category {
    margin-bottom: 60px;
  }

  .services-category-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .benefit-card,
  .service-item {
    padding: 32px 24px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .service-icon i {
    font-size: 1.75rem;
  }

  .service-item h3 {
    font-size: 1.3rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-layout {
    gap: 40px;
  }

  .about-content {
    gap: 20px;
  }

  .about-text p {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .cta-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .cta-trust {
    flex-direction: column;
    gap: 16px;
  }

  .footer {
    padding: 60px 0 32px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cursor {
    display: none;
  }

  /* Loading screen mobile */
  .loader-logo {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .loader-logo-subtitle {
    font-size: clamp(0.75rem, 3vw, 1rem);
    padding: 0 20px;
  }

  .loader-progress {
    width: 100%;
    max-width: 240px;
  }

  .loader-ring {
    width: 300px;
    height: 300px;
  }

  .loader-ring-2 {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header {
    top: 8px;
  }

  .header__container {
    padding: 10px 12px;
  }

  .brand-logo {
    font-size: 1.1rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .nav-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .header__cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero__container {
    padding: 0 12px;
    gap: 32px;
  }

  .hero__title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero__role {
    font-size: 1rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero__badge {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .name-greeting {
    font-size: 1rem;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .stat-description {
    font-size: 0.75rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .benefit-card,
  .service-item {
    padding: 24px 20px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }

  .benefit-card h3,
  .service-header h3 {
    font-size: 1.3rem;
  }

  .project-showcase {
    padding: 20px;
    gap: 24px;
  }

  .project-image {
    height: 200px;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-results {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .result-item strong {
    font-size: 1.5rem;
  }

  .about-content {
    gap: 16px;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .expertise-item {
    padding: 20px;
  }

  .expertise-item i {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

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

  .footer {
    padding: 48px 0 24px;
  }

  .footer-content {
    gap: 24px;
  }

  /* Loading screen small mobile */
  .loader-logo {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }

  .loader-logo-subtitle {
    font-size: 0.75rem;
    padding: 0 16px;
    line-height: 1.4;
  }

  .loader-subtitle {
    font-size: 0.9rem;
  }

  .loader-progress {
    width: 100%;
    max-width: 200px;
    height: 5px;
  }

  .loader-ring {
    width: 250px;
    height: 250px;
  }

  .loader-ring-2 {
    width: 300px;
    height: 300px;
  }

  .loader-orb-1 {
    width: 200px;
    height: 200px;
  }

  .loader-orb-2 {
    width: 180px;
    height: 180px;
  }

  .loader-orb-3 {
    width: 150px;
    height: 150px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-item,
  .header__cta {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-item {
    padding: 12px 20px;
  }

  .btn {
    padding: 14px 28px;
  }
}
