/* ========================================
   LANDING / MARKETING PAGES CSS
   ======================================== */

:root {
  /* Colors */
  --dark-navy: #111A27;
  --navy: #111A27;
  --navy-light: #1F2E3E;
  --navy-lighter: #1F2E3E;
  --blue: #0069EE;
  --blue-dark: #0055CC;
  --blue-glow: rgba(0,105,238,.2);
  --teal: #009FB7;
  --cyan: #00B4CD;
  --ink: #111A27;
  --ink-light: #1F2E3E;
  --ink-muted: #8F9097;
  --muted: #8F9097;
  --muted-light: #D1D1D5;
  --line: #D1D1D5;
  --line-light: #e8ecf2;
  --bg: #f8fafc;
  --white: #fff;
  --orange: #FF881B;
  --red: #ef4444;
  --green: #10b981;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.07);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.1);

  /* Typography - consistent with styles.css */
  --font-sans: 'Century Gothic', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-ui: 'Century Gothic', 'Raleway', 'Segoe UI', Arial, system-ui, sans-serif;
  --font-display: 'Mounth', 'Retrofia', 'Century Gothic Bold', 'Century Gothic', Georgia, serif;
  --max-w: 1200px;
}

/* ========================================
   BASE
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; transition: all .2s; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--ink); margin: 0 0 16px; }
h1 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 3.5vw, 36px); letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 3vw, 28px); }
p { margin: 0 0 16px; color: var(--ink); line-height: 1.7; }
.lead { font-size: 1.125rem; color: var(--muted); font-weight: 400; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--blue); }
.text-success { color: var(--green); }

/* ========================================
   BUTTONS
   ======================================== */

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 10px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; white-space: nowrap; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; box-shadow: 0 4px 16px rgba(0,105,238,.3); }
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,105,238,.4); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover:not(:disabled) { background: var(--bg); border-color: var(--muted); }
.btn-outline { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn-outline:hover:not(:disabled) { background: var(--blue); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: none; }
.btn-ghost:hover:not(:disabled) { background: var(--line); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ========================================
   HERO SECTION
   ======================================== */

.hero { background: linear-gradient(135deg, #111A27 0%, #1F2E3E 50%, #1F2E3E 100%); color: var(--white); padding: 120px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,105,238,.08) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,105,238,.06) 0%, transparent 70%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,105,238,.12); padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #93b4f5; margin-bottom: 24px; }
.hero-badge i { font-size: 14px; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; margin-bottom: 16px; color: #fff; }
.hero .lead { font-size: 1.25rem; color: rgba(255,255,255,.7); max-width: 500px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat { text-align: left; }
.hero-stat .num { font-size: 36px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.05em; }

/* ========================================
   SECTIONS
   ======================================== */

.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { display: inline-block; font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); }
.section-header .sub { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 12px auto 0; }

/* ========================================
   GRID
   ======================================== */

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ========================================
   CARDS
   ======================================== */

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: all 0.3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #eef2ff, #dce5ff); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--blue); margin-top: 12px; }
.card-link:hover { gap: 10px; }

/* ========================================
   SERVICE CARDS
   ======================================== */

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card.featured { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.service-card .sc-img { aspect-ratio: 16/10; background: var(--bg); overflow: hidden; }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .sc-img img { transform: scale(1.05); }
.service-card .sc-body { padding: 24px; }
.service-card .sc-cat { font-size: 12px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card .sc-desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-card .sc-features { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 8px; }
.service-card .sc-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink); }
.service-card .sc-features i { color: var(--green); font-size: 12px; }
.service-card .sc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.service-card .sc-price { font-size: 22px; font-weight: 800; color: var(--ink); }
.service-card .sc-price small { font-size: 13px; font-weight: 400; color: var(--muted); }
.service-card .sc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--blue); color: #fff; border-radius: 8px; font-weight: 600; font-size: 13px; transition: all 0.2s; }
.service-card .sc-btn:hover { background: var(--blue-dark); }
.service-card .sc-badge { display: inline-block; padding: 4px 10px; background: var(--blue); color: #fff; border-radius: 6px; font-size: 11px; font-weight: 700; margin-bottom: 12px; }

/* ========================================
   FEATURE LIST
   ========================================

.feature-list { display: grid; gap: 16px; }
.feature-item { display: flex; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: all 0.2s; }
.feature-item:hover { border-color: var(--blue); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #eef2ff, #dce5ff); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.feature-item h4 { font-size: 16px; margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--muted); margin: 0; }

/* ========================================
   PRICING
   ======================================== */

.pricing-toggle { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 32px; }
.pricing-toggle label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 500; color: var(--ink); }
.pricing-toggle input[type="checkbox"] { width: 44px; height: 24px; appearance: none; background: var(--line); border-radius: 12px; position: relative; cursor: pointer; transition: background 0.2s; }
.pricing-toggle input[type="checkbox"]::before { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 10px; box-shadow: var(--shadow-sm); transition: transform 0.2s; }
.pricing-toggle input[type="checkbox"]:checked { background: var(--blue); }
.pricing-toggle input[type="checkbox"]:checked::before { transform: translateX(20px); }
.pricing-toggle .save-badge { font-size: 12px; font-weight: 700; color: var(--green); background: var(--green-soft); padding: 2px 8px; border-radius: 999px; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative; transition: all 0.3s; }
.pricing-card.popular { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.pricing-card .popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; padding: 4px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.pricing-card h3 { font-size: 18px; margin-bottom: 8px; }
.pricing-card .price { font-size: 48px; font-weight: 800; color: var(--ink); line-height: 1; margin: 16px 0; }
.pricing-card .price small { font-size: 14px; font-weight: 400; color: var(--muted); }
.pricing-card .period { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-card li { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--line-light); }
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li i { color: var(--green); font-size: 14px; }
.pricing-card .btn { width: 100%; margin-top: 16px; }

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.testimonial .stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; }
.testimonial p { font-size: 15px; line-height: 1.7; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.testimonial .author-name { font-weight: 700; color: var(--ink); }
.testimonial .author-role { font-size: 13px; color: var(--muted); }

/* ========================================
   FOOTER
   ========================================

.footer { background: var(--dark-navy); color: var(--white); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 300px; }
.footer h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; color: var(--white); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,.7); font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer-social a:hover { background: var(--blue); transform: translateY(-2px); }

/* ========================================
   BREADCRUMB
   ========================================

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* ========================================
   PAGE HEADER
   ========================================

.page-header { background: linear-gradient(160deg, var(--dark-navy) 0%, var(--navy-light) 50%, var(--navy-lighter) 100%); color: var(--white); padding: 80px 0 56px; position: relative; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; z-index: -1; }
.page-header-img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -1; opacity: 0.15; }
.page-header-glow { position: absolute; inset: 0; z-index: -1; }
.page-header-glow div { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.page-header-glow div:first-child { top: -20%; right: -15%; width: 500px; height: 500px; background: radial-gradient(circle, var(--blue), transparent 70%); }
.page-header-glow div:last-child { bottom: -20%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, var(--teal), transparent 70%); }
.page-header .container { position: relative; z-index: 1; }

/* ========================================
   BADGES
   ========================================

.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge-blue { background: var(--blue-soft); color: var(--blue); }
.badge-green { background: #f0fdf4; color: var(--green); }
.badge-orange { background: #fffbeb; color: var(--orange); }
.badge-red { background: #fef2f2; color: var(--red); }
.badge-gray { background: var(--line); color: var(--muted); }

/* ========================================
   RESPONSIVE
   ========================================

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .btn { padding: 10px 20px; font-size: 13px; }
}
.blog-post-body .article-lead{font-size:19px;line-height:1.75;color:#111a27;margin-bottom:28px}
.blog-post-body .article-summary{margin:0 0 34px;padding:24px 26px;border-left:4px solid #0069ee;background:#f3f7fc}
.blog-post-body .article-summary h2{margin:0 0 12px;font-size:20px}
.blog-post-body .article-summary ul{margin:0;padding-left:20px}
.blog-post-body .article-checklist{list-style:none;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 18px}
.blog-post-body .article-checklist li{position:relative;margin:0;padding:11px 12px 11px 34px;border-bottom:1px solid #e4e9f0}
.blog-post-body .article-checklist li::before{content:'✓';position:absolute;left:10px;color:#0b8f55;font-weight:800}
.blog-post-body .article-cta{margin-top:42px;padding:28px;border-top:3px solid #0069ee;background:#111a27;color:#d8e1ec}
.blog-post-body .article-cta h2{margin:0 0 10px;color:#fff;font-size:24px}
.blog-post-body .article-cta p{margin:0;color:#d8e1ec}
.blog-post-body .article-cta a{color:#7bc7ff}
@media(max-width:640px){.blog-post-body .article-lead{font-size:17px}.blog-post-body .article-summary{padding:20px}.blog-post-body .article-checklist{grid-template-columns:1fr}.blog-post-body .article-cta{padding:22px}.blog-post-body .article-cta h2{font-size:21px}}
