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

:root {
  --bg: #0e0d0a;
  --bg-alt: #15130f;
  --card: rgba(255, 255, 255, 0.03);
  --accent: #e6b17e;
  --accent-2: #c5732b;
  --text: #f4ede2;
  --muted: #c8b8a3;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --max-width: 1200px;
}

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

body {
  margin: 0;
  background: radial-gradient(circle at 10% 20%, rgba(198, 115, 43, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(230, 177, 126, 0.08), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(12, 10, 6, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 6px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--card);
  color: var(--accent);
  transform: translateY(-1px);
}

.cta {
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e0d0a;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 90px;
}

.hero {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', 'Manrope', serif;
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 10px;
  line-height: 1.1;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(230, 177, 126, 0.12);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 12px;
}

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

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(230, 177, 126, 0.15), rgba(197, 115, 43, 0.05));
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.floating-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(12, 10, 6, 0.82);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  max-width: 260px;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

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

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 177, 126, 0.35);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 50px 0 14px;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.section-title::before {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.pill {
  background: rgba(230, 177, 126, 0.1);
  color: var(--accent);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(180deg, rgba(230, 177, 126, 0.08), rgba(12, 10, 6, 0.8));
  box-shadow: var(--shadow);
}

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

.price {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0 12px;
}

.price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 600;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

label {
  font-weight: 700;
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s ease, transform 0.1s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(230, 177, 126, 0.45);
  transform: translateY(-1px);
}

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

.alert {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(230, 177, 126, 0.4);
  background: rgba(230, 177, 126, 0.1);
  color: var(--accent);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 30px 20px 50px;
  background: rgba(0, 0, 0, 0.4);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  color: var(--muted);
}

.footer a {
  color: var(--text);
}

.tagline {
  display: inline-block;
  padding: 10px 12px;
  background: rgba(230, 177, 126, 0.08);
  border-radius: 12px;
  font-weight: 700;
  color: var(--accent);
}

.legal {
  color: var(--muted);
  line-height: 1.8;
}

.legal h2 {
  color: var(--text);
  margin: 28px 0 10px;
}

.legal h3 {
  margin: 18px 0 8px;
}

.legal p {
  margin: 0 0 10px;
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  main {
    padding-top: 24px;
  }
}
