/* ══════════════════════════════════════════════════
   CRONSPIRE.COM — Global Styles
   ══════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:'Space Grotesk','Segoe UI',system-ui,sans-serif;
  background:#fafaf8; color:#1a1a2e; line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
ul, ol { list-style:none; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4 { font-family:'Bricolage Grotesque','Space Grotesk',sans-serif; line-height:1.25; }
h1 { font-size:2.8rem; font-weight:800; }
h2 { font-size:2rem; font-weight:800; }
h3 { font-size:1.3rem; font-weight:700; }
h4 { font-size:1.05rem; font-weight:700; }
p { font-size:1rem; line-height:1.7; color:rgba(26,26,46,0.65); }

/* ── Layout ───────────────────────────────────── */
.container { max-width:1140px; margin:0 auto; padding:0 24px; }
.container-sm { max-width:800px; margin:0 auto; padding:0 24px; }
.section { padding:80px 0; }
.section-sm { padding:50px 0; }
.text-center { text-align:center; }

/* ── Brand Colors ─────────────────────────────── */
:root {
  --gold:#b89800;
  --gold-light:#f5edc8;
  --gold-hover:#9a7e00;
  --dark:#1a1a2e;
  --text:#1a1a2e;
  --text-muted:rgba(26,26,46,0.55);
  --text-light:rgba(26,26,46,0.35);
  --bg:#fafaf8;
  --bg-alt:#f4f3f0;
  --white:#ffffff;
  --border:rgba(0,0,0,0.06);
  --danger:#e04050;
  --success:#16a34a;
  --blue:#2563eb;
  --purple:#7c3aed;
  --orange:#ea580c;
  --shadow:0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg:0 8px 32px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.nav {
  position:sticky; top:0; z-index:100;
  background:rgba(250,250,248,0.92); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:10px 0;
}
.nav .container {
  display:flex; align-items:center; justify-content:space-between;
}
.nav-brand {
  display:flex; align-items:center; gap:10px;
}
.nav-bird { width:36px; height:36px; }
.nav-logo {
  font-size:1.3rem; font-weight:800; letter-spacing:2px;
  text-transform:uppercase;
  font-family:'Bricolage Grotesque','Space Grotesk',sans-serif;
}
.nav-links {
  display:flex; align-items:center; gap:28px;
}
.nav-link {
  font-size:0.88rem; font-weight:500; color:var(--text-muted);
  transition:color 0.2s; position:relative;
}
.nav-link:hover, .nav-link.active { color:var(--gold); }
.nav-cta {
  font-size:0.82rem; font-weight:700; color:var(--white);
  background:var(--gold); padding:9px 20px; border-radius:8px;
  transition:background 0.2s, transform 0.15s;
}
.nav-cta:hover { background:var(--gold-hover); transform:translateY(-1px); }
.nav-mobile-toggle {
  display:none; cursor:pointer; font-size:1.4rem; color:var(--dark);
  background:none; border:none;
}
.nav-mobile-menu {
  display:none !important;
  flex-direction:column; gap:12px; padding:16px 0;
}
.nav-mobile-menu.open { display:flex !important; }

/* ══════════════════════════════════════════════════
   HERO SECTIONS
   ══════════════════════════════════════════════════ */
.hero {
  padding:100px 0 80px; text-align:center;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(184,152,0,0.08); border:1px solid rgba(184,152,0,0.2);
  border-radius:50px; padding:6px 18px;
  font-size:0.75rem; font-weight:600; color:var(--gold);
  text-transform:uppercase; letter-spacing:1px;
  margin-bottom:24px;
}
.hero-badge-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--gold); animation:pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.hero h1 { margin-bottom:20px; max-width:700px; margin-left:auto; margin-right:auto; }
.hero h1 span { color:var(--gold); }
.hero p.lead {
  font-size:1.12rem; max-width:600px; margin:0 auto 36px;
  color:var(--text-muted); line-height:1.7;
}
.hero-actions {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Space Grotesk',sans-serif;
  font-weight:700; border-radius:10px; cursor:pointer;
  transition:all 0.2s; border:none; text-decoration:none;
  font-size:0.92rem;
}
.btn-primary {
  background:linear-gradient(135deg,#b89800 0%,#d4a843 50%,#b89800 100%);
  color:var(--white); padding:14px 30px;
  box-shadow:0 4px 16px rgba(184,152,0,0.25);
  text-shadow:0 1px 2px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background:linear-gradient(135deg,#9a7e00 0%,#b89800 50%,#9a7e00 100%);
  transform:translateY(-2px); box-shadow:0 6px 24px rgba(184,152,0,0.3);
}
.btn-secondary {
  background:var(--white); color:var(--dark); padding:14px 30px;
  border:1.5px solid var(--border);
  box-shadow:var(--shadow);
}
.btn-secondary:hover {
  border-color:var(--gold); color:var(--gold); transform:translateY(-2px);
}
.btn-sm { padding:10px 20px; font-size:0.82rem; }
.btn-lg { padding:16px 36px; font-size:1rem; }

/* ══════════════════════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════════════════════ */
.features-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.feature-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:16px; padding:32px 28px;
  transition:transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform:translateY(-4px); box-shadow:var(--shadow-lg);
}
.feature-icon {
  font-size:1.8rem; margin-bottom:16px;
}
.feature-card h3 { margin-bottom:10px; font-size:1.08rem; }
.feature-card p { font-size:0.9rem; color:var(--text-muted); }

/* ══════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════ */
.section-label {
  font-size:0.72rem; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold); margin-bottom:12px;
}
.section-title { margin-bottom:14px; }
.section-desc {
  font-size:1rem; color:var(--text-muted); max-width:560px;
  margin:0 auto 48px; line-height:1.7;
}

/* ══════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════ */
.pricing-card {
  background:var(--white); border:2px solid var(--border);
  border-radius:20px; padding:40px 36px; text-align:center;
  max-width:440px; margin:0 auto; position:relative;
  box-shadow:var(--shadow-lg);
}
.pricing-card.featured { border-color:var(--gold); }
.pricing-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--white);
  font-size:0.7rem; font-weight:800; letter-spacing:1.5px;
  text-transform:uppercase; padding:5px 20px; border-radius:50px;
}
.pricing-name { font-size:1.3rem; font-weight:800; margin-bottom:6px; }
.pricing-desc { font-size:0.88rem; color:var(--text-muted); margin-bottom:24px; }
.pricing-amount {
  display:flex; align-items:baseline; justify-content:center; gap:4px;
  margin-bottom:6px;
}
.pricing-dollar { font-size:1.4rem; font-weight:700; color:var(--text-light); }
.pricing-value { font-size:3.5rem; font-weight:800; color:var(--dark); }
.pricing-period { font-size:0.88rem; color:var(--text-muted); }
.pricing-original {
  font-size:1rem; color:var(--text-light); text-decoration:line-through;
  margin-bottom:4px;
}
.pricing-save {
  display:inline-block; background:rgba(22,163,74,0.1); color:var(--success);
  font-size:0.78rem; font-weight:700; padding:4px 14px; border-radius:50px;
  margin-bottom:24px;
}
.pricing-divider {
  height:1px; background:var(--border); margin:24px 0;
}
.pricing-features { text-align:left; margin-bottom:32px; }
.pricing-feature {
  display:flex; align-items:flex-start; gap:10px;
  padding:8px 0; font-size:0.9rem; color:rgba(26,26,46,0.7);
}
.pricing-feature-icon {
  color:var(--gold); font-weight:700; font-size:0.85rem; margin-top:2px;
}
.pricing-note {
  font-size:0.78rem; color:var(--text-light); margin-top:16px;
}

/* ══════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════ */
.faq-list { max-width:720px; margin:0 auto; }
.faq-item {
  border:1px solid var(--border); border-radius:12px;
  margin-bottom:8px; background:var(--white); overflow:hidden;
  box-shadow:0 1px 4px rgba(0,0,0,0.02);
}
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 22px; cursor:pointer;
  font-size:0.95rem; font-weight:700; color:var(--dark);
  user-select:none; transition:background 0.15s;
}
.faq-q:hover { background:rgba(184,152,0,0.03); }
.faq-arrow {
  font-size:0.65rem; color:var(--text-light);
  transition:transform 0.25s; flex-shrink:0; margin-left:12px;
}
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height 0.3s ease, padding 0.3s ease;
  font-size:0.88rem; color:var(--text-muted); line-height:1.7;
  padding:0 22px;
}
.faq-item.open .faq-a { max-height:400px; padding:0 22px 20px; }

/* ══════════════════════════════════════════════════
   INDUSTRIES GRID
   ══════════════════════════════════════════════════ */
.industries-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.industry-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:14px; padding:24px 20px;
  text-align:center; transition:transform 0.2s, box-shadow 0.2s;
}
.industry-card:hover {
  transform:translateY(-3px); box-shadow:var(--shadow);
}
.industry-icon { font-size:1.8rem; margin-bottom:10px; }
.industry-name { font-size:0.92rem; font-weight:700; margin-bottom:4px; }
.industry-desc { font-size:0.78rem; color:var(--text-muted); }

/* ══════════════════════════════════════════════════
   STEPS / HOW IT WORKS
   ══════════════════════════════════════════════════ */
.steps-row {
  display:flex; justify-content:center; gap:40px; flex-wrap:wrap;
  align-items:flex-start;
}
.step {
  display:flex; flex-direction:column; align-items:center;
  gap:12px; max-width:200px; text-align:center;
}
.step-num {
  width:44px; height:44px; border-radius:12px;
  background:rgba(184,152,0,0.08); border:1px solid rgba(184,152,0,0.2);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; color:var(--gold-hover); font-size:1rem;
}
.step-text { font-size:0.9rem; color:var(--text-muted); }
.step-text strong { color:var(--dark); }
.step-arrow {
  color:rgba(0,0,0,0.12); font-size:1.5rem; align-self:center; margin-top:10px;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background:var(--dark); color:rgba(255,255,255,0.5);
  padding:60px 0 30px;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px;
  margin-bottom:40px;
}
.footer-brand-name {
  font-size:1.2rem; font-weight:800; letter-spacing:2px;
  color:var(--gold); text-transform:uppercase; margin-bottom:10px;
}
.footer-brand-desc {
  font-size:0.85rem; color:rgba(255,255,255,0.35); line-height:1.6;
  max-width:280px;
}
.footer-col-title {
  font-size:0.72rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:rgba(255,255,255,0.7);
  margin-bottom:14px;
}
.footer-link {
  display:block; font-size:0.85rem; color:rgba(255,255,255,0.4);
  padding:4px 0; transition:color 0.2s;
}
.footer-link:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:24px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.78rem; color:rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════════════
   PAGE-SPECIFIC: ABOUT, CONTACT, LEGAL
   ══════════════════════════════════════════════════ */
.page-header {
  padding:80px 0 40px; text-align:center;
  background:var(--bg-alt); border-bottom:1px solid var(--border);
}
.page-header h1 { font-size:2.2rem; margin-bottom:12px; }
.page-header p { max-width:520px; margin:0 auto; }
.page-body { padding:60px 0; }
.page-body h2 { font-size:1.4rem; margin:32px 0 12px; color:var(--dark); }
.page-body h3 { font-size:1.1rem; margin:24px 0 8px; color:var(--dark); }
.page-body p { margin-bottom:14px; }
.page-body ul { margin:0 0 16px 20px; }
.page-body li {
  list-style:disc; font-size:0.92rem; color:var(--text-muted);
  padding:3px 0; line-height:1.6;
}
.page-body a { color:var(--gold); font-weight:600; }
.page-body a:hover { text-decoration:underline; }

/* Contact Form */
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:48px;
  align-items:start;
}
.contact-info-item {
  display:flex; gap:14px; align-items:flex-start;
  margin-bottom:20px;
}
.contact-info-icon {
  font-size:1.3rem; width:44px; height:44px; border-radius:12px;
  background:rgba(184,152,0,0.08);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.form-group { margin-bottom:18px; }
.form-label {
  display:block; font-size:0.82rem; font-weight:600;
  color:var(--dark); margin-bottom:6px;
}
.form-input, .form-textarea {
  width:100%; padding:12px 16px;
  border:1.5px solid var(--border); border-radius:10px;
  font-family:'Space Grotesk',sans-serif; font-size:0.9rem;
  color:var(--dark); background:var(--white);
  transition:border-color 0.2s;
}
.form-input:focus, .form-textarea:focus {
  outline:none; border-color:var(--gold);
}
.form-textarea { min-height:140px; resize:vertical; }
select.form-input { appearance:none; -webkit-appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5a88' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:40px; cursor:pointer; }

/* ══════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════ */
.blog-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.blog-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:16px; overflow:hidden;
  transition:transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform:translateY(-4px); box-shadow:var(--shadow-lg);
}
.blog-card-img {
  height:180px; background:var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
  font-size:2.5rem; border-bottom:1px solid var(--border);
}
.blog-card-body { padding:24px; }
.blog-card-tag {
  display:inline-block; font-size:0.68rem; font-weight:700;
  letter-spacing:1px; text-transform:uppercase;
  color:var(--gold); margin-bottom:10px;
}
.blog-card h3 { font-size:1.05rem; margin-bottom:8px; line-height:1.35; }
.blog-card p { font-size:0.85rem; color:var(--text-muted); margin-bottom:14px; }
.blog-card-link {
  font-size:0.82rem; font-weight:700; color:var(--gold);
}
.blog-card-link:hover { text-decoration:underline; }

/* Blog Post */
.blog-post { max-width:720px; margin:0 auto; }
.blog-post-meta {
  font-size:0.82rem; color:var(--text-light); margin-bottom:24px;
}
.blog-post h1 { font-size:2rem; margin-bottom:12px; }
.blog-post h2 { font-size:1.5rem; margin:36px 0 14px; }
.blog-post h3 { font-size:1.15rem; margin:28px 0 10px; }
.blog-post p { margin-bottom:18px; font-size:1rem; line-height:1.8; }
.blog-post ul, .blog-post ol { margin:0 0 18px 24px; }
.blog-post li { list-style:disc; padding:4px 0; font-size:0.95rem; line-height:1.7; color:var(--text-muted); }
.blog-post blockquote {
  border-left:3px solid var(--gold); padding:12px 20px; margin:20px 0;
  background:rgba(184,152,0,0.04); border-radius:0 8px 8px 0;
  font-style:italic; color:var(--text-muted);
}
.blog-cta-box {
  background:var(--bg-alt); border:1px solid var(--border);
  border-radius:14px; padding:28px; margin:36px 0; text-align:center;
}
.blog-cta-box h3 { margin-bottom:8px; }
.blog-cta-box p { margin-bottom:16px; font-size:0.9rem; }

/* ══════════════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════════════ */
.compare-table {
  width:100%; border-collapse:collapse; margin:32px 0;
  font-size:0.88rem; table-layout:fixed;
}
.compare-table th {
  text-align:center; padding:12px 16px;
  font-weight:700; color:var(--dark);
  border-bottom:2px solid var(--border); background:var(--bg-alt);
}
.compare-table th:first-child { text-align:left; }
.compare-table td {
  padding:12px 16px; border-bottom:1px solid var(--border);
  color:var(--text-muted); text-align:center;
}
.compare-table td:first-child { text-align:left; font-weight:600; color:var(--dark); }
.compare-table tr:hover td { background:rgba(184,152,0,0.02); }
.compare-highlight { font-weight:700; color:var(--gold) !important; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
.detail-grid { display:grid; gap:16px; max-width:800px; margin:0 auto; text-align:left; }
.detail-grid.cols-2 { grid-template-columns:1fr 1fr; gap:20px; }
.detail-grid.cols-3 { grid-template-columns:1fr 1fr 1fr; }
.detail-item { padding:20px; }
.detail-item h4 { margin-bottom:8px; font-size:0.95rem; }
.detail-item p { font-size:0.85rem; }

@media(max-width:992px) {
  .detail-grid.cols-3 { grid-template-columns:1fr 1fr; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .section { padding:50px 0; }
  .detail-grid.cols-2, .detail-grid.cols-3 { grid-template-columns:1fr; }
  .detail-item { padding:14px 0; }
  h1 { font-size:2rem; }
  h2 { font-size:1.6rem; }
  .hero { padding:70px 0 50px; }
  .features-grid { grid-template-columns:1fr; }
  .industries-grid { grid-template-columns:repeat(2,1fr); }
  .nav-links { display:none; }
  .nav-mobile-toggle { display:block; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
  .blog-grid { grid-template-columns:1fr; }
  .step-arrow { display:none; }
  .steps-row { gap:24px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .compare-table { font-size:0.78rem; min-width:500px; }
  .compare-table th, .compare-table td { padding:8px 10px; }
}
@media(max-width:480px) {
  h1 { font-size:1.6rem; }
  .hero { padding:50px 0 40px; }
  .industries-grid { grid-template-columns:1fr; }
  .pricing-card { padding:28px 22px; }
  .pricing-value { font-size:2.8rem; }
  .steps-row { flex-direction:column; align-items:center; }
}
