/*
Theme Name:   0049 Theme
Description:  Custom Astra child theme – Inter typography, navy blue palette, hero newsletter section.
Template:     astra
Version:      1.0.0
Text Domain:  0049-theme
*/

/* ══════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════ */
:root {
  --c-primary:      #1a2b5f;
  --c-primary-h:    #22397f;
  --c-primary-dk:   #111d40;
  --c-accent:       #4a90d9;
  --c-accent-h:     #3a7fc9;
  --c-white:        #ffffff;
  --c-bg:           #ffffff;
  --c-surface:      #f5f7fc;
  --c-text:         #2d3748;
  --c-muted:        #718096;
  --c-border:       #e2e8f0;

  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:         8px;
  --radius-lg:      16px;
  --radius-full:    9999px;

  --shadow:         0 4px 24px rgba(26,43,95,0.09);
  --shadow-lg:      0 10px 48px rgba(26,43,95,0.15);

  --ease:           0.22s ease;
  --max-w:          1200px;
  --hh:             72px; /* header height */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--c-accent); }

/* ══════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-primary);
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw,  3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.2em; }

/* ══════════════════════════════════════════════════════
   UTILITY / BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease),
              transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-h);
  border-color: var(--c-primary-h);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 16px rgba(26,43,95,0.05);
  transition: box-shadow var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--hh);
}

/* Branding */
.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-branding a,
.brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -0.04em;
  text-decoration: none;
  transition: color var(--ease);
}
.site-branding a:hover { color: var(--c-accent); }

/* ══════════════════════════════════════════════════════
   PRIMARY NAVIGATION
══════════════════════════════════════════════════════ */
.main-navigation {
  display: flex;
  align-items: center;
}

/* The <ul> rendered by wp_nav_menu */
.main-navigation .menu,
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-navigation li { position: relative; }

.main-navigation li a {
  display: block;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  border-radius: 6px;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}
.main-navigation li a:hover,
.main-navigation li.current-menu-item > a,
.main-navigation li.current-page-ancestor > a {
  color: var(--c-primary);
  background: rgba(26,43,95,0.07);
}


/* Drop-downs (if needed) */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  flex-direction: column;
  gap: 0;
  background: var(--c-white);
  min-width: 200px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 100;
}
.main-navigation li:hover > ul { display: flex; }
.main-navigation ul ul li a {
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.875rem;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--c-primary);
  transition: background var(--ease);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover { background: var(--c-surface); }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(160deg, #eef1f9 0%, #e4eaf6 50%, #dce5f5 100%);
  padding: 96px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::before {
  width: 480px; height: 480px;
  top: -140px; right: -80px;
  background: radial-gradient(circle, rgba(26,43,95,0.06) 0%, transparent 70%);
}
.hero-section::after {
  width: 560px; height: 560px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, rgba(74,144,217,0.08) 0%, transparent 70%);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(74,144,217,0.12);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--c-primary);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--c-accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── Newsletter form ── */
.hero-form { max-width: 480px; margin: 0 auto; }

.hero-form__row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.hero-form__row:focus-within {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(26,43,95,0.10), var(--shadow-lg);
}

.hero-form__row input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 22px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: transparent;
  color: var(--c-text);
  min-width: 0;
}
.hero-form__row input[type="email"]::placeholder { color: #a0aec0; }

.hero-form__row button {
  flex-shrink: 0;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-full);
  margin: 4px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.hero-form__row button:hover {
  background: var(--c-primary-h);
  transform: scale(1.02);
}

.hero-form__note {
  font-size: 0.77rem;
  color: #a0aec0;
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════
   CONTENT AREA (inner pages)
══════════════════════════════════════════════════════ */
.site-main { min-height: 60vh; }

.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 28px;
}

.entry-header { margin-bottom: 2rem; }

.entry-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.25em;
}

.entry-content { max-width: 760px; }
.entry-content p, .entry-content li { font-size: 1.05rem; line-height: 1.8; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); margin: 1.5em 0; }

/* ══════════════════════════════════════════════════════
   ASTRA OVERRIDES
══════════════════════════════════════════════════════ */
/* Force Inter across all Astra elements */
.ast-container,
.ast-row,
.ast-grid-common,
.main-header-bar,
.ast-footer-area { font-family: var(--font); }

/* Suppress Astra's own header (we render ours) */
.main-header-bar-wrap { display: none !important; }

/* Keep Astra container widths consistent */
.ast-container { max-width: var(--max-w) !important; }

/* Content padding compensation (Astra adds top padding for sticky header) */
.ast-header-break-point .main-header-bar { background: var(--c-white); }

/* WooCommerce base tweaks */
.woocommerce .button,
.woocommerce button.button { font-family: var(--font); }

/* Yoast breadcrumbs */
.yoast-breadcrumbs, #breadcrumbs {
  font-size: 0.85rem;
  color: var(--c-muted);
  padding: 16px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.yoast-breadcrumbs a { color: var(--c-muted); }
.yoast-breadcrumbs a:hover { color: var(--c-primary); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-primary);
  color: rgba(255,255,255,0.7);
  padding: 64px 28px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: -0.04em;
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand .footer-logo:hover { color: rgba(255,255,255,0.8); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--c-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-bottom a:hover { color: var(--c-white); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — tablet
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — mobile
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --hh: 64px; }

  /* Mobile nav */
  .menu-toggle {
    display: inline-flex;
  }

  .main-navigation .menu,
  .main-navigation ul {
    display: none;
    position: fixed;
    inset: var(--hh) 0 0 0;
    flex-direction: column;
    gap: 0;
    background: var(--c-white);
    padding: 20px 20px 40px;
    overflow-y: auto;
    z-index: 998;
    border-top: 1px solid var(--c-border);
    box-shadow: inset 0 4px 24px rgba(26,43,95,0.06);
    align-items: stretch;
  }
  .main-navigation .menu.is-open,
  .main-navigation ul.is-open {
    display: flex;
  }
  .main-navigation li a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--c-border);
  }
  .main-navigation li:last-child a { border-bottom: none; }


  /* Hero */
  .hero-section { padding: 64px 20px 52px; }
  .hero-title { letter-spacing: -0.025em; }

  /* Mobile form stack */
  .hero-form__row {
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 10px;
  }
  .hero-form__row input[type="email"] {
    width: 100%;
    border: 2px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    box-shadow: var(--shadow);
  }
  .hero-form__row button {
    width: 100%;
    border-radius: var(--radius);
    margin: 0;
    padding: 16px;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Content */
  .content-wrap { padding: 40px 20px; }
}

@media (max-width: 400px) {
  .hero-title { letter-spacing: -0.01em; }
}

/* ══════════════════════════════════════════════════════
   BLOG — index / archive / search
   Featured post (full-width) + 3-column card grid
══════════════════════════════════════════════════════ */

/* ── Outer wrapper ── */
.blog-main { background: var(--c-bg); }

main#main.blog-main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  float: none;
}

.blog-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* ── Shared post meta (date + category) ── */
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 10px;
}
.post-meta time { color: #999999; }
.post-meta__sep { color: #cccccc; }
.post-cat,
.post-cat:hover {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--ease);
}
.post-cat:hover { color: var(--c-accent); }

/* ── Shared "Read More" pill button ── */
.post-readmore {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--c-primary);
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-primary);
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease);
  margin-top: 4px;
}
.post-readmore:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   FEATURED POST
════════════════════════════════════════ */
.blog-featured { margin-bottom: 0; }

/* Full-width image — no border radius, no overflow clip */
.blog-featured__img {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  margin-bottom: 0;
}
.blog-featured__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  transition: transform 0.5s ease;
}
.blog-featured__img a:hover img { transform: scale(1.02); }

/* Centered text block */
.blog-featured__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 0 56px;
  text-align: center;
}
.blog-featured__body .post-meta {
  justify-content: center;
}

/* Large serif title */
.blog-featured__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-primary);
  margin-bottom: 18px;
}
.blog-featured__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}
.blog-featured__title a:hover { color: var(--c-accent); }

/* Excerpt — 2 lines max */
.blog-featured__excerpt {
  font-family: var(--font);
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Visual divider between featured and grid */
.blog-divider {
  width: 60px;
  height: 2px;
  background: var(--c-border);
  margin: 0 auto 72px;
}

/* ════════════════════════════════════════
   POST GRID — 3 columns
════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 72px;
}

/* Card — no shadow, no border */
/* Also neutralise Astra's injected ast-grid-common-col / ast-full-width on articles */
.blog-card,
.blog-grid .ast-grid-common-col,
.blog-grid .ast-full-width {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-bottom: 48px;
  width: auto;
  float: none;
  clear: none;
}

/* Image — no border radius */
.blog-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  min-height: 220px;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 0;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  transition: transform 0.45s ease;
}
.blog-card__img a:hover img { transform: scale(1.04); }

/* Card body — left aligned */
.blog-card__body { text-align: left; }

/* Serif title */
.blog-card__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--c-primary);
  margin-bottom: 14px;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}
.blog-card__title a:hover { color: var(--c-accent); }

/* Excerpt — 3 lines max */
.blog-card__excerpt {
  font-family: var(--font);
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Pagination ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--ease);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

/* ── Empty state ── */
.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: #555555;
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════════════
   BLOG RESPONSIVE
══════════════════════════════════════════════════════ */

/* Tablet — 2 columns */
@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
  .blog-featured__img,
  .blog-featured__img img { max-height: 420px; height: 420px; }
  .blog-wrap { padding: 56px 24px 80px; }
}

/* Mobile — 1 column */
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 56px 0;
  }
  .blog-featured__img,
  .blog-featured__img img { max-height: 280px; height: 280px; }
  .blog-featured__body { padding: 36px 0 44px; }
  .blog-featured__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .blog-divider { margin-bottom: 52px; }
  .blog-card__img { aspect-ratio: 16 / 9; }
  .blog-wrap { padding: 40px 20px 64px; }
}

/* ══════════════════════════════════════════════════════
   BLOG LAYOUT — single canonical override (end of file)
   Wins cascade without !important
══════════════════════════════════════════════════════ */
.blog-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main#main.blog-main,
.blog #primary,
.blog .content-area {
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    float: none;
    width: 100%;
}

/* ══════════════════════════════════════════════════
   HOME V2 — Hero
══════════════════════════════════════════════════ */

/* Section wrapper */
.home2-hero {
    background: #ffffff;
    padding: 100px 40px 60px 40px;
    text-align: center;
}

/* Centered inner column */
.home2-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}

/* Headline */
.home2-hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: normal;
    color: #1a2b5f;
    text-align: center;
    margin: 0 0 24px 0;
}

/* Subtitle */
.home2-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #57534e;
    text-align: center;
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

/* CTA button */
.home2-hero__cta {
    display: inline-block;
    background: #1a2b5f;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
}
.home2-hero__cta:hover {
    background: #142249;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Social proof row */
.home2-hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 14px;
    color: #666666;
}

/* Overlapping avatar stack */
.home2-proof__avatars {
    display: flex;
    align-items: center;
}
.home2-proof__avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #c7d2e8;
    border: 2px solid #ffffff;
    font-size: 12px;
    font-weight: 600;
    color: #1a2b5f;
    margin-left: -8px;
}
.home2-proof__avatars span:first-child {
    margin-left: 0;
}

/* Star rating */
.home2-proof__stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
}

.home2-proof__text {
    font-size: 14px;
    color: #666666;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .home2-hero {
        padding: 60px 24px;
    }
    .home2-hero__title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 20px;
    }
    .home2-hero__subtitle {
        font-size: 17px;
        line-height: 26px;
    }
}

/* ══════════════════════════════════════════════════
   NAV — pathpages.com design (end-of-file override)
══════════════════════════════════════════════════ */

/* Header */
.site-header,
#masthead {
    background: #fafaf9 !important;
    border-bottom: 1px solid #e7e5e4 !important;
    height: 65px !important;
}

/* All nav links */
.main-header-menu .menu-item > a,
.ast-primary-menu .menu-item > a {
    font-family: Inter, sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1c1917 !important;
    padding: 8px 16px !important;
    background: transparent !important;
    border-radius: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Hover state */
.main-header-menu .menu-item > a:hover,
.ast-primary-menu .menu-item > a:hover {
    color: #1a2b5f !important;
    background: transparent !important;
}

/* Active/current page - same as hover, no box */
.main-header-menu .current-menu-item > a,
.main-header-menu .current_page_item > a,
.ast-primary-menu .current-menu-item > a,
.ast-primary-menu .current_page_item > a {
    color: #1a2b5f !important;
    font-weight: 600 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* ConvertKit form — home2 hero */
.home2-hero__form {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

/* Force email + button on one line */
.home2-hero__form .formkit-fields {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    align-items: center;
}

.home2-hero__form .formkit-field {
    flex: 1 1 auto !important;
    margin: 0 !important;
}

.home2-hero__form .formkit-submit {
    flex: 0 0 auto !important;
    margin: 0 !important;
    white-space: nowrap;
}

/* Trust badge */
.home2-trust-badge {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Button default color */
.home2-hero__form .formkit-submit {
    background-color: #2964b3 !important;
}

/* Button hover - slightly darker, clean */
.home2-hero__form .formkit-submit:hover,
.home2-hero__form .formkit-submit:focus {
    background-color: #1a4a8a !important;
}

/* Title color */
.home2-hero__title {
    color: #2964b3 !important;
}

.site-footer,
#colophon {
    background-color: #0f2d5e !important;
}

.home2-hero__title {
    color: #0f2d5e !important;
}

/* ── Home2 About/Founder section ── */
.home2-about {
    background-color: #0a1f3d;
    padding: 100px 40px;
}

.home2-about__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.home2-about__welcome {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.home2-about__body {
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 24px;
}

.home2-about__body:last-child {
    margin-bottom: 0;
}

/* ── Home2 Blog + Products sections ── */
.home2-blog { background: #ffffff; padding: 100px 40px; }
.home2-products { background: #f8f9fb; padding: 100px 40px; }

.home2-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.home2-section__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #2964b3;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home2-section__title {
    font-family: Inter, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f2d5e;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.home2-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

/* Cards */
.home2-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: box-shadow 0.2s ease;
}

.home2-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.home2-products .home2-card { background: #fff; }

.home2-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.home2-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.home2-card__img-wrap:hover .home2-card__img { transform: scale(1.03); }

.home2-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.home2-card__meta {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.home2-card__title {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0f2d5e;
    line-height: 1.4;
    margin-bottom: 10px;
}

.home2-card__title a { color: inherit; text-decoration: none; }
.home2-card__title a:hover { color: #2964b3; }

.home2-card__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.home2-card__link {
    font-size: 14px;
    font-weight: 600;
    color: #2964b3;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.home2-card__link:hover { color: #0f2d5e; }

.home2-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.home2-card__price {
    font-size: 16px;
    font-weight: 700;
    color: #0f2d5e;
}

/* CTA button */
.home2-section__cta { text-align: center; }

.home2-section__btn {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #0f2d5e;
    color: #0f2d5e;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.home2-section__btn:hover {
    background: #0f2d5e;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .home2-section__grid { grid-template-columns: 1fr; }
    .home2-blog, .home2-products { padding: 60px 24px; }
}

/* ── Digital Products page ── */
.dp-hero {
    background: #0f2d5e;
    padding: 80px 40px 72px;
    text-align: center;
}

.dp-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.dp-hero__title {
    font-family: Inter, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 12px 0 20px;
}

.dp-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.dp-grid-section {
    background: #f8f9fb;
    padding: 80px 40px;
}

.dp-empty {
    text-align: center;
    color: #666;
    font-size: 16px;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .dp-hero { padding: 60px 24px; }
    .dp-hero__title { font-size: 28px; }
    .dp-grid-section { padding: 60px 24px; }
}

/* 4-column grid for home2 sections */
.home2-section__grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.home2-card__title {
    font-size: 16px !important;
}

.home2-card__body {
    padding: 16px !important;
}

@media (max-width: 1024px) {
    .home2-section__grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
    .home2-section__grid { grid-template-columns: 1fr !important; }
}

/* ── Home2 Newsletter section ── */
.home2-newsletter {
    background: #0f2d5e;
    padding: 100px 40px;
    text-align: center;
}

.home2-newsletter__inner {
    max-width: 640px;
    margin: 0 auto;
}

.home2-newsletter__logo {
    margin-bottom: 32px;
}

.home2-newsletter__logo img {
    height: 80px;
    width: auto;
    display: inline-block;
}

.home2-newsletter__title {
    font-family: Inter, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.home2-newsletter__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.home2-newsletter__form {
    max-width: 560px;
    margin: 0 auto;
}

.home2-newsletter__form .formkit-fields {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px;
}

.home2-newsletter__form .formkit-field {
    flex: 1 1 auto !important;
    margin: 0 !important;
}

.home2-newsletter__form .formkit-input {
    border-radius: 8px !important;
    border: none !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
}

.home2-newsletter__form .formkit-input::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

.home2-newsletter__form .formkit-submit {
    flex: 0 0 auto !important;
    margin: 0 !important;
    background-color: #2964b3 !important;
    border-radius: 8px !important;
    white-space: nowrap;
}

.home2-newsletter__form .formkit-submit:hover {
    background-color: #1a4a8a !important;
}

.home2-newsletter__note {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .home2-newsletter { padding: 60px 24px; }
    .home2-newsletter__form .formkit-fields { flex-wrap: wrap !important; }
    .home2-newsletter__title { font-size: 26px; }
}

/* ── Section colour overrides (alternating light/dark) ── */

/* Products — light */
.home2-products {
    background: #f8f9fb !important;
    padding: 100px 40px !important;
}

.home2-products .home2-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: none !important;
}

.home2-products .home2-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.14) !important;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Blog — dark */
.home2-blog {
    background: #0a1f3d !important;
    padding: 100px 40px !important;
}

.home2-blog .home2-section__label { color: rgba(255,255,255,0.5) !important; }
.home2-blog .home2-section__title { color: #ffffff !important; }

.home2-blog .home2-card {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.home2-blog .home2-card__meta    { color: rgba(255,255,255,0.4) !important; }
.home2-blog .home2-card__title   { color: #ffffff !important; }
.home2-blog .home2-card__title a { color: #ffffff !important; }
.home2-blog .home2-card__title a:hover { color: #7ab3f0 !important; }
.home2-blog .home2-card__excerpt { color: rgba(255,255,255,0.6) !important; }
.home2-blog .home2-card__link    { color: #7ab3f0 !important; }

.home2-blog .home2-section__btn {
    border-color: rgba(255,255,255,0.4) !important;
    color: #ffffff !important;
}

.home2-blog .home2-section__btn:hover {
    background: #ffffff !important;
    color: #0a1f3d !important;
}

/* Newsletter — light */
.home2-newsletter {
    background: #f8f9fb !important;
    padding: 100px 40px !important;
}

.home2-newsletter__title    { color: #0f2d5e !important; }
.home2-newsletter__subtitle { color: #555 !important; }

.home2-newsletter__form .formkit-input {
    background: #ffffff !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.home2-newsletter__form .formkit-input::placeholder { color: #999 !important; }
.home2-newsletter__note { color: #999 !important; }

/* Footer - same dark blue */
.site-footer,
#colophon {
    background-color: #0a1f3d !important;
}

/* Blog cards - same light style as product cards */
.home2-blog .home2-card {
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

.home2-blog .home2-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.14) !important;
    transform: translateY(-2px);
}

.home2-blog .home2-card__meta    { color: #999 !important; }
.home2-blog .home2-card__title   { color: #0f2d5e !important; }
.home2-blog .home2-card__title a { color: #0f2d5e !important; }
.home2-blog .home2-card__title a:hover { color: #2964b3 !important; }
.home2-blog .home2-card__excerpt { color: #666 !important; }
.home2-blog .home2-card__link    { color: #2964b3 !important; }

.home2-blog .home2-section__btn {
    border-color: rgba(255,255,255,0.4) !important;
    color: #ffffff !important;
}

.home2-blog .home2-section__btn:hover {
    background: #ffffff !important;
    color: #0a1f3d !important;
}

/* Site logo */
.site-branding a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.site-branding img {
    height: 50px;
    width: auto;
    display: block;
}



/* Hero city gif */
.home2-hero__cityline {
    margin-bottom: 12px;
}

.home2-hero__cityline img {
    max-width: 315px;
    width: 100%;
    height: auto;
    max-height: 98px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.home2-hero__subtitle {
    font-size: 18px !important;
}

/* About section — two-column redesign */
.home2-about__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 64px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

.home2-about__text {
    flex: 1 1 50%;
}

.home2-about__text .home2-section__label {
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    display: block;
}

.home2-about__heading {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.home2-about__body {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.home2-about__collage {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    align-items: start;
}

.home2-about__card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.home2-about__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home2-about__card--tall {
    grid-row: span 2;
    height: 380px;
}

.home2-about__card--short {
    height: 180px;
}

@media (max-width: 768px) {
    .home2-about__inner {
        flex-direction: column !important;
    }
    .home2-about__card--tall { height: 260px; }
    .home2-about__card--short { height: 140px; }
}

.home2-about__heading {
    font-size: 36px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

.custom-logo,
.site-logo img,
.ast-site-logo img {
    height: 70px !important;
    width: auto !important;
}

.home2-section__title {
    margin-bottom: 48px !important;
}

.custom-logo,
.site-logo img,
.ast-site-logo img {
    height: 90px !important;
    width: auto !important;
}

.site-branding {
    width: auto !important;
    height: auto !important;
}

.site-branding a img,
.site-branding img,
.wp-custom-logo .site-branding img {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
}

/* Override Astra's inline style */
.ast-site-logo-wrap img,
#masthead .site-branding img {
    height: 80px !important;
    width: auto !important;
}

.site-branding a img,
.site-branding img,
.wp-custom-logo .site-branding img,
.ast-site-logo-wrap img,
#masthead .site-branding img {
    height: 75px !important;
    width: auto !important;
    max-height: 75px !important;
}

.site-header,
#masthead {
    min-height: 90px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.header-inner,
.ast-container,
#masthead .header-inner {
    min-height: 90px !important;
    align-items: center !important;
}

.site-branding a img,
.site-branding img,
.wp-custom-logo .site-branding img,
.ast-site-logo-wrap img,
#masthead .site-branding img {
    height: 70px !important;
    width: auto !important;
    max-height: 70px !important;
}

.site-branding,
.ast-site-logo-wrap {
    display: flex !important;
    align-items: center !important;
}

#masthead .header-inner,
#masthead .ast-container {
    align-items: center !important;
    display: flex !important;
}

.home2-card p,
.home2-card__excerpt,
.home2-card__meta,
.home2-card__title {
    line-height: 1.5 !important;
}

.home2-about__body {
    line-height: 1.7 !important;
}

.home2-card__img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f2f5;
}

.home2-card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.3s ease;
    padding: 16px;
    box-sizing: border-box;
}

.home2-card__img-wrap:hover .home2-card__img {
    transform: scale(1.05);
}

.home2-loading {
    color: #999;
    font-size: 14px;
    padding: 40px;
}

/* Mobile header fix */
@media (max-width: 768px) {
    .site-header,
    #masthead {
        min-height: 70px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .site-branding a img,
    .site-branding img,
    .wp-custom-logo .site-branding img,
    .ast-site-logo-wrap img,
    #masthead .site-branding img {
        height: 55px !important;
        width: auto !important;
        max-height: 55px !important;
    }

    /* Hero form - stack on mobile */
    .home2-hero__form .formkit-fields {
        flex-wrap: wrap !important;
    }

    .home2-hero__form .formkit-field {
        flex: 1 0 100% !important;
        margin-bottom: 8px !important;
    }

    .home2-hero__form .formkit-submit {
        flex: 1 0 100% !important;
        width: 100% !important;
    }

    /* Newsletter form stack on mobile */
    .home2-newsletter__form .formkit-fields {
        flex-wrap: wrap !important;
    }

    .home2-newsletter__form .formkit-field {
        flex: 1 0 100% !important;
        margin-bottom: 8px !important;
    }

    .home2-newsletter__form .formkit-submit {
        flex: 1 0 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .home2-hero__subtitle {
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {
    /* Header layout - logo left, hamburger right */
    .header-inner,
    #masthead .header-inner {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 16px !important;
    }

    .site-branding,
    .ast-site-logo-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 !important;
    }

    /* Hamburger button to the right */
    #menu-toggle,
    .menu-toggle,
    .ast-mobile-menu-trigger {
        margin-left: auto !important;
        order: 99 !important;
    }

    /* Logo vertical centering */
    .site-branding a {
        display: flex !important;
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    .site-branding,
    .ast-site-logo-wrap,
    .site-branding a,
    .wp-custom-logo .site-branding {
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .site-branding img,
    .ast-site-logo-wrap img,
    #masthead .site-branding img {
        height: 55px !important;
        width: auto !important;
        max-height: 55px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .home2-hero__subtitle {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    /* Force logo visible */
    .ast-site-logo-wrap,
    .site-branding,
    .ast-logo-svg,
    .custom-logo-link,
    .custom-logo-link img,
    .site-branding img,
    header .ast-site-logo-wrap img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 55px !important;
        width: auto !important;
    }

    /* Header flex layout */
    .ast-primary-header-bar .ast-header-section-left,
    .main-header-bar .ast-header-section-left {
        display: flex !important;
        align-items: center !important;
        flex: 1 !important;
    }

    /* Hamburger on right */
    .ast-mobile-menu-trigger,
    .menu-toggle {
        display: flex !important;
        margin-left: auto !important;
    }
}

@media (max-width: 768px) {
    /* Smaller gif on mobile */
    .home2-hero__cityline img {
        max-width: 220px !important;
        max-height: 70px !important;
    }

    /* Less gap between gif and title */
    .home2-hero__cityline {
        margin-bottom: 6px !important;
    }

    /* Taller subscribe button */
    .home2-hero__form .formkit-submit span,
    .home2-hero__form .formkit-submit {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        font-size: 16px !important;
    }
}

/* Logo — CSS-controlled sizing (no inline style) */
.site-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 50px;
        width: auto;
    }
}

.site-logo-img {
    height: 70px !important;
    width: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 55px !important;
        width: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.site-branding {
    width: auto !important;
    min-width: 60px !important;
    height: auto !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
}

.site-logo-img {
    height: 55px !important;
    width: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: none !important;
    overflow: visible !important;
}

@media (max-width: 768px) {
    .site-branding {
        width: auto !important;
        min-width: 60px !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
    }
    .site-logo-img {
        height: 50px !important;
        width: auto !important;
        max-width: none !important;
        display: block !important;
    }
}

@media (max-width: 768px) {
    #masthead,
    .site-header {
        display: flex !important;
        align-items: center !important;
        min-height: 70px !important;
        padding: 0 16px !important;
    }

    .header-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-height: 70px !important;
        padding: 0 !important;
    }

    .site-branding {
        display: flex !important;
        align-items: center !important;
        align-self: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu-toggle {
        align-self: center !important;
        margin: 0 !important;
    }
}

/* Footer redesign */
.site-footer {
    background: #0a1f3d !important;
    padding: 60px 40px 40px !important;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
}

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

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

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

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0;
}

/* Legal pages */
.legal-hero {
    background: #0a1f3d;
    padding: 80px 40px 60px;
    text-align: center;
}

.legal-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.legal-hero__title {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal-hero__meta {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.legal-content {
    background: #ffffff;
    padding: 80px 40px;
}

.legal-content__inner {
    max-width: 760px;
    margin: 0 auto;
    font-family: Inter, sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content__inner h1,
.legal-content__inner h2,
.legal-content__inner h3 {
    font-family: Inter, sans-serif;
    color: #0f2d5e;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-content__inner h1 { font-size: 28px; }
.legal-content__inner h2 { font-size: 22px; }
.legal-content__inner h3 { font-size: 18px; }

.legal-content__inner p {
    margin-bottom: 20px;
    color: #444;
}

.legal-content__inner a {
    color: #2964b3;
    text-decoration: underline;
}

.legal-content__inner ul,
.legal-content__inner ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content__inner li {
    margin-bottom: 8px;
    color: #444;
}

.legal-content__inner strong {
    color: #0f2d5e;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-hero { padding: 60px 24px 40px; }
    .legal-hero__title { font-size: 28px; }
    .legal-content { padding: 48px 24px; }
}

/* Blog page */
.blog-page-hero {
    background: #0a1f3d;
    padding: 80px 40px 60px;
    text-align: center;
}

.blog-page-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.blog-page-hero .home2-section__label {
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 12px;
}

.blog-page-hero__title {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.blog-page-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

.blog-page-content {
    background: #f8f9fb;
    padding: 80px 40px;
}

.blog-page-content__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.blog-page-grid .home2-card__img-wrap {
    aspect-ratio: 16/9;
    height: auto;
    padding: 0;
    background: #e8eaed;
}

.blog-page-grid .home2-card__img {
    padding: 0;
    object-fit: cover;
    box-shadow: none;
}

/* Pagination */
.blog-page-pagination {
    text-align: center;
}

.blog-page-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-page-pagination .page-numbers {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0f2d5e;
    padding: 10px 16px;
    border: 2px solid #e0e4ea;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-page-pagination .page-numbers.current,
.blog-page-pagination .page-numbers:hover {
    background: #0f2d5e;
    color: #ffffff;
    border-color: #0f2d5e;
}

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

@media (max-width: 600px) {
    .blog-page-grid { grid-template-columns: 1fr; }
    .blog-page-hero { padding: 60px 24px 40px; }
    .blog-page-hero__title { font-size: 28px; }
    .blog-page-content { padding: 48px 24px; }
}

/* Links page */
.links-page-hero {
    background: #0a1f3d;
    padding: 80px 40px 60px;
    text-align: center;
}

.links-page-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.links-page-hero .home2-section__label {
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 12px;
}

.links-page-hero__title {
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.links-page-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

.links-page-content {
    background: #f8f9fb;
    padding: 80px 40px;
}

.links-page-content__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.links-group__title {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2964b3;
    margin-bottom: 20px;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 24px;
    text-decoration: none !important;
    border: 1px solid #eaedf0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.link-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #d0d8e8;
}

.link-card__icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.link-card__body {
    flex: 1;
}

.link-card__title {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0f2d5e;
    margin-bottom: 4px;
}

.link-card__desc {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.link-card__arrow {
    font-size: 18px;
    color: #2964b3;
    flex-shrink: 0;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.link-card:hover .link-card__arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .links-page-hero { padding: 60px 24px 40px; }
    .links-page-hero__title { font-size: 28px; }
    .links-page-content { padding: 48px 24px; }
}

/* About page */
.about-story {
    background: #0a1f3d;
    padding: 100px 40px;
}

.about-story__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-story__text {
    flex: 1 1 50%;
}

.about-story__text .home2-section__label {
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 12px;
}

.about-story__title {
    font-family: Inter, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.about-story__body {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story__collage {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Stats */
.about-stats {
    background: #2964b3;
    padding: 60px 40px;
}

.about-stats__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.about-stat__number {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat__label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* What we offer */
.about-offer {
    background: #f8f9fb;
    padding: 100px 40px;
    text-align: center;
}

.about-offer__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-offer__title {
    font-family: Inter, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f2d5e;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
}

.about-offer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-offer__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #eaedf0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    text-align: left;
}

.about-offer__icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-offer__card h3 {
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f2d5e;
    margin-bottom: 10px;
}

.about-offer__card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact page */
.contact-content {
    background: #f8f9fb;
    padding: 80px 40px;
}

.contact-content__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 24px;
    text-decoration: none !important;
    border: 1px solid #eaedf0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-card__icon {
    font-size: 28px;
    width: 48px;
    text-align: center;
    flex-shrink: 0;
}

.contact-card__body h3 {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0f2d5e;
    margin-bottom: 4px;
}

.contact-card__body p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.contact-form-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eaedf0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form-wrap__title {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0f2d5e;
    margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-story__inner { flex-direction: column; gap: 40px; }
    .about-stats__inner { grid-template-columns: repeat(2, 1fr); }
    .about-offer__grid { grid-template-columns: repeat(2, 1fr); }
    .about-story { padding: 60px 24px; }
    .about-stats { padding: 48px 24px; }
    .about-offer { padding: 60px 24px; }
    .contact-content { padding: 48px 24px; }
    .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
    .about-offer__grid { grid-template-columns: 1fr; }
    .about-stats__inner { grid-template-columns: repeat(2, 1fr); }
}

.home2-stats {
    background: #2964b3;
    padding: 48px 40px;
}

.home2-stats__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.home2-stat__number {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.home2-stat__label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .home2-stats { padding: 40px 24px; }
    .home2-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .home2-stat__number { font-size: 32px; }
}

/* About page - single photo */
.about-story__photo {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story__photo-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    width: 100%;
}

.about-story__photo-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-story__photo {
        flex: 0 0 auto;
        width: 100%;
    }
}

.about-stats {
    background: #2964b3 !important;
}

/* About story light background */
.about-story--light {
    background: #f8f9fb !important;
}

.about-story--light .about-story__title {
    color: #0f2d5e !important;
}

.about-story--light .about-story__body {
    color: #555 !important;
}

.about-story--light .home2-section__label {
    color: #2964b3 !important;
}

/* What we offer on home */
.home2-offer {
    background: #f8f9fb;
    padding: 100px 40px;
    text-align: center;
}

/* Stats banner - #2964b3 */
.home2-stats {
    background: #2964b3 !important;
}

/* Welcome to 0049 (home2-about) - light background */
.home2-about {
    background: #f8f9fb !important;
}

.home2-about .home2-about__heading {
    color: #0f2d5e !important;
}

.home2-about .home2-about__body {
    color: #555 !important;
}

.home2-about .home2-section__label {
    color: #2964b3 !important;
}

/* What we offer - dark blue */
.home2-offer {
    background: #0a1f3d !important;
}

.home2-offer .about-offer__title {
    color: #ffffff !important;
}

.home2-offer .home2-section__label {
    color: rgba(255,255,255,0.5) !important;
}

.home2-offer .about-offer__card {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.home2-offer .about-offer__card h3 {
    color: #ffffff !important;
}

.home2-offer .about-offer__card p {
    color: rgba(255,255,255,0.65) !important;
}

.about-offer__title {
    margin-bottom: 48px !important;
}

/* ── Digital Products grouped layout ─────────────── */
.dp-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.dp-group {
    margin-bottom: 64px;
}
.dp-group__inner {
    width: 100%;
}
.dp-group__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1f3d;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8eaf0;
}
.dp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) {
    .dp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .dp-grid { grid-template-columns: 1fr; }
    .dp-content { padding: 40px 16px; }
}

/* ── Digital Products filter bar ─────────────────── */
.dp-filter-bar {
    background: #ffffff;
    border-bottom: 1px solid #eaedf0;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.dp-filter-bar__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.dp-filter-btn {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #f0f2f5;
    border: none;
    border-radius: 100px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dp-filter-btn:hover {
    background: #e0e4ea;
    color: #0f2d5e;
}
.dp-filter-btn.active {
    background: #2964b3;
    color: #ffffff;
}
@media (max-width: 768px) {
    .dp-filter-bar { padding: 16px 24px; }
}

/* ── Fix: center filter bar ──────────────────────── */
.dp-filter-bar__inner {
    justify-content: center !important;
}

/* ── Links page: square social boxes ─────────────── */
.links-square-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.link-square {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 24px;
    text-decoration: none !important;
    border: 1px solid #eaedf0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    aspect-ratio: 1;
}
.link-square:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: #d0d8e8;
}
.link-square__icon {
    font-size: 36px;
    margin-bottom: 14px;
}
.link-square__title {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f2d5e;
    margin-bottom: 6px;
}
.link-square__desc {
    font-size: 13px;
    color: #888;
    margin: 0;
}
@media (max-width: 600px) {
    .links-square-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .link-square { padding: 20px 12px; }
    .link-square__icon { font-size: 28px; }
}

/* ── Links page: wide 4-col square grid ──────────── */
.links-square-grid--wide {
    grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 768px) {
    .links-square-grid--wide { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
    .links-square-grid--wide { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Contact page redesign ───────────────────────── */
.contact-content {
    background: #f8f9fb;
    padding: 80px 40px;
}
.contact-simple {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.contact-simple__text {
    font-family: Inter, sans-serif;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-simple__text a {
    color: #2964b3;
    text-decoration: underline;
}
.contact-social {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 40px 0;
}
.contact-social__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #0f2d5e !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    transition: color 0.2s ease;
}
.contact-social__icon:hover {
    color: #2964b3 !important;
}
.contact-social__icon svg {
    width: 32px;
    height: 32px;
}
.contact-simple__form {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eaedf0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: left;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .contact-content { padding: 48px 24px; }
    .contact-simple__form { padding: 24px; }
}

/* ── Contact page: two-column redesign ───────────── */
.contact-content {
    background: #f8f9fb;
    padding: 80px 40px;
}
.contact-two-col {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-two-col__left { padding-top: 8px; }
.contact-simple__text {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-simple__text a { color: #2964b3; text-decoration: underline; }
.contact-social { display: flex; gap: 28px; margin-top: 40px; }
.contact-social__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #0f2d5e !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    transition: color 0.2s ease;
}
.contact-social__icon:hover { color: #2964b3 !important; }
.contact-social__icon svg { width: 28px; height: 28px; }
.contact-two-col__right {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eaedf0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form__field { margin-bottom: 20px; }
.contact-form__field label {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f2d5e;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #333;
    background: #f8f9fb;
    border: 1px solid #e0e4ea;
    border-radius: 10px;
    padding: 12px 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    outline: none;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: #2964b3;
    background: #ffffff;
}
.contact-form__field textarea { resize: vertical; min-height: 140px; }
.contact-form__btn {
    width: 100%;
    background: #2964b3;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 8px;
}
.contact-form__btn:hover { background: #1a4a8a; }
.contact-success { text-align: center; padding: 40px 20px; }
.contact-success__icon { font-size: 48px; margin-bottom: 16px; }
.contact-success h3 { font-size: 22px; color: #0f2d5e; margin-bottom: 8px; }
.contact-success p { color: #666; font-size: 15px; }
.contact-error {
    background: #fff0f0;
    color: #c0392b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}
@media (max-width: 768px) {
    .contact-two-col { grid-template-columns: 1fr; gap: 40px; }
    .contact-content { padding: 48px 24px; }
    .contact-two-col__right { padding: 24px; }
}

/* ── Contact page v3: two-col grid layout ────────── */
.contact-wrap {
    background: #f8f9fb;
    padding: 80px 40px;
}
.contact-grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
}
.contact-grid__left { padding-top: 8px; }
.contact-grid__text {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}
.contact-grid__text a {
    color: #2964b3;
    font-weight: 600;
    text-decoration: none;
}
.contact-grid__text a:hover { text-decoration: underline; }
.contact-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.contact-social__icon {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f2d5e !important;
    text-decoration: none !important;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-social__icon:hover { color: #2964b3 !important; }
.contact-grid__right {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px;
    border: 1px solid #eaedf0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.cf-row { display: flex; gap: 16px; }
.cf-row--two .cf-field { flex: 1; }
.cf-field { margin-bottom: 20px; }
.cf-field label {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0f2d5e;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cf-field input,
.cf-field textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #333;
    background: #f8f9fb;
    border: 1.5px solid #e0e4ea;
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.cf-field input:focus,
.cf-field textarea:focus {
    border-color: #2964b3;
    background: #fff;
}
.cf-field textarea { resize: vertical; min-height: 140px; }
.cf-btn {
    width: 100%;
    background: #2964b3;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    letter-spacing: 0.01em;
}
.cf-btn:hover { background: #1a4a8a; }
.contact-success { text-align: center; padding: 48px 24px; }
.contact-success__icon { font-size: 48px; margin-bottom: 16px; }
.contact-success h3 { font-size: 22px; color: #0f2d5e; margin-bottom: 8px; font-family: Inter, sans-serif; }
.contact-success p { color: #666; font-size: 15px; font-family: Inter, sans-serif; }
.contact-error {
    background: #fff0f0;
    color: #c0392b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    font-family: Inter, sans-serif;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-wrap { padding: 48px 24px; }
    .contact-grid__right { padding: 28px 20px; }
    .cf-row--two { flex-direction: column; gap: 0; }
    .contact-social { flex-direction: row; }
}

/* ── Single blog post layout ─────────────────────── */
.single .site-main {
    max-width: 100% !important;
    padding: 0 !important;
}
.single .content-wrap {
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: 60px 40px !important;
}
.single .entry-content {
    max-width: 100% !important;
}
.single .ast-article-single,
.single #main,
.single .site-content {
    background: #ffffff !important;
}
.single .entry-header .ast-single-post-thumbnail {
    max-width: 760px;
    margin: 0 auto 40px;
}
@media (max-width: 768px) {
    .single .content-wrap { padding: 40px 24px !important; }
}

/* ── Blog post: tighter spacing ──────────────────── */
.single .content-wrap {
    padding: 48px 24px !important;
}
.single .entry-content p,
.single .entry-content li {
    line-height: 1.75 !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
}

/* ── Remove Astra 86px margins on single blog post ── */
.single .ast-article-single,
.single .ast-separate-container .ast-article-single {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.single #main .ast-article-single {
    padding: 0 !important;
}
.single .content-wrap {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 48px 32px !important;
}

/* ── Remove all Astra container margins on single posts ── */
.single .ast-separate-container #primary,
.single #primary {
    padding: 0 !important;
    margin: 0 !important;
}
.single .ast-container,
.single .ast-article-single {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}
.single .content-wrap {
    max-width: 780px !important;
    margin: 0 auto !important;
    padding: 48px 24px !important;
}

/* ── Contact social icons horizontal ────────────── */
.contact-grid__left .contact-social {
    flex-direction: row !important;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 32px;
}

/* ── Remove 116px Astra primary margin on single post ── */
.single #primary.entry-left-space,
.single #primary {
    margin: 0 !important;
    padding: 0 !important;
}
.single .ast-separate-container .ast-article-single,
.single .ast-separate-container #primary,
.single .ast-separate-container .site-main {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.single .content-wrap {
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 48px 24px !important;
}

/* ── Mobile fixes: stats, about, footer ─────────── */
@media (max-width: 768px) {
    .home2-stats__inner {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }
    .home2-stat__number {
        font-size: 20px !important;
    }
    .home2-stat__label {
        font-size: 9px !important;
        letter-spacing: 0 !important;
    }
    .home2-stats {
        padding: 32px 16px !important;
    }
    .home2-about__inner {
        flex-direction: column !important;
    }
    .home2-about__collage {
        width: 100% !important;
        margin-top: 32px !important;
    }
    .footer-links {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }
    .footer-links a {
        font-size: 12px !important;
    }
}

/* ── Blog single: meta and post navigation ───────── */
.single .entry-meta,
.single .entry-meta .posted-on,
.single .entry-meta .cat-links,
.single .entry-meta a,
.single .entry-meta span {
    font-family: Inter, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}
.post-navigation {
    border-top: 1px solid #eaedf0 !important;
    margin: 48px 0 0 !important;
    padding: 0 !important;
    background: none !important;
}
.post-navigation .nav-links {
    display: flex !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 0 !important;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1 !important;
    padding: 0 !important;
}
.post-navigation .nav-next {
    text-align: right !important;
    border-left: 1px solid #eaedf0 !important;
}
.post-navigation a {
    display: flex !important;
    flex-direction: column !important;
    padding: 28px 32px !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    height: 100% !important;
    box-sizing: border-box !important;
}
.post-navigation a:hover {
    background: #f8f9fb !important;
}
.post-navigation .nav-previous a {
    align-items: flex-start !important;
}
.post-navigation .nav-next a {
    align-items: flex-end !important;
}
.post-navigation .nav-subtitle {
    display: block !important;
    font-family: Inter, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #2964b3 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 8px !important;
}
.post-navigation .nav-title {
    font-family: Inter, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0f2d5e !important;
    line-height: 1.4 !important;
    display: block !important;
}
.post-navigation .meta-nav {
    display: none !important;
}

/* ── Custom fullscreen mobile menu overlay ───────── */
@media (max-width: 920px) {
    .ast-mobile-menu-trigger,
    button.menu-toggle {
        display: none !important;
    }
    .site-header .custom-mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px;
        margin-left: auto;
        z-index: 9999;
        position: relative;
    }
    .custom-mobile-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #0f2d5e;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    .custom-mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .custom-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .custom-mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    #custom-mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0a1f3d;
        z-index: 9998;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    #custom-mobile-nav.open {
        opacity: 1;
        pointer-events: all;
    }
    #custom-mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    #custom-mobile-nav ul li {
        margin-bottom: 8px;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    #custom-mobile-nav.open ul li {
        opacity: 1;
        transform: translateY(0);
    }
    #custom-mobile-nav.open ul li:nth-child(1) { transition-delay: 0.05s; }
    #custom-mobile-nav.open ul li:nth-child(2) { transition-delay: 0.1s; }
    #custom-mobile-nav.open ul li:nth-child(3) { transition-delay: 0.15s; }
    #custom-mobile-nav.open ul li:nth-child(4) { transition-delay: 0.2s; }
    #custom-mobile-nav.open ul li:nth-child(5) { transition-delay: 0.25s; }
    #custom-mobile-nav.open ul li:nth-child(6) { transition-delay: 0.3s; }
    #custom-mobile-nav ul li a {
        font-family: Inter, sans-serif !important;
        font-size: 28px !important;
        font-weight: 700 !important;
        color: rgba(255,255,255,0.9) !important;
        text-decoration: none !important;
        letter-spacing: -0.02em !important;
        padding: 12px 0 !important;
        display: block !important;
        transition: color 0.2s !important;
    }
    #custom-mobile-nav ul li a:hover { color: #ffffff !important; }
    #custom-mobile-nav .mobile-nav-close {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 32px;
        cursor: pointer;
        line-height: 1;
        opacity: 0.7;
        padding: 8px;
    }
    #custom-mobile-nav .mobile-nav-close:hover { opacity: 1; }
    #custom-mobile-nav .mobile-nav-footer {
        position: absolute;
        bottom: 48px;
        display: flex;
        gap: 24px;
    }
    #custom-mobile-nav .mobile-nav-footer a {
        color: rgba(255,255,255,0.5) !important;
        font-family: Inter, sans-serif !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
    }
}
@media (min-width: 921px) {
    .custom-mobile-toggle { display: none !important; }
    #custom-mobile-nav { display: none !important; }
}

/* ── Force custom mobile toggle, hide Astra's ───────── */
@media (max-width: 920px) {
    .ast-mobile-menu-trigger-minimal,
    .ast-mobile-menu-trigger,
    .menu-toggle,
    button.ast-mobile-menu-trigger-minimal {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    .custom-mobile-toggle {
        display: flex !important;
        position: fixed !important;
        top: 14px !important;
        right: 16px !important;
        z-index: 10000 !important;
        background: #ffffff !important;
        border: 1px solid #eaedf0 !important;
        border-radius: 8px !important;
        width: 44px !important;
        height: 44px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    .custom-mobile-toggle.active {
        background: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }
    .custom-mobile-toggle.active span {
        background: #ffffff !important;
    }
}

/* ── Mobile nav: full viewport fix ───────────────── */
#custom-mobile-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: #0a1f3d !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}
#custom-mobile-nav.open {
    opacity: 1 !important;
    pointer-events: all !important;
}
.ast-mobile-menu-trigger-minimal,
.ast-mobile-menu-trigger,
.main-header-menu-toggle,
button.menu-toggle {
    display: none !important;
    visibility: hidden !important;
}
.custom-mobile-toggle {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 100000 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    background: #ffffff !important;
    border: 1px solid #eaedf0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
    padding: 8px !important;
}
.custom-mobile-toggle.active {
    background: rgba(255,255,255,0.1) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.custom-mobile-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #0f2d5e !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
}
.custom-mobile-toggle.active span {
    background: #ffffff !important;
}
.custom-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
}
.custom-mobile-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}
.custom-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
}
@media (min-width: 921px) {
    .custom-mobile-toggle { display: none !important; }
    #custom-mobile-nav { display: none !important; }
}

/* ── Mobile nav: modern typography redesign ──────── */
#custom-mobile-nav ul li a {
    font-family: Inter, sans-serif !important;
    font-size: 32px !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    letter-spacing: -0.03em !important;
    padding: 10px 0 !important;
    display: block !important;
    transition: color 0.2s, transform 0.2s !important;
}
#custom-mobile-nav ul li a:hover {
    color: #ffffff !important;
    transform: translateX(6px) !important;
}
#custom-mobile-nav ul {
    padding: 0 48px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
#custom-mobile-nav ul li {
    margin-bottom: 4px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
#custom-mobile-nav ul li:last-child {
    border-bottom: none !important;
}
#custom-mobile-nav .mobile-nav-footer {
    bottom: 40px !important;
    gap: 20px !important;
}
#custom-mobile-nav .mobile-nav-footer a {
    color: rgba(255,255,255,0.3) !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
}
.custom-mobile-toggle.active {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.15) !important;
}

/* ── Mobile filter bar: scrollable and compact ───── */
@media (max-width: 768px) {
    .dp-filter-bar {
        padding: 12px 16px !important;
        position: sticky !important;
        top: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
        z-index: 100 !important;
    }
    .dp-filter-bar__inner {
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding-bottom: 4px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        justify-content: flex-start !important;
    }
    .dp-filter-bar__inner::-webkit-scrollbar {
        display: none !important;
    }
    .dp-filter-btn {
        font-size: 12px !important;
        padding: 8px 16px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border-radius: 100px !important;
    }
}

/* ── Mobile filter bar: horizontal scroll fix ───── */
@media (max-width: 768px) {
    .dp-filter-bar {
        padding: 0 !important;
        border-bottom: 1px solid #eaedf0 !important;
        box-shadow: none !important;
    }
    .dp-filter-bar__inner {
        padding: 12px 16px !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .dp-filter-btn {
        font-size: 13px !important;
        padding: 8px 18px !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
}

/* ── Newsletter form: taller fields ─────────────── */
.home2-newsletter .formkit-field input,
.home2-newsletter input[type=email],
.home2-newsletter .formkit-input {
    height: 56px !important;
    font-size: 16px !important;
    padding: 0 20px !important;
}
.home2-newsletter .formkit-submit,
.home2-newsletter button[type=submit],
.home2-newsletter .formkit-submit button {
    height: 56px !important;
    font-size: 16px !important;
    padding: 0 28px !important;
}
.home2-hero .formkit-field input,
.home2-hero input[type=email] {
    height: 56px !important;
    font-size: 16px !important;
}
.home2-hero .formkit-submit,
.home2-hero button[type=submit] {
    height: 56px !important;
    font-size: 16px !important;
}

/* ── Stats banner: dark navy ─────────────────────── */
.home2-stats {
    background: #0a1f3d !important;
}

/* ── Mobile: reduce hero top padding ─────────────── */
@media (max-width: 768px) {
    .home2-hero {
        padding-top: 24px !important;
    }
}

/* ── Hero form: email+button row, checkbox below ─── */
.home2-hero .formkit-form[data-uid=9868ebf65a] .seva-fields {
    flex-direction: column !important;
    flex-wrap: wrap !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-fields {
    flex-direction: column !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-field:first-child {
    flex: 1 1 auto !important;
    order: 1 !important;
    margin: 0 0 8px 0 !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-submit {
    order: 2 !important;
    margin: 0 0 8px 0 !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-field:nth-child(2) {
    order: 3 !important;
    flex: 1 0 100% !important;
    margin: 0 !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .seva-fields.formkit-fields {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 8px !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-field:first-child {
    flex: 1 1 200px !important;
    min-width: 0 !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-submit {
    flex: 0 0 auto !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-field:nth-child(2) {
    flex: 1 0 100% !important;
}
.home2-hero .formkit-checkbox + label {
    font-size: 13px !important;
    color: #666 !important;
}

/* ── Hero form: email + button side by side ──────── */
.home2-hero .formkit-form[data-uid=9868ebf65a] {
    max-width: 600px !important;
    margin: 0 auto !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .seva-fields.formkit-fields {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    align-items: stretch !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-field {
    flex: 1 1 auto !important;
    margin: 0 !important;
    min-width: 0 !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-submit {
    flex: 0 0 auto !important;
    margin: 0 !important;
    white-space: nowrap !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-input {
    height: 52px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    padding: 0 16px !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-submit > span {
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}
.home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-submit {
    border-radius: 10px !important;
    background-color: #2964b3 !important;
}
@media (max-width: 600px) {
    .home2-hero .formkit-form[data-uid=9868ebf65a] .seva-fields.formkit-fields {
        flex-direction: column !important;
    }
    .home2-hero .formkit-form[data-uid=9868ebf65a] .formkit-submit {
        width: 100% !important;
    }
}

/* ── Hide ConvertKit checkbox in hero form ───────── */
.home2-hero .formkit-form [data-group="checkboxes"],
.home2-hero .formkit-form [data-group="checkbox"],
.home2-hero .formkit-form .formkit-field:has([data-group="checkboxes"]),
.home2-hero .formkit-form .formkit-9207 {
    display: none !important;
}

@media (max-width: 768px) {
    .links-follow-grid .link-square img,
    .links-follow-grid .link-square svg {
        width: 36px !important;
        height: 36px !important;
    }

    .links-follow-grid .link-square {
        padding: 8px !important;
    }

    .links-follow-grid .link-square span {
        font-size: 10px !important;
    }
}

@media (max-width: 768px) {
    .links-follow-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 0 8px !important;
    }

    .links-follow-grid .link-square {
        padding: 12px 4px !important;
        min-width: 0 !important;
    }

    .links-follow-grid .link-square img,
    .links-follow-grid .link-square svg {
        width: 28px !important;
        height: 28px !important;
    }

    .links-follow-grid .link-square .link-name {
        font-size: 10px !important;
    }

    .links-follow-grid .link-square .link-handle {
        font-size: 9px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

@media (max-width: 768px) {
    .links-group .links-square-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    .links-group .links-square-grid .link-square {
        width: auto !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        padding: 10px 4px !important;
        min-width: 0 !important;
    }

    .links-group .links-square-grid .link-square .link-square__icon img,
    .links-group .links-square-grid .link-square .link-square__icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    .links-group .links-square-grid .link-square h3 {
        font-size: 11px !important;
    }

    .links-group .links-square-grid .link-square p {
        font-size: 9px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

/* WPForms - Modern Elegant Styling */
.contact-grid__right .wpforms-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 32px rgba(15, 45, 94, 0.08);
    border: 1px solid #eaedf0;
}

.contact-grid__right .wpforms-field {
    margin-bottom: 20px !important;
}

.contact-grid__right .wpforms-field label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #0f2d5e !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.contact-grid__right .wpforms-field input,
.contact-grid__right .wpforms-field textarea,
.contact-grid__right .wpforms-field select {
    width: 100% !important;
    border: 1.5px solid #e0e6ef !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    color: #1a1a2e !important;
    background: #f8f9fb !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    outline: none !important;
    font-family: inherit !important;
}

.contact-grid__right .wpforms-field input:focus,
.contact-grid__right .wpforms-field textarea:focus {
    border-color: #2964b3 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(41, 100, 179, 0.1) !important;
}

.contact-grid__right .wpforms-field textarea {
    min-height: 140px !important;
    resize: vertical !important;
}

.contact-grid__right .wpforms-field input::placeholder,
.contact-grid__right .wpforms-field textarea::placeholder {
    color: #aab4c4 !important;
}

.contact-grid__right .wpforms-submit-container {
    margin-top: 8px !important;
}

.contact-grid__right .wpforms-submit {
    width: 100% !important;
    background: #2964b3 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 16px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.1s !important;
    letter-spacing: 0.02em !important;
    font-family: inherit !important;
}

.contact-grid__right .wpforms-submit:hover {
    background: #1a4a8a !important;
    transform: translateY(-1px) !important;
}

.contact-grid__right .wpforms-confirmation-container-full {
    background: #d3fbeb !important;
    border: 1px solid #10bf7a !important;
    border-radius: 10px !important;
    padding: 20px !important;
    color: #0c905c !important;
    font-weight: 500 !important;
}

.contact-grid__right .wpforms-error-container,
.contact-grid__right .wpforms-field .wpforms-error {
    color: #e53e3e !important;
    font-size: 12px !important;
    margin-top: 4px !important;
}

.contact-grid__right .wpforms-field input.wpforms-error,
.contact-grid__right .wpforms-field textarea.wpforms-error {
    border-color: #e53e3e !important;
    background: #fff5f5 !important;
}

/* Required asterisk */
.contact-grid__right .wpforms-required-label {
    color: #e53e3e !important;
}

/* WPForms - compact spacing */
.contact-grid__right .wpforms-container {
    padding: 28px !important;
}

.contact-grid__right .wpforms-field {
    margin-bottom: 12px !important;
}

.contact-grid__right .wpforms-field label {
    margin-bottom: 5px !important;
    font-size: 11px !important;
}

.contact-grid__right .wpforms-field input {
    padding: 10px 14px !important;
    font-size: 14px !important;
}

.contact-grid__right .wpforms-field textarea {
    min-height: 100px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
}

.contact-grid__right .wpforms-submit-container {
    margin-top: 4px !important;
}

.contact-grid__right .wpforms-submit {
    padding: 12px 32px !important;
}

/* WPForms - reduce gap between fields */
.contact-grid__right .wpforms-field {
    margin-bottom: 8px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.contact-grid__right .wpforms-form .wpforms-field {
    margin-top: 0 !important;
}

/* WPForms - ConvertKit style */
.contact-grid__right .wpforms-container {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.contact-grid__right .wpforms-field {
    margin-bottom: 10px !important;
    padding: 0 !important;
}

.contact-grid__right .wpforms-field label {
    display: none !important;
}

.contact-grid__right .wpforms-field input,
.contact-grid__right .wpforms-field textarea {
    width: 100% !important;
    border: 1px solid #e3e3e3 !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: #000000 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    font-family: inherit !important;
    transition: border-color 0.2s !important;
}

.contact-grid__right .wpforms-field input:focus,
.contact-grid__right .wpforms-field textarea:focus {
    border-color: #1677be !important;
    box-shadow: none !important;
    background: #ffffff !important;
}

.contact-grid__right .wpforms-field input::placeholder,
.contact-grid__right .wpforms-field textarea::placeholder {
    color: rgba(0,0,0,0.5) !important;
}

.contact-grid__right .wpforms-field textarea {
    min-height: 110px !important;
    resize: vertical !important;
}

.contact-grid__right .wpforms-submit-container {
    margin-top: 10px !important;
    padding: 0 !important;
}

.contact-grid__right .wpforms-submit {
    width: 100% !important;
    background-color: #2964b3 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    transition: background 0.2s !important;
}

.contact-grid__right .wpforms-submit:hover {
    background-color: #1a4a8a !important;
}

.contact-grid__right .wpforms-required-label {
    display: none !important;
}

/* WPForms - remove white card, integrate directly on page */
.contact-grid__right .wpforms-container {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Reduce textarea height */
.contact-grid__right .wpforms-field textarea {
    min-height: 100px !important;
}

/* WPForms - restore labels and fix container */
.contact-grid__right .wpforms-field label.wpforms-field-label {
    display: block !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #0f2d5e !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 6px !important;
}

/* Remove all padding from wpforms wrapper divs */
.contact-grid__right .wpforms-container-full,
.contact-grid__right .wpforms-container {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-grid__right .wpforms-form {
    padding: 0 !important;
    background: transparent !important;
}

/* WPForms - themed thank you message */
.contact-grid__right .wpforms-confirmation-container-full,
.contact-grid__right .wpforms-confirmation-container {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
}

.contact-grid__right .wpforms-confirmation-container-full p,
.contact-grid__right .wpforms-confirmation-container p {
    font-size: 22px !important;
    color: #0f2d5e !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.contact-grid__right .wpforms-confirmation-container-full::before,
.contact-grid__right .wpforms-confirmation-container::before {
    content: ✓ !important;
    display: block !important;
    font-size: 40px !important;
    color: #2964b3 !important;
    margin-bottom: 16px !important;
}

/* ===== PRODUCT LANDING PAGE ===== */
.lp-wrap { font-family: inherit; }
.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.lp-container--narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }

.lp-section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #2964b3; margin: 0 0 12px; }
.lp-section-title { font-size: 36px; font-weight: 700; color: #0f2d5e; margin: 0 0 16px; line-height: 1.2; }
.lp-section-sub { font-size: 17px; color: #4a5568; line-height: 1.7; margin: 0 0 40px; }

.lp-btn { display: inline-block; padding: 14px 32px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.lp-btn--primary { background: #2964b3; color: #fff; }
.lp-btn--primary:hover { background: #1a4a8a; transform: translateY(-2px); color: #fff; }
.lp-btn--outline { background: transparent; color: #2964b3; border: 2px solid #2964b3; }
.lp-btn--outline:hover { background: #2964b3; color: #fff; }
.lp-btn--large { padding: 18px 48px; font-size: 18px; }

/* Hero */
.lp-hero { padding: 80px 32px 60px; text-align: center; background: #f8f9fb; }
.lp-hero__inner { max-width: 760px; margin: 0 auto; }
.lp-hero__stars { color: #f5b50a; font-size: 22px; letter-spacing: 2px; margin-bottom: 8px; }
.lp-hero__stars span { color: #888; font-size: 14px; margin-left: 8px; letter-spacing: 0; }
.lp-hero__label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: #2964b3; text-transform: uppercase; margin: 0 0 12px; }
.lp-hero__title { font-size: 48px; font-weight: 800; color: #0f2d5e; line-height: 1.15; margin: 0 0 20px; }
.lp-hero__sub { font-size: 18px; color: #4a5568; line-height: 1.7; margin: 0 0 32px; }
.lp-hero__img { position: relative; display: inline-block; margin-top: 40px; max-width: 500px; }
.lp-hero__img img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(15,45,94,0.15); }
.lp-badge { position: absolute; top: 16px; right: 16px; background: #0f2d5e; color: #fff; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 6px; letter-spacing: 0.05em; }

/* Problem */
.lp-problem { padding: 80px 32px; background: #0a1f3d; color: #fff; }
.lp-problem__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lp-problem__img img { width: 100%; border-radius: 12px; }
.lp-problem__text h2 { font-size: 36px; font-weight: 700; color: #fff; margin: 0 0 20px; line-height: 1.2; }
.lp-problem__text p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.lp-reject-list { list-style: none; padding: 0; margin: 0; }
.lp-reject-list li { color: rgba(255,255,255,0.85); font-size: 15px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

/* Intro */
.lp-intro { padding: 80px 32px; text-align: center; }
.lp-annotated-img { margin-top: 40px; }
.lp-annotated-img img { max-width: 100%; border-radius: 12px; box-shadow: 0 12px 40px rgba(15,45,94,0.1); }

/* What's included */
.lp-whatsincluded { padding: 80px 32px; background: #f8f9fb; text-align: center; }
.lp-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; text-align: left; }
.lp-feature-card { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #eaedf0; }
.lp-feature-icon { font-size: 28px; margin-bottom: 12px; }
.lp-feature-card h3 { font-size: 16px; font-weight: 700; color: #0f2d5e; margin: 0 0 8px; }
.lp-feature-card p { font-size: 14px; color: #4a5568; line-height: 1.6; margin: 0; }
.lp-included-img img { max-width: 600px; width: 100%; border-radius: 12px; box-shadow: 0 12px 40px rgba(15,45,94,0.1); }

/* Reviews */
.lp-reviews { padding: 80px 32px; text-align: center; }
.zz49-summary { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 32px; }
.zz49-summary .zz49-stars { color: #f5b50a; font-size: 22px; letter-spacing: 2px; }
.zz49-count { color: #888; font-size: 14px; }
.zz49-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.zz49-card { background: #fff; border-radius: 12px; border: 1px solid #eaedf0; padding: 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.zz49-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.zz49-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #2964b3, #1a4a8a); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.zz49-name { font-weight: 700; color: #0f2d5e; font-size: 14px; }
.zz49-stars { color: #f5b50a; font-size: 13px; }
.zz49-body { font-size: 14px; color: #555; line-height: 1.6; }
.zz49-date { font-size: 12px; color: #999; margin-top: 8px; }
.zz49-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.zz49-pagination button { border: 1px solid #e0e6ef; background: #fff; color: #2964b3; font-size: 14px; cursor: pointer; padding: 6px 12px; border-radius: 6px; }
.zz49-pagination button.active { background: #2964b3; color: #fff; border-color: #2964b3; }

/* FAQ */
.lp-faq { padding: 80px 32px; background: #f8f9fb; }
.lp-faq .lp-section-label, .lp-faq .lp-section-title { text-align: center; }
.lp-faq-list { margin-top: 32px; }
.lp-faq-item { border-bottom: 1px solid #eaedf0; padding: 0; }
.lp-faq-item summary { font-size: 16px; font-weight: 600; color: #0f2d5e; padding: 20px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: "+"; font-size: 20px; color: #2964b3; font-weight: 300; }
.lp-faq-item[open] summary::after { content: "\2212"; }
.lp-faq-item p { font-size: 15px; color: #4a5568; line-height: 1.7; padding: 0 0 20px; margin: 0; }

/* CTA */
.lp-cta { padding: 80px 32px; background: #0f2d5e; text-align: center; }
.lp-cta .lp-section-label { color: #7fb3f5; }
.lp-cta__title { font-size: 42px; font-weight: 800; color: #fff; margin: 0 0 16px; }
.lp-cta__sub { font-size: 18px; color: rgba(255,255,255,0.8); margin: 0 0 32px; line-height: 1.7; }
.lp-cta__note { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.lp-cta .lp-btn--primary { background: #fff; color: #0f2d5e; font-size: 18px; padding: 18px 48px; }
.lp-cta .lp-btn--primary:hover { background: #f0f4ff; transform: translateY(-2px); }

/* Upsell */
.lp-upsell { padding: 60px 32px; text-align: center; }

/* Mobile */
@media (max-width: 768px) {
  .lp-hero__title { font-size: 32px; }
  .lp-section-title { font-size: 26px; }
  .lp-problem__grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-features-grid { grid-template-columns: 1fr 1fr; }
  .zz49-grid { grid-template-columns: 1fr; }
  .lp-cta__title { font-size: 28px; }
}
@media (max-width: 480px) {
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-hero { padding: 48px 20px 40px; }
}

/* ===== PATHPAGES STYLE UPDATES ===== */

/* Sticky nav */
.lp-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaedf0;
    padding: 0 32px;
}
.lp-sticky-nav__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 52px;
}
.lp-sticky-nav a {
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.lp-sticky-nav a:hover { color: #0f2d5e; }
.lp-sticky-nav__cta {
    margin-left: auto !important;
    background: #0f2d5e !important;
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}
.lp-sticky-nav__cta:hover { background: #2964b3 !important; color: #fff !important; }

/* Hero pathpages style */
.lp-hero {
    padding: 80px 32px 60px;
    text-align: center;
    background: #ffffff;
}
.lp-hero__offer {
    font-size: 13px;
    color: #888;
    margin: 12px 0 20px;
}
.lp-hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}
.lp-hero__stars { color: #f5b50a; font-size: 18px; letter-spacing: 1px; }
.lp-hero__rating-text { font-size: 14px; color: #555; font-weight: 600; }
.lp-hero__rating-text span { font-weight: 400; color: #888; }

/* Pricing card */
.lp-pricing { padding: 80px 32px; background: #f8f9fb; }
.lp-price-card {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 2px solid #0f2d5e;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15,45,94,0.12);
    position: relative;
}
.lp-price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f2d5e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.lp-price-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #0f2d5e;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lp-price-card__price { margin-bottom: 28px; }
.lp-price-card__old {
    font-size: 22px;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 8px;
}
.lp-price-card__current {
    font-size: 52px;
    font-weight: 800;
    color: #0f2d5e;
}
.lp-price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    border-top: 1px solid #eaedf0;
    padding-top: 20px;
}
.lp-price-card__features li {
    font-size: 15px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.lp-price-card__note {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
    margin-bottom: 12px;
}
.lp-price-card__rating {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* FAQ pathpages style */
.lp-faq { padding: 80px 32px; background: #fff; }
.lp-faq-item {
    border: 1px solid #eaedf0 !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    padding: 0 20px !important;
    overflow: hidden;
}
.lp-faq-item summary {
    padding: 18px 0 !important;
    font-size: 15px !important;
}
.lp-faq-item p {
    padding: 0 0 18px !important;
    color: #555 !important;
}

@media (max-width: 768px) {
    .lp-sticky-nav { display: none; }
    .lp-price-card { padding: 28px 20px; }
    .lp-price-card__current { font-size: 40px; }
}

/* ===== WHATS INCLUDED - two column layout ===== */
.lp-included-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp-included-left .lp-section-sub { margin-bottom: 24px; }
.lp-included-left .lp-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-bottom: 28px !important;
}
.lp-included-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15,45,94,0.12);
}
.lp-whatsincluded { padding: 80px 32px; background: #f8f9fb; }

/* ===== REVIEWS - pathpages style ===== */
.lp-reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.zz49-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}
.zz49-card {
    border-radius: 16px !important;
    padding: 24px !important;
    border: 1px solid #eaedf0 !important;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
}
.zz49-card:hover {
    box-shadow: 0 8px 28px rgba(15,45,94,0.1) !important;
    transform: translateY(-2px) !important;
}
.zz49-avatar {
    background: linear-gradient(135deg, #2964b3, #0f2d5e) !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 15px !important;
}
.zz49-name { font-size: 15px !important; font-weight: 700 !important; color: #0f2d5e !important; }
.zz49-body { font-size: 14px !important; color: #4a5568 !important; line-height: 1.65 !important; }
.zz49-stars { font-size: 14px !important; }
.zz49-date { font-size: 12px !important; color: #aaa !important; }

@media (max-width: 900px) {
    .lp-included-layout { grid-template-columns: 1fr !important; }
    .lp-included-right { display: none; }
    .zz49-grid { grid-template-columns: 1fr !important; }
}

/* Hero image */
.lp-hero__img {
    margin-top: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.lp-hero__img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(15,45,94,0.15);
}

/* Bundle image - no background/shadow */
.lp-included-right img {
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

/* Annotated image - no background */
.lp-annotated-img img {
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

/* What You'll Get - dark background */
.lp-whatsincluded {
    background: #0a1f3d !important;
    padding: 80px 32px !important;
}

/* Included list */
.lp-included-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.lp-included-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-included-list li:last-child { border-bottom: none; }
.lp-included-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.lp-included-list strong {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}
.lp-included-list p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}

/* FAQ - dark background */
.lp-faq {
    background: #0a1f3d !important;
    padding: 80px 32px !important;
}
.lp-faq .lp-section-label { color: #7fb3f5 !important; }
.lp-faq .lp-section-title { color: #fff !important; }
.lp-faq-item {
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: rgba(255,255,255,0.04) !important;
}
.lp-faq-item summary {
    color: #fff !important;
}
.lp-faq-item summary::after { color: #7fb3f5 !important; }
.lp-faq-item p { color: rgba(255,255,255,0.7) !important; }

/* Testimonial cards - add shadow */
.zz49-card {
    box-shadow: 0 4px 20px rgba(15,45,94,0.08) !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
}
.zz49-card:hover {
    box-shadow: 0 12px 32px rgba(15,45,94,0.14) !important;
    transform: translateY(-2px) !important;
}

/* Remove icons from included list */
.lp-included-icon { display: none !important; }
.lp-included-list li { gap: 0 !important; }

/* Remove date from testimonials */
.zz49-date { display: none !important; }
