@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:ital,wght@0,600;0,700;1,400;1,700&display=swap");

/* ════════════════════════════════════════
   BASE RESET
   ════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f5f4f0;
  color: #1e293b;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
nav {
  background: #07192e;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: #f97316;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.logo-text {
  font-family: "Fraunces", serif;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.logo-text span { color: #f97316; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 7px;
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-cta {
  background: #f97316 !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
}
.nav-cta:hover { background: #ea6c0a !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn-primary {
  background: #f97316;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #ea6c0a; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  border: 0.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════ */
.breadcrumb {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.breadcrumb-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}
.breadcrumb-inner a { color: #64748b; text-decoration: none; }
.breadcrumb-inner a:hover { color: #f97316; }

/* ════════════════════════════════════════
   ARTICLE HERO
   ════════════════════════════════════════ */
.article-hero {
  width: 100%;
  background: linear-gradient(135deg, #07192e 0%, #0e2a4a 60%, #1a3a6b 100%);
  padding: 72px 24px 52px;
  color: #fff;
}
.article-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.article-cat {
  display: inline-block;
  color: #fdba74;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.article-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: #fff;
}
.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

/* ════════════════════════════════════════
   ARTICLE CONTENT
   ════════════════════════════════════════ */
.article-content-wrap {
  width: 100%;
  background: #f5f4f0;
}
.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 28px;
}
.article-content h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 700;
  color: #07192e;
  margin: 44px 0 16px;
  letter-spacing: -0.3px;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 32px 0 12px;
}
.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}
.article-content ul, .article-content ol {
  margin: 0 0 18px 24px;
}
.article-content li {
  font-size: 15.5px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 7px;
}
.article-content strong { color: #07192e; }
.article-content a { color: #f97316; font-weight: 600; text-decoration: none; }
.article-content a:hover { text-decoration: underline; }

.info-box {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: 14px; color: #92400e; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.pros {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 20px;
}
.cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 20px;
}
.pros h4 { color: #065f46; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.cons h4 { color: #991b1b; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.pros li { color: #065f46; font-size: 13px; }
.cons li { color: #991b1b; font-size: 13px; }

.pricing-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin: 24px 0;
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: #07192e;
  color: #fff;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.pricing-table td {
  padding: 13px 20px;
  font-size: 13px;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: #f8fafc; }
.badge-best {
  background: #f97316;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  margin-left: 7px;
}

/* ════════════════════════════════════════
   CTA INLINE — OPTION A (Split)
   ════════════════════════════════════════ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 8px 32px rgba(7,25,46,0.12);
}
.cta-split-left {
  background: #07192e;
  padding: 36px;
}
.cta-split-left h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.cta-split-left h3 em { color: #f97316; font-style: italic; }
.cta-split-left > p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cta-checks { display: flex; flex-direction: column; gap: 9px; }
.cta-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.cta-check::before {
  content: "✓";
  color: #f97316;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.cta-split-right {
  background: linear-gradient(135deg, #f97316, #ea6c0a);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-big-num {
  font-family: "Fraunces", serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.cta-big-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin: 6px 0 22px;
}
.cta-white-btn {
  display: block;
  background: #fff;
  color: #f97316 !important;
  padding: 13px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  width: 100%;
  text-align: center;
  transition: all 0.2s;
}
.cta-white-btn:hover { background: #fff7ed; transform: translateY(-1px); }
.cta-sub-note {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
}

/* ════════════════════════════════════════
   CTA INLINE — OPTION B (Centered + Stats)
   ════════════════════════════════════════ */
.cta-centered {
  background: #07192e;
  border-radius: 18px;
  padding: 44px 36px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid rgba(249,115,22,0.2);
  position: relative;
  overflow: hidden;
}
.cta-centered::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-centered-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.12);
  border: 0.5px solid rgba(249,115,22,0.3);
  color: #fdba74;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-centered h3 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cta-centered h3 em { color: #f97316; font-style: italic; }
.cta-centered > p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.cta-centered-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-orange-btn {
  background: #f97316;
  color: #fff !important;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.cta-orange-btn:hover { background: #ea6c0a; transform: translateY(-2px); }
.cta-ghost-btn {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.cta-ghost-btn:hover { background: rgba(255,255,255,0.15); }
.cta-stats-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  position: relative;
  z-index: 1;
}
.cta-stat { text-align: center; padding: 0 28px; }
.cta-stat + .cta-stat { border-left: 1px solid rgba(255,255,255,0.08); }
.cta-sn {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  color: #f97316;
}
.cta-sl { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* ════════════════════════════════════════
   CTA BANNER (Page Bottom)
   ════════════════════════════════════════ */
section.cta-banner, .cta-banner {
  width: 100%;
  display: block;
  background: #07192e;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner h2 span { color: #f97316; }
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-banner .btn-primary, .cta-banner a.btn-primary {
  background: #f97316 !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ════════════════════════════════════════
   ARTICLE CARD — OPTION B MAGAZINE
   ════════════════════════════════════════ */
.art-card-b {
  background: #fff;
  border-radius: 14px;
  border: 0.5px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.art-card-b:hover { box-shadow: 0 12px 36px rgba(7,25,46,0.13); transform: translateY(-5px); border-color: transparent; }
.art-card-b-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.art-thumb-b { height: 140px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.art-thumb-b svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }
.art-cat-pill { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); color: #07192e; font-size: 9px; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.3px; }
.art-time-pill { position: absolute; bottom: 10px; right: 10px; background: #f97316; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 9px; border-radius: 100px; }
.art-body-b { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.art-cat-b { font-size: 9px; font-weight: 700; color: #f97316; text-transform: uppercase; letter-spacing: 0.6px; display: block; margin-bottom: 7px; }
.art-body-b h3 { font-size: 14px; font-weight: 700; color: #07192e; line-height: 1.35; margin-bottom: 7px; }
.art-body-b p { font-size: 12.5px; color: #64748b; line-height: 1.6; flex: 1; margin-bottom: 14px; }
.art-ft-b { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 0.5px solid #e2e8f0; margin-top: auto; }
.art-date-b { font-size: 10px; color: #94a3b8; }
.art-lnk-b { font-size: 11px; font-weight: 700; color: #f97316; }

/* ════════════════════════════════════════
   FOOTER — Option C Two-Tone
   ════════════════════════════════════════ */
footer.site-footer {
  display: block;
  width: 100%;
}
.sf-top {
  width: 100%;
  background: #07192e;
  padding: 52px 24px 40px;
}
.sf-bottom {
  width: 100%;
  background: #040e1c;
  padding: 16px 24px;
}
.sf-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sf-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 52px;
  align-items: start;
}
.sf-brand .sf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.sf-logo-icon {
  width: 36px;
  height: 36px;
  background: #f97316;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.sf-logo-text {
  font-family: "Fraunces", serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.sf-logo-text span { color: #f97316; }
.sf-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.sf-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sf-col h4 {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.sf-col ul { list-style: none; padding: 0; }
.sf-col ul li { margin-bottom: 9px; }
.sf-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.sf-col ul li a:hover { color: #f97316; }
.sf-bot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.sf-bot-row span { font-size: 10.5px; color: rgba(255,255,255,0.2); }
.sf-bot-links { display: flex; gap: 16px; }
.sf-bot-links a {
  font-size: 10.5px;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.sf-bot-links a:hover { color: #f97316; }

/* ════════════════════════════════════════
   FAQ / LEGAL PAGE SPECIFIC
   ════════════════════════════════════════ */
.faq-category { margin-bottom: 44px; }
.faq-cat-title {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  color: #07192e;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f97316;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 10px;
  border: 0.5px solid #e2e8f0;
}
.faq-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #07192e;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.faq-item p { font-size: 13.5px; color: #64748b; line-height: 1.75; }
.faq-item a { color: #f97316; font-weight: 600; text-decoration: none; }
.faq-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.faq-nav a {
  background: #fff;
  border: 0.5px solid #e2e8f0;
  color: #374151;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}
.faq-nav a:hover { background: #f97316; color: #fff; border-color: #f97316; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 0.5px solid #e2e8f0;
  text-align: center;
}
.contact-icon { font-size: 38px; margin-bottom: 14px; }
.contact-card h3 { font-size: 17px; font-weight: 700; color: #07192e; margin-bottom: 8px; }
.contact-card p { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 14px; }
.contact-card a { color: #f97316; font-weight: 700; text-decoration: none; font-size: 14px; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .sf-grid { grid-template-columns: 1fr; gap: 32px; }
  .sf-links { grid-template-columns: 1fr 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .sf-links { grid-template-columns: 1fr; }
  .cta-stats-row { flex-wrap: wrap; gap: 16px; }
  .cta-stat + .cta-stat { border-left: none; }
  .sf-bot-row { flex-direction: column; }
  .article-content { padding: 40px 20px; }
}


/* ════════════════════════════════════════
   HOMEPAGE HERO
   ════════════════════════════════════════ */
.hero {
  background: #07192e;
  padding: 56px 24px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: 0; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero-left {}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,0.12);
  border: 0.5px solid rgba(249,115,22,0.35);
  color: #fdba74;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.h-dot { width: 5px; height: 5px; background: #f97316; border-radius: 50%; }
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
.hero h1 em { color: #f97316; font-style: italic; }
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-item { font-size: 12px; color: rgba(255,255,255,0.45); }
.trust-sep { width: 3px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 50%; display: inline-block; }

/* App Mockup */
.app-mock {
  background: #0e2a4a;
  border-radius: 14px 14px 0 0;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-bottom: none;
  overflow: hidden;
}
.app-topbar {
  background: #071929;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}
.app-dots { display: flex; gap: 5px; }
.app-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.app-lbl { font-size: 10px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 5px; }
.live-badge { background: rgba(16,185,129,0.2); color: #34d399; font-size: 8px; padding: 1px 6px; border-radius: 100px; }
.app-tabs { display: flex; background: #071929; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.app-tab { font-size: 10px; padding: 7px 13px; color: rgba(255,255,255,0.35); }
.app-tab.on { color: #f97316; border-bottom: 1.5px solid #f97316; }
.app-body { padding: 12px; }
.app-hrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.app-ts { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); }
.app-ds { font-size: 9px; color: rgba(255,255,255,0.3); }
.emp-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; background: #071929; border-radius: 8px;
  margin-bottom: 6px; border: 0.5px solid rgba(255,255,255,0.05);
}
.emp-l { display: flex; align-items: center; gap: 8px; }
.emp-av {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 700;
}
.emp-n { font-size: 11px; color: rgba(255,255,255,0.9); font-weight: 600; }
.emp-r { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.emp-st { font-size: 10px; padding: 3px 10px; border-radius: 100px; font-weight: 500; }
.s-in  { background: rgba(16,185,129,0.15); color: #34d399; }
.s-br  { background: rgba(249,115,22,0.15);  color: #fb923c; }
.s-tr  { background: rgba(59,130,246,0.15);  color: #60a5fa; }
.s-up  { background: rgba(99,102,241,0.15);  color: #818cf8; }
.app-stats { display: flex; gap: 7px; margin-top: 9px; }
.app-stat { flex: 1; background: #071929; border-radius: 7px; padding: 8px 9px; border: 0.5px solid rgba(255,255,255,0.05); }
.asn { font-size: 16px; font-weight: 700; color: #f97316; }
.asl { font-size: 8.5px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.app-prog { margin-top: 9px; background: #071929; border-radius: 8px; padding: 9px 11px; border: 0.5px solid rgba(255,255,255,0.05); }
.app-prog-lbl { font-size: 9px; color: rgba(255,255,255,0.4); margin-bottom: 6px; display: flex; justify-content: space-between; }
.prog-track { background: rgba(255,255,255,0.07); border-radius: 3px; height: 5px; }
.prog-fill { height: 5px; border-radius: 3px; background: linear-gradient(90deg, #f97316, #fb923c); width: 80%; }

/* ════════════════════════════════════════
   TICKER
   ════════════════════════════════════════ */
.ticker { background: #f97316; padding: 12px 0; overflow: hidden; width: 100%; }
.ticker-inner { display: flex; animation: ticker 22s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tick-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 28px; border-right: 0.5px solid rgba(255,255,255,0.25); }
.tn { font-size: 14px; font-weight: 700; color: #fff; }
.tl { font-size: 10px; color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════
   HOMEPAGE SECTIONS
   ════════════════════════════════════════ */
.section { padding: 72px 24px; width: 100%; }
.bg-light { background: #f5f4f0; }
.bg-white { background: #fff; }
.dark-sec { background: #07192e; }
.sec-inner { max-width: 1100px; margin: 0 auto; }

.sec-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff7ed; color: #c2410c;
  font-size: 10px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase;
}
.dark-tag { background: rgba(249,115,22,0.12); color: #fdba74; }
.sec-dot { width: 4px; height: 4px; background: #f97316; border-radius: 50%; }
.sec-title {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700; color: #07192e;
  line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.5px;
}
.dark-sec .sec-title { color: #fff; }
.sec-sub { color: #64748b; font-size: 15px; line-height: 1.7; max-width: 560px; }
.sec-header { margin-bottom: 48px; }

/* About / Hubs */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hub-card {
  background: #fff; border-radius: 10px;
  padding: 14px 16px; border: 0.5px solid #e2e8f0;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px; position: relative; overflow: hidden;
  transition: all 0.2s; cursor: default;
}
.hub-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: #f97316; }
.hub-card:hover { box-shadow: 0 4px 16px rgba(7,25,46,0.08); transform: translateX(3px); }
.hub-ic { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hub-n { font-size: 13px; font-weight: 700; color: #07192e; }
.hub-d { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.hub-arr { margin-left: auto; color: #f97316; font-size: 16px; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fact-card { background: #fff; border-radius: 10px; padding: 18px; border: 0.5px solid #e2e8f0; text-align: center; }
.fact-num { font-family: "Fraunces", serif; font-size: 28px; font-weight: 700; color: #f97316; }
.fact-lbl { font-size: 11px; color: #64748b; margin-top: 4px; line-height: 1.4; }

/* How It Works */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.steps-grid::before { content: ""; position: absolute; top: 30px; left: 14%; right: 14%; height: 1px; background: rgba(249,115,22,0.3); }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: #0e2a4a; border: 1px solid rgba(249,115,22,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px;
}
.step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Features */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feat-card {
  background: #fff; border-radius: 14px; padding: 24px;
  border: 0.5px solid #e2e8f0; transition: all 0.3s;
}
.feat-card:hover { box-shadow: 0 12px 36px rgba(7,25,46,0.12); transform: translateY(-4px); border-color: transparent; }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.feat-card h3 { font-size: 15px; font-weight: 700; color: #07192e; margin-bottom: 7px; }
.feat-card p { font-size: 13px; color: #64748b; line-height: 1.6; }
.feat-strip { height: 2px; margin-top: 14px; border-radius: 2px; background: #f97316; width: 32%; opacity: 0.4; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tcard { background: #fff; border-radius: 14px; padding: 22px; border: 0.5px solid #e2e8f0; }
.tcard-stars { color: #f97316; font-size: 14px; margin-bottom: 10px; }
.tcard > p { font-size: 13.5px; color: #374151; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.tcard-user { display: flex; align-items: center; gap: 10px; }
.tav { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; }
.t-name { font-size: 13px; font-weight: 700; color: #07192e; }
.t-role { font-size: 11px; color: #94a3b8; }
.ratings-row {
  display: flex; align-items: center; justify-content: space-around;
  background: #fff; border-radius: 14px; padding: 22px;
  margin-top: 14px; border: 0.5px solid #e2e8f0;
}
.r-item { text-align: center; }
.r-num { font-family: "Fraunces", serif; font-size: 26px; font-weight: 700; color: #07192e; }
.r-lbl { font-size: 11px; color: #94a3b8; margin-top: 3px; }
.r-div { width: 0.5px; height: 34px; background: #e2e8f0; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.price-card { background: #fff; border-radius: 14px; padding: 22px; border: 0.5px solid #e2e8f0; position: relative; }
.price-card.featured { border: 2px solid #f97316; }
.price-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: #f97316; color: #fff; font-size: 9px; font-weight: 700;
  padding: 3px 12px; border-radius: 100px; white-space: nowrap;
}
.price-plan { font-size: 13px; font-weight: 700; color: #07192e; margin-bottom: 8px; }
.price-amount { font-family: "Fraunces", serif; font-size: 34px; font-weight: 700; color: #07192e; }
.price-per { font-size: 11px; color: #94a3b8; }
.price-users { font-size: 11px; color: #f97316; margin: 8px 0 12px; font-weight: 600; }
.price-feats { display: flex; flex-direction: column; gap: 5px; }
.pf { font-size: 12px; color: #64748b; display: flex; align-items: flex-start; gap: 5px; }
.pf::before { content: "✓"; color: #f97316; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* FAQ Homepage */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Homepage Articles Grid */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ════════════════════════════════════════
   HOMEPAGE RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .app-mock { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .articles-grid, .testi-grid, .feat-grid, .price-grid, .steps-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 52px 20px; }
  .hero { padding: 40px 20px 0; }
  .ratings-row { flex-wrap: wrap; gap: 16px; }
}


/* ════════════════════════════════════════
   ABSOLUTE FULL-WIDTH GUARANTEE
   Forces footer & cta-banner to break out
   of any narrow parent container
   ════════════════════════════════════════ */

/* Step 1: Make article page wrapper NOT restrict width */
.article-content-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Step 2: Article readable content stays 900px */
.article-content {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 56px 28px !important;
}

/* Step 3: Force full width on every footer/CTA */
footer.site-footer,
.sf-top,
.sf-bottom,
section.cta-banner,
.cta-banner,
.ticker,
nav {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
  max-width: 100vw !important;
}

/* Step 4: Fix their internal padding so content stays centered */
.sf-top {
  padding: 52px calc((100vw - 1100px)/2 + 24px) 40px !important;
}
.sf-bottom {
  padding: 16px calc((100vw - 1100px)/2 + 24px) !important;
}
section.cta-banner, .cta-banner {
  padding: 80px calc((100vw - 1100px)/2 + 24px) !important;
}
nav {
  padding: 0 calc((100vw - 1200px)/2 + 24px) !important;
}
.ticker {
  padding: 12px 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

@media (max-width: 1148px) {
  .sf-top { padding: 52px 24px 40px !important; }
  .sf-bottom { padding: 16px 24px !important; }
  section.cta-banner, .cta-banner { padding: 80px 24px !important; }
  nav { padding: 0 24px !important; }
}
