/* iOutlet — Homepage — Apple-quality design */

/* Break homepage sections out of #page (max-width:1600px) to reach viewport edges */
body { overflow-x: clip; }
/* Neutralize empty Ad Inserter spacer injected before #page (creates 8px white seam under fixed header) */
body > .code-block { margin: 0 !important; }
.io-hero,
.io-trust-bar,
.io-categories,
.io-why,
.io-cta-banner {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.io-hero {
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  background: var(--io-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow — breathes slowly */
.io-hero::before {
  content: '';
  position: absolute;
  bottom: -180px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.11) 0%, transparent 65%);
  animation: io-breathe 7s ease-in-out infinite;
  pointer-events: none;
}
.io-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,100,200,0.05) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes io-breathe {
  0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.7; }
  50%       { transform: translateX(-50%) scale(1.08); opacity: 1;   }
}

.io-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--io-blue-bright);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  animation: io-fadeInDown 0.9s ease-out both;
  backdrop-filter: blur(8px);
}
.io-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--io-green);
  box-shadow: 0 0 8px rgba(52,199,89,0.6);
  animation: io-pulse 2.5s ease-in-out infinite;
}

.io-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 700;
  color: var(--io-white);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 860px;
  animation: io-fadeInUp 0.9s ease-out 0.1s both;
  margin: 0;
}

/* Second line in crisp blue — no animation, just color */
.io-hero-accent {
  color: var(--io-blue-bright);
}

.io-hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: 24px;
  max-width: 480px;
  letter-spacing: -0.01em;
  animation: io-fadeInUp 0.9s ease-out 0.22s both;
}

.io-hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
  animation: io-fadeInUp 0.9s ease-out 0.34s both;
}

/* Scroll indicator */
.io-hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: io-fadeInUp 1s ease-out 0.8s both;
}
.io-hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25));
  animation: io-scroll-line 2s ease-in-out infinite;
}
@keyframes io-scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}


/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.io-trust-bar {
  background: var(--io-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.io-trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 24px;
}
.io-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px;
  gap: 4px;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.io-trust-item:last-child { border-right: none; }
.io-trust-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.io-trust-icon svg {
  width: 22px; height: 22px;
  stroke: var(--io-blue);
  fill: none;
  stroke-width: 1.7;
}
.io-trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--io-near-black);
  letter-spacing: -0.01em;
}
.io-trust-desc {
  font-size: 11px;
  color: var(--io-text-2);
  letter-spacing: 0;
}


/* ═══════════════════════════════════════════
   CATEGORIES — iOutlet cards: text left, product right
═══════════════════════════════════════════ */
.io-categories {
  background: var(--io-gray-bg);
  padding: 96px 24px 80px;
}
.io-categories-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.io-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--io-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.io-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--io-near-black);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 52px;
}

/* Grid: featured row, then 2x2 */
.io-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Base card — split horizontal: text 55% / image 45% */
.io-cat-card {
  --io-cat-glow: rgba(0,113,227,0.2);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  min-height: 360px;
  transition: transform 0.4s cubic-bezier(0.2,0,0,1), box-shadow 0.4s cubic-bezier(0.2,0,0,1);
  isolation: isolate;
}
/* Ambient color glow behind product */
.io-cat-card::before {
  content: '';
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 75%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--io-cat-glow) 0%, transparent 60%);
  filter: blur(12px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.2,0,0,1), opacity 0.5s ease;
}
.io-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}
.io-cat-card:hover::before {
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
}
.io-cat-card > * { position: relative; z-index: 1; }

.io-cat-card-light {
  background: linear-gradient(145deg, #ffffff 0%, #f2f4f8 100%);
  color: var(--io-near-black);
  border: 1px solid rgba(0,0,0,0.05);
}
.io-cat-card-dark {
  background: linear-gradient(135deg, #1a1a1f 0%, #0d0d12 100%);
  color: #fff;
}

/* Per-category ambient glow colors */
.io-cat-card[data-cat="iphone"]       { --io-cat-glow: rgba(88,107,164,0.45); }  /* blue titanium */
.io-cat-card[data-cat="mac"]          { --io-cat-glow: rgba(120,140,180,0.38); } /* space gray blue */
.io-cat-card[data-cat="ipad"]         { --io-cat-glow: rgba(140,170,210,0.35); } /* silver-blue */
.io-cat-card[data-cat="apple-watch"]  { --io-cat-glow: rgba(255,120,60,0.38); }  /* ultra orange */
.io-cat-card[data-cat="samsung"]      { --io-cat-glow: rgba(255,205,80,0.45); }  /* yellow */
.io-cat-card[data-cat="google-pixel"] { --io-cat-glow: rgba(100,180,255,0.38); } /* pixel sky */
.io-cat-card[data-cat="xiaomi"]       { --io-cat-glow: rgba(255,120,60,0.4); }   /* xiaomi orange */

/* Featured: full row, taller, larger text */
.io-cat-card-featured {
  grid-column: 1 / -1;
  min-height: 440px;
  grid-template-columns: 1fr 1fr;
}

/* Body (left column) */
.io-cat-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}
.io-cat-card-featured .io-cat-body { padding: 56px 52px; gap: 12px; }

/* Warranty badge */
.io-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 2px;
}
.io-cat-card-light .io-cat-badge {
  background: rgba(0,113,227,0.08);
  color: var(--io-blue);
}
.io-cat-card-dark .io-cat-badge {
  background: rgba(41,151,255,0.15);
  color: #5aa9ff;
}

.io-cat-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.io-cat-card-light .io-cat-eyebrow { color: var(--io-text-2); }
.io-cat-card-dark  .io-cat-eyebrow { color: rgba(255,255,255,0.5); }

.io-cat-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.io-cat-card-featured .io-cat-name { font-size: clamp(38px, 3.8vw, 52px); }
.io-cat-card-light .io-cat-name { color: var(--io-near-black); }
.io-cat-card-dark  .io-cat-name { color: #fff; }

.io-cat-tagline {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.005em;
  max-width: 380px;
}
.io-cat-card-featured .io-cat-tagline { font-size: 16px; max-width: 460px; }
.io-cat-card-light .io-cat-tagline { color: var(--io-text-2); }
.io-cat-card-dark  .io-cat-tagline { color: rgba(255,255,255,0.6); }

/* Price */
.io-cat-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.io-cat-price-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}
.io-cat-card-light .io-cat-price-label { color: var(--io-text-2); }
.io-cat-card-dark  .io-cat-price-label { color: rgba(255,255,255,0.5); }
.io-cat-price-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.io-cat-card-light .io-cat-price-value { color: var(--io-near-black); }
.io-cat-card-dark  .io-cat-price-value { color: #fff; }
.io-cat-price-value .woocommerce-Price-currencySymbol { font-weight: 500; opacity: 0.7; margin-left: 1px; }

/* CTAs */
.io-cat-ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.io-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 980px;
  text-decoration: none !important;
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.io-cat-btn-primary {
  background: var(--io-blue);
  color: #fff;
  border-color: var(--io-blue);
}
.io-cat-btn-primary:hover { background: var(--io-blue-bright); border-color: var(--io-blue-bright); color: #fff; }
.io-cat-card-light .io-cat-btn-outline {
  background: transparent;
  color: var(--io-near-black);
  border-color: rgba(0,0,0,0.15);
}
.io-cat-card-light .io-cat-btn-outline:hover {
  border-color: var(--io-near-black);
  background: var(--io-near-black);
  color: #fff;
}
.io-cat-card-dark .io-cat-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.io-cat-card-dark .io-cat-btn-outline:hover {
  background: #fff;
  color: var(--io-near-black);
  border-color: #fff;
}

/* Visual (right column) */
.io-cat-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 24px 0;
  min-width: 0;
}
.io-cat-visual img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2,0,0,1);
}
.io-cat-card-featured .io-cat-visual img { max-height: 380px; }
.io-cat-card:hover .io-cat-visual img { transform: scale(1.04) translateY(-6px); }

/* Gentle perpetual float to add life */
@keyframes io-cat-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.io-cat-visual img { animation: io-cat-float 6s ease-in-out infinite; }
.io-cat-card-featured .io-cat-visual img { animation-duration: 7s; }
/* Stagger across cards so they don't move in sync */
.io-cat-card:nth-child(2) .io-cat-visual img { animation-delay: -1.5s; }
.io-cat-card:nth-child(3) .io-cat-visual img { animation-delay: -3s; }
.io-cat-card:nth-child(4) .io-cat-visual img { animation-delay: -4.5s; }
.io-cat-card:nth-child(5) .io-cat-visual img { animation-delay: -2s; }
.io-cat-card:nth-child(6) .io-cat-visual img { animation-delay: -3.5s; }
.io-cat-card:nth-child(7) .io-cat-visual img { animation-delay: -5s; }

@media (prefers-reduced-motion: reduce) {
  .io-cat-visual img { animation: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .io-cat-grid { grid-template-columns: 1fr; }
  .io-cat-card, .io-cat-card-featured {
    grid-template-columns: 1fr;
    grid-column: auto;
    min-height: auto;
  }
  .io-cat-body { padding: 36px 28px 20px; text-align: left; }
  .io-cat-card-featured .io-cat-body { padding: 40px 28px 20px; }
  .io-cat-visual { padding: 12px 28px 36px; }
  .io-cat-visual img { max-height: 240px; }
  .io-cat-card-featured .io-cat-visual img { max-height: 260px; }
}


/* ═══════════════════════════════════════════
   MODELS CAROUSEL — flagship showcase
═══════════════════════════════════════════ */
.io-models {
  background: #fff;
  padding: 80px 24px 96px;
}
.io-models-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.io-models-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}
.io-models-nav { display: flex; gap: 8px; }
.io-models-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--io-near-black);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  padding: 0;
}
.io-models-arrow svg { width: 18px; height: 18px; }
.io-models-arrow:hover {
  background: var(--io-near-black);
  border-color: var(--io-near-black);
  color: #fff;
}
.io-models-arrow:active { transform: scale(0.95); }

/* Track */
.io-models-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 360px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 2px 20px;
  margin: 0 -8px;  /* bleed slightly so edges touch */
}
.io-models-track::-webkit-scrollbar { display: none; }

/* Card */
.io-model-card {
  position: relative;
  scroll-snap-align: start;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 0;
  color: #fff;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.2,0,0,1), box-shadow 0.35s ease;
}
.io-model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.io-model-light, .io-model-light .io-model-name, .io-model-light .io-model-cta { color: #fff; }
.io-model-dark,  .io-model-dark  .io-model-name, .io-model-dark  .io-model-cta { color: var(--io-near-black); }

.io-model-body { position: relative; z-index: 2; }
.io-model-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}
.io-model-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.io-model-price {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 2px;
}
.io-model-price span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.io-model-price .woocommerce-Price-currencySymbol { font-weight: 500; opacity: 0.7; }
.io-model-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.io-model-card:hover .io-model-cta { transform: translateX(2px); opacity: 1; }

/* Product image fills bottom */
.io-model-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  margin-top: auto;
}
.io-model-visual img {
  max-width: 92%;
  max-height: 280px;
  width: auto; height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2,0,0,1);
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.18));
}
.io-model-card:hover .io-model-visual img { transform: translateY(-6px) scale(1.04); }

/* Responsive */
@media (max-width: 700px) {
  .io-models-track { grid-auto-columns: 78vw; }
  .io-models-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .io-model-card { height: 400px; }
}

/* ═══════════════════════════════════════════
   WHY iOUTLET
═══════════════════════════════════════════ */
.io-why {
  background: var(--io-near-black);
  color: var(--io-white);
  padding: 112px 24px 120px;
  position: relative;
  overflow: hidden;
}
.io-why::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.io-why-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.io-why .io-section-label { color: var(--io-blue-bright); }
.io-why .io-section-title { color: var(--io-white); margin-bottom: 64px; }

.io-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.io-why-card {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.io-why-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}
/* Rounded corners on outer cards only */
.io-why-grid .io-why-card:nth-child(1) { border-radius: var(--io-r-lg) 0 0 0; }
.io-why-grid .io-why-card:nth-child(3) { border-radius: 0 var(--io-r-lg) 0 0; }
.io-why-grid .io-why-card:nth-child(4) { border-radius: 0 0 0 var(--io-r-lg); }
.io-why-grid .io-why-card:nth-child(6) { border-radius: 0 0 var(--io-r-lg) 0; }

.io-why-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,113,227,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.io-why-icon svg {
  width: 20px; height: 20px;
  stroke: var(--io-blue-bright);
  fill: none;
  stroke-width: 1.7;
}
.io-why-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--io-white);
}
.io-why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  margin: 0;
}


/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.io-cta-banner {
  background: var(--io-gray-bg);
  padding: 120px 24px;
  text-align: center;
}
.io-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}
.io-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--io-blue);
  margin-bottom: 20px;
}
.io-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--io-near-black);
  margin: 0 0 18px;
}
.io-cta-banner p {
  font-size: 18px;
  color: var(--io-text-2);
  line-height: 1.5;
  margin: 0 0 36px;
  letter-spacing: -0.01em;
}
.io-cta-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.io-cta-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--io-text-2);
}
.io-cta-badge-item svg {
  width: 16px; height: 16px;
  stroke: var(--io-blue);
  fill: none;
  stroke-width: 2;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .io-cat-grid { grid-template-columns: 1fr; }
  .io-cat-card-featured { flex-direction: column; min-height: auto; padding: 44px 36px 40px; }
  .io-cat-card-featured .io-cat-visual-side { display: none; }
  .io-why-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .io-why-grid .io-why-card:nth-child(1) { border-radius: var(--io-r-lg) 0 0 0; }
  .io-why-grid .io-why-card:nth-child(2) { border-radius: 0 var(--io-r-lg) 0 0; }
  .io-why-grid .io-why-card:nth-child(5) { border-radius: 0 0 0 var(--io-r-lg); }
  .io-why-grid .io-why-card:nth-child(6) { border-radius: 0 0 var(--io-r-lg) 0; }
  .io-trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .io-trust-item:nth-child(2) { border-right: none; }
  .io-trust-item:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.06); }
  .io-trust-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.06); }
}

@media (max-width: 600px) {
  .io-hero h1 { letter-spacing: -0.03em; }
  .io-hero-ctas { flex-direction: column; align-items: center; }
  .io-cat-card { padding: 36px 28px 32px; border-radius: var(--io-r-lg); }
  .io-cat-deco { font-size: 160px; }
  .io-why-grid { grid-template-columns: 1fr; }
  .io-why-card { border-radius: 0 !important; }
  .io-trust-bar-inner { grid-template-columns: 1fr; }
  .io-trust-item { border-right: none !important; border-top: 1px solid rgba(0,0,0,0.06) !important; }
  .io-trust-item:first-child { border-top: none !important; }
}
