@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;600;700&display=swap');

:root {
  --bg: #f6f2ea;
  --ink: #161616;
  --muted: #5f5f5f;
  --accent: #ffb703;
  --accent-2: #fb8500;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(15, 15, 15, 0.12);
  --radius: 22px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 20% 0%, #fff7e6 0%, var(--bg) 60%),
    linear-gradient(160deg, #f6f2ea 0%, #f0efe9 100%);
  line-height: 1.6;
}

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(246, 242, 234, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 28px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #1b1b1b;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.hero {
  position: relative;
  margin: 36px 0 60px;
  padding: 70px 60px;
  border-radius: 34px;
  overflow: hidden;
  color: #101010;
  background: linear-gradient(120deg, rgba(255, 183, 3, 0.92) 0%, rgba(251, 133, 0, 0.9) 100%);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://source.unsplash.com/1600x900/?taxi,city,night");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: saturate(1.2);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  max-width: 620px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #101010;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.phone-highlight {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  background: #ffffff;
  color: #111111;
  padding: 8px 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.section {
  margin-bottom: 70px;
}

.section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

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

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  font-weight: 600;
  font-size: 14px;
}

.split {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.highlight-box {
  background: #121212;
  color: #f8f4ef;
  padding: 28px;
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
}

.highlight-box p {
  margin: 0;
  color: #e7e2d9;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: inherit;
  font-size: 15px;
}

textarea {
  min-height: 120px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.5;
  animation: float 10s ease-in-out infinite;
}

.orb.one {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  top: -40px;
  right: 40px;
}

.orb.two {
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.12);
  bottom: 40px;
  right: 120px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

.fade-in {
  animation: rise 0.8s ease both;
}

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

@media (max-width: 900px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 50px 32px;
  }

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

@media (max-width: 600px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    margin: 24px 0 50px;
  }
}
