/* ═══════════════════════════════════════════════════════════
   i-2 Communications – Main Stylesheet
   Covers: Homepage, Subpages (ABM, AI Marketing), Global
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand */
  --blue:        #0057b8;
  --blue-dark:   #003f8a;
  --blue-mid:    #0068d9;
  --blue-light:  #e8f0fb;
  --blue-xlight: #f0f5ff;
  --navy:        #03122e;
  --navy-mid:    #071e45;
  --navy-light:  #0d2d5e;

  /* Neutrals */
  --ink:         #0f1923;
  --ink-soft:    #3d4f63;
  --ink-muted:   #6b7e96;
  --border:      #e4eaf2;
  --border-dark: #cbd5e1;
  --bg:          #f7f9fc;
  --bg-alt:      #eef2f8;
  --white:       #ffffff;

  /* Accent aliases (homepage compat) */
  --accent:       #0057b8;
  --accent-dark:  #003f8a;
  --accent-light: #1a6fd4;
  --accent-2:     #003f8a;
  --gold:         #0057b8;
  --card-bg:      #ffffff;
  --shadow:       0 8px 40px rgba(0,0,0,.07);
  --shadow-hover: 0 20px 60px rgba(0,0,0,.13);
  --radius:       16px;

  /* Misc */
  --green:       #25d366;

  /* Typography */
  --font-heading: 'Montserrat', 'Syne', sans-serif;
  --font-display: 'Syne', 'Montserrat', sans-serif;
  --font-body:    'DM Sans', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-mono:    'DM Mono', 'Consolas', 'Menlo', 'Courier New', monospace;

  /* Spacing */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 40px; --s8: 56px;
  --s9: 72px; --s10: 96px;
  --space-lg: 24px;

  /* Radii */
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px;
  --r-lg: 16px; --r-xl: 24px; --r-2xl: 32px;

  /* Shadows */
  --sh-sm:   0 2px 8px rgba(0,87,184,.08);
  --sh-md:   0 8px 28px rgba(0,87,184,.11);
  --sh-lg:   0 20px 64px rgba(0,87,184,.14);
  --sh-card: 0 4px 20px rgba(0,0,0,.07);
  --shadow-lg: 0 20px 60px rgba(0,87,184,.13);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── ACCESSIBILITY ──────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  top: -100%; left: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 14px; font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.section    { padding-block: var(--s10); }
.section--md{ padding-block: var(--s9); }
.section--sm{ padding-block: var(--s8); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: var(--s4);
}
.eyebrow--white { color: #7eb3f5; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: currentColor; }

h1, h2 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.025em; line-height: 1.07; }
h3 { font-family: var(--font-display); letter-spacing: -0.025em; line-height: 1.07; }
h4 { font-family: var(--font-display); letter-spacing: -0.015em; line-height: 1.2; }

.display-xl { font-size: clamp(2.5rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.038em; }
.display-lg { font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 800; }
.display-md { font-size: clamp(1.5rem, 2.4vw, 2.15rem); font-weight: 700; }
.display-sm { font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 700; }

.lead  { font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 300; line-height: 1.78; color: var(--ink-soft); }
.body  { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--ink-soft); }
.small { font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--ink-muted); }

.text-blue  { color: var(--blue); }
.text-white { color: var(--white); }
.text-grad {
  background: linear-gradient(120deg, #74b4ff 0%, #b8d7ff 50%, #74b4ff 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200%; } }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-xs);
  background: var(--blue-xlight); color: var(--blue);
  border: 1px solid rgba(0,87,184,.15);
}
.tag::before { content: '#'; opacity: 0.5; }

/* Section labels (homepage style) */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-body {
  font-size: 17px; font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 640px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .9375rem;
  border-radius: var(--r-md); padding: 13px 26px;
  transition: all .22s var(--ease); white-space: nowrap;
  text-decoration: none;
}
.btn svg { flex-shrink: 0; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,87,184,.28);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,87,184,.4);
}

.btn.btn-primary {
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-size: .9375rem;
}
.btn.btn-primary:hover { transform: translateY(-1px); }

.btn-outline { border: 1.5px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue-xlight); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white); text-decoration: none;
  font-weight: 500; font-size: 15px;
  padding: 14px 28px; border-radius: 12px;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }

.btn.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  padding: 13px 26px; border-radius: var(--r-md);
  font-size: .9375rem;
}
.btn.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); transform: translateY(-1px); }

.btn-sm { padding: 9px 18px !important; font-size: 0.8125rem !important; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.35);
}

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,1);
  font-size: 0.8125rem;
  padding-block: 8px;
}
.topbar__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center;
  justify-content: flex-end;
  gap: var(--space-lg); flex-wrap: wrap;
}
.topbar a, .topbar__contact {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,1);
  transition: color 0.18s; text-decoration: none;
}
.topbar a:hover { color: var(--white); }
.topbar__wa {
  color: #4ae07e !important; font-weight: 500;
}
.topbar__wa:hover { color: #75f0a0 !important; }

/* ─── STICKY HEADER ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,87,184,.09);
}
.nav {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: var(--space-lg);
}

/* Logo */
.nav__logo-wrap {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav__logo-wrap .custom-logo-link {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav__logo-wrap .custom-logo-link img.custom-logo {
  height: 44px; width: auto; border-radius: 4px; display: block;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.nav__logo-text strong {
  display: block; font-family: var(--font-display);
  font-size: 14px; font-weight: 700; line-height: 1.2;
}
.nav__logo-text span { font-size: 10px; color: var(--ink-muted); letter-spacing: .04em; }
.nav__logo .custom-logo { height: 36px; width: auto; border-radius: 4px; }

/* Desktop menu */
.nav__menu-wrap { flex: 1; display: flex; justify-content: center; }
.nav__menu {
  display: flex; align-items: center; gap: 2px;
  margin: 0; list-style: none; padding: 0;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap; text-decoration: none;
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--blue); background: var(--blue-xlight); }
.nav__link[aria-current="page"] { font-weight: 600; }
.nav__chevron { width: 12px; height: 12px; opacity: .45; transition: transform .2s; }
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 240px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .2s var(--ease);
  list-style: none; z-index: 200;
}
.nav__dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0;
  width: 100%; height: 12px;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown li { list-style: none; }
.nav__dropdown li a,
.nav__dropdown a {
  display: block; padding: 9px 14px; border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 400;
  color: var(--ink-soft); transition: color .15s, background .15s;
  text-decoration: none;
}
.nav__dropdown li a:hover,
.nav__dropdown a:hover { color: var(--blue); background: var(--blue-xlight); }
.nav__dropdown a.active { color: var(--blue); font-weight: 600; background: var(--blue-light); }

/* Nav actions */
.nav__actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: var(--r-sm); transition: background .18s;
  background: transparent; border: none; cursor: pointer;
}
.nav__hamburger:hover { background: var(--bg); }
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .28s var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   MOBILE DRAWER — ACCORDION SLIDE-IN PANEL
═══════════════════════════════════════════ */
.nav__drawer {
  display: none; position: fixed; inset: 0; z-index: 1100;
  pointer-events: none; visibility: hidden;
}
.nav__drawer.open { pointer-events: all; visibility: visible; }

/* Frosted glass backdrop */
.nav__drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(3,18,46,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .38s var(--ease);
}
.nav__drawer.open .nav__drawer-overlay { opacity: 1; }

/* Panel slides in from right */
.nav__drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(390px, 100vw); background: var(--white);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateX(100%); transition: transform .38s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,.35);
}
.nav__drawer.open .nav__drawer-panel { transform: translateX(0); }

/* Panel header row */
.mob-nav__head {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 20px 24px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

/* Close button */
.nav__drawer-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--ink-soft); font-size: 18px; line-height: 1;
  cursor: pointer; transition: all .18s;
}
.nav__drawer-close:hover {
  background: var(--blue-xlight); color: var(--blue); transform: rotate(90deg);
}

/* Scrollable nav body */
.mob-nav__body {
  flex: 1; overflow-y: auto; padding: 12px 16px 0;
  scrollbar-width: thin; scrollbar-color: var(--border-dark) transparent;
}
.mob-nav__body::-webkit-scrollbar { width: 4px; }
.mob-nav__body::-webkit-scrollbar-track { background: transparent; }
.mob-nav__body::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 4px; }

/* Accordion sections */
.mob-acc { border-bottom: 1px solid var(--border); }
.mob-acc__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 8px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em;
  transition: color .18s; background: none; border: none; cursor: pointer;
}
.mob-acc__trigger:hover { color: var(--blue); }
.mob-acc__trigger.active { color: var(--blue); }

/* Trigger left side: icon + label */
.mob-acc__trigger-left { display: flex; align-items: center; gap: 12px; }
.mob-acc__icon {
  width: 32px; height: 32px; min-width: 32px; min-height: 32px; border-radius: 8px;
  background: var(--blue-xlight); border: 1px solid rgba(0,87,184,.12);
  display: grid; place-items: center; flex-shrink: 0; transition: background .18s;
  overflow: hidden;
}
.mob-acc__icon svg { width: 15px; height: 15px; min-width: 15px; min-height: 15px; max-width: 15px; max-height: 15px; stroke: var(--blue); }
.mob-acc__trigger:hover .mob-acc__icon,
.mob-acc__trigger.active .mob-acc__icon { background: var(--blue); border-color: var(--blue); }
.mob-acc__trigger:hover .mob-acc__icon svg,
.mob-acc__trigger.active .mob-acc__icon svg { stroke: var(--white); }

/* Chevron arrow */
.mob-acc__arrow {
  width: 20px; height: 20px; display: grid; place-items: center;
  color: var(--ink-muted); transition: transform .28s var(--ease), color .18s; flex-shrink: 0;
}
.mob-acc__trigger.active .mob-acc__arrow { transform: rotate(180deg); color: var(--blue); }

/* Expandable panel */
.mob-acc__panel { overflow: hidden; max-height: 0; transition: max-height .32s var(--ease); visibility: hidden; }
.mob-acc__panel.open { max-height: 400px; visibility: visible; }
.mob-acc__links { padding: 4px 8px 14px 52px; display: flex; flex-direction: column; gap: 2px; }
.mob-acc__link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 400; color: var(--ink-soft);
  transition: all .15s; text-decoration: none; position: relative;
}
.mob-acc__link::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--border-dark); flex-shrink: 0; transition: background .15s, transform .15s;
}
.mob-acc__link:hover { color: var(--blue); background: var(--blue-xlight); }
.mob-acc__link:hover::before { background: #74b4ff; transform: scale(1.5); }
.mob-acc__link.active { color: var(--blue); background: var(--blue-light); font-weight: 500; }
.mob-acc__link.active::before { background: var(--blue); }

/* Standalone nav link (no accordion) */
.mob-nav__plain-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 8px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em;
  border-bottom: 1px solid var(--border); transition: color .18s;
  text-decoration: none;
}
.mob-nav__plain-link:hover { color: var(--blue); }

/* Bottom CTA bar */
.mob-nav__cta-bar {
  flex-shrink: 0; padding: 16px 16px 24px;
  background: var(--bg); border-top: 1px solid var(--border);
}
.mob-nav__cta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px;
}
.mob-nav__cta-bar .btn { justify-content: center; font-size: .875rem; padding: 12px 16px; }
.mob-nav__contact-row {
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.mob-nav__contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono, monospace); font-size: 11px;
  color: var(--ink-muted); transition: color .18s; letter-spacing: .02em;
  text-decoration: none;
}
.mob-nav__contact-link:hover { color: var(--ink); }
.mob-nav__contact-link svg { width: 12px; height: 12px; }

/* Stagger animation for drawer items */
.nav__drawer.open .mob-acc { animation: slideInRow .35s var(--ease) both; }
.nav__drawer.open .mob-acc:nth-child(1) { animation-delay: .04s; }
.nav__drawer.open .mob-acc:nth-child(2) { animation-delay: .08s; }
.nav__drawer.open .mob-acc:nth-child(3) { animation-delay: .12s; }
.nav__drawer.open .mob-acc:nth-child(4) { animation-delay: .16s; }
.nav__drawer.open .mob-acc:nth-child(5) { animation-delay: .20s; }
.nav__drawer.open .mob-acc:nth-child(6) { animation-delay: .24s; }
.nav__drawer.open .mob-nav__plain-link { animation: slideInRow .35s var(--ease) .28s both; }
.nav__drawer.open .mob-nav__cta-bar { animation: slideInRow .35s var(--ease) .32s both; }
@keyframes slideInRow {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
  .nav__menu-wrap { display: none; }
  .nav__actions .btn-outline { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer    { display: block; }
}

/* ─── BREADCRUMB (subpages) ──────────────────────────────── */
.breadcrumb {
  font-size: .8125rem; color: var(--ink-muted);
  padding-block: 14px; border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0;
}
.breadcrumb a { color: var(--blue); transition: opacity .15s; }
.breadcrumb a:hover { opacity: .75; }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; opacity: .35; }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); font-weight: 500; }

/* ─── HOMEPAGE HERO ──────────────────────────────────────── */
.is-homepage .hero {
  min-height: 100vh; padding: 120px 32px 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,87,184,.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,87,184,.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(26,111,212,.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.75); letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.05;
  color: var(--white); letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero-heading em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,1);
  line-height: 1.7; margin-bottom: 40px; max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em;
}
.stat-num span { color: #1a6fd4; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 4px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 480px; }
.hcard {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 24px; transition: transform .3s;
}
.hcard-main {
  width: 100%; top: 0; left: 0; right: 0;
  background: rgba(0,87,184,.22); border-color: rgba(0,87,184,.38);
}
.hcard-main h3 {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.85); letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 16px;
}
.metric-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 8px; }
.metric-big {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em;
}
.metric-change {
  background: rgba(74,222,128,.15); color: #4ade80;
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}
.bar-group { display: flex; gap: 4px; align-items: flex-end; margin-top: 16px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(0,87,184,.3); transition: all .3s; }
.bar.active { background: var(--accent); }

.hcard-float-1 { width: 200px; bottom: 100px; right: -20px; animation: float1 4s ease-in-out infinite; }
.hcard-float-2 { width: 180px; bottom: 0; left: -20px; animation: float2 5s ease-in-out infinite; }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hcard-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; font-size: 18px; margin-bottom: 12px;
}
.hcard-float-1 .hcard-icon { background: rgba(0,87,184,.22); }
.hcard-float-2 .hcard-icon { background: rgba(26,111,212,.16); }
.hcard-value { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--white); }
.hcard-desc  { font-size: 12px; color: rgba(255,255,255,.85); margin-top: 4px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) { .hero-stats { grid-template-columns: 1fr; } }

/* ─── SUBPAGE HERO ───────────────────────────────────────── */
.is-subpage .hero {
  position: relative; background: var(--navy); overflow: hidden;
  padding-block: clamp(64px, 10vw, 104px) clamp(72px, 11vw, 120px);
  min-height: auto;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero__stripe {
  position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(135deg, rgba(0,87,184,0) 0%, rgba(0,87,184,.12) 50%, rgba(0,104,217,.06) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero__glow {
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,87,184,.22) 0%, transparent 60%);
}
.hero__line-v {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.07), transparent);
}
.hero__line-v:nth-child(1) { left: 25%; }
.hero__line-v:nth-child(2) { left: 50%; }
.hero__line-v:nth-child(3) { left: 75%; }
.hero__bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; background: linear-gradient(to bottom, transparent, var(--white));
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.hero__content { color: var(--white); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 7px 16px 7px 10px; margin-bottom: 24px;
}
.hero__badge-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 9px; font-weight: 500; color: var(--white);
}
.hero__badge span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: rgba(255,255,255,.85); }
.hero__badge strong { color: rgba(255,255,255,.98); font-weight: 500; }
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__lead { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 300; line-height: 1.78; margin-bottom: 32px; max-width: 520px; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* CTA Card in hero */
.hero__cta-card {
  background: var(--white); border-radius: var(--r-2xl);
  padding: 40px 36px; box-shadow: var(--sh-lg);
  position: relative; overflow: hidden;
}
.hero__cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-mid));
}
.cta-card__eyebrow {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 8px;
}
.cta-card__title {
  font-family: 'Montserrat', sans-serif; font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.15;
}
.cta-card__body { font-size: .9375rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
.cta-card__contacts { display: flex; flex-direction: column; gap: 14px; }
.cta-card__contact {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; transition: opacity .15s;
}
.cta-card__contact:hover { opacity: .8; }
.cta-card__contact-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--blue-xlight); color: var(--blue);
  display: grid; place-items: center;
}
.cta-card__contact-icon svg { width: 16px; height: 16px; }
.cta-card__contact-label { font-size: 10.5px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); }
.cta-card__contact-value { font-size: .9375rem; font-weight: 600; color: var(--ink); margin-top: 1px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__cta-card { display: none; }
}

/* ─── SECTIONS (homepage) ────────────────────────────────── */
section { padding: 96px 32px; }
.container { max-width: 1280px; margin: 0 auto; }

/* Services */
.services { background: var(--white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px; margin-bottom: 64px; flex-wrap: wrap;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px;
  background: var(--white); transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-accent, var(--accent));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 26px;
  margin-bottom: 24px; background: var(--icon-bg, #eff5ff);
}
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.service-card p  { font-size: 14px; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }
.service-tags    { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.service-tag {
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px;
  background: var(--icon-bg, #eff5ff); color: var(--ink-soft);
}

/* Why */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-visual { position: relative; }
.why-big-card {
  background: var(--ink); border-radius: 24px; padding: 48px; color: var(--white);
}
.why-big-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.why-big-card p  { font-size: 15px; color: rgba(255,255,255,1); font-weight: 300; line-height: 1.7; }
.why-small-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.why-small { background: var(--white); border-radius: 16px; padding: 24px; }
.why-small-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.why-small-label { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point  { display: flex; gap: 20px; }
.why-point-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: var(--bg-alt); display: grid; place-items: center; font-size: 22px;
}
.why-point-content h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.why-point-content p  { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }

/* Features */
.features { background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

.feature-block {
  padding: 40px 32px; border-radius: 20px;
  background: var(--bg); border: 1px solid var(--border); position: relative;
}
.feature-block.highlight { background: var(--ink); border-color: transparent; color: var(--white); }
.feature-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 800;
  letter-spacing: -0.05em; color: rgba(10,15,30,.06); line-height: 1; margin-bottom: -16px;
}
.feature-block.highlight .feature-num { color: rgba(255,255,255,.06); }
.feature-icon2 { font-size: 32px; margin-bottom: 16px; }
.feature-block h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.feature-block.highlight h3 { color: var(--white); }
.feature-block p  { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }
.feature-block.highlight p { color: rgba(255,255,255,1); }

/* Approach */
.approach { background: var(--bg-alt); }
.approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 64px; border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; background: var(--white);
}
@media (max-width: 900px) { .approach-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .approach-grid { grid-template-columns: 1fr; } }

.approach-step { padding: 40px 32px; border-right: 1px solid var(--border); position: relative; }
.approach-step:last-child { border-right: none; }
@media (max-width: 900px) {
  .approach-step:nth-child(2n) { border-right: none; }
  .approach-step:nth-child(1), .approach-step:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.step-num { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: .08em; margin-bottom: 16px; }
.approach-step h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; margin-top: 8px; }
.approach-step p  { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.65; }
.approach-icon { font-size: 28px; }

/* CTA section */
.cta-section {
  background: var(--ink); padding: 96px 32px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,87,184,.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800; color: var(--white); letter-spacing: -0.03em;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.cta-section h2 em { font-style: normal; color: var(--accent); }
.cta-section p {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,1);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.7; position: relative; z-index: 1;
}
.cta-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-contact-row {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 48px; flex-wrap: wrap; position: relative; z-index: 1;
}
.contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: 14px;
  text-decoration: none; transition: color .2s;
}
.contact-item:hover { color: var(--white); }
.contact-item-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 16px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #080c1a; color: rgba(255,255,255,.85);
  padding: 64px 32px 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 40px;
}
@media (max-width: 1100px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 900px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px)  { .footer-top { grid-template-columns: 1fr; } }

.footer-brand p { font-size: 13px; font-weight: 300; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-social  { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.7);
  display: grid; place-items: center; transition: background .18s, color .18s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }

.footer-col h5 {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.9); letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a, .footer-col li a {
  display: block; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.85); text-decoration: none;
  padding: 5px 0; transition: color .2s;
}
.footer-col a:hover, .footer-col li a:hover { color: #ffffff; }
/* WP auto-wraps menu items in <li> */
.footer-col ul, .footer-col ol { list-style: none; padding: 0; margin: 0; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; font-weight: 300; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a, .footer-legal li a {
  font-size: 12px; color: rgba(255,255,255,.75);
  text-decoration: none; padding: 0;
}
.footer-legal a:hover, .footer-legal li a:hover { color: #ffffff; }
.footer-legal ul { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }

/* ─── PAGE CONTENT (subpages) ────────────────────────────── */
.page-content { background: var(--white); }
.page-content__inner {
  max-width: 900px;
  font-size: 1rem; line-height: 1.75; color: var(--ink-soft); font-weight: 300;
}
.page-content__inner h1,
.page-content__inner h2 {
  font-family: 'Montserrat', sans-serif; color: var(--ink); font-weight: 700;
  margin-top: 2em; margin-bottom: .6em;
}
.page-content__inner h3,
.page-content__inner h4 {
  font-family: var(--font-display); color: var(--ink); font-weight: 700;
  margin-top: 2em; margin-bottom: .6em;
}
.page-content__inner h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.page-content__inner h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.page-content__inner p  { margin-bottom: 1.25em; }
.page-content__inner ul, .page-content__inner ol { margin: 1em 0 1.5em 1.5em; }
.page-content__inner li { margin-bottom: .5em; }
.page-content__inner img { border-radius: var(--r-lg); margin: 2em 0; box-shadow: var(--sh-md); }
.page-content__inner a  { color: var(--blue); text-decoration: underline; }
.page-content__inner a:hover { color: var(--blue-dark); }
.page-content__inner strong { color: var(--ink); font-weight: 600; }

/* ─── PAGE CTA (subpages) ─────────────────────────────────── */
.page-cta { background: var(--navy); color: var(--white); }
.page-cta__inner {
  display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center;
}
@media (max-width: 768px) { .page-cta__inner { grid-template-columns: 1fr; gap: 32px; } }

.page-cta__copy p { color: rgba(255,255,255,.8); margin-bottom: 24px; }
.page-cta__copy h2 { color: var(--white); margin-bottom: 12px; }
.page-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.page-cta__contact-list { display: flex; flex-direction: column; gap: 16px; }
.page-cta__contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.85);
}
.page-cta__contact-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.1); display: grid; place-items: center; font-size: 16px;
}
.page-cta__contact-item a { color: rgba(255,255,255,.85); text-decoration: none; }
.page-cta__contact-item a:hover { color: var(--white); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up, .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible, .reveal.visible { opacity: 1; transform: translateY(0); }

.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .cta-section { padding: 64px 20px; }
  .why-grid, .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-small-cards { grid-template-columns: 1fr; }
  .cta-contact-row { flex-direction: column; align-items: center; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav { padding: 0 20px; }
  .topbar { display: none; } /* hide topbar on mobile — contacts live in mobile drawer CTA bar */
}
@media (max-width: 480px) {
  .hero-inner { padding: 80px 20px 60px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-step { border-right: none !important; border-bottom: 1px solid var(--border); }
  .approach-step:last-child { border-bottom: none; }
}

/* ─── WORDPRESS CORE OVERRIDES ───────────────────────────── */
/* Custom logo — scoped inside nav__logo-wrap to avoid conflicts */
.nav__logo-wrap .custom-logo-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav__logo-wrap .custom-logo-link .custom-logo {
  height: 44px; width: auto; border-radius: 4px; display: block;
}
/* Global fallback (outside nav context) */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { height: 36px; width: auto; border-radius: 4px; }

/* WP nav menu reset */
.nav__menu .menu-item { list-style: none; }
.nav__menu .menu-item-has-children > .sub-menu { display: none; }

/* Alignments */
.wp-block-image img { border-radius: var(--r-lg); }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }

/* Admin bar offset */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ── Full Width page template — strip all spacing ── */
.i2c-fullwidth-content,
.i2c-fullwidth-content > .wp-block-group,
.i2c-fullwidth-content > .wp-block-html,
.i2c-fullwidth-content .entry-content,
.i2c-fullwidth-content .is-layout-constrained {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
