:root {
  --bg: #0a0d15;
  --bg-2: #05060a;
  --panel: #111524;
  --panel-2: #0c0f17;
  --text: #e8ecf7;
  --muted: #98a3bf;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #7c3aed;
  --accent-2: #06b6d4;
  --accent-3: #f59e0b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.6);
  --radius: 16px;
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg-2);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 3rem, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 6, 10, 0.9);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand-lol {
  color: var(--accent-2);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(124, 58, 237, 0.2);
  color: #ffffff;
  outline: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Full Width */
.hero-full {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.85) 0%, rgba(10, 13, 21, 0.95) 100%);
}

.hero-content {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  color: #d8c7ff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.hero-full h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  font-size: 1rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
}

.btn.secondary {
  border-color: var(--border);
  background: rgba(17, 21, 36, 0.6);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn.large {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.5);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.stat-box {
  background: rgba(17, 21, 36, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

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

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-2);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Services */
.services-section {
  background: var(--bg);
}

.services-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card.large {
  grid-row: span 2;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-label {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  color: #d8c7ff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.service-features li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.services-side {
  display: grid;
  gap: 1.5rem;
}

/* Why Section */
.why-section {
  background: var(--bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.why-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.why-content > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.highlights {
  display: grid;
  gap: 1.5rem;
}

.highlight-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.highlight-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 12px;
}

.highlight-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.highlight-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-panel {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.panel-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.panel-header span {
  font-weight: 700;
  font-size: 1.1rem;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.panel-list li {
  color: var(--text);
  font-size: 0.95rem;
}

/* Process */
.process-section {
  background: var(--bg);
}

.process-timeline {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
  flex-shrink: 0;
}

.timeline-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
}

/* CTA Section */
.cta-section {
  background: var(--bg-2);
}

.cta-box {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-stats {
  display: grid;
  gap: 1.5rem;
}

.cta-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(17, 21, 36, 0.6);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cta-stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.cta-stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-section {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.contact-info > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.method-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 12px;
}

.contact-method h4 {
  margin: 0 0 0.25rem;
}

.contact-method p,
.contact-method a {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
}

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

.form-group {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
  background: var(--bg-2);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
  background: var(--panel-2);
}

.form-hint {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

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

.footer-brand p {
  margin-top: 0.75rem;
  color: var(--muted);
}

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

.footer-column h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent-2);
}

.footer-meta {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-meta p {
  margin: 0.5rem 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-layout,
  .why-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-row: span 1;
  }

  .feature-panel {
    position: static;
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    min-width: 200px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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