:root {
  --vn-bg: #f8fbff;
  --vn-surface: rgba(255,255,255,0.94);
  --vn-surface-strong: #ffffff;
  --vn-text: #0f172a;
  --vn-muted: #475569;
  --vn-line: rgba(15, 23, 42, 0.1);
  --vn-primary: #2563eb;
  --vn-secondary: #7c3aed;
  --vn-radius: 24px;
  --vn-radius-sm: 14px;
  --vn-shadow: 0 28px 65px rgba(8, 145, 178, 0.16);
  --vn-shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.08);
  --vn-container: 1280px;
  --vn-motion-multiplier: 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #f8fdff 0%, #ffffff 38%, #f8fafc 100%);
  color: var(--vn-text);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1,h2,h3,h4,h5,h6 { line-height: 1.08; margin: 0 0 1rem; }
ul { padding-left: 1.1rem; }

.vn-container { width: min(var(--vn-container), calc(100% - 40px)); margin-inline: auto; }
.site-shell { min-height: 60vh; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0e7490;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}
.brand-logo-image {
  display: block;
  width: auto;
  height: 40px;
}
.site-branding .custom-logo { max-height: 42px; width: auto; }
.brand-link,
.footer-branding {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #06b6d4, #0f172a);
  box-shadow: var(--vn-shadow-soft);
  font-size: .9rem;
}
.brand-text { letter-spacing: .02em; }
.main-navigation { display: flex; align-items: center; gap: 18px; }
.main-navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
  align-items: center;
}
.main-navigation a { color: #475569; font-weight: 600; }
.main-navigation a:hover { color: var(--vn-primary); }
.header-tool-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white !important;
  box-shadow: var(--vn-shadow-soft);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vn-text);
  margin: 5px auto;
}

.hero-section {
  position: relative;
  overflow: visible;
  padding: 64px 0 64px;
  background: linear-gradient(180deg, #effcff 0%, #ffffff 52%, #fbfcff 100%);
}
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
}
.hero-section::before {
  top: -72px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(56, 189, 248, 0.18);
}
.hero-section::after {
  top: 80px;
  right: -110px;
  width: 300px;
  height: 300px;
  background: rgba(167, 139, 250, 0.12);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: 40px;
  min-height: 68vh;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.hero-copy {
  max-width: 42rem;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.05em;
  margin: 20px 0 0;
  line-height: 1.1;
}
.hero-copy h1 span {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  max-width: 650px;
  color: var(--vn-muted);
  font-size: 1.125rem;
  margin: 20px 0 0;
}
.hero-eyebrow-text {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.06);
}
.hero-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #0e7490;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}
.vn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.vn-btn:hover,
.post-card:hover,
.feature-card:hover,
.content-card:hover,
.single-post-card:hover { transform: translateY(-3px); }
.vn-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.2);
}
.vn-btn--ghost {
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #334155;
  background: #ffffff;
}
.hero-stats-section {
  padding: 28px 0 44px;
  background: linear-gradient(90deg, #0f766e 0%, #0f172a 100%);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
}
.hero-stat-card {
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(165, 243, 252, 0.28);
  background: rgba(255,255,255,0.92);
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 28px rgba(2, 132, 199, 0.14);
}
.hero-stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
  color: #0f172a;
}
.hero-stat-card span {
  display: block;
  color: var(--vn-muted);
  font-size: .95rem;
}

.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: visible;
}
.visual-screen {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--vn-shadow);
  overflow: hidden;
  animation: pulseGlow calc(3.4s / var(--vn-motion-multiplier)) ease-in-out infinite alternate;
}
.dashboard-window {
  border-radius: 32px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(8, 145, 178, 0.18);
}
.dashboard-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.dashboard-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.dashboard-toolbar span:nth-child(1) { background: #fb7185; }
.dashboard-toolbar span:nth-child(2) { background: #fbbf24; }
.dashboard-toolbar span:nth-child(3) { background: #34d399; }
.dashboard-panel {
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 16px;
}
.dashboard-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dashboard-panel__header p {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  color: #1e293b;
}
.dashboard-panel__header span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: .74rem;
  font-weight: 700;
}
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.dashboard-metric-card {
  padding: 14px;
  border-radius: 18px;
  background: #ecfeff;
}
.dashboard-metric-card--alt {
  background: #eff6ff;
}
.dashboard-metric-card p,
.dashboard-metric-card strong {
  margin: 0;
}
.dashboard-metric-card p {
  font-size: .78rem;
  color: #64748b;
}
.dashboard-metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
  color: #0f172a;
}
.dashboard-chart {
  position: relative;
  min-height: 96px;
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(90deg, #cffafe 0%, #e0f2fe 56%, #ffffff 100%);
}
.dashboard-chart__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%),
    radial-gradient(circle at 18% 34%, rgba(34, 211, 238, 0.26), transparent 34%),
    radial-gradient(circle at 78% 64%, rgba(14, 165, 233, 0.22), transparent 30%);
}
.visual-screen__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  z-index: 1;
  box-shadow: none;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #e2e8f0;
  box-shadow: var(--vn-shadow-soft);
  min-width: 205px;
  max-width: min(320px, calc(100% - 12px));
  z-index: 4;
}
.floating-card > div {
  min-width: 0;
}
.floating-card p {
  color: var(--vn-muted);
  font-size: .92rem;
  line-height: 1.35;
  margin: 0;
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--vn-primary);
  background: rgba(8, 145, 178, 0.08);
  font-weight: 700;
}
.card-top { top: 18px; left: -18px; }
.card-middle { right: -16px; top: 54%; transform: translateY(-50%); }
.card-bottom { right: 26px; bottom: -12px; left: auto; transform: none; }

.feature-section,
.page-shell,
.blog-shell,
.single-shell { padding: 64px 0 96px; }
.section-head,
.page-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head p,
.page-intro p { color: var(--vn-muted); }
.section-head h2,
.page-intro h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card,
.content-card,
.post-card,
.single-post-card,
.sidebar-widget {
  background: var(--vn-surface);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--vn-shadow-soft);
  border-radius: var(--vn-radius);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card,
.content-card,
.single-post-card,
.sidebar-widget { padding: 24px; }
.feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.feature-card p,
.content-card p,
.single-post-card p,
.sidebar-widget p { color: var(--vn-muted); }

.tools-section {
  background: #f7f8fb;
}

.tools-section .section-head {
  margin-bottom: 28px;
}

.tools-section .section-head h2 span {
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  position: relative;
  border-radius: 10px;
  border: 1px solid #dfe3eb;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  padding: 14px;
}

.tool-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .55rem;
}

.tool-card__icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex: 0 0 36px;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
}

.tool-card--blue::before { background: #3b82f6; }
.tool-card--violet::before { background: #a855f7; }
.tool-card--green::before { background: #22c55e; }
.tool-card--orange::before { background: #f97316; }

.tool-card--blue .tool-card__icon { background: linear-gradient(135deg, #38bdf8, #2563eb); }
.tool-card--violet .tool-card__icon { background: linear-gradient(135deg, #c084fc, #ec4899); }
.tool-card--green .tool-card__icon { background: linear-gradient(135deg, #34d399, #10b981); }
.tool-card--orange .tool-card__icon { background: linear-gradient(135deg, #fb923c, #f97316); }

.tool-card h3 {
  font-size: .92rem;
  margin-bottom: 0;
}

.tool-card__title-link {
  color: #0f172a;
  text-decoration: none;
  transition: color .18s ease;
}

.tool-card__title-link:hover {
  color: #2563eb;
}

.tool-card p {
  margin-bottom: .55rem;
  color: #4b5563;
  font-size: .75rem;
  line-height: 1.45;
}

.tool-card__list {
  list-style: none;
  margin: 0 0 .75rem;
  padding: 0;
}

.tool-card__list li {
  position: relative;
  padding-left: .78rem;
  margin-bottom: .34rem;
  font-size: .7rem;
  color: #334155;
}

.tool-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .46rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #94a3b8;
  opacity: 1;
}

.tool-card--blue .tool-card__list li::before { background: #38bdf8; }
.tool-card--violet .tool-card__list li::before { background: #e879f9; }
.tool-card--green .tool-card__list li::before { background: #34d399; }
.tool-card--orange .tool-card__list li::before { background: #fb923c; }

.tool-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  color: #1f2937;
  background: #f8fafc;
  font-size: .7rem;
  font-weight: 700;
}

.tool-card__cta:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.pricing-teaser {
  margin-top: 24px;
  border: 1px solid #dbe5f2;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 24px;
}

.pricing-teaser__head h3 {
  font-size: 1.25rem;
  margin: 0 0 6px;
}

.pricing-teaser__head p {
  margin: 0;
  color: #64748b;
}

.pricing-teaser__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-teaser-card {
  border: 1px solid #dbe5f2;
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
}

.pricing-teaser-card--pro {
  border-color: #6366f1;
  box-shadow: 0 10px 22px rgba(99, 102, 241, 0.2);
}

.pricing-teaser-card h4 {
  font-size: 1rem;
  margin: 0 0 6px;
}

.pricing-teaser-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.pricing-teaser-card__price span {
  font-size: .85rem;
  color: #64748b;
  font-weight: 600;
  margin-left: 4px;
}

.pricing-teaser-card__credits {
  margin: 2px 0 8px;
  font-weight: 700;
  color: #2563eb;
}

.pricing-teaser-card p:last-child {
  margin: 0;
  color: #64748b;
  font-size: .88rem;
}

.pricing-teaser__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}
.post-grid {
  display: grid;
  gap: 24px;
}
.post-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}
.post-card__thumb img,
.thumb-fallback {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.thumb-fallback {
  background: linear-gradient(135deg, rgba(47,98,236,.12), rgba(124,58,237,.18));
}
.post-card__body { padding: 24px; }
.post-meta,
.single-meta { color: var(--vn-muted); font-size: .95rem; }
.text-link { color: var(--vn-primary); font-weight: 700; }

.single-post-card { max-width: 840px; margin-inline: auto; }
.single-thumb { overflow: hidden; border-radius: 20px; margin: 24px 0; }
.entry-title { font-size: clamp(2.2rem, 4vw, 3.6rem); letter-spacing: -0.04em; }
.entry-content { color: #223046; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-top: 2rem; }
.entry-content a { color: var(--vn-primary); text-decoration: underline; }
.entry-content ul,
.entry-content ol { margin-bottom: 1rem; }
.entry-content blockquote {
  margin: 1.6rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--vn-primary);
  background: rgba(47, 98, 236, 0.05);
  border-radius: 14px;
}

.site-footer {
  padding: 64px 0 32px;
  border-top: 0;
  background: #111827;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-copy,
.footer-bottom,
.footer-widget p,
.footer-widget li,
.footer-widget a { color: #94a3b8; }
.footer-copy,
.footer-widget p,
.footer-widget li,
.footer-feature-list li,
.site-footer .menu a,
.footer-contact-location,
.footer-contact-email,
.footer-built-for { color: #cbd5e1; }
.site-footer .custom-logo {
  max-height: 48px;
  width: auto;
}
.footer-logo-image {
  display: block;
  width: auto;
  height: 48px;
}
.site-footer .brand-text,
.footer-title,
.footer-company-column .brand-text { color: #ffffff; }
.site-footer .brand-mark {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: none;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
}
.footer-social-link {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border-radius: 999px !important;
}
.footer-social-links a svg {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.footer-social-links a span {
  display: none;
}
.footer-social-link--linkedin {
  background: #0284c7;
}
.footer-social-link--linkedin:hover {
  background: #0369a1;
}
.footer-social-link--facebook {
  background: #1d4ed8;
}
.footer-social-link--facebook:hover {
  background: #1e40af;
}
.footer-social-link--email {
  background: #7e22ce;
}
.footer-social-link--email:hover {
  background: #6b21a8;
}
.footer-title,
.sidebar-title { font-size: 1rem; margin-bottom: 12px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  font-size: .95rem;
}
.footer-widget ul,
.site-footer .menu,
.footer-feature-list,
.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widget li,
.site-footer .menu li,
.footer-feature-list li { margin-bottom: 10px; }
.site-footer .menu a:hover,
.footer-legal-links a:hover,
.footer-contact-email:hover { color: #ffffff; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #94a3b8;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom-bar p { margin: 0; }
.footer-built-for span { color: #ffffff; }

.latest-posts-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 64px;
  padding-bottom: 96px;
}
.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.latest-posts-grid .post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}
.latest-posts-grid .post-card__thumb,
.latest-posts-grid .thumb-fallback {
  display: block;
  min-height: 176px;
}
.latest-posts-grid .post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.latest-posts-grid .post-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.latest-posts-grid .post-card__body p:last-of-type {
  flex: 1;
}
.latest-posts-button,
.latest-posts-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
}
.latest-posts-button {
  margin-top: 1.25rem;
  padding: 12px 18px;
  border: 1px solid #cbd5e1;
  color: #334155;
  background: #ffffff;
}
.latest-posts-all-button {
  padding: 15px 26px;
  color: #ffffff;
  background: #0f172a;
}

.home-cta-section {
  padding: 96px 0;
  background: linear-gradient(90deg, #0e7490 0%, #0f172a 100%);
}
.home-cta-section__inner {
  text-align: center;
}
.home-cta-section__inner h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
}
.home-cta-section__inner p {
  max-width: 700px;
  margin: 0 auto;
  color: #cffafe;
}
.home-cta-actions {
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0;
}
.home-cta-primary {
  color: #0f172a;
  background: #ffffff;
}
.home-cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(165, 243, 252, 0.35);
  background: rgba(255,255,255,0.08);
}

.pagination-wrap .nav-links { display: flex; gap: 12px; flex-wrap: wrap; }
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  box-shadow: var(--vn-shadow-soft);
}
.pagination-wrap .current { background: linear-gradient(135deg, var(--vn-primary), var(--vn-secondary)); color: white; }

.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.vn-js .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity calc(.85s / var(--vn-motion-multiplier)) cubic-bezier(.22, 1, .36, 1), transform calc(.85s / var(--vn-motion-multiplier)) cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--vn-reveal-delay, 0s) * var(--vn-motion-multiplier));
}

.vn-js .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.float-card { animation: floatY calc(6.6s / var(--vn-motion-multiplier)) cubic-bezier(.4, 0, .2, 1) infinite; }
.card-middle { animation-delay: .7s; }
.card-bottom { animation-delay: 1.2s; }

.home-editable-content__inner > * {
  --vn-reveal-delay: 0s;
}

.home-editable-content__inner > *.fade-up:nth-child(2n) {
  --vn-reveal-delay: .08s;
}

.home-editable-content__inner > *.fade-up:nth-child(3n) {
  --vn-reveal-delay: .16s;
}

@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(calc(-16px * var(--vn-motion-multiplier))); }
}

@keyframes pulseGlow {
  0% { box-shadow: var(--vn-shadow); }
  100% { box-shadow: 0 26px 62px rgba(59, 130, 246, 0.28); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .float-card,
  .visual-screen {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .blog-layout,
  .footer-grid,
  .feature-grid,
  .post-card {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
  .hero-visual { order: 0; }
  .visual-frame { min-height: 460px; }
  .floating-card {
    min-width: 180px;
    max-width: min(290px, calc(100% - 16px));
  }
  .card-top { top: 10px; left: 8px; }
  .card-middle { right: 8px; top: auto; bottom: 88px; transform: none; }
  .card-bottom { right: 12px; bottom: 16px; }
  .hero-stats-grid,
  .latest-posts-grid,
  .footer-grid,
  .tools-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .hero-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

@media (min-width: 768px) {
  .site-header__inner {
    min-height: 80px;
  }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .main-navigation {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--vn-shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-navigation.is-open { display: flex; }
  .main-navigation ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .header-tool-btn { text-align: center; }
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .hero-stats-grid { grid-template-columns: 1fr; }
  .card-top { left: 6px; top: 10px; }
  .card-middle { right: 6px; top: auto; bottom: 74px; transform: none; }
  .card-bottom { right: 6px; bottom: 6px; left: auto; transform: none; }
}

@media (max-width: 560px) {
  .vn-container { width: min(var(--vn-container), calc(100% - 24px)); }
  .site-header__inner { min-height: 72px; }
  .hero-section { padding-top: 56px; padding-bottom: 56px; }
  .feature-card,
  .content-card,
  .single-post-card,
  .sidebar-widget,
  .post-card__body { padding: 20px; }
  .floating-card {
    position: static;
    display: flex;
    margin-bottom: 12px;
    min-width: 100%;
  }
  .visual-screen { position: relative; inset: auto; min-height: 220px; }
  .visual-frame { min-height: auto; }
  .dashboard-metrics { grid-template-columns: 1fr; }
  .footer-legal-links { justify-content: center; }
  .footer-bottom-bar { align-items: center; text-align: center; }
}

/* Pricing page */
.pricing-page {
  --pricing-bg: #f6f8fc;
  --pricing-surface: #ffffff;
  --pricing-text: #0f172a;
  --pricing-muted: #475569;
  --pricing-border: #dbe4f0;
  --pricing-primary: #2563eb;
  --pricing-primary-soft: #dbeafe;
  --pricing-pro-glow: rgba(99, 102, 241, 0.28);
  background: var(--pricing-bg);
  color: var(--pricing-text);
  padding-bottom: 80px;
}

.pricing-page[data-theme="dark"] {
  --pricing-bg: #0b1220;
  --pricing-surface: #111b2d;
  --pricing-text: #f8fafc;
  --pricing-muted: #94a3b8;
  --pricing-border: #243349;
  --pricing-primary: #60a5fa;
  --pricing-primary-soft: rgba(96, 165, 250, 0.12);
  --pricing-pro-glow: rgba(99, 102, 241, 0.4);
}

.pricing-page h1,
.pricing-page h2,
.pricing-page h3,
.pricing-page summary {
  color: var(--pricing-text);
}

.pricing-page p,
.pricing-page li,
.pricing-page td,
.pricing-page th {
  color: var(--pricing-muted);
}

.pricing-sticky-bar {
  position: sticky;
  top: 78px;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid var(--pricing-border);
}

.pricing-page[data-theme="dark"] .pricing-sticky-bar {
  background: rgba(11, 18, 32, 0.82);
}

.pricing-sticky-bar__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-sticky-bar__inner p {
  margin: 0;
  font-weight: 600;
}

.pricing-hero {
  padding: 64px 0 38px;
}

.pricing-hero__inner {
  max-width: 760px;
}

.pricing-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid var(--pricing-border);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pricing-hero__text {
  margin: 16px 0 0;
  max-width: 640px;
  font-size: 1.08rem;
}

.pricing-hero__actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-btn {
  border: 1px solid transparent;
  cursor: pointer;
}

.pricing-btn--primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.pricing-btn--ghost {
  background: transparent;
  border-color: var(--pricing-border);
  color: var(--pricing-text);
}

.pricing-trust-line {
  padding: 10px 0 8px;
}

.pricing-trust-line p {
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.pricing-plans-section {
  padding: 30px 0 42px;
}

.pricing-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--pricing-border);
  border-radius: 999px;
  padding: 6px;
  background: var(--pricing-surface);
}

.pricing-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-theme-toggle {
  border: 1px solid var(--pricing-border);
  border-radius: 999px;
  background: var(--pricing-surface);
  color: var(--pricing-text);
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
}

.pricing-billing-toggle__label {
  font-weight: 700;
  font-size: .9rem;
  margin-left: 8px;
}

.pricing-toggle-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  color: var(--pricing-muted);
  cursor: pointer;
}

.pricing-toggle-btn.is-active {
  background: var(--pricing-primary-soft);
  color: var(--pricing-primary);
}

.pricing-save-badge {
  margin-left: 6px;
  font-size: .72rem;
  color: #16a34a;
}

.pricing-decision-helper {
  margin: 18px 0 22px;
  font-weight: 600;
  color: var(--pricing-text) !important;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--pricing-border);
  background: var(--pricing-surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
}

.pricing-card--pro {
  transform: scale(1.03);
  border-width: 2px;
  border-color: #6366f1;
  box-shadow: 0 26px 60px var(--pricing-pro-glow);
}

.pricing-card--pro:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-popular-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-popular-badges span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .74rem;
  font-weight: 700;
  background: #eef2ff;
  color: #4338ca;
}

.pricing-card__head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.pricing-card__head p {
  margin: 6px 0 0;
}

.pricing-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--pricing-text);
}

.pricing-price span {
  font-size: .95rem;
  margin-left: 4px;
  color: var(--pricing-muted);
  font-weight: 600;
}

.pricing-credits {
  margin: 0;
  font-weight: 600;
}

.pricing-credits strong {
  color: var(--pricing-text);
}

.pricing-pro-line {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--pricing-text) !important;
}

.pricing-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 18px;
}

.pricing-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #38bdf8;
}

.pricing-usage-block {
  border-top: 1px dashed var(--pricing-border);
  padding-top: 10px;
}

.pricing-usage-block p {
  margin: 0;
  font-weight: 600;
}

.pricing-value-stack {
  border: 1px solid var(--pricing-border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.02);
}

.pricing-value-stack h3 {
  margin: 0 0 8px;
  font-size: .92rem;
}

.pricing-value-stack ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.pricing-value-stack p {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--pricing-text) !important;
}

.pricing-value-stack span {
  color: var(--pricing-muted);
}

.pricing-credits-section,
.pricing-topup-section,
.pricing-guarantee-section,
.pricing-faq-section,
.pricing-final-cta {
  padding: 42px 0;
}

.pricing-table-wrap {
  margin-top: 14px;
  border: 1px solid var(--pricing-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--pricing-surface);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--pricing-border);
  text-align: left;
}

.pricing-table th {
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-guarantee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-guarantee-list li {
  border: 1px solid var(--pricing-border);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--pricing-surface);
  font-weight: 700;
}

.pricing-urgency {
  margin-top: 14px;
  font-weight: 700;
  color: #b45309 !important;
}

.pricing-faq-list {
  display: grid;
  gap: 10px;
}

.pricing-faq-list details {
  border: 1px solid var(--pricing-border);
  border-radius: 14px;
  background: var(--pricing-surface);
  padding: 12px 14px;
}

.pricing-faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.pricing-faq-list p {
  margin: 10px 0 0;
}

.pricing-final-cta {
  background: linear-gradient(90deg, #0f766e 0%, #0f172a 100%);
}

.pricing-final-cta__inner {
  text-align: center;
}

.pricing-final-cta h2,
.pricing-final-cta p {
  color: #ffffff;
}

.pricing-signup-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}

.pricing-signup-modal.is-open {
  display: block;
}

.pricing-signup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
}

.pricing-signup-modal__panel {
  position: relative;
  width: min(520px, calc(100% - 24px));
  margin: 8vh auto 0;
  background: var(--pricing-surface);
  border: 1px solid var(--pricing-border);
  border-radius: 18px;
  padding: 22px;
  z-index: 1;
  box-shadow: 0 32px 70px rgba(2, 6, 23, 0.35);
}

.pricing-signup-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: var(--pricing-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.pricing-signup-modal__summary {
  margin-top: 6px;
}

.pricing-signup-form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.pricing-signup-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.pricing-signup-form input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--pricing-border);
  padding: 0 12px;
  background: var(--pricing-surface);
  color: var(--pricing-text);
}

@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card--pro,
  .pricing-card--pro:hover {
    transform: none;
  }
}

@media (max-width: 780px) {
  .pricing-sticky-bar {
    top: 72px;
  }

  .pricing-sticky-bar__inner {
    min-height: 64px;
  }

  .pricing-sticky-bar__inner p {
    display: none;
  }

  .pricing-hero {
    padding-top: 42px;
  }

  .pricing-controls-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-guarantee-list {
    flex-direction: column;
  }

  .pricing-hero__actions {
    width: 100%;
  }

  .pricing-hero__actions .pricing-btn {
    width: 100%;
  }
}

/* ==========================================================================
   LEGAL PAGES (Privacy, Terms, Cookies, Refund)
   ========================================================================== */

.legal-page-shell {
  background: #f8fafc;
  min-height: 60vh;
}

.legal-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #effcff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  margin: 16px 0 8px;
  color: #0f172a;
}

.legal-hero__sub {
  font-size: .92rem;
  color: #64748b;
  margin: 0 0 16px;
}

.legal-hero__intro {
  max-width: 640px;
  font-size: 1.08rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.legal-body {
  padding: 52px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

/* Table of contents sidebar */
.legal-toc {
  position: sticky;
  top: 80px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.legal-toc__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 12px;
}

.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.legal-toc li {
  margin-bottom: 4px;
}

.legal-toc a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: #475569;
  transition: background .18s, color .18s;
}

.legal-toc a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* Content area */
.legal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.legal-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f1f5f9;
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.45rem;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.legal-section h3 {
  font-size: 1.05rem;
  color: #1e293b;
  margin: 24px 0 10px;
}

.legal-section h4 {
  font-size: .95rem;
  color: #1e293b;
  margin: 0 0 6px;
}

.legal-section p {
  color: #334155;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-section ul,
.legal-section ol {
  color: #334155;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 1.4rem;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: #1d4ed8;
}

/* Legal card (third-party services etc.) */
.legal-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
}

.legal-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.legal-card p {
  font-size: .88rem;
  color: #475569;
  margin: 0;
}

/* Highlight callout */
.legal-highlight {
  background: #eff6ff;
  border-left: 3px solid #2563eb;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: .9rem;
  color: #1e293b;
  margin-top: 16px;
  line-height: 1.6;
}

/* Contact block inside legal pages */
.legal-contact-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  line-height: 1.75;
}

.legal-contact-block p { margin: 0 0 4px; color: #334155; }

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin-bottom: 28px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.cookie-table th {
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Refund yes/no items */
.refund-yes-list,
.refund-no-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.refund-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.refund-item--yes {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.refund-item--no {
  background: #fff1f2;
  border-color: #fecdd3;
}

.refund-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  flex: 0 0 28px;
}

.refund-icon--yes {
  background: #dcfce7;
  color: #16a34a;
}

.refund-icon--no {
  background: #fee2e2;
  color: #dc2626;
}

.refund-item strong {
  display: block;
  font-size: .9rem;
  color: #0f172a;
  margin-bottom: 4px;
}

.refund-item p {
  margin: 0;
  font-size: .85rem;
  color: #475569;
  line-height: 1.55;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page-shell {
  background: #f8fafc;
}

.contact-hero {
  padding: 72px 0 52px;
  background: linear-gradient(180deg, #effcff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  margin: 16px 0 20px;
  color: #0f172a;
}

.contact-hero__sub {
  max-width: 560px;
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.contact-body {
  padding: 56px 0 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* Info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
  color: #2563eb;
  flex: 0 0 42px;
}

.contact-info-card h3 {
  font-size: .92rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.contact-info-card a {
  color: #2563eb;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-info-card p {
  color: #475569;
  font-size: .88rem;
  margin: 0;
  line-height: 1.5;
}

.contact-topics {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-top: 4px;
}

.contact-topics h3 {
  font-size: .92rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.contact-topics ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-topics li {
  position: relative;
  padding-left: 16px;
  font-size: .86rem;
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #06b6d4;
}

/* Form card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin: 0 0 8px;
}

.contact-form-intro {
  color: #475569;
  font-size: .92rem;
  margin-bottom: 28px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-form__field label {
  font-size: .82rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.contact-form__field label span {
  color: #ef4444;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: .92rem;
  font-family: inherit;
  color: #0f172a;
  background: #f9fafb;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  width: 100%;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #ffffff;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  height: 50px;
  font-size: .97rem;
}

/* Success state */
.contact-form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 20px 22px;
}

.contact-form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 1rem;
  font-weight: 800;
  flex: 0 0 36px;
}

.contact-form-success strong {
  display: block;
  color: #15803d;
  margin-bottom: 4px;
}

.contact-form-success p {
  font-size: .9rem;
  color: #166534;
  margin: 0;
}

/* Error state */
.contact-form-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  color: #be123c;
  margin-bottom: 20px;
}

/* ==========================================================================
   BLOG PAGE
   ========================================================================== */

.blog-page-shell {
  background: #f8fafc;
}

.blog-hero {
  padding: 72px 0 52px;
  background: linear-gradient(180deg, #effcff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  margin: 16px 0 16px;
  color: #0f172a;
}

.blog-hero__sub {
  max-width: 520px;
  font-size: 1.05rem;
  color: #475569;
  margin: 0 0 32px;
  line-height: 1.6;
}

/* Search bar */
.blog-search-form {
  max-width: 520px;
}

.blog-search-wrap {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: border-color .18s, box-shadow .18s;
}

.blog-search-wrap:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.blog-search-icon {
  color: #94a3b8;
  flex: 0 0 18px;
}

.blog-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: .95rem;
  color: #0f172a;
  font-family: inherit;
  min-width: 0;
}

.blog-search-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .88rem;
}

/* Category tabs */
.blog-tabs-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 64px;
  z-index: 20;
}

.blog-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.blog-tabs::-webkit-scrollbar { display: none; }

.blog-tab {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: #475569;
  background: transparent;
  transition: background .18s, color .18s;
}

.blog-tab:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.blog-tab--active {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: #ffffff !important;
}

/* Grid section */
.blog-grid-section {
  padding: 48px 0 80px;
}

.blog-results-info {
  font-size: .9rem;
  color: #64748b;
  margin-bottom: 24px;
}

.blog-results-info a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Featured post */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.blog-featured-card__thumb {
  display: block;
  overflow: hidden;
  min-height: 320px;
}

.blog-featured-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-featured-card:hover .blog-featured-card__thumb img {
  transform: scale(1.03);
}

.blog-featured-card__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-featured-card__body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.blog-featured-card__body h2 a {
  color: inherit;
}

.blog-featured-card__body h2 a:hover {
  color: #2563eb;
}

.blog-featured-card__body p {
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
}

.blog-read-btn {
  width: fit-content;
}

/* Category badge */
.blog-cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
  color: #2563eb;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .03em;
}

.blog-cat-badge:hover {
  background: linear-gradient(135deg, #bae6fd, #ddd6fe);
}

.blog-meta-date {
  font-size: .8rem;
  color: #94a3b8;
}

/* Post grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-post-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}

.blog-post-card__thumb {
  display: block;
  overflow: hidden;
  height: 190px;
}

.blog-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-post-card:hover .blog-post-card__thumb img {
  transform: scale(1.04);
}

.blog-post-card__thumb .thumb-fallback {
  height: 100%;
}

.blog-post-card__body {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-post-card__body h3 {
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.blog-post-card__body h3 a {
  color: inherit;
  transition: color .18s;
}

.blog-post-card__body h3 a:hover {
  color: #2563eb;
}

.blog-post-card__body p {
  color: #475569;
  font-size: .87rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.blog-post-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: .84rem;
  font-weight: 700;
  color: #2563eb;
  transition: gap .18s;
  gap: 4px;
}

.blog-post-card__cta:hover {
  gap: 8px;
}

/* Empty state */
.blog-empty-state {
  text-align: center;
  padding: 80px 0;
}

.blog-empty-state h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.blog-empty-state p {
  color: #475569;
}

.blog-empty-state a {
  color: #2563eb;
  text-decoration: underline;
}

/* Pagination */
.blog-pagination {
  margin-top: 48px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: background .18s, color .18s, border-color .18s;
}

.blog-pagination .page-numbers li a:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.blog-pagination .page-numbers li .current {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: #ffffff;
  border-color: transparent;
}

/* Blog bottom CTA */
.blog-cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #0f766e 0%, #0f172a 100%);
}

.blog-cta-inner {
  text-align: center;
}

.blog-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.blog-cta-inner p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #cffafe;
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   FRONT PAGE 2 HERO
   ========================================================================== */

.front-page-2 .hero-section--v2 {
  padding-top: 74px;
  padding-bottom: 54px;
  background: #edf1f9;
}

.front-page-2 .hero-grid--v2 {
  min-height: 0;
  align-items: center;
  gap: 44px;
}

.front-page-2 .hero-copy--v2 {
  max-width: 510px;
}

.front-page-2 .hero-title-text--v2 {
  margin-top: 8px;
  line-height: 1.06;
  font-size: clamp(2.1rem, 4.4vw, 3.55rem);
  letter-spacing: -0.04em;
}

.front-page-2 .hero-title-text--v2 span {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.front-page-2 .hero-description-text {
  max-width: 455px;
  color: #475569;
  font-size: .98rem;
  line-height: 1.55;
  margin-top: 12px;
}

.front-page-2 .hero-actions--v2 {
  margin-top: 18px;
}

.front-page-2 .hero-primary-button {
  min-width: 194px;
  min-height: 42px;
  padding: 11px 20px;
  font-size: .84rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 14px 28px rgba(99, 102, 241, 0.26);
}

.front-page-2 .hero-secondary-button {
  min-width: 112px;
  min-height: 42px;
  padding: 11px 20px;
  font-size: .84rem;
  border-color: #2563eb;
  color: #1e40af;
  background: rgba(255, 255, 255, 0.76);
}

.front-page-2 .hero-mini-stats {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(100, 116, 139, 0.22);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.front-page-2 .hero-mini-stat strong {
  display: block;
  color: #2563eb;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.front-page-2 .hero-mini-stat:nth-child(2) strong {
  color: #7c3aed;
}

.front-page-2 .hero-mini-stat span {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: .77rem;
}

.front-page-2 .hero-visual--v2 {
  position: relative;
}

.front-page-2 .visual-frame--v2 {
  min-height: 292px;
  border-radius: 14px;
}

.front-page-2 .hero-v2-media {
  position: relative;
  border-radius: 14px;
  border: 1px solid #dbe3f1;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  height: 100%;
  min-height: 268px;
}

.front-page-2 .hero-v2-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.front-page-2 .hero-v2-media__placeholder {
  width: 100%;
  height: 100%;
  min-height: 268px;
  background:
    radial-gradient(circle at 18% 30%, rgba(59, 130, 246, 0.28), transparent 42%),
    radial-gradient(circle at 80% 64%, rgba(124, 58, 237, 0.2), transparent 38%),
    linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.front-page-2 .floating-card--v2 {
  border-radius: 11px;
  padding: 10px 12px;
  min-width: 220px;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  border-color: #d9e2f1;
}

.front-page-2 .floating-card--v2 strong {
  font-size: .76rem;
}

.front-page-2 .floating-card--v2 p {
  font-size: .68rem;
  margin-top: 1px;
  color: #64748b;
  line-height: 1.25;
}

.front-page-2 .floating-card--v2 .icon-badge {
  width: 28px;
  height: 28px;
  font-size: .7rem;
}

.front-page-2 .floating-card--v2.card-top {
  top: -12px;
  left: -12px;
}

.front-page-2 .floating-card--v2.card-bottom {
  right: -16px;
  bottom: auto;
  top: 58%;
  left: auto;
  transform: translateY(-50%);
}

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

.site-footer {
  position: relative;
  padding-top: 58px;
  background: #0b1328;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: #0f6a6f;
}

.footer-grid {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-company-column {
  max-width: 330px;
}

.footer-tagline-text {
  margin-top: 14px;
  font-size: .95rem;
  line-height: 1.7;
}

.site-footer .menu {
  display: grid;
  gap: 10px;
}

.site-footer .menu a {
  font-weight: 500;
  color: #dbe7ff;
}

.site-footer .menu a:hover {
  color: #ffffff;
}

.footer-feature-list li {
  font-weight: 500;
  color: #e2e8f0;
}

.footer-contact-email {
  font-weight: 600;
}

.footer-legal-links {
  row-gap: 8px;
}

.footer-bottom-bar {
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE — New Pages
   ========================================================================== */

@media (max-width: 1024px) {
  .front-page-2 .hero-grid--v2 {
    gap: 28px;
  }

  .front-page-2 .hero-mini-stats {
    gap: 10px;
  }

  .front-page-2 .hero-mini-stat strong {
    font-size: 1.65rem;
  }

  .legal-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 32px;
  }

  .contact-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-teaser__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .front-page-2 .hero-section--v2 {
    padding-top: 62px;
    padding-bottom: 44px;
  }

  .front-page-2 .hero-grid--v2 {
    gap: 28px;
  }

  .front-page-2 .hero-mini-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .front-page-2 .hero-v2-media {
    min-height: 236px;
  }

  .front-page-2 .hero-v2-media__placeholder {
    min-height: 236px;
  }

  .front-page-2 .floating-card--v2 {
    position: static;
    margin-top: 10px;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-content {
    padding: 28px 22px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-card__thumb {
    min-height: 200px;
  }

  .blog-featured-card__body {
    padding: 24px 20px;
  }
}
