
:root {
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --brand: #2563eb;
  --brand-ink: #0b3ea8;
  --surface: #f8fafc;
  --card: #ffffff;
  --border: rgba(2,6,23,0.08);
  --success: #16a34a;
}

[data-theme="dark"] {
  --bg: #0b1020;
  --ink: #e5e7eb;
  --muted: #94a3b8;
  --brand: #60a5fa;
  --brand-ink: #3b82f6;
  --surface: #0f172a;
  --card: #111827;
  --border: rgba(255,255,255,0.1);
}

* { box-sizing: border-box }
html, body { margin:0; padding:0;  }
body {
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1100px, 92%); margin-inline: auto; }

.site-header {
  background: var(--surface);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  padding-top: 10px;
  
}
.header-top { display:flex; align-items:center; justify-content:space-between; padding: 0; }
.brand { display:flex; align-items:center; gap: 10px; text-decoration:none; color: inherit; }
.header-actions { display:flex; align-items:center; gap: 10px; margin-left:auto; }

.logo { height: 40px; width: auto; display:block; object-fit: contain; }
.logo.dark { display:none }
[data-theme="dark"] .logo.light { display:none }
[data-theme="dark"] .logo.dark { display:block }

.nav a {  text-decoration:none; color: var(--ink); opacity: .9; }
.nav a:hover { opacity: 1; color: var(--brand-ink)}
.nav .btn-outline.small { padding: 8px 12px; border-radius: 10px; border: 1px solid var(--border); }
#theme-toggle { margin-left: 10px; background: transparent; border: 1px solid var(--border); padding: 6px 10px; border-radius: 10px; cursor: pointer; }

.hero { padding: 48px 0 18px; background: linear-gradient(180deg, var(--surface), transparent); }
.hero-inner { display:grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items:center; }
.hero h1 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.15; margin: 0 0 10px; }
.hero h1 span { color: var(--brand); }
.lead { font-size: 1.1rem; color: var(--muted) }
.cta-row { display:flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.btn-primary, .btn-outline, .btn-ghost {
  display:inline-block; padding: 12px 18px; border-radius: 12px; text-decoration:none; cursor: pointer;
}
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-ink); }
.btn-outline { border: 1px solid var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand-ink); color: var(--brand-ink); }
.btn-ghost { color: var(--brand-ink); }
.small { font-size: .9rem }

.hero-art { display:grid; gap: 12px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.stat-num { font-size: 28px; font-weight: 700; }
.stat-label { color: var(--muted); font-size: .95rem }

.bar-logos { display:flex; gap: 12px; align-items:center; justify-content:center; padding: 12px 0 24px; }
.muted { color: var(--muted); }
.small { font-size: .9rem }

.split { display:grid; gap: 24px; grid-template-columns: 1fr .6fr; align-items:start; padding: 22px 0; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; }
.grid-3 { display:grid; gap: 18px; grid-template-columns: repeat(3,1fr); padding: 20px 0; }
.grid-2 { display:grid; gap: 12px; grid-template-columns: repeat(2,1fr); }
.highlight-cards .card h3 { margin-top: 4px }
.icon-list { list-style: none; padding-left: 0; margin: 0; }
.icon-list li { margin: 6px 0; }

.checklist { list-style: none; padding-left: 0; }
.checklist li::before { content: "✔"; color: var(--success); margin-right: 10px; }
.checklist.small li { margin: 4px 0; }

.steps { padding-left: 18px; }
.steps li { margin: 8px 0; }

.page-hero { padding: 26px 0 8px; }

.pricing-cards .price { text-align: left }
.price-amt { font-size: 32px; font-weight: 800; margin: 6px 0 4px; }
.price-amt span { font-size: 14px; font-weight: 600; color: var(--muted) }

.form .field { display:flex; flex-direction:column; gap: 6px; }
.form input, .form textarea, .form select {
  border: 1px solid var(--border); background: transparent; border-radius: 10px; padding: 10px 12px; color: var(--ink);
}
.form button { margin-top: 8px }

.faq details { border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; margin: 10px 0; background: var(--card); }
.faq summary { cursor: pointer; font-weight: 600; }

.site-footer { border-top: 1px solid var(--border); padding: 22px 0 28px; margin-top: 28px; background: var(--surface); }
.site-footer .grid-3 { grid-template-columns: 1.2fr .8fr 1fr; }
.footer-brand .logo-foot { height: 26px; }
.list-unstyled { list-style:none; padding-left:0; margin: 0; }
.socials a { display:inline-flex; width: 28px; height: 28px; align-items:center; justify-content:center; border:1px solid var(--border); border-radius: 8px; margin-right:8px; }

.cta-band { background: linear-gradient(180deg, var(--surface), transparent); padding: 26px 0; margin-top: 10px; }
.band-inner { display:flex; align-items:center; gap: 12px; justify-content:space-between; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .site-footer .grid-3 { grid-template-columns: 1fr; }
  .nav a {  }
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-brand-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-foot-bottom {
    height: 34px;
}

.footer-brand-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-brand-text p {
    margin: 4px 0;
}

.footer-brand-text span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.site-header .container,
nav.nav .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 860px) {
  .header-actions {
    display: none;
  }
}


/* Prevent double checkmarks: hide inline icon spans inside checklist items */
.checklist .icon-check {
  display: none !important;
}


/* Safety: no native bullets inside .checklist */
.checklist {
  list-style-type: none !important;
}


/* Extra guard: any UL that looks like a checklist-style block won't show native bullets */
ul.checklist,
ul.icon-list {
  list-style-type: none !important;
  padding-left: 0;
}


/* Email example wrapper */
.email-example {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  overflow-x: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Email example mobile tweaks */
@media only screen and (max-width: 600px) {
  .email-example .mobile-padding { padding: 15px !important; }
  .email-example .mobile-center { text-align: center !important; }
  .email-example .mobile-full-width { width: 100% !important; display: block !important; }
  .email-example .mobile-h2 { font-size: 20px !important; }
}

/* Footer logo + text alignment */
.footer-brand-inline {
    display: flex;
    align-items: flex-start;    /* TOP ALIGN text with the logo */
    gap: 5px;                  /* spacing between logo and text */
}

.footer-brand-inline .logo-foot {
    height: 22px;               /* your chosen logo height */
    width: auto;
    display: block;             /* remove inline-image baseline spacing */
}

.footer-brand-inline .footer-brand-text {
    font-size: 28px;            /* matches logo height */
    line-height: 1;             /* ensures precise top alignment */
    font-weight: 100;           /* optional, but looks clean */
    margin: 0;
    margin-top:-5px;
}
@media (max-width: 600px) {
    .footer-brand-inline .logo-foot {
        height: 22px;
    }
    .footer-brand-inline .footer-brand-text {
        font-size: 22px;
    }
}

/* Global top spacing below header */
.main-content,
.page-content,
.site-content {
    padding-top: 40px;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .main-content,
    .page-content,
    .site-content {
        padding-top: 28px;
    }
}
/* Global spacing below header */
.main-content,
.page-content,
.site-content {
    padding-top: 40px;
}

@media (max-width: 768px) {
    .main-content,
    .page-content,
    .site-content {
        padding-top: 28px;
    }
}

/* Footer grid correction */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Footer bottom branding */
.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.logo-foot-bottom {
    height: 32px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 4px 0;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 6px;
}
