:root {
  --bg: #fff7f2;
  --text: #24140f;
  --muted: #6d625d;
  --primary: #f05217;
  --primary-dark: #b83a0f;
  --dark: #180f0b;
  --card: #ffffff;
  --border: #eadbd3;
  --shadow: 0 24px 60px rgba(36, 20, 15, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 242, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 219, 211, 0.75);
}

.navbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -0.04em; }

h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }

.hero-text,
.section-heading p,
.card p,
.mini-card p,
.hero-card p,
.form-note {
  color: var(--muted);
}

.hero-text { font-size: 1.18rem; max-width: 680px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 28px rgba(240, 82, 23, 0.25);
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-light {
  background: white;
  color: var(--primary-dark);
}

.hero-card,
.card,
.mini-card,
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(240, 82, 23, 0.12);
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #18c37e;
  box-shadow: 0 0 0 8px rgba(24, 195, 126, 0.12);
  margin-bottom: 24px;
}

.hero-card ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--text);
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.grid { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card, .mini-card { padding: 28px; }

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff0e8;
  margin-bottom: 22px;
  font-size: 1.4rem;
}

.hosting {
  background: var(--dark);
  color: white;
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
}

.hosting .section-heading p,
.hosting .mini-card p { color: #b8c5d7; }
.hosting .mini-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.13); box-shadow: none; }

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--primary), #ff8a3d);
  color: white;
  border-radius: 30px;
  padding: 42px;
  margin-top: 84px;
}

.cta-strip .eyebrow { color: rgba(255,255,255,0.85); }
.cta-strip h2 { font-size: clamp(1.85rem, 3.4vw, 2.8rem); }
.cta-strip .btn { white-space: nowrap; }

.contact-form {
  max-width: 720px;
  padding: 30px;
}

.form-row { margin-bottom: 18px; }

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(240, 82, 23, 0.18);
  border-color: var(--primary);
}

.form-note { font-size: 0.92rem; margin-bottom: 0; }

.captcha-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.captcha-question {
  color: var(--text);
  font-weight: 800;
}

.captcha-refresh {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
  color: var(--primary-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.captcha-refresh:hover { border-color: var(--primary); }

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.6em;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.success { color: #188a5a; }
.form-status.error { color: #b83a0f; }

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.site-footer a { color: var(--primary); font-weight: 700; }

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

  .hero { min-height: auto; padding-top: 64px; }

  .cards-4 { grid-template-columns: repeat(2, 1fr); }

  .cta-strip { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px; }

  .cards-4 { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .cta-strip { margin-top: 58px; padding: 30px; }
  .site-footer { flex-direction: column; }
}
