/* =============================================================
   Inboxwright — ibw-main.css
   Brand: calm efficiency, off-white canvas with focused ink
   ============================================================= */

/* --- Custom Properties ---------------------------------------- */
:root {
  --ibw-ink:           #1A2235;
  --ibw-ink-alt:       #243049;
  --ibw-blue:          #3D7FD4;
  --ibw-blue-aa:       #2460A7;
  --ibw-blue-on-dark:  #7ABAFF;
  --ibw-fg-primary:    #1A2235;
  --ibw-fg-secondary:  #4A5568;
  --ibw-fg-dark-pri:   #F0F4FA;
  --ibw-fg-dark-sec:   #94A3B8;
  --ibw-bg-light:      #F7F8FA;
  --ibw-bg-white:      #FFFFFF;
  --ibw-bg-cream:      #F4F1EE;
  --ibw-bg-dark:       #1A2235;
  --ibw-bg-dark-alt:   #243049;
  --ibw-radius-sm:     6px;
  --ibw-radius-md:     8px;
  --ibw-radius-lg:     12px;
  --ibw-shadow-sm:     0 1px 3px rgba(26,34,53,0.08), 0 1px 2px rgba(26,34,53,0.04);
  --ibw-shadow-md:     0 4px 16px rgba(26,34,53,0.10), 0 2px 6px rgba(26,34,53,0.06);
  --ibw-shadow-lg:     0 12px 40px rgba(26,34,53,0.13), 0 4px 12px rgba(26,34,53,0.08);
  --ibw-container:     1140px;
  --ibw-nav-h:         64px;
  --ibw-font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ibw-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ibw-fg-primary);
  background: var(--ibw-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.ibw-page--light-top { background: var(--ibw-bg-white); }
body.ibw-page--dark-top  { background: var(--ibw-bg-dark); }

img { display: block; max-width: 100%; }
a   { color: var(--ibw-blue-aa); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Typography ----------------------------------------------- */
h1, h2, h3, h4, h5 { color: var(--ibw-fg-primary); line-height: 1.18; }
h1 { font-size: 56px; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: 36px; font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; }
p  { color: var(--ibw-fg-secondary); }

.ibw-eyebrow {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* --- Layout Utils --------------------------------------------- */
.ibw-container {
  max-width: var(--ibw-container);
  margin: 0 auto;
  padding: 0 24px;
}
.ibw-section { padding: 96px 0; }
.ibw-section--sm { padding: 64px 0; }
@media (max-width: 768px) {
  .ibw-section { padding: 64px 0; }
  .ibw-section--sm { padding: 48px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
}

/* --- Background Section Variants ------------------------------ */
.ibw-section--dark     { background: var(--ibw-bg-dark); }
.ibw-section--dark-alt { background: var(--ibw-bg-dark-alt); }
.ibw-section--light    { background: var(--ibw-bg-light); }
.ibw-section--white    { background: var(--ibw-bg-white); }
.ibw-section--cream    { background: var(--ibw-bg-cream); }

/* text on dark */
.ibw-section--dark h1,
.ibw-section--dark h2,
.ibw-section--dark h3,
.ibw-section--dark h4 { color: var(--ibw-fg-dark-pri); }
.ibw-section--dark p,
.ibw-section--dark li { color: var(--ibw-fg-dark-sec); }
.ibw-section--dark .ibw-eyebrow { color: var(--ibw-blue-on-dark); }

/* text on light/cream/white */
.ibw-section--light h2,
.ibw-section--white h2,
.ibw-section--cream h2 { color: var(--ibw-fg-primary); }
.ibw-section--light .ibw-eyebrow { color: var(--ibw-blue-aa); }
.ibw-section--cream .ibw-eyebrow { color: var(--ibw-blue-aa); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.ibw-nav {
  position: sticky;
  top: 0;
  height: var(--ibw-nav-h);
  z-index: 100;
  transition: background 0.25s, box-shadow 0.25s;
  background: transparent;
}
.ibw-nav--solid {
  background: var(--ibw-bg-dark) !important;
  box-shadow: 0 2px 12px rgba(26,34,53,0.18);
}
body.ibw-page--light-top .ibw-nav {
  background: var(--ibw-bg-dark);
}
body.ibw-page--dark-top .ibw-nav {
  background: transparent;
}

.ibw-nav__inner {
  max-width: var(--ibw-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.ibw-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.ibw-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 200px;
}

.ibw-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 auto 0 40px;
}
.ibw-nav__links a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,244,250,0.80);
  text-decoration: none;
  border-radius: var(--ibw-radius-sm);
  transition: color 0.15s, background 0.15s;
}
.ibw-nav__links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.ibw-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ibw-nav__signin {
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,244,250,0.75);
  padding: 6px 12px;
  text-decoration: none;
  transition: color 0.15s;
}
.ibw-nav__signin:hover { color: #fff; text-decoration: none; }

/* hamburger */
.ibw-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(240,244,250,0.85);
  font-size: 20px;
  margin-left: auto;
}
.ibw-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--ibw-nav-h);
  left: 0; right: 0;
  background: var(--ibw-bg-dark);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(26,34,53,0.25);
  z-index: 99;
}
.ibw-nav__mobile-menu.is-open { display: block; }
.ibw-nav__mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.ibw-nav__mobile-menu ul a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ibw-fg-dark-pri);
  border-radius: var(--ibw-radius-sm);
}
.ibw-nav__mobile-menu ul a:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.ibw-nav__mobile-menu .ibw-nav__actions {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.ibw-nav__mobile-menu .ibw-nav__signin { padding: 10px 12px; text-align: center; }

@media (max-width: 768px) {
  .ibw-nav__links { display: none; }
  .ibw-nav__actions .ibw-btn { display: none; }
  .ibw-nav__actions .ibw-nav__signin { display: none; }
  .ibw-nav__hamburger { display: flex; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.ibw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  font-family: var(--ibw-font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--ibw-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
}
.ibw-btn:hover { text-decoration: none; transform: translateY(-1px); }

.ibw-btn--primary {
  background: var(--ibw-blue);
  color: #fff;
}
.ibw-btn--primary:hover { background: var(--ibw-blue-aa); box-shadow: 0 4px 14px rgba(36,96,167,0.35); }

.ibw-btn--outline-light {
  background: transparent;
  color: var(--ibw-blue-aa);
  border: 1.5px solid var(--ibw-blue-aa);
}
.ibw-btn--outline-light:hover { background: rgba(61,127,212,0.06); }

.ibw-btn--outline-dark {
  background: transparent;
  color: var(--ibw-fg-dark-pri);
  border: 1.5px solid rgba(240,244,250,0.35);
}
.ibw-btn--outline-dark:hover { border-color: rgba(240,244,250,0.65); background: rgba(255,255,255,0.05); }

.ibw-btn--ghost-dark {
  background: transparent;
  color: var(--ibw-fg-dark-pri);
}
.ibw-btn--ghost-dark:hover { background: rgba(255,255,255,0.08); }

.ibw-btn--ghost-light {
  background: transparent;
  color: var(--ibw-blue-aa);
}
.ibw-btn--ghost-light:hover { background: rgba(61,127,212,0.06); }

.ibw-btn--lg {
  padding: 13px 32px;
  font-size: 15px;
}

/* ================================================================
   HERO — INDEX (dark)
   ================================================================ */
.ibw-hero {
  background: var(--ibw-bg-dark);
  padding: 100px 0 80px;
}
.ibw-hero__inner {
  max-width: var(--ibw-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
}
.ibw-hero__eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ibw-blue-on-dark);
  margin-bottom: 20px;
}
.ibw-hero__h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ibw-fg-dark-pri);
  margin-bottom: 24px;
}
.ibw-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ibw-fg-dark-sec);
  margin-bottom: 36px;
  max-width: 480px;
}
.ibw-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ibw-hero__visual {
  position: relative;
}

@media (max-width: 1024px) {
  .ibw-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ibw-hero__h1 { font-size: 44px; }
  .ibw-hero__visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .ibw-hero { padding: 80px 0 60px; }
  .ibw-hero__h1 { font-size: 36px; }
  .ibw-hero__sub { font-size: 16px; }
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.ibw-trust-strip {
  background: var(--ibw-bg-dark-alt);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ibw-trust-strip__inner {
  max-width: var(--ibw-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.ibw-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ibw-fg-dark-sec);
  white-space: nowrap;
}
.ibw-trust-pill i { color: var(--ibw-blue-on-dark); font-size: 14px; }
.ibw-trust-sep {
  color: rgba(148,163,184,0.25);
  font-size: 18px;
  line-height: 1;
}

/* ================================================================
   FEATURE TRIO
   ================================================================ */
.ibw-feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ibw-feature-panel + .ibw-feature-panel { margin-top: 80px; }
.ibw-feature-panel--reverse { direction: rtl; }
.ibw-feature-panel--reverse > * { direction: ltr; }
.ibw-feature-panel__text {}
.ibw-feature-panel__eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ibw-blue-aa);
  margin-bottom: 14px;
}
.ibw-feature-panel__h2 { color: var(--ibw-fg-primary); margin-bottom: 16px; }
.ibw-feature-panel__body { color: var(--ibw-fg-secondary); line-height: 1.7; }
.ibw-feature-panel__img {
  border-radius: var(--ibw-radius-lg);
  overflow: hidden;
  box-shadow: var(--ibw-shadow-lg);
  background: var(--ibw-bg-light);
}
.ibw-feature-panel__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .ibw-feature-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ibw-feature-panel--reverse { direction: ltr; }
}

/* ================================================================
   HOW IT WORKS PREVIEW (cream)
   ================================================================ */
.ibw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ibw-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ibw-step__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ibw-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.ibw-section--cream .ibw-step__num { background: var(--ibw-blue-aa); }
.ibw-step__content h3 { color: var(--ibw-fg-primary); margin-bottom: 8px; }
.ibw-step__content p  { color: var(--ibw-fg-secondary); font-size: 15px; }
@media (max-width: 768px) {
  .ibw-steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ================================================================
   PRIVACY CALLOUT
   ================================================================ */
.ibw-privacy-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--ibw-bg-white);
  border: 1.5px solid rgba(61,127,212,0.18);
  border-radius: var(--ibw-radius-lg);
  padding: 40px;
}
.ibw-privacy-callout__icon {
  width: 56px; height: 56px;
  background: rgba(61,127,212,0.1);
  border-radius: var(--ibw-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ibw-blue-aa);
}
.ibw-privacy-callout__body h2 { font-size: 24px; color: var(--ibw-fg-primary); margin-bottom: 8px; }
.ibw-privacy-callout__body p  { color: var(--ibw-fg-secondary); max-width: 560px; }
@media (max-width: 768px) {
  .ibw-privacy-callout { grid-template-columns: 1fr; gap: 20px; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.ibw-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ibw-testimonial {
  background: var(--ibw-bg-light);
  border: 1px solid rgba(26,34,53,0.07);
  border-radius: var(--ibw-radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ibw-testimonial__stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; }
.ibw-testimonial__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ibw-fg-secondary);
  font-style: italic;
  flex: 1;
}
.ibw-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ibw-testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ibw-bg-dark);
  color: var(--ibw-fg-dark-pri);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600;
  flex-shrink: 0;
}
.ibw-testimonial__name { font-size: 14px; font-weight: 600; color: var(--ibw-fg-primary); }
.ibw-testimonial__role { font-size: 12px; color: var(--ibw-fg-secondary); }
@media (max-width: 768px) {
  .ibw-testimonials-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PRICING PREVIEW
   ================================================================ */
.ibw-pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ibw-pricing-card {
  background: var(--ibw-bg-white);
  border: 1.5px solid rgba(26,34,53,0.1);
  border-radius: var(--ibw-radius-lg);
  padding: 32px;
}
.ibw-pricing-card--featured {
  border-color: var(--ibw-blue);
  box-shadow: 0 0 0 4px rgba(61,127,212,0.08);
}
.ibw-pricing-card__badge {
  display: inline-block;
  background: var(--ibw-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.ibw-pricing-card__name { font-size: 22px; font-weight: 700; color: var(--ibw-fg-primary); margin-bottom: 6px; }
.ibw-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0 20px;
}
.ibw-pricing-card__amount { font-size: 40px; font-weight: 700; color: var(--ibw-fg-primary); }
.ibw-pricing-card__period { font-size: 14px; color: var(--ibw-fg-secondary); }
.ibw-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.ibw-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ibw-fg-secondary);
}
.ibw-pricing-card__features li i { color: #22C55E; margin-top: 2px; flex-shrink: 0; }
.ibw-pricing-annual-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.ibw-annual-label { font-size: 14px; font-weight: 500; color: var(--ibw-fg-secondary); }
.ibw-annual-label--active { color: var(--ibw-fg-primary); }
.ibw-annual-badge {
  background: rgba(34,197,94,0.12);
  color: #16A34A;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}
/* toggle switch */
.ibw-toggle { position: relative; display: inline-block; width: 44px; height: 24px; }
.ibw-toggle input { opacity: 0; width: 0; height: 0; }
.ibw-toggle__slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,34,53,0.2);
  border-radius: 24px;
  transition: 0.3s;
}
.ibw-toggle__slider::before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.ibw-toggle input:checked + .ibw-toggle__slider { background: var(--ibw-blue); }
.ibw-toggle input:checked + .ibw-toggle__slider::before { transform: translateX(20px); }

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

/* ================================================================
   BLOG PREVIEW
   ================================================================ */
.ibw-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ibw-blog-card {
  background: var(--ibw-bg-white);
  border-radius: var(--ibw-radius-lg);
  overflow: hidden;
  box-shadow: var(--ibw-shadow-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow 0.18s, transform 0.18s;
}
.ibw-blog-card:hover { box-shadow: var(--ibw-shadow-md); transform: translateY(-2px); text-decoration: none; }
.ibw-blog-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ibw-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.ibw-blog-card:hover .ibw-blog-card__img { transform: scale(1.03); }
.ibw-blog-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ibw-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ibw-blog-card__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ibw-blue-aa);
  background: rgba(61,127,212,0.08);
  padding: 2px 8px;
  border-radius: 12px;
}
.ibw-blog-card__date { font-size: 12px; color: var(--ibw-fg-secondary); }
.ibw-blog-card__read { font-size: 12px; color: var(--ibw-fg-secondary); }
.ibw-blog-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ibw-fg-primary);
  line-height: 1.38;
  margin-bottom: 8px;
}
.ibw-blog-card__excerpt {
  font-size: 14px;
  color: var(--ibw-fg-secondary);
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 768px) {
  .ibw-blog-cards { grid-template-columns: 1fr; }
}

/* ================================================================
   CTA BAND (dark closing)
   ================================================================ */
.ibw-cta-band {
  background: var(--ibw-bg-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ibw-cta-band__ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.4;
}
.ibw-cta-band__inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
  padding: 0 24px;
}
.ibw-cta-band__h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--ibw-fg-dark-pri);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ibw-cta-band__sub {
  font-size: 16px;
  color: var(--ibw-fg-dark-sec);
  margin-bottom: 36px;
}
.ibw-cta-band__note {
  display: block;
  font-size: 13px;
  color: var(--ibw-fg-dark-sec);
  margin-top: 14px;
}
@media (max-width: 768px) {
  .ibw-cta-band__h2 { font-size: 30px; }
}

/* ================================================================
   SECTION HEADER (shared)
   ================================================================ */
.ibw-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ibw-section-header h2 { margin-bottom: 16px; }
.ibw-section-header p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}
.ibw-section-header--left { text-align: left; }
.ibw-section-header--left p { margin: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.ibw-footer {
  background: var(--ibw-bg-dark);
  padding: 64px 0 0;
}
.ibw-footer__inner {
  max-width: var(--ibw-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.ibw-footer__brand {}
.ibw-footer__logo img { height: 28px; width: auto; margin-bottom: 16px; }
.ibw-footer__tagline { font-size: 14px; line-height: 1.6; color: var(--ibw-fg-dark-sec); max-width: 220px; }
.ibw-footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ibw-fg-dark-pri);
  margin-bottom: 16px;
}
.ibw-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ibw-footer__col ul a { font-size: 14px; color: var(--ibw-fg-dark-sec); text-decoration: none; transition: color 0.15s; }
.ibw-footer__col ul a:hover { color: var(--ibw-fg-dark-pri); }

.ibw-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: var(--ibw-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ibw-footer__copy { font-size: 13px; color: var(--ibw-fg-dark-sec); }
.ibw-footer__copy a { color: var(--ibw-fg-dark-sec); }
.ibw-footer__copy a:hover { color: var(--ibw-fg-dark-pri); }
.ibw-footer__bottom-links { display: flex; gap: 20px; }
.ibw-footer__bottom-links a { font-size: 13px; color: var(--ibw-fg-dark-sec); text-decoration: none; }
.ibw-footer__bottom-links a:hover { color: var(--ibw-fg-dark-pri); }

@media (max-width: 768px) {
  .ibw-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ibw-footer__brand { grid-column: 1 / -1; }
  .ibw-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .ibw-footer__inner { grid-template-columns: 1fr; }
}

/* ================================================================
   SUB-PAGE HERO (light)
   ================================================================ */
.ibw-subhero {
  background: var(--ibw-bg-light);
  padding: 80px 0 72px;
}
.ibw-subhero__inner {
  max-width: var(--ibw-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ibw-subhero__inner--narrow {
  grid-template-columns: 1fr;
  max-width: 680px;
}
.ibw-subhero__eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ibw-blue-aa);
  margin-bottom: 14px;
}
.ibw-subhero__h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ibw-fg-primary);
  margin-bottom: 18px;
}
.ibw-subhero__sub {
  font-size: 17px;
  color: var(--ibw-fg-secondary);
  line-height: 1.6;
  max-width: 500px;
}
.ibw-subhero__visual-panel {
  background: var(--ibw-bg-white);
  border-radius: var(--ibw-radius-lg);
  padding: 28px;
  box-shadow: var(--ibw-shadow-md);
}
.ibw-subhero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px;
  background: var(--ibw-bg-white);
  border-radius: var(--ibw-radius-lg);
  box-shadow: var(--ibw-shadow-md);
}
.ibw-stat { text-align: center; }
.ibw-stat__num {
  font-size: 32px;
  font-weight: 700;
  color: var(--ibw-fg-primary);
  letter-spacing: -0.02em;
}
.ibw-stat__label { font-size: 13px; color: var(--ibw-fg-secondary); }

@media (max-width: 900px) {
  .ibw-subhero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ibw-subhero__h1 { font-size: 36px; }
}

/* ================================================================
   FEATURE CARD GRID (product page deep dive)
   ================================================================ */
.ibw-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ibw-feature-card {
  background: var(--ibw-bg-white);
  border: 1px solid rgba(26,34,53,0.08);
  border-radius: var(--ibw-radius-lg);
  padding: 28px;
}
.ibw-feature-card__icon {
  width: 48px; height: 48px;
  background: rgba(61,127,212,0.1);
  border-radius: var(--ibw-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--ibw-blue-aa);
  margin-bottom: 18px;
}
.ibw-feature-card__title { font-size: 18px; font-weight: 600; color: var(--ibw-fg-primary); margin-bottom: 10px; }
.ibw-feature-card__body  { font-size: 15px; color: var(--ibw-fg-secondary); line-height: 1.65; }
@media (max-width: 768px) {
  .ibw-feature-cards { grid-template-columns: 1fr; }
}

/* ================================================================
   SECURITY PRINCIPLE CARDS
   ================================================================ */
.ibw-security-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ibw-security-card {
  background: var(--ibw-bg-light);
  border-radius: var(--ibw-radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.ibw-security-card__icon {
  width: 52px; height: 52px;
  background: var(--ibw-bg-dark);
  color: var(--ibw-blue-on-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.ibw-security-card__title { font-size: 15px; font-weight: 600; color: var(--ibw-fg-primary); margin-bottom: 8px; }
.ibw-security-card__body  { font-size: 14px; color: var(--ibw-fg-secondary); }
@media (max-width: 768px) {
  .ibw-security-principles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ibw-security-principles { grid-template-columns: 1fr; }
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.ibw-faq { display: flex; flex-direction: column; gap: 2px; max-width: 760px; margin: 0 auto; }
.ibw-faq-item {
  background: var(--ibw-bg-white);
  border: 1px solid rgba(26,34,53,0.08);
  border-radius: var(--ibw-radius-md);
  overflow: hidden;
}
.ibw-faq-item__trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: var(--ibw-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--ibw-fg-primary);
  text-align: left;
}
.ibw-faq-item__trigger i {
  font-size: 14px;
  color: var(--ibw-fg-secondary);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.ibw-faq-item.is-open .ibw-faq-item__trigger i { transform: rotate(180deg); }
.ibw-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.25s;
}
.ibw-faq-item.is-open .ibw-faq-item__body { max-height: 600px; }
.ibw-faq-item__content {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--ibw-fg-secondary);
  line-height: 1.65;
}
.ibw-section--cream .ibw-faq-item { background: var(--ibw-bg-white); }

/* ================================================================
   VALUES CARDS (about page)
   ================================================================ */
.ibw-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ibw-value-card {
  background: var(--ibw-bg-white);
  border-radius: var(--ibw-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--ibw-shadow-sm);
}
.ibw-value-card__icon {
  width: 48px; height: 48px;
  background: rgba(61,127,212,0.08);
  border-radius: var(--ibw-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--ibw-blue-aa);
  margin-bottom: 18px;
}
.ibw-value-card__title { font-size: 18px; font-weight: 600; color: var(--ibw-fg-primary); margin-bottom: 10px; }
.ibw-value-card__body  { font-size: 15px; color: var(--ibw-fg-secondary); }
@media (max-width: 768px) {
  .ibw-values-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   TEAM GRID (about)
   ================================================================ */
.ibw-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ibw-team-member { text-align: center; }
.ibw-team-member__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--ibw-bg-light);
}
.ibw-team-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.ibw-team-member__name { font-size: 17px; font-weight: 600; color: var(--ibw-fg-primary); margin-bottom: 4px; }
.ibw-team-member__role { font-size: 14px; color: var(--ibw-fg-secondary); }
@media (max-width: 768px) {
  .ibw-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ibw-team-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   ABOUT STORY (2-col)
   ================================================================ */
.ibw-about-story {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.ibw-about-story__text h2 { font-size: 30px; color: var(--ibw-fg-primary); margin-bottom: 20px; }
.ibw-about-story__text p  { color: var(--ibw-fg-secondary); line-height: 1.7; margin-bottom: 16px; }
.ibw-about-story__photo {
  border-radius: var(--ibw-radius-lg);
  overflow: hidden;
  box-shadow: var(--ibw-shadow-md);
}
.ibw-about-story__photo img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .ibw-about-story { grid-template-columns: 1fr; gap: 40px; }
  .ibw-about-story__photo { max-width: 380px; }
}

/* ================================================================
   BLOG ARTICLE (individual)
   ================================================================ */
.ibw-article-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.ibw-article-header {
  padding: 64px 0 48px;
}
.ibw-article-header__cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ibw-blue-aa);
  margin-bottom: 14px;
}
.ibw-article-header__h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ibw-fg-primary);
  margin-bottom: 20px;
}
.ibw-article-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--ibw-fg-secondary);
  flex-wrap: wrap;
}
.ibw-article-header__meta .ibw-meta-dot { color: rgba(74,85,104,0.35); }

/* article cover (natural ratio, no crop) */
.ibw-blog-article__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ibw-radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--ibw-shadow-md);
}

body.ibw-page--light-top .ibw-blog-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 72px;
}
body.ibw-page--light-top .ibw-blog-article-body h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--ibw-fg-primary);
  margin: 40px 0 16px;
}
body.ibw-page--light-top .ibw-blog-article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ibw-fg-primary);
  margin: 28px 0 12px;
}
body.ibw-page--light-top .ibw-blog-article-body p {
  color: var(--ibw-fg-secondary);
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 20px;
}
body.ibw-page--light-top .ibw-blog-article-body ul,
body.ibw-page--light-top .ibw-blog-article-body ol {
  padding-left: 24px;
  color: var(--ibw-fg-secondary);
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 20px;
}
body.ibw-page--light-top .ibw-blog-article-body li { margin-bottom: 8px; }
body.ibw-page--light-top .ibw-blog-article-body a {
  color: var(--ibw-blue-aa);
  text-decoration: underline;
  text-decoration-color: rgba(36,96,167,0.35);
}
body.ibw-page--light-top .ibw-blog-article-body blockquote {
  border-left: 3px solid var(--ibw-blue);
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(61,127,212,0.05);
  border-radius: 0 var(--ibw-radius-sm) var(--ibw-radius-sm) 0;
  font-style: italic;
  color: var(--ibw-fg-secondary);
}
body.ibw-page--light-top .ibw-blog-article-body code {
  background: var(--ibw-bg-light);
  border: 1px solid rgba(26,34,53,0.08);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 14px;
  color: var(--ibw-fg-primary);
}

/* author bio */
.ibw-author-bio {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--ibw-bg-light);
  border-radius: var(--ibw-radius-lg);
  margin-top: 48px;
}
.ibw-author-bio__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ibw-bg-dark);
  color: var(--ibw-fg-dark-pri);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  flex-shrink: 0;
}
.ibw-author-bio__name { font-size: 15px; font-weight: 600; color: var(--ibw-fg-primary); }
.ibw-author-bio__role { font-size: 13px; color: var(--ibw-fg-secondary); margin-bottom: 6px; }
.ibw-author-bio__desc { font-size: 14px; color: var(--ibw-fg-secondary); line-height: 1.6; }

/* related articles */
.ibw-related-articles {
  padding: 48px 0;
  border-top: 1px solid rgba(26,34,53,0.08);
}
.ibw-related-articles h3 { font-size: 20px; font-weight: 600; color: var(--ibw-fg-primary); margin-bottom: 24px; }
.ibw-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ibw-related-link {
  background: var(--ibw-bg-light);
  border-radius: var(--ibw-radius-md);
  padding: 16px 18px;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.15s;
}
.ibw-related-link:hover { box-shadow: var(--ibw-shadow-sm); text-decoration: none; }
.ibw-related-link__cat {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ibw-blue-aa);
  margin-bottom: 6px;
}
.ibw-related-link__title { font-size: 14px; font-weight: 600; color: var(--ibw-fg-primary); line-height: 1.4; }
@media (max-width: 600px) { .ibw-related-grid { grid-template-columns: 1fr; } }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.ibw-contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}
.ibw-contact-form { }
.ibw-contact-form h2 { font-size: 22px; color: var(--ibw-fg-primary); margin-bottom: 24px; }
.ibw-form-group { margin-bottom: 18px; }
.ibw-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ibw-fg-primary);
  margin-bottom: 6px;
}
.ibw-form-group input,
.ibw-form-group textarea,
.ibw-form-group select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--ibw-font);
  font-size: 15px;
  color: var(--ibw-fg-primary);
  background: var(--ibw-bg-white);
  border: 1.5px solid rgba(26,34,53,0.18);
  border-radius: var(--ibw-radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ibw-form-group input:focus,
.ibw-form-group textarea:focus {
  border-color: var(--ibw-blue);
  box-shadow: 0 0 0 3px rgba(61,127,212,0.12);
}
.ibw-form-group textarea { min-height: 120px; resize: vertical; }
.ibw-contact-info {
  background: var(--ibw-bg-light);
  border-radius: var(--ibw-radius-lg);
  padding: 28px;
}
.ibw-contact-info h3 { font-size: 16px; font-weight: 600; color: var(--ibw-fg-primary); margin-bottom: 20px; }
.ibw-contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.ibw-contact-detail i { color: var(--ibw-blue-aa); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.ibw-contact-detail__text { font-size: 14px; color: var(--ibw-fg-secondary); line-height: 1.55; }
.ibw-contact-detail__text a { color: var(--ibw-blue-aa); }
@media (max-width: 768px) {
  .ibw-contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================================
   AUTH PAGES
   ================================================================ */
.ibw-auth-page {
  min-height: 100vh;
  background: var(--ibw-bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.ibw-auth-logo {
  margin-bottom: 32px;
  text-align: center;
}
.ibw-auth-logo img { height: 32px; width: auto; }
.ibw-auth-panel {
  background: var(--ibw-bg-white);
  border: 1px solid rgba(26,34,53,0.1);
  border-radius: var(--ibw-radius-lg);
  padding: 36px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--ibw-shadow-md);
}
.ibw-auth-panel__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ibw-fg-primary);
  text-align: center;
  margin-bottom: 6px;
}
.ibw-auth-panel__sub {
  font-size: 14px;
  color: var(--ibw-fg-secondary);
  text-align: center;
  margin-bottom: 28px;
}
.ibw-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.ibw-auth-divider::before,
.ibw-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26,34,53,0.1);
}
.ibw-auth-divider span { font-size: 12px; color: var(--ibw-fg-secondary); white-space: nowrap; }
.ibw-btn--google {
  width: 100%;
  background: var(--ibw-bg-white);
  border: 1.5px solid rgba(26,34,53,0.15);
  color: var(--ibw-fg-primary);
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.ibw-btn--google:hover { background: var(--ibw-bg-light); border-color: rgba(26,34,53,0.25); }
.ibw-auth-panel .ibw-form-group { margin-bottom: 14px; }
.ibw-auth-panel .ibw-btn--primary { width: 100%; justify-content: center; }
.ibw-auth-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--ibw-fg-secondary);
}
.ibw-auth-footer a { color: var(--ibw-blue-aa); }
.ibw-auth-forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--ibw-blue-aa);
  margin-top: 4px;
  margin-bottom: 18px;
}
@media (max-width: 480px) {
  .ibw-auth-panel { padding: 28px 20px; }
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.ibw-legal-page {
  background: var(--ibw-bg-white);
  min-height: 80vh;
}
.ibw-legal-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-article { }
.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,34,53,0.1);
}
.legal-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--ibw-fg-primary);
  margin-bottom: 10px;
}
.legal-meta {
  font-size: 13px;
  color: var(--ibw-fg-secondary);
  margin-bottom: 4px;
}
body.ibw-page--light-top .ibw-legal-body section { margin-bottom: 36px; }
body.ibw-page--light-top .ibw-legal-body h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ibw-fg-primary);
  margin-bottom: 12px;
  padding-top: 8px;
}
body.ibw-page--light-top .ibw-legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ibw-fg-primary);
  margin-bottom: 8px;
  margin-top: 18px;
}
body.ibw-page--light-top .ibw-legal-body p {
  font-size: 15px;
  color: var(--ibw-fg-secondary);
  line-height: 1.68;
  margin-bottom: 12px;
}
body.ibw-page--light-top .ibw-legal-body ul,
body.ibw-page--light-top .ibw-legal-body ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
body.ibw-page--light-top .ibw-legal-body li {
  font-size: 15px;
  color: var(--ibw-fg-secondary);
  line-height: 1.65;
  margin-bottom: 6px;
}
body.ibw-page--light-top .ibw-legal-body a { color: var(--ibw-blue-aa); }
body.ibw-page--light-top .ibw-legal-body address {
  font-style: normal;
  font-size: 15px;
  color: var(--ibw-fg-secondary);
  line-height: 1.8;
  background: var(--ibw-bg-light);
  padding: 18px 20px;
  border-radius: var(--ibw-radius-md);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 12px 0;
}
.legal-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--ibw-bg-light);
  color: var(--ibw-fg-primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(26,34,53,0.1);
}
.legal-table td {
  padding: 10px 12px;
  color: var(--ibw-fg-secondary);
  border-bottom: 1px solid rgba(26,34,53,0.06);
}

/* ================================================================
   PRICING PAGE — FULL
   ================================================================ */
.ibw-pricing-full .ibw-pricing-cards {
  max-width: 820px;
  margin: 0 auto;
}

/* ================================================================
   HOW IT WORKS — STEP PANELS
   ================================================================ */
.ibw-hiw-steps { display: flex; flex-direction: column; gap: 80px; }
.ibw-hiw-step {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.ibw-hiw-step__num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ibw-hiw-step__circle {
  width: 56px; height: 56px;
  background: var(--ibw-bg-dark);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.ibw-hiw-step__line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: rgba(26,34,53,0.1);
  margin-top: 8px;
}
.ibw-hiw-step:last-child .ibw-hiw-step__line { display: none; }
.ibw-hiw-step__text h3 { color: var(--ibw-fg-primary); margin-bottom: 12px; }
.ibw-hiw-step__text p  { color: var(--ibw-fg-secondary); line-height: 1.7; margin-bottom: 14px; }
.ibw-hiw-step__privacy-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(61,127,212,0.06);
  border-left: 3px solid var(--ibw-blue-aa);
  padding: 12px 14px;
  border-radius: 0 var(--ibw-radius-sm) var(--ibw-radius-sm) 0;
  margin-top: 16px;
}
.ibw-hiw-step__privacy-note i { color: var(--ibw-blue-aa); margin-top: 2px; flex-shrink: 0; }
.ibw-hiw-step__privacy-note p { font-size: 14px; color: var(--ibw-fg-secondary); margin: 0; }
.ibw-hiw-step__visual {
  border-radius: var(--ibw-radius-lg);
  overflow: hidden;
  box-shadow: var(--ibw-shadow-md);
  background: var(--ibw-bg-light);
}
.ibw-hiw-step__visual img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
  .ibw-hiw-step { grid-template-columns: 1fr; }
  .ibw-hiw-step__num-col { flex-direction: row; }
  .ibw-hiw-step__line { display: none; }
}

/* ================================================================
   HERO TEXT BLOCK (index dark hero)
   ================================================================ */
.ibw-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ibw-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}
.cookie-banner__inner {
  max-width: var(--ibw-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 14px;
  color: var(--ibw-fg-dark-sec);
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text a { color: var(--ibw-blue-on-dark); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 8px 18px;
  font-family: var(--ibw-font);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--ibw-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-banner__btn--primary {
  background: var(--ibw-blue);
  color: #fff;
}
.cookie-banner__btn--primary:hover { background: var(--ibw-blue-aa); }

/* BEM modifier — notice-only variant (same visual, needed to prevent orphan) */
.cookie-banner--notice { /* inherits .cookie-banner base styles */ }

/* ================================================================
   MISC / UTILITIES
   ================================================================ */
.ibw-text-center { text-align: center; }
.ibw-mt-8  { margin-top: 8px; }
.ibw-mt-16 { margin-top: 16px; }
.ibw-mt-24 { margin-top: 24px; }
.ibw-mt-32 { margin-top: 32px; }
.ibw-mt-48 { margin-top: 48px; }
.ibw-mb-0  { margin-bottom: 0; }
.ibw-link-arrow::after { content: ' →'; }
.ibw-breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--ibw-fg-secondary);
  margin-bottom: 16px;
}
.ibw-breadcrumb a { color: var(--ibw-fg-secondary); text-decoration: none; }
.ibw-breadcrumb a:hover { color: var(--ibw-fg-primary); }
.ibw-breadcrumb span { color: rgba(74,85,104,0.4); }

/* fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* failsafe: after 1.2s auto-reveal */
@keyframes ibw-force-visible {
  to { opacity: 1; transform: none; }
}
.fade-in {
  animation: ibw-force-visible 0s 1.2s forwards;
}

/* blog index hero icon strip */
.ibw-blog-hero-strip {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ibw-blog-hero-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ibw-fg-secondary);
}
.ibw-blog-hero-strip__item i { color: var(--ibw-blue-aa); }

/* pricing FAQ — wider */
.ibw-pricing-faq .ibw-faq { max-width: 640px; }

/* how it works hero visual: 3 mini metric chips */
.ibw-hiw-hero-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.ibw-hiw-chip {
  background: var(--ibw-bg-white);
  border: 1px solid rgba(26,34,53,0.1);
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ibw-fg-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ibw-hiw-chip i { color: var(--ibw-blue-aa); font-size: 12px; }

/* security hero score badge */
.ibw-security-badges {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ibw-security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ibw-bg-white);
  border: 1px solid rgba(26,34,53,0.1);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ibw-fg-primary);
}
.ibw-security-badge i { color: #22C55E; }

/* what's new link */
.ibw-whatsnew-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,127,212,0.08);
  border: 1px solid rgba(61,127,212,0.18);
  border-radius: 24px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ibw-blue-aa);
  margin-bottom: 22px;
  text-decoration: none;
}
.ibw-whatsnew-banner:hover { background: rgba(61,127,212,0.14); text-decoration: none; }
.ibw-whatsnew-banner__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--ibw-blue);
  color: #fff;
  padding: 1px 6px;
  border-radius: 10px;
}
