:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --panel: #ffffff;
  --panel-soft: #f3f4f6;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --text: #111827;
  --muted: #6b7280;
  --soft: #9ca3af;
  --accent: #1f2937;
  --accent-2: #374151;
  --max: 1160px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 16px 40px rgba(15,23,42,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; line-height: 1.65; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

/* ✅ CLEAN LOGO HANDLING (no zoom hack) */
.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--soft);
}

/* NAV */
.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

/* BUTTONS */
.btn {
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--line-strong);
}

/* HERO */
.hero {
  padding: 48px 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

/* HERO TITLE */
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.hero-line {
  display: block;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-line.primary {
  color: #1f2937;
}

.hero-line.secondary {
  color: #6b7280;
}

.hero-line.tertiary {
  color: #9ca3af;
}

.hero-line + .hero-line {
  margin-top: -6px;
}

.lead {
  margin-top: 10px;
  color: var(--muted);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 14px;
}

.section-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--panel-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.hero-note {
  margin-top: 12px;
  color: var(--muted);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 18px;
}

.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

/* SECTION */
.section {
  padding: 48px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-title {
  font-size: clamp(2.4rem,4vw,3.2rem);
  font-weight: 800;
}

.section-blurb {
  margin-top: 2px;
  color: var(--muted);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card.featured {
  background: linear-gradient(#1f2937,#374151);
  color: white;
  transform: scale(1.03);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  margin-top: 10px;
}

.plan-note {
  margin-top: -4px;
}

/* ADDONS */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.addon-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.addon-price {
  margin-top: 8px;
  font-weight: 800;
}

/* FORM */
.contact-wrap {
  background: var(--bg-soft);
  padding: 48px 0;
}

.form-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 24px 28px;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.field {
  border: 1px solid var(--line-strong);
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.field.full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft);
}

.field input,
.field textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  width: 100%;
}

.field textarea {
  min-height: 70px;
}

.field:focus-within {
  border-color: var(--accent);
}

.form-box button {
  margin-top: 14px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.faq-item p {
  margin-top: 6px;
  color: var(--muted);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-shell,
  .pricing-grid,
  .addons-grid,
  .hero-mini-grid,
  .hero-trust,
  .form-fields {
    grid-template-columns: 1fr;
  }
}