/* ========================================
   MLO Websites — Global Styles
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #1a3d5c;
  --primary-light: #2a5f8f;
  --accent:     #00b4d8;
  --accent-dark:#0096b7;
  --gold:       #d4a843;
  --bg:         #f8f9fb;
  --bg-alt:     #eef2f7;
  --text:       #2c3e50;
  --text-light: #6b7c93;
  --white:      #ffffff;
  --border:     #dde3ec;
  --success:    #27ae60;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --transition: .25s ease;
  --max-width:  1200px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--primary); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container  { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section    { padding: 5rem 0; }
.section-alt{ padding: 5rem 0; background: var(--bg-alt); }
.text-center{ text-align: center; }
.text-light { color: var(--text-light); }
.subtitle   { font-size: 1.15rem; color: var(--text-light); max-width: 680px; margin: .75rem auto 0; }
.badge      { display: inline-block; background: var(--accent); color: var(--white); font-size: .75rem; font-weight: 600; padding: .25rem .75rem; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; }
.badge-gold { background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius); font-weight: 600;
  font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary   { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline   { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-white     { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold      { background: var(--gold); color: var(--white); }
.btn-gold:hover{ filter: brightness(1.1); transform: translateY(-2px); }
.btn-lg        { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm        { padding: .5rem 1.25rem; font-size: .875rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.35rem; font-weight: 800; color: var(--primary);
  text-decoration: none; white-space: nowrap;
}
.logo-icon {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.1rem;
}
.logo span { color: var(--accent); }

/* Nav */
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  position: relative; padding: .25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { padding: .55rem 1.25rem; }

/* Mobile menu */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px; background: var(--primary);
  position: absolute; left: 0; transition: all .3s ease;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }
.mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 60%, var(--accent) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,180,216,.2) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(212,168,67,.1) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p  { color: rgba(255,255,255,.85); font-size: 1.2rem; max-width: 640px; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 420px; width: 100%;
}
.hero-card h3 { color: var(--white); margin-bottom: 1.5rem; text-align: center; }
.hero-stat { text-align: center; padding: 1rem 0; }
.hero-stat .num { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.hero-stat .label { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: .25rem; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.25rem auto;
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(0,180,216,.05));
  color: var(--accent); text-align: center; line-height: 1;
}
.feature-icon .material-icons {
  font-size: 32px; width: 32px; height: 32px;
}
.feature-card h3 { margin-bottom: .6rem; }
.feature-card p  { color: var(--text-light); font-size: .95rem; margin-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 3rem; align-items: start;
}
.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow); border: 2px solid var(--border);
  position: relative; transition: all var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--accent);
  transform: scale(1.03);
}
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%); background: var(--accent); color: var(--white);
  padding: .3rem 1.25rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
}
.price-amount {
  font-size: 3rem; font-weight: 800; color: var(--primary);
  line-height: 1;
}
.price-amount small { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.price-card h3 { margin-bottom: .5rem; }
.price-card .price-desc { color: var(--text-light); margin-bottom: 1.5rem; }
.price-features { margin-bottom: 2rem; }
.price-features li {
  padding: .5rem 0; display: flex; align-items: flex-start; gap: .6rem;
  font-size: .95rem;
}
.price-features li::before {
  content: '\2713'; color: var(--success); font-weight: 700; flex-shrink: 0;
  margin-top: 2px;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- How It Works ---------- */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; margin-top: 3rem; counter-reset: step;
}
.step {
  text-align: center; padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white); font-size: 1.5rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step h3 { margin-bottom: .5rem; }
.step p  { color: var(--text-light); font-size: .95rem; margin-bottom: 0; }

/* ---------- Testimonial / Stats Bar ---------- */
.stats-bar {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-item .stat-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.stat-item .stat-label { font-size: .95rem; color: rgba(255,255,255,.75); margin-top: .25rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); padding: 4rem 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 1.05rem; font-weight: 600;
  color: var(--text); text-align: left; font-family: var(--font);
}
.faq-question::after {
  content: '+'; font-size: 1.5rem; color: var(--accent); transition: transform .3s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p { padding-bottom: 1.25rem; color: var(--text-light); }
.faq-item.active .faq-answer { max-height: 500px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600; font-size: .9rem;
  margin-bottom: .4rem; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font);
  font-size: .95rem; transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .hint { font-size: .8rem; color: var(--text-light); margin-top: .3rem; }
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-section-title {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  padding-bottom: .75rem; border-bottom: 2px solid var(--accent);
  margin: 2rem 0 1.25rem;
}

.radio-group, .checkbox-group {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.radio-group label, .checkbox-group label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 400; cursor: pointer;
}
.radio-group input, .checkbox-group input { width: auto; }

/* Tab Switcher for form */
.form-tabs {
  display: flex; gap: .5rem; margin-bottom: 2rem; background: var(--bg-alt);
  padding: .35rem; border-radius: var(--radius); max-width: 100%;
}
.form-tab {
  flex: 1; padding: 1rem 1.25rem; border: none; background: none;
  border-radius: var(--radius); cursor: pointer; font-family: var(--font);
  font-size: .95rem; font-weight: 600; color: var(--text-light);
  transition: all var(--transition); text-align: center;
}
.form-tab.active {
  background: var(--white); color: var(--primary);
  box-shadow: var(--shadow);
}
.form-tab:hover:not(.active) { color: var(--text); }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary); color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: .9rem; max-width: 320px; }
.footer-col h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer-col a { display: block; padding: .3rem 0; font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 3rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .85rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--white); }

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); padding: 4rem 0 3rem; text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: .5rem; }
.page-header p  { color: rgba(255,255,255,.8); font-size: 1.1rem; }

/* ---------- Content Pages ---------- */
.content-page { padding: 3rem 0 5rem; }
.content-page .container { max-width: 860px; }
.content-page h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.content-page h3 { margin: 2rem 0 .75rem; font-size: 1.2rem; }
.content-page p  { color: var(--text-light); }
.content-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-page ul li { position: relative; padding: .3rem 0; color: var(--text-light); list-style: disc; }
.content-page a { text-decoration: underline; }

/* ---------- AI Marketing Section ---------- */
.ai-tools-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.ai-tool-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: all var(--transition);
}
.ai-tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ai-tool-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(26,61,92,.1));
}
.ai-tool-card h3 { margin-bottom: .5rem; }
.ai-tool-card p  { color: var(--text-light); font-size: .9rem; margin-bottom: 0; }

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%; border-collapse: collapse; margin-top: 2rem;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.comparison-table th {
  background: var(--primary); color: var(--white);
  padding: 1rem 1.25rem; text-align: left; font-weight: 600;
}
.comparison-table td {
  padding: .85rem 1.25rem; border-bottom: 1px solid var(--border);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-alt); }
.check { color: var(--success); font-weight: 700; }
.cross { color: #e74c3c; }

/* ---------- Contact Info ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 3rem;
}
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-info-card h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .75rem 0;
}
.contact-detail .icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: rgba(0,180,216,.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--accent); font-size: 1.1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
    height: 100vh; background: var(--white); flex-direction: column;
    padding: 5rem 2rem 2rem; box-shadow: var(--shadow-lg);
    transition: right .35s ease; z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section, .section-alt { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .form-tabs { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-in.visible {
  opacity: 1; transform: translateY(0);
}

/* ---------- File Upload ---------- */
.file-upload {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; cursor: pointer;
  transition: border-color var(--transition);
}
.file-upload:hover { border-color: var(--accent); }
.file-upload input[type="file"] { display: none; }
.file-upload label { cursor: pointer; color: var(--accent); font-weight: 600; }

/* ---------- Multi-Step Wizard ---------- */
.wizard-progress {
  position: relative; margin-bottom: 2.5rem;
  background: var(--bg-alt); border-radius: 50px;
  height: 6px; overflow: hidden;
}
.wizard-progress-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 50px;
  transition: width .4s ease;
}
.wizard-steps {
  display: flex; justify-content: space-between;
  position: relative; top: -3px;
  margin-top: 0; padding: 0;
}
.wizard-step {
  display: flex; flex-direction: column; align-items: center;
  gap: .35rem; position: relative;
}
.wizard-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-alt); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--text-light);
  transition: all .3s ease;
}
.wizard-step.active .wizard-step-num,
.wizard-step.completed .wizard-step-num {
  background: var(--accent); border-color: var(--accent);
  color: var(--white);
}
.wizard-step.completed .wizard-step-num {
  background: var(--success); border-color: var(--success);
}
.wizard-step-label {
  font-size: .7rem; font-weight: 600; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap;
}
.wizard-step.active .wizard-step-label { color: var(--accent); }
.wizard-step.completed .wizard-step-label { color: var(--success); }

.wizard-panel { display: none; animation: wizardFadeIn .35s ease; }
.wizard-panel.active { display: block; }

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.step-intro {
  margin-bottom: 2rem;
}
.step-intro h2 {
  font-size: 1.5rem; margin-bottom: .5rem;
}
.step-intro p {
  color: var(--text-light); font-size: 1rem; margin-bottom: 0;
}

.step-encouragement {
  background: rgba(0,180,216,.06); border: 1px solid rgba(0,180,216,.2);
  border-radius: var(--radius); padding: 1.25rem;
  margin-top: 1.5rem;
  display: flex; align-items: flex-start; gap: .75rem;
}
.step-encouragement .encouragement-icon {
  font-size: 1.5rem; flex-shrink: 0; line-height: 1;
}
.step-encouragement p {
  margin-bottom: 0; font-size: .95rem;
}

@media (max-width: 768px) {
  .wizard-step-label { font-size: .6rem; }
  .wizard-step-num { width: 24px; height: 24px; font-size: .65rem; }
  .wizard-nav { flex-direction: column; gap: .75rem; }
  .wizard-nav .btn { width: 100%; justify-content: center; }
  .step-encouragement { flex-direction: column; text-align: center; align-items: center; }
}

/* Compliance Disclaimer */
.compliance-disclaimer {
  background: rgba(26,61,92,.04); border: 1px solid rgba(26,61,92,.12);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: .82rem; line-height: 1.6; color: var(--text-light);
}
.compliance-disclaimer strong { color: var(--text); font-weight: 600; }
.compliance-disclaimer a { color: var(--accent); text-decoration: underline; }

.footer-compliance {
  text-align: center; font-size: .78rem; line-height: 1.6;
  color: rgba(255,255,255,.45); max-width: 800px; margin: 1rem auto 0;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08);
}

/* Success message */
.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success .checkmark,
.form-success .success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--success); color: var(--white);
  font-size: 2.5rem; display: inline-flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  overflow: hidden; transition: all var(--transition);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.blog-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; margin-bottom: 1rem; }
.blog-date { font-size: .8rem; color: var(--text-light); }
.blog-tag {
  font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  background: rgba(0,180,216,.1); color: var(--accent-dark);
  padding: .2rem .6rem; border-radius: 50px;
}
.blog-card h2 { font-size: 1.25rem; margin-bottom: .75rem; line-height: 1.35; }
.blog-card p { color: var(--text-light); font-size: .95rem; flex: 1; }
.blog-read-more {
  font-weight: 600; color: var(--accent); font-size: .9rem;
  margin-top: .5rem; display: inline-block;
}
.blog-card:hover .blog-read-more { color: var(--accent-dark); }

/* Blog Post */
.blog-post { padding: 3rem 0 5rem; }
.blog-post .container { max-width: 780px; }
.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.25; margin-bottom: 1rem; }
.blog-post-meta {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  font-size: .85rem; color: var(--text-light);
}
.blog-post-meta .blog-tag { font-size: .7rem; }
.blog-post-content h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.blog-post-content h3 { margin: 2rem 0 .75rem; font-size: 1.2rem; }
.blog-post-content p { color: var(--text-light); line-height: 1.75; }
.blog-post-content ul, .blog-post-content ol {
  padding-left: 1.5rem; margin-bottom: 1.25rem;
}
.blog-post-content li {
  position: relative; padding: .35rem 0; color: var(--text-light);
  list-style: disc; line-height: 1.7;
}
.blog-post-content ol li { list-style: decimal; }
.blog-post-content blockquote {
  border-left: 4px solid var(--accent); padding: 1.25rem 1.5rem;
  margin: 1.5rem 0; background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0;
}
.blog-post-content blockquote p { margin-bottom: 0; font-style: italic; color: var(--text); }
.blog-post-content a { color: var(--accent-dark); text-decoration: underline; }
.blog-post-content strong { color: var(--text); }

.blog-post-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg); padding: 2.5rem; text-align: center;
  margin-top: 3rem; color: var(--white);
}
.blog-post-cta h3 { color: var(--white); margin-bottom: .75rem; }
.blog-post-cta p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }

.blog-back { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; margin-bottom: 2rem; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Hide reCAPTCHA badge (attribution text in footer per Google policy) */
.grecaptcha-badge { visibility: hidden; }
