﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&display=swap");

:root {
  --bg: #0b0c0f;
  --bg-2: #0f1117;
  --surface: #151923;
  --surface-2: #1b2230;
  --text: #f5f7fb;
  --muted: #b8bfcc;
  --accent: #e04a2a;
  --accent-2: #c8531f;
  --accent-border: rgba(224, 74, 42, 0.5);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  cursor: default;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-2);
}

body {
  -ms-overflow-style: auto;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background:
    radial-gradient(
      1200px 600px at 10% -10%,
      rgba(255, 59, 48, 0.18),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at 90% -20%,
      rgba(255, 107, 45, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg-2) 40%, #0c0f14 100%);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-2);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 10% -10%,
      rgba(255, 59, 48, 0.18),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at 90% -20%,
      rgba(255, 107, 45, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg-2) 40%, #0c0f14 100%);
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  line-height: 1.6;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

.btn.btn-primary:hover {
  color: #ffffff;
}
a,
button,
.btn {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 12, 15, 0.7);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.08rem;
}

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.4));
}

.footer-brand .brand-logo {
  height: 84px;
}

.brand-subtitle {
  color: var(--muted);
  font-weight: 500;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0c0f;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.hero-kicker {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.hero-card h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.hero-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.6);
}

section {
  padding: 70px 0;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  margin: 0 0 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 820px;
  margin: 0 0 28px;
}

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

.card {
  background: linear-gradient(
    180deg,
    var(--surface),
    rgba(21, 25, 35, 0.6)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 180px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

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

.card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.service-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.service-list li::before {
  content: "•";
  color: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.process-step {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-item {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.why-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-card:hover,
.process-step:hover,
.why-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.cta {
  background: transparent;
  border: none;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(11, 12, 15, 0.7);
  border: 1px solid var(--line);
}

.cta-box .section-title {
  margin: 0 0 8px;
}

.cta-box .section-sub {
  margin: 0;
}

footer {
  padding: 40px 0 60px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
  font-size: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 10px;
}

.small {
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-cta {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo {
    height: 60px;
  }
  .footer-brand .brand-logo {
    height: 68px;
  }
  .brand-text {
    font-size: 1rem;
  }
}
