/*
=================================================================
  iWEBVAULT — COMPLETE GLOBAL CSS SYSTEM
  Version: 2.0 — Full Coverage
  Paste this ENTIRE block into:
  WordPress → Appearance → Customize → Additional CSS
  
  Covers: All 11 pages, all components, all breakpoints
  External dependency: Plus Jakarta Sans (Google Fonts — 1 file)
=================================================================
*/

/* ── FONT LOAD ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --blue:    #0057FF;
  --cyan:    #00C8FF;
  --lime:    #B8FF3C;
  --ink:     #0A0E1A;
  --deep:    #0f1420;
  --panel:   #1A2140;
  --surface: #212847;
  --border:  rgba(255,255,255,0.08);
  --white:   #F4F7FF;
  --light:   #F0F4FF;
  --pale:    #F8FAFF;
  --muted:   #6B7499;
  --body:    #374163;
  --grad:    linear-gradient(135deg,#0057FF,#00C8FF);
  --grad-r:  linear-gradient(135deg,#00C8FF,#0057FF);
  --font-h:  'Plus Jakarta Sans','Segoe UI',system-ui,sans-serif;
  --font-b:  system-ui,-apple-system,'Segoe UI',sans-serif;
  --r:       10px;
  --rL:      16px;
  --rXL:     20px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-d:0 4px 32px rgba(0,0,0,0.3);
}

/* ── GENERATEPRESS RESET ────────────────────────────────────── */
.site-content          { padding: 0 !important; }
.entry-content > *     { max-width: 100% !important; }
.entry-content         { padding: 0 !important; margin: 0 !important; }
.wp-block-custom-html  { padding: 0 !important; margin: 0 !important; }
.iwv, .iwv *           { box-sizing: border-box; }

/* ── BASE ───────────────────────────────────────────────────── */
.iwv {
  font-family: var(--font-b);
  color: var(--body);
  line-height: 1.6;
}
.iwv h1, .iwv h2, .iwv h3, .iwv h4, .iwv h5 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}
.iwv p  { line-height: 1.75; margin: 0 0 .9em; }
.iwv p:last-child { margin-bottom: 0; }
.iwv a  { color: var(--blue); text-decoration: none; }
.iwv ul { margin: 0; padding: 0; }
.iwv strong { font-weight: 700; }
.iwv em { font-style: italic; }

/* ── DARK MODIFIER ──────────────────────────────────────────── */
.iwv-dark {
  background: var(--ink);
  color: var(--white);
}
.iwv-dark h1,.iwv-dark h2,.iwv-dark h3,.iwv-dark h4 { color: var(--white); }
.iwv-dark p { color: rgba(244,247,255,0.62); }

/* ── WRAPPERS ───────────────────────────────────────────────── */
.iwv-wrap    { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.iwv-wrap-sm { max-width: 800px;  margin: 0 auto; padding: 0 20px; }
.iwv-wrap-xs { max-width: 640px;  margin: 0 auto; padding: 0 20px; }

/* ── SPACING ────────────────────────────────────────────────── */
.iwv-section    { padding: 80px 0; }
.iwv-section-sm { padding: 56px 0; }
.iwv-section-xs { padding: 36px 0; }

/* ── NOTICE BAR ─────────────────────────────────────────────── */
.iwv-noticebar {
  background: var(--lime);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  z-index: 1000;
}
.iwv-noticebar a {
  color: var(--ink);
  text-decoration: underline;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────────*/
.iwv-nav {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
}
.iwv-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.iwv-logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.iwv-logo .i    { color: var(--cyan); }
.iwv-logo .web  { color: var(--white); }
.iwv-logo .vault {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop nav links */
.iwv-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.iwv-nav-links > li { position: relative; }
.iwv-nav-links > li > a {
  display: block;
  padding: 8px 13px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  color: rgba(244,247,255,0.72);
  text-decoration: none;
  border-radius: 8px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.iwv-nav-links > li > a:hover,
.iwv-nav-links > li.active > a {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* Dropdown */
.iwv-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rL);
  padding: 8px;
  min-width: 240px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 200;
  box-shadow: var(--shadow-d);
}
.iwv-drop::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--deep);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}
/* Open dropdown on: hover (mouse) OR focus-within (keyboard) OR .drop-open (touch/JS) */
.iwv-nav-links > li:hover .iwv-drop,
.iwv-nav-links > li:focus-within .iwv-drop,
.iwv-nav-links > li.drop-open .iwv-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.iwv-drop-label {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,247,255,0.25);
  padding: 8px 12px 4px;
  display: block;
}
.iwv-drop li a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,247,255,0.68);
  border-radius: 8px;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.iwv-drop li a:hover {
  background: rgba(0,87,255,0.14);
  color: var(--cyan);
}
.iwv-drop li a span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}

/* Nav actions */
.iwv-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
/* .iwv-nav-login removed — replaced by Client Area button */

/* Burger button */
.iwv-burger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0;
  flex-shrink: 0;
}
.iwv-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, width .2s ease;
  transform-origin: center;
}
/* Burger → X animation when menu is open */
.iwv-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.iwv-burger.active span:nth-child(2) { opacity: 0; width: 0; }
.iwv-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu: slide in from right ── */
.iwv-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1001; /* must be above .iwv-nav (999) */
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  /* Slide off-screen right + hidden; no display:none so transitions work */
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear .32s;
}
.iwv-mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.iwv-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--ink);
  z-index: 1;
}
.iwv-mobile-close {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: background .15s;
}
.iwv-mobile-close:hover { background: rgba(255,255,255,0.12); }

.iwv-mobile-nav { padding: 8px 20px 40px; }

/* Category toggle buttons */
.iwv-mobile-cat {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--white);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
}
.iwv-mobile-cat:hover { color: var(--cyan); }
.iwv-cat-arrow {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .22s ease;
}
.iwv-mobile-cat[aria-expanded="true"] .iwv-cat-arrow {
  transform: rotate(180deg);
  color: var(--cyan);
}

/* Accordion groups — collapsed by default */
.iwv-mobile-group {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s cubic-bezier(0.4, 0, 0.2, 1);
}
.iwv-mobile-group.open {
  max-height: 400px; /* large enough for any group */
}

.iwv-mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  color: rgba(244,247,255,0.75);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color .12s;
}
.iwv-mobile-nav a:hover,
.iwv-mobile-nav a:active { color: var(--white); }
.iwv-mobile-nav a.sub {
  font-size: 14px;
  padding: 10px 0 10px 18px;
  font-weight: 500;
  color: rgba(244,247,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.iwv-mobile-nav a.sub:hover { color: var(--cyan); }
.iwv-mobile-actions {
  margin-top: 28px;
  padding-top: 4px;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────────*/
.iwv-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: .01em;
}
.iwv-btn:hover  { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.iwv-btn:active { transform: translateY(0); box-shadow: none; }

.iwv-btn-grad    { background: var(--grad); color: #fff; }
.iwv-btn-primary { background: var(--blue); color: #fff; }
.iwv-btn-lime    { background: var(--lime); color: var(--ink); }
.iwv-btn-white   { background: #fff; color: var(--ink); }
.iwv-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.28);
}
.iwv-btn-outline:hover { border-color: rgba(255,255,255,0.55); }
.iwv-btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(10,14,26,0.25);
}
.iwv-btn-sm  { padding: 9px 18px; font-size: 13px; }
.iwv-btn-lg  { padding: 16px 34px; font-size: 16px; }
.iwv-btn-xl  { padding: 18px 40px; font-size: 17px; }
.iwv-btn-full{ width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────────────────────────*/
.iwv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.iwv-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .12s;
}
.iwv-breadcrumb a:hover { color: var(--cyan); }
.iwv-breadcrumb .sep { color: rgba(255,255,255,0.18); }

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE HERO
───────────────────────────────────────────────────────────────*/
.iwv-hero {
  background: var(--ink);
  padding: 100px 0 84px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.iwv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%,rgba(0,87,255,0.26) 0%,transparent 65%),
    radial-gradient(ellipse 45% 35% at 88% 55%,rgba(0,200,255,0.1) 0%,transparent 60%),
    radial-gradient(ellipse 30% 25% at 12% 65%,rgba(0,87,255,0.08) 0%,transparent 55%);
  pointer-events: none;
}
/* Grid texture */
.iwv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.iwv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.22);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.iwv-hero h1 {
  font-size: clamp(38px, 6.5vw, 70px);
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  letter-spacing: -.03em;
  line-height: 1.08;
}
.iwv-hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.iwv-hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(244,247,255,0.62);
  max-width: 620px;
  margin: 0 auto 38px;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}
.iwv-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.iwv-hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.iwv-hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--rL);
  overflow: hidden;
  margin-top: 68px;
  position: relative;
  z-index: 1;
}
.iwv-stat-item {
  background: rgba(255,255,255,0.024);
  padding: 26px 16px;
  text-align: center;
  transition: background .2s;
}
.iwv-stat-item:hover { background: rgba(0,87,255,0.08); }
.iwv-stat-num {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.iwv-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────────────────────────*/
.iwv-trust-bar {
  background: var(--pale);
  border-top: 1px solid #e2ebf8;
  border-bottom: 1px solid #e2ebf8;
  padding: 18px 0;
  overflow: hidden;
}
.iwv-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 28px;
}
.iwv-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  white-space: nowrap;
}
.iwv-trust-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   SECTION HEADINGS
───────────────────────────────────────────────────────────────*/
.iwv-heading {
  text-align: center;
  margin-bottom: 48px;
}
.iwv-heading-tag {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.iwv-heading h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 14px;
  letter-spacing: -.015em;
}
.iwv-heading p {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.72;
}
.iwv-heading.light .iwv-heading-tag { color: var(--cyan); }
.iwv-heading.light h2 { color: var(--white); }
.iwv-heading.light p  { color: rgba(244,247,255,0.52); }
.iwv-heading.left { text-align: left; }
.iwv-heading.left p { margin: 0; }

/* ─────────────────────────────────────────────────────────────
   GRID SYSTEMS
───────────────────────────────────────────────────────────────*/
.iwv-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.iwv-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.iwv-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ─────────────────────────────────────────────────────────────
   PRODUCT CARDS (Homepage grid)
───────────────────────────────────────────────────────────────*/
.iwv-product-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--rL);
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.iwv-product-card:hover {
  border-color: rgba(0,87,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,87,255,0.12);
}
.iwv-product-card .icon {
  width: 48px; height: 48px;
  background: rgba(0,87,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--cyan);
  transition: background .2s;
}
.iwv-product-card:hover .icon { background: rgba(0,87,255,0.25); }
.iwv-product-card h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.iwv-product-card p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.62; }
.iwv-product-card .from {
  font-family: var(--font-h);
  font-size: 12px;
  color: var(--cyan);
  margin-top: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.iwv-product-card .badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(184,255,60,0.14);
  color: var(--lime);
  border: 1px solid rgba(184,255,60,0.24);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ─────────────────────────────────────────────────────────────
   FEATURE CARDS — Light
───────────────────────────────────────────────────────────────*/
.iwv-fcard {
  background: var(--pale);
  border: 1px solid #dde5f5;
  border-radius: var(--rL);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.iwv-fcard:hover { border-color: rgba(0,87,255,0.3); transform: translateY(-2px); }
.iwv-fcard-icon {
  width: 44px; height: 44px;
  background: rgba(0,87,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.iwv-fcard h3 { font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.iwv-fcard p  { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────
   FEATURE CARDS — Dark
───────────────────────────────────────────────────────────────*/
.iwv-fcard-dark {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--rL);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.iwv-fcard-dark:hover { border-color: rgba(0,87,255,0.4); transform: translateY(-2px); }
.iwv-fcard-dark .iwv-fcard-icon {
  background: rgba(0,87,255,0.2);
  color: var(--cyan);
}
.iwv-fcard-dark h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.iwv-fcard-dark p  { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────
   OFFSHORE SPLIT SECTION
───────────────────────────────────────────────────────────────*/
.iwv-offshore {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--rXL);
  overflow: hidden;
}
.iwv-offshore-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.iwv-offshore-left {
  padding: 52px 44px;
  background: linear-gradient(135deg,rgba(0,87,255,0.14),rgba(0,200,255,0.06));
  position: relative;
}
.iwv-offshore-right { padding: 52px 44px; }
.iwv-offshore-tag {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: block;
}
.iwv-offshore-left h2  { color: var(--white); font-size: clamp(20px,2.8vw,32px); margin-bottom: 16px; }
.iwv-offshore-left p   { color: rgba(244,247,255,0.6); font-size: 15px; margin-bottom: 24px; line-height: 1.72; }
.iwv-offshore-right h2 { font-size: clamp(18px,2.2vw,26px); color: var(--ink); margin-bottom: 18px; }

/* ─────────────────────────────────────────────────────────────
   CHECK LISTS
───────────────────────────────────────────────────────────────*/
.iwv-chk {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 11px;
}
.iwv-chk li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
}
.iwv-chk.light li { color: rgba(244,247,255,0.75); }
.iwv-chk li::before {
  content: '';
  width: 19px; height: 19px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230057FF'/%3E%3Cpath d='M6 10l2.5 2.5L14 7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS — STEPS
───────────────────────────────────────────────────────────────*/
.iwv-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
}
.iwv-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: var(--grad);
  z-index: 0;
}
.iwv-step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.iwv-step-num {
  width: 56px; height: 56px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--pale);
}
.iwv-step h3 { font-size: 17px; color: var(--ink); margin-bottom: 10px; }
.iwv-step p  { font-size: 14px; color: var(--muted); line-height: 1.68; }

/* ─────────────────────────────────────────────────────────────
   PRICING TABLES
───────────────────────────────────────────────────────────────*/
.iwv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  align-items: start;
}
.iwv-plan {
  background: var(--pale);
  border: 1.5px solid #dce6f5;
  border-radius: var(--rL);
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.iwv-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0,87,255,0.35); }
.iwv-plan.featured {
  background: var(--ink);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 12px 40px rgba(0,87,255,0.18);
}
.iwv-plan.featured:hover { border-color: var(--cyan); }
.iwv-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.iwv-plan-name {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.iwv-plan.featured .iwv-plan-name { color: rgba(244,247,255,0.5); }
.iwv-plan-price {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.iwv-plan.featured .iwv-plan-price { color: var(--white); }
.iwv-plan-price sup { font-size: 20px; vertical-align: super; font-weight: 700; }
.iwv-plan-price sub { font-size: 16px; font-weight: 500; color: var(--muted); vertical-align: baseline; }
.iwv-plan-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.iwv-plan-trial {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(0,87,255,0.08);
  border: 1px solid rgba(0,87,255,0.15);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.iwv-plan.featured .iwv-plan-trial {
  color: var(--lime);
  background: rgba(184,255,60,0.1);
  border-color: rgba(184,255,60,0.2);
}
.iwv-plan-divider {
  height: 1px;
  background: #dce6f5;
  margin: 18px 0;
}
.iwv-plan.featured .iwv-plan-divider { background: var(--border); }
.iwv-plan-features {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: grid; gap: 9px;
}
.iwv-plan-feature {
  font-size: 13.5px;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}
.iwv-plan.featured .iwv-plan-feature { color: rgba(244,247,255,0.72); }
.iwv-plan-feature::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%230057FF'/%3E%3Cpath d='M4.5 8l2 2L11.5 6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT PAGE HERO (phero)
───────────────────────────────────────────────────────────────*/
.iwv-phero {
  background: var(--ink);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.iwv-phero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 25% 50%,rgba(0,87,255,0.22) 0%,transparent 65%),
    radial-gradient(ellipse 45% 45% at 88% 20%,rgba(0,200,255,0.1) 0%,transparent 60%);
  pointer-events: none;
}
.iwv-phero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.iwv-phero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.iwv-phero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  background: rgba(184,255,60,0.1);
  border: 1px solid rgba(184,255,60,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.iwv-phero h1 {
  font-size: clamp(28px, 4.8vw, 52px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.iwv-phero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.iwv-phero-sub {
  font-size: 15.5px;
  color: rgba(244,247,255,0.62);
  line-height: 1.75;
  margin-bottom: 28px;
}
.iwv-phero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.iwv-phero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.iwv-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  color: rgba(244,247,255,0.65);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 13px;
  border-radius: 100px;
}
.iwv-pill::before {
  content: '✓';
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}

/* Phero right box */
.iwv-phero-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--rL);
  padding: 30px;
  backdrop-filter: blur(8px);
}
.iwv-phero-box-label {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.iwv-phero-price {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -.02em;
}
.iwv-phero-price sup { font-size: 24px; vertical-align: super; font-weight: 700; }
.iwv-phero-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.iwv-phero-feat {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: grid; gap: 9px;
}
.iwv-phero-feat li {
  font-size: 13.5px;
  color: rgba(244,247,255,0.68);
  display: flex;
  align-items: center;
  gap: 9px;
}
.iwv-phero-feat li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%230057FF'/%3E%3Cpath d='M4.5 8l2 2L11.5 6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────────────────────
   SPEC GRID (VPS/Dedicated)
───────────────────────────────────────────────────────────────*/
.iwv-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.iwv-spec {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--rL);
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s;
}
.iwv-spec:hover { border-color: rgba(0,87,255,0.4); }
.iwv-spec-icon {
  width: 40px; height: 40px;
  background: rgba(0,87,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin: 0 auto 14px;
}
.iwv-spec-val {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.iwv-spec-label { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* ─────────────────────────────────────────────────────────────
   SPLIT LAYOUT (Why section)
───────────────────────────────────────────────────────────────*/
.iwv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.iwv-split-tag {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.iwv-split h2 { font-size: clamp(22px, 3vw, 36px); margin-bottom: 16px; letter-spacing: -.015em; }
.iwv-split p  { font-size: 15px; color: var(--muted); margin-bottom: 22px; line-height: 1.75; }

/* Split right box */
.iwv-split-box {
  background: var(--light);
  border-radius: var(--rL);
  padding: 34px;
}
.iwv-split-box-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: block;
}

/* ─────────────────────────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────────────────────────────*/
.iwv-table-wrap {
  overflow-x: auto;
  border-radius: var(--rL);
  border: 1px solid #dce6f5;
  box-shadow: var(--shadow);
}
.iwv-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.iwv-table thead tr { background: var(--ink); }
.iwv-table th {
  color: rgba(244,247,255,0.45);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  padding: 15px 18px;
  text-align: left;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.iwv-table th.hi { color: var(--cyan); }
.iwv-table td {
  padding: 13px 18px;
  font-size: 13.5px;
  color: var(--body);
  border-bottom: 1px solid #edf0f8;
}
.iwv-table td:first-child {
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
}
.iwv-table tr:last-child td { border-bottom: none; }
.iwv-table tr:nth-child(even) td { background: #f5f8ff; }
.ck  { color: var(--blue); font-weight: 700; font-size: 16px; }
.cx  { color: #c8cedf; font-size: 16px; }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────────*/
.iwv-testi {
  background: var(--pale);
  border: 1px solid #dce6f5;
  border-radius: var(--rL);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.iwv-testi:hover { border-color: rgba(0,87,255,0.3); transform: translateY(-2px); }
.iwv-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.iwv-testi-text {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.iwv-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.iwv-testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.iwv-testi-name { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--ink); }
.iwv-testi-role { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────────────────────*/
.iwv-faq { display: grid; gap: 8px; }
.iwv-faq-item {
  background: var(--pale);
  border: 1px solid #dce6f5;
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}
.iwv-faq-item.open { border-color: rgba(0,87,255,0.35); }
.iwv-faq-q {
  padding: 18px 22px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  user-select: none;
  transition: color .15s;
}
.iwv-faq-q:hover { color: var(--blue); }
.iwv-faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.iwv-faq-item.open .iwv-faq-q::after {
  content: '−';
  transform: rotate(0);
}
.iwv-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  transition: max-height .3s ease, padding .3s;
}
.iwv-faq-item.open .iwv-faq-a {
  max-height: 400px;
  padding: 0 22px 20px;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────────────*/
.iwv-cta {
  background: var(--ink);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.iwv-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%,rgba(0,87,255,0.2) 0%,transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 20%,rgba(0,200,255,0.06) 0%,transparent 60%);
  pointer-events: none;
}
.iwv-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.iwv-cta h2 {
  color: var(--white);
  font-size: clamp(28px,4.5vw,46px);
  margin-bottom: 16px;
  letter-spacing: -.025em;
  position: relative;
  z-index: 1;
}
.iwv-cta p {
  color: rgba(244,247,255,0.55);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.iwv-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.iwv-cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   SERVER LOCATIONS
───────────────────────────────────────────────────────────────*/
.iwv-locations {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.iwv-location {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 18px;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  color: rgba(244,247,255,0.8);
  transition: border-color .2s;
}
.iwv-location:hover { border-color: rgba(0,87,255,0.4); }
.iwv-location-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(184,255,60,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 8px rgba(184,255,60,0.6); }
  50%      { box-shadow: 0 0 16px rgba(184,255,60,0.9); }
}

/* ─────────────────────────────────────────────────────────────
   DOMAIN SEARCH
───────────────────────────────────────────────────────────────*/
.iwv-domain-search {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rL);
  padding: 40px;
  backdrop-filter: blur(8px);
}
.iwv-domain-form {
  display: flex;
  gap: 0;
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid rgba(0,87,255,0.45);
  transition: border-color .2s;
}
.iwv-domain-form:focus-within { border-color: var(--cyan); }
.iwv-domain-input {
  flex: 1;
  padding: 15px 20px;
  font-size: 15px;
  background: rgba(255,255,255,0.05);
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-b);
}
.iwv-domain-input::placeholder { color: var(--muted); }
.iwv-domain-btn {
  padding: 15px 28px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.iwv-domain-btn:hover { opacity: .88; }

/* TLD grid */
.iwv-tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 32px;
}
.iwv-tld-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 12px;
  text-align: center;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.iwv-tld-card:hover { border-color: rgba(0,87,255,0.45); transform: translateY(-2px); }
.iwv-tld-ext {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 5px;
  line-height: 1;
}
.iwv-tld-price { font-size: 11px; color: var(--muted); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   ABOUT — STATS
───────────────────────────────────────────────────────────────*/
.iwv-about-stat {
  text-align: center;
  padding: 36px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--rL);
  transition: border-color .2s, transform .2s;
}
.iwv-about-stat:hover { border-color: rgba(0,87,255,0.4); transform: translateY(-3px); }
.iwv-about-stat-num {
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.iwv-about-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────────*/
.iwv-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.iwv-contact-card {
  background: var(--pale);
  border: 1px solid #dce6f5;
  border-radius: var(--rL);
  padding: 24px 26px;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.iwv-contact-card:hover { border-color: rgba(0,87,255,0.3); }
.iwv-contact-card h3 {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.iwv-contact-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.iwv-contact-card a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.iwv-contact-card a:hover { text-decoration: underline; }

/* Form */
.iwv-form-group { margin-bottom: 18px; }
.iwv-form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.iwv-form-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--ink);
  background: var(--pale);
  border: 1.5px solid #dce6f5;
  border-radius: var(--r);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  font-family: var(--font-b);
  appearance: none;
}
.iwv-form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,255,0.12);
}
.iwv-form-textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--ink);
  background: var(--pale);
  border: 1.5px solid #dce6f5;
  border-radius: var(--r);
  outline: none;
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-b);
  transition: border-color .18s, box-shadow .18s;
  line-height: 1.65;
}
.iwv-form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,255,0.12);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────*/
.iwv-footer {
  background: #070b14;
  border-top: 1px solid var(--border);
  padding: 68px 0 36px;
}
.iwv-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.iwv-footer-brand p {
  font-size: 14px;
  color: rgba(244,247,255,0.36);
  line-height: 1.72;
  margin: 14px 0 0;
  max-width: 290px;
}
.iwv-footer-col h4 {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,247,255,0.3);
  margin-bottom: 16px;
}
.iwv-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.iwv-footer-col a {
  font-size: 14px;
  color: rgba(244,247,255,0.48);
  text-decoration: none;
  transition: color .14s;
}
.iwv-footer-col a:hover { color: var(--white); }
.iwv-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.iwv-footer-copy {
  font-size: 13px;
  color: rgba(244,247,255,0.24);
}
.iwv-footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.iwv-footer-legal a {
  font-size: 13px;
  color: rgba(244,247,255,0.24);
  text-decoration: none;
  transition: color .14s;
}
.iwv-footer-legal a:hover { color: rgba(244,247,255,0.6); }

/* ─────────────────────────────────────────────────────────────
   HIGHLIGHT / INFO BOXES
───────────────────────────────────────────────────────────────*/
.iwv-box {
  border-radius: var(--rL);
  padding: 32px 36px;
}
.iwv-box-blue {
  background: linear-gradient(135deg,rgba(0,87,255,0.08),rgba(0,200,255,0.04));
  border: 1px solid rgba(0,87,255,0.2);
}
.iwv-box-light {
  background: var(--light);
  border: 1px solid #dce6f5;
}
.iwv-box-dark {
  background: var(--panel);
  border: 1px solid var(--border);
}
.iwv-box-lime {
  background: rgba(184,255,60,0.08);
  border: 1px solid rgba(184,255,60,0.2);
}

/* ─────────────────────────────────────────────────────────────
   PRICING HERO MINI (Homepage overview cards)
───────────────────────────────────────────────────────────────*/
.iwv-plan-mini {
  background: var(--pale);
  border: 1.5px solid #dce6f5;
  border-radius: var(--rL);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}
.iwv-plan-mini:hover { transform: translateY(-3px); border-color: rgba(0,87,255,0.4); }
.iwv-plan-mini.featured {
  background: var(--ink);
  border-color: var(--blue);
}
.iwv-plan-mini-cat {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.iwv-plan-mini.featured .iwv-plan-mini-cat { color: var(--cyan); }
.iwv-plan-mini h3 { font-size: 16px; color: var(--ink); margin-bottom: 16px; }
.iwv-plan-mini.featured h3 { color: var(--white); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS — COMPLETE
───────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .iwv-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .iwv-footer-grid .iwv-footer-brand { grid-column: 1 / -1; }
  .iwv-footer-grid { gap: 32px; margin-bottom: 40px; }
}

@media (max-width: 900px) {
  .iwv-nav-links, .iwv-nav-login { display: none; }
  .iwv-burger { display: flex; }
  .iwv-grid-4 { grid-template-columns: 1fr 1fr; }
  .iwv-spec-grid { grid-template-columns: 1fr 1fr; }
  .iwv-phero-inner { grid-template-columns: 1fr; gap: 36px; }
  .iwv-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .iwv-offshore-inner { grid-template-columns: 1fr; }
  .iwv-offshore-left, .iwv-offshore-right { padding: 36px 28px; }
  .iwv-contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .iwv-section    { padding: 60px 0; }
  .iwv-section-sm { padding: 44px 0; }
  .iwv-hero       { padding: 72px 0 60px; }
  .iwv-hero-stats { grid-template-columns: 1fr 1fr; }
  .iwv-hero-stats .iwv-stat-item:last-child { grid-column: 1 / -1; }
  .iwv-split      { grid-template-columns: 1fr; gap: 36px; }
  .iwv-grid-3     { grid-template-columns: 1fr 1fr; }
  .iwv-steps      { grid-template-columns: 1fr; gap: 28px; }
  .iwv-steps::before { display: none; }
  .iwv-step-num   { box-shadow: 0 0 0 4px var(--pale); }
  .iwv-phero      { padding: 56px 0 48px; }
  .iwv-cta        { padding: 64px 0; }
  .iwv-footer-grid { grid-template-columns: 1fr 1fr; }
  .iwv-footer-bottom { flex-direction: column; text-align: center; }
  .iwv-footer-legal  { justify-content: center; }
  .iwv-domain-form { flex-direction: column; border-radius: var(--r); }
  .iwv-domain-input { border-bottom: 1px solid rgba(0,87,255,0.2); }
  .iwv-domain-btn { border-radius: 0 0 var(--r) var(--r); }
  .iwv-tld-grid   { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 560px) {
  .iwv-grid-4, .iwv-grid-3, .iwv-grid-2 { grid-template-columns: 1fr; }
  .iwv-hero-stats  { grid-template-columns: 1fr 1fr; }
  .iwv-spec-grid   { grid-template-columns: 1fr 1fr; }
  .iwv-about-stat  { padding: 28px 20px; }
  .iwv-hero-actions { flex-direction: column; align-items: stretch; }
  .iwv-hero-actions .iwv-btn { justify-content: center; }
  .iwv-phero-actions { flex-direction: column; }
  .iwv-phero-actions .iwv-btn { justify-content: center; }
  .iwv-cta-btns    { flex-direction: column; align-items: stretch; }
  .iwv-cta-btns .iwv-btn { justify-content: center; }
  .iwv-footer-grid  { grid-template-columns: 1fr; }
  .iwv-tld-grid    { grid-template-columns: repeat(2,1fr); }
  .iwv-domain-search { padding: 28px 20px; }
  .iwv-offshore-left, .iwv-offshore-right { padding: 28px 20px; }
  .iwv-box { padding: 24px 20px; }
  .iwv-split-box   { padding: 24px 20px; }
  .iwv-plan        { padding: 28px 22px; }
  .iwv-phero-box   { padding: 24px; }
  .iwv-phero-price { font-size: 42px; }
}

@media (max-width: 400px) {
  .iwv-hero-stats { grid-template-columns: 1fr; }
  .iwv-spec-grid  { grid-template-columns: 1fr; }
  .iwv-tld-grid   { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────────────────────────*/
.iwv-text-center { text-align: center; }
.iwv-text-muted  { color: var(--muted); }
.iwv-text-cyan   { color: var(--cyan); }
.iwv-text-lime   { color: var(--lime); }
.iwv-mt-sm  { margin-top: 16px; }
.iwv-mt-md  { margin-top: 24px; }
.iwv-mt-lg  { margin-top: 36px; }
.iwv-mb-sm  { margin-bottom: 16px; }
.iwv-hide-mobile { display: block; }

@media (max-width: 768px) {
  .iwv-hide-mobile { display: none !important; }
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE PRODUCT CARD GRID
   Used in Block 3 of homepage — 2+3+2 staggered layout
───────────────────────────────────────────────────────────────*/
.iwv-products-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.iwv-products-row-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.iwv-products-row-2-last {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Product card base */
.iwv-hp-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #1A2140;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 26px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.iwv-hp-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at 100% 0%, rgba(0,87,255,0.1), transparent 65%);
  pointer-events: none;
}
.iwv-hp-card:hover {
  border-color: rgba(0,87,255,0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,87,255,0.1);
}
.iwv-hp-card-sm {
  padding: 22px 22px 18px;
}
.iwv-hp-card-accent {
  background: linear-gradient(135deg, rgba(0,87,255,0.12), rgba(0,200,255,0.05));
  border-color: rgba(0,87,255,0.2);
}
.iwv-hp-card-accent:hover {
  border-color: rgba(0,87,255,0.55);
  box-shadow: 0 10px 40px rgba(0,87,255,0.15);
}

/* Card internals */
.iwv-hp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.iwv-hp-card-sm .iwv-hp-card-top { margin-bottom: 12px; }

.iwv-hp-icon {
  width: 46px; height: 46px;
  background: rgba(0,87,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.iwv-hp-icon-sm {
  width: 38px; height: 38px;
  border-radius: 10px;
}

.iwv-hp-badge {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  line-height: 1.6;
}
.iwv-hp-badge-lime {
  background: rgba(184,255,60,0.12);
  color: var(--lime);
  border: 1px solid rgba(184,255,60,0.22);
}
.iwv-hp-badge-cyan {
  background: rgba(0,200,255,0.1);
  color: var(--cyan);
  border: 1px solid rgba(0,200,255,0.22);
}

.iwv-hp-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 9px;
  line-height: 1.2;
}
.iwv-hp-card-sm .iwv-hp-title { font-size: 15px; margin-bottom: 7px; }

.iwv-hp-desc {
  font-size: 13.5px;
  color: rgba(244,247,255,0.52);
  margin: 0 0 20px;
  line-height: 1.65;
  flex: 1;
}
.iwv-hp-card-sm .iwv-hp-desc { font-size: 13px; margin-bottom: 16px; }

.iwv-hp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.iwv-hp-price {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}
.iwv-hp-arrow {
  font-size: 13px;
  color: rgba(244,247,255,0.25);
  transition: color .15s, transform .15s;
}
.iwv-hp-card:hover .iwv-hp-arrow {
  color: var(--cyan);
  transform: translateX(3px);
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE PRICING MINI CARDS
   Used in Block 6 of homepage — 4-column overview
───────────────────────────────────────────────────────────────*/
.iwv-pm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.iwv-pm-card {
  background: #fff;
  border: 1.5px solid #dce6f5;
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
}
.iwv-pm-card.featured {
  background: var(--ink);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 12px 40px rgba(0,87,255,0.2);
}
.iwv-pm-top-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.iwv-pm-cat {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 7px;
  display: block;
}
.iwv-pm-card.featured .iwv-pm-cat { color: rgba(0,200,255,0.8); }
.iwv-pm-name {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--body);
  margin-bottom: 6px;
}
.iwv-pm-card.featured .iwv-pm-name { color: rgba(244,247,255,0.72); }
.iwv-pm-price {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.iwv-pm-card.featured .iwv-pm-price { color: var(--white); }
.iwv-pm-price sup { font-size: 20px; vertical-align: super; font-weight: 700; }
.iwv-pm-price-custom {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.iwv-pm-card.featured .iwv-pm-price-custom { color: var(--white); }
.iwv-pm-period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.iwv-pm-divider {
  height: 1px;
  background: #dce6f5;
  margin-bottom: 16px;
}
.iwv-pm-card.featured .iwv-pm-divider { background: var(--border); }
.iwv-pm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}
.iwv-pm-item {
  font-size: 13px;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.iwv-pm-card.featured .iwv-pm-item { color: rgba(244,247,255,0.65); }
.iwv-pm-item-tick {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.iwv-pm-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  border-radius: 9px;
  text-decoration: none;
  transition: opacity .15s;
}
.iwv-pm-btn:hover { opacity: .88; }
.iwv-pm-btn-grad {
  background: var(--grad);
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE OFFSHORE FEATURE GRID
   Used inside .iwv-offshore-right on the homepage Block 4
   The main offshore layout uses existing .iwv-offshore classes
───────────────────────────────────────────────────────────────*/
.iwv-offshore-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.iwv-offshore-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.iwv-offshore-feature-dot {
  min-width: 18px; height: 18px;
  background: rgba(0,87,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.iwv-offshore-feature span {
  font-size: 13.5px;
  color: rgba(244,247,255,0.75);
}

/* Offshore lime bullet list — used in homepage left panel */
.iwv-offshore-lime-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 14px;
}
.iwv-offshore-lime-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(244,247,255,0.82);
  line-height: 1.5;
}
.iwv-offshore-lime-bullet {
  min-width: 22px; height: 22px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — NEW HOMEPAGE COMPONENTS
───────────────────────────────────────────────────────────────*/
@media (max-width: 860px) {
  .iwv-products-row-3  { grid-template-columns: 1fr 1fr; }
  .iwv-pm-grid         { grid-template-columns: 1fr 1fr; }
  .iwv-offshore-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .iwv-products-row-2,
  .iwv-products-row-3,
  .iwv-products-row-2-last { grid-template-columns: 1fr; }
  .iwv-pm-grid             { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   WORDPRESS ADMIN BAR COMPATIBILITY
   When logged in, WordPress adds a fixed admin bar:
   — 32px tall on desktop (≥783px)
   — 46px tall on mobile  (<783px)
   Offset the sticky nav and fixed mobile menu accordingly.
───────────────────────────────────────────────────────────────*/
html.admin-bar .iwv-nav {
  top: 32px;
}
html.admin-bar .iwv-mobile-menu {
  top: 32px;
}
/* Mobile admin bar is taller */
@media screen and (max-width: 782px) {
  html.admin-bar .iwv-nav {
    top: 46px;
  }
  html.admin-bar .iwv-mobile-menu {
    top: 46px;
  }
}
/* Admin bar hides itself below 600px — reset to 0 */
@media screen and (max-width: 600px) {
  html.admin-bar .iwv-nav,
  html.admin-bar .iwv-mobile-menu {
    top: 0;
  }
}
