/* Tailwind import removed — served as static CSS */

:root {
  --orange: #E85020;
  --orange-hover: #c94018;
  --cream: #fdf8f5;
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --border: #e8ddd6;
  --surface: #f9f5f2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

/* NAV */
.nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 52px; }
.nav-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text); line-height: 1.2; }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.btn-nav { background: var(--orange) !important; color: #fff !important; padding: 0.5rem 1.25rem; border-radius: 6px; }
.btn-nav:hover { background: var(--orange-hover) !important; }

/* HERO */
.hero { background: linear-gradient(135deg, #111 0%, #222 100%); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.hero-inner { max-width: 820px; margin: 0 auto; }
.eyebrow { color: var(--orange); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { font-size: 1.1rem; color: #bbb; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: var(--orange); color: #fff; padding: 0.85rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); padding: 0.85rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: border-color 0.2s; display: inline-block; }
.btn-outline:hover { border-color: #fff; }
.btn-white { background: #fff; color: var(--orange); padding: 0.85rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 700; display: inline-block; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }

/* SECTIONS */
.section { padding: 5rem 1.5rem; }
.section-cream { background: var(--cream); }
.section-dark { background: #111; color: #fff; }
.section-orange { background: var(--orange); color: #fff; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { margin-bottom: 3rem; }
.section-head .eyebrow { margin-bottom: 0.5rem; }
.section-head h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 0.75rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 600px; }
.section-dark .section-head p, .section-orange .section-head p { color: rgba(255,255,255,0.8); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.card-icon { width: 48px; height: 48px; background: #fff1ec; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.4rem; }
.card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.card-from { margin-top: 1rem; font-weight: 700; color: var(--orange); font-size: 0.95rem; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; text-align: center; }
.pricing-card h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.75rem; line-height: 1.4; }
.pricing-card .price { font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.pricing-card .price-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.pillar { background: var(--surface); border-left: 4px solid var(--orange); padding: 1.5rem; border-radius: 0 8px 8px 0; }
.pillar h3 { font-weight: 700; margin-bottom: 0.4rem; font-size: 0.95rem; }
.pillar p { color: var(--muted); font-size: 0.88rem; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 0.75rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; }
.step-num { min-width: 32px; height: 32px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.step h4 { font-weight: 600; margin-bottom: 0.2rem; font-size: 0.95rem; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* CTA BANNER */
.cta-banner { padding: 4rem 1.5rem; text-align: center; }
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* FORM */
.form-wrap { max-width: 640px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 0.75rem 1rem; font-size: 0.95rem; font-family: inherit; background: #fff; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { background: var(--orange); color: #fff; border: none; padding: 0.85rem 2.5rem; border-radius: 6px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--orange-hover); }
.form-msg { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.9rem; display: none; }
.form-msg.success { background: #ecfdf5; color: #065f46; display: block; }
.form-msg.error { background: #fef2f2; color: #991b1b; display: block; }

/* PAGE HERO */
.page-hero { background: #111; color: #fff; padding: 4rem 1.5rem; }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 0.75rem; }
.page-hero p { color: #bbb; font-size: 1.05rem; max-width: 600px; }

/* FOOTER */
.footer { background: #111; color: #ccc; padding: 3rem 1.5rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.88rem; color: #777; margin-top: 0.75rem; line-height: 1.6; }
.footer-logo { height: 60px; }
.footer-col h4 { font-weight: 700; color: #fff; margin-bottom: 0.875rem; font-size: 0.875rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: #777; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #222; padding-top: 1.5rem; font-size: 0.825rem; color: #555; }

/* LEGAL */
.legal-content { max-width: 800px; }
.legal-content h2 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.6rem; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.93rem; line-height: 1.75; margin-bottom: 0.6rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.legal-content th { background: var(--cream); font-weight: 700; }
.legal-content th, .legal-content td { border: 1px solid var(--border); padding: 0.7rem 1rem; text-align: left; }

/* COOKIE CONSENT */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #111; color: #fff; padding: 1.25rem 1.5rem; z-index: 9999; border-top: 2px solid var(--orange); }
.cookie-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cookie-bar p { font-size: 0.88rem; color: #ccc; flex: 1; min-width: 240px; }
.cookie-bar a { color: var(--orange); }
.cookie-bar-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-btn-accept { background: var(--orange); color: #fff; border: none; padding: 0.55rem 1.25rem; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 0.88rem; }
.cookie-btn-reject { background: transparent; color: #ccc; border: 1px solid #444; padding: 0.55rem 1.25rem; border-radius: 6px; cursor: pointer; font-size: 0.88rem; }
.cookie-btn-manage { background: none; border: none; color: #888; cursor: pointer; font-size: 0.82rem; text-decoration: underline; }
.cookie-panel { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1a1a; color: #fff; padding: 2rem 1.5rem; z-index: 10000; border-top: 2px solid var(--orange); max-height: 70vh; overflow-y: auto; }
.cookie-panel-inner { max-width: 680px; margin: 0 auto; }
.cookie-panel h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 1.25rem; }
.cookie-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #2a2a2a; }
.cookie-row-text h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.cookie-row-text p { color: #888; font-size: 0.82rem; }
.toggle { width: 42px; height: 22px; background: #444; border-radius: 11px; position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; border: none; }
.toggle.on { background: var(--orange); }
.toggle::after { content: ''; position: absolute; width: 16px; height: 16px; background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: left 0.2s; }
.toggle.on::after { left: 23px; }
.cookie-panel-btns { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
