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

:root {
  color-scheme: dark;
  --bg: #0b0f17;
  --bg-alt: #121826;
  --bg-accent: #1f2937;
  --text: #f8fafc;
  --muted: #cbd5f5;
  --accent: #facc15;
  --accent-2: #38bdf8;
  --accent-3: #fb7185;
  --line: rgba(255, 255, 255, 0.08);
  font-size: 16px;
}

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

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

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

.page {
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 6vw 0;
  gap: 1rem;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 3rem 6vw 2rem;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-copy {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--accent);
  color: #1b1b1b;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
}

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

.btn-outline:hover {
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(520px, 100%);
  border-radius: 1.6rem;
  box-shadow: -30px 30px 0 rgba(250, 204, 21, 0.1);
}

.section {
  padding: 3.5rem 6vw;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-accent {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(251, 113, 133, 0.1));
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 46rem;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.asym-card {
  background: var(--bg-accent);
  padding: 1.8rem;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.asym-card.offset {
  transform: translateX(6%);
}

.asym-card.tilt {
  transform: translateX(-4%) rotate(-1deg);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split .panel {
  flex: 1;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.6);
}

.story-block.highlight {
  background: rgba(250, 204, 21, 0.12);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.7);
  border-left: 3px solid var(--accent-3);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  padding: 1.6rem;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: #0f172a;
  position: relative;
}

.service-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(2, 6, 23, 0.7);
  padding: 2rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  background: #111827;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: #111827;
  border: 1px solid var(--line);
  padding: 1rem 1.4rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 15;
  background: var(--accent-3);
  color: #111827;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(251, 113, 133, 0.35);
}

.footer {
  padding: 2.5rem 6vw 3rem;
  background: #0b1120;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #0f172a;
  border-radius: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
}

.text-muted {
  color: var(--muted);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    max-width: 48%;
  }

  .asym-row {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .contact-grid {
    flex-direction: row;
  }
}

@media (min-width: 1100px) {
  .service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}
