* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1d1f;
  --muted: #5a5c65;
  --accent: #d65a31;
  --accent-dark: #b14a28;
  --sand: #f6f0ea;
  --mist: #f2f4f8;
  --night: #121216;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.floating-nav {
  position: absolute;
  top: 24px;
  right: 5%;
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.floating-nav a {
  font-size: 14px;
  font-weight: 600;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cta-btn:hover {
  background: var(--accent-dark);
}

.outline-btn {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3)),
    url("https://images.unsplash.com/photo-1528701800489-20be9c8150ec?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 80px 0;
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.night {
  background: var(--night);
  color: #ffffff;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-grid.reverse {
  flex-direction: row-reverse;
}

.asym-grid .copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.asym-grid .visual {
  flex: 1 1 360px;
  min-width: 260px;
  position: relative;
}

.visual-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.offset-top {
  transform: translateY(-24px);
}

.offset-bottom {
  transform: translateY(24px);
}

.floating-tag {
  position: absolute;
  right: -20px;
  top: 18%;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 20px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

.quote-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1 1 180px;
  min-width: 150px;
}

.stat h3 {
  font-size: 32px;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d8df;
  font-size: 16px;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.footer {
  background: #0f1014;
  color: #fff;
  padding: 60px 0 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #d9d9d9;
}

.footer-brand {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  display: none;
  max-width: 320px;
  z-index: 60;
}

.cookie-banner p {
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #eceff3;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 768px) {
  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .hero-content {
    margin-left: 6%;
  }
}
