/*
Theme Name: IPTV Hexagone
Theme URI: https://iptvhexagone.com/
Author: IPTV Hexagone
Author URI: https://iptvhexagone.com/
Description: Thème WordPress premium, rapide et optimisé SEO pour IPTV Hexagone — service IPTV France 4K. Design 2026, conversion-focused, multi-appareils. Prefixe CSS « ih- », constantes PHP « IH_ ».
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-hexagone
Tags: iptv, france, custom-colors, custom-logo, custom-menu, featured-images, translation-ready, threaded-comments
*/

/* ==========================================================================
   1. ROOT TOKENS — FLAG-CODED FRANCE
   ========================================================================== */
:root {
  --ih-bg: #FFFFFF;
  --ih-bg-soft: #F6F8FC;
  --ih-bg-soft-2: #EEF3FA;

  --ih-heading: #0B1F3A;
  --ih-heading-alt: #07172B;
  --ih-text: #333333;
  --ih-text-soft: #4A5568;
  --ih-text-muted: #6B7280;

  --ih-blue: #0055A4;
  --ih-blue-dark: #003F7A;
  --ih-red: #EF4135;
  --ih-red-dark: #C92F25;
  --ih-yellow: #FFD166;
  --ih-yellow-dark: #E5B84E;
  --ih-wa: #25D366;
  --ih-wa-dark: #1FB955;

  --ih-border: #E2E8F0;
  --ih-border-soft: #EDF0F5;
  --ih-success: #16A34A;

  --ih-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --ih-shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --ih-shadow-md: 0 8px 28px rgba(0,0,0,0.10);
  --ih-shadow-lg: 0 20px 55px rgba(0,0,0,0.16);
  --ih-shadow-red: 0 10px 28px rgba(239,65,53,0.28);
  --ih-shadow-blue: 0 10px 28px rgba(0,85,164,0.22);
  --ih-shadow-yellow: 0 10px 28px rgba(255,209,102,0.32);

  --ih-r-xs: 6px;
  --ih-r-sm: 10px;
  --ih-r-md: 16px;
  --ih-r-lg: 24px;
  --ih-r-xl: 34px;

  --ih-max: 1220px;
  --ih-t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --ih-font-display: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ih-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ih-header-h: 82px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ih-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ih-text);
  background: var(--ih-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ih-font-display);
  color: var(--ih-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }
strong, b { color: var(--ih-heading); font-weight: 700; }

a { color: var(--ih-blue); text-decoration: none; transition: color var(--ih-t); }
a:hover { color: var(--ih-blue-dark); }

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

:focus-visible { outline: 3px solid rgba(0,85,164,0.45); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  position: fixed !important;
  top: 12px; left: 12px;
  width: auto; height: auto;
  clip: auto; z-index: 100000;
  padding: 12px 20px; border-radius: var(--ih-r-sm);
  background: var(--ih-blue); color: #fff; font-weight: 700;
}

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */
.container { width: 100%; max-width: var(--ih-max); margin: 0 auto; padding: 0 22px; }

.section { padding: 86px 0; position: relative; }
.section-sm { padding: 54px 0; position: relative; }
.section.bg-soft, .bg-soft { background: var(--ih-bg-soft); }
.section.bg-soft-2 { background: var(--ih-bg-soft-2); }
.section.bg-navy { background: var(--ih-heading); }

.sect-heading { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.sect-heading.left { margin-left: 0; text-align: left; }
.sect-eyebrow {
  display: inline-block;
  font-family: var(--ih-font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ih-blue);
  background: var(--ih-bg-soft-2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sect-heading p { color: var(--ih-text-soft); font-size: 1.08rem; margin-top: 8px; }

.accent {
  background: linear-gradient(120deg, var(--ih-blue) 0%, var(--ih-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--ih-blue);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--ih-font-body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--ih-t), box-shadow var(--ih-t), background var(--ih-t), color var(--ih-t);
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 140%; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--ih-red); color: #fff; box-shadow: var(--ih-shadow-red); }
.btn-primary:hover { background: var(--ih-red-dark); color: #fff; box-shadow: 0 16px 34px rgba(239,65,53,0.38); }

.btn-outline { background: transparent; color: var(--ih-heading); border-color: var(--ih-heading); }
.btn-outline:hover { background: var(--ih-heading); color: #fff; }

.btn-blue { background: var(--ih-blue); color: #fff; box-shadow: var(--ih-shadow-blue); }
.btn-blue:hover { background: var(--ih-blue-dark); color: #fff; }

.btn-yellow { background: var(--ih-yellow); color: var(--ih-heading); box-shadow: var(--ih-shadow-yellow); }
.btn-yellow:hover { background: var(--ih-yellow-dark); color: var(--ih-heading); }

.btn-wa { background: var(--ih-wa); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,0.32); }
.btn-wa:hover { background: var(--ih-wa-dark); color: #fff; }

.btn-light { background: #fff; color: var(--ih-heading); box-shadow: var(--ih-shadow-sm); }
.btn-light:hover { background: var(--ih-bg-soft); color: var(--ih-heading); }

.btn-lg { padding: 18px 36px; font-size: 1.06rem; }
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }
.btn-block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.ih-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--ih-header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.ih-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.ih-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ih-logo img { height: 46px; width: auto; }
.ih-logo .ih-logo-text { font-family: var(--ih-font-display); font-weight: 800; font-size: 1.25rem; color: var(--ih-heading); letter-spacing: -0.02em; }

.ih-nav { display: flex; align-items: center; gap: 6px; }
.ih-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ih-nav a {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ih-heading);
  border-radius: var(--ih-r-sm);
}
.ih-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--ih-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ih-t);
}
.ih-nav a:hover::after { transform: scaleX(1); }
.ih-nav .current-menu-item > a,
.ih-nav .current_page_item > a,
.ih-nav .current-menu-ancestor > a { color: var(--ih-red); }
.ih-nav .current-menu-item > a::after,
.ih-nav .current_page_item > a::after { transform: scaleX(1); }

.ih-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.mobile-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--ih-border);
  background: #fff;
  border-radius: var(--ih-r-sm);
  cursor: pointer;
  position: relative;
}
.mobile-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ih-heading);
  transition: transform var(--ih-t), opacity var(--ih-t), top var(--ih-t);
}
.mobile-toggle span:nth-child(1) { top: 16px; }
.mobile-toggle span:nth-child(2) { top: 22px; }
.mobile-toggle span:nth-child(3) { top: 28px; }
.mobile-toggle.active span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .ih-nav {
    position: absolute;
    top: calc(var(--ih-header-h) + 8px);
    right: 22px; left: 22px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--ih-border);
    border-radius: var(--ih-r-md);
    box-shadow: var(--ih-shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--ih-t), transform var(--ih-t), visibility var(--ih-t);
  }
  .ih-nav.active { opacity: 1; visibility: visible; transform: translateY(0); }
  .ih-nav ul { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .ih-nav a { padding: 13px 14px; }
  .ih-nav a::after { display: none; }
  .mobile-toggle { display: block; }
  .ih-actions .ih-header-cta-text { display: none; }
}
@media (max-width: 560px) {
  .ih-logo .ih-logo-text { display: none; }
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 72px 0 86px;
  background:
    radial-gradient(60% 70% at 12% 8%, rgba(0,85,164,0.12), transparent 60%),
    radial-gradient(55% 65% at 92% 18%, rgba(239,65,53,0.12), transparent 60%),
    radial-gradient(50% 60% at 78% 95%, rgba(255,209,102,0.16), transparent 60%),
    var(--ih-bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,31,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid var(--ih-border);
  box-shadow: var(--ih-shadow-sm);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ih-text-soft);
  margin-bottom: 22px;
}
.hero-pill .stars { color: var(--ih-yellow-dark); display: inline-flex; }
.hero-pill .stars svg { width: 15px; height: 15px; }
.hero-pill strong { color: var(--ih-heading); }

.hero h1 { margin-bottom: 18px; }
.hero-sub { font-size: 1.16rem; color: var(--ih-text-soft); max-width: 560px; margin-bottom: 26px; }

.hero-checks { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-checks li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ih-heading); font-size: 0.96rem; }
.hero-checks svg { width: 20px; height: 20px; color: var(--ih-success); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-visual > img {
  width: 100%;
  border-radius: var(--ih-r-lg);
  box-shadow: var(--ih-shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-badge {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--ih-shadow-md);
  padding: 13px 16px;
  border-radius: var(--ih-r-md);
}
.hero-badge .hb-ico { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge .hb-ico svg { width: 22px; height: 22px; color: #fff; }
.hero-badge .hb-num { font-family: var(--ih-font-display); font-weight: 800; font-size: 1.02rem; color: var(--ih-heading); line-height: 1.1; }
.hero-badge .hb-lab { font-size: 0.8rem; color: var(--ih-text-muted); }
.hero-badge.top-left { top: 22px; left: -26px; }
.hero-badge.top-left .hb-ico { background: linear-gradient(135deg, var(--ih-blue), var(--ih-blue-dark)); }
.hero-badge.bot-right { bottom: 26px; right: -26px; }
.hero-badge.bot-right .hb-ico { background: linear-gradient(135deg, var(--ih-success), #0f8a3c); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-sub { max-width: none; }
}
@media (max-width: 768px) {
  .hero-badge { display: none; }
}

/* ==========================================================================
   7. PAGE HERO (inner) + BREADCRUMBS
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 60px 0 56px;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(0,85,164,0.10), transparent 60%),
    radial-gradient(40% 60% at 85% 30%, rgba(239,65,53,0.08), transparent 60%),
    var(--ih-bg-soft);
  border-bottom: 1px solid var(--ih-border-soft);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 660px; margin: 0 auto; color: var(--ih-text-soft); font-size: 1.1rem; }

.ih-breadcrumbs { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 16px; font-size: 0.88rem; color: var(--ih-text-muted); }
.ih-breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.ih-breadcrumbs li::after { content: "/"; color: var(--ih-border); margin-left: 6px; }
.ih-breadcrumbs li:last-child::after { display: none; }
.ih-breadcrumbs a { color: var(--ih-blue); font-weight: 600; }
.ih-breadcrumbs span[aria-current] { color: var(--ih-heading); font-weight: 600; }

/* ==========================================================================
   8. TRUST BAR
   ========================================================================== */
.trust-bar { background: var(--ih-heading); padding: 22px 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.trust-item { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,0.92); font-weight: 600; font-size: 0.98rem; }
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }
.trust-item .ti-stars { color: var(--ih-yellow); }
.trust-item strong { color: #fff; }
.trust-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.18); }
@media (max-width: 768px) { .trust-sep { display: none; } }

/* ==========================================================================
   9. PRICING CARDS
   ========================================================================== */
.pricing-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.pcard {
  position: relative;
  background: var(--ih-bg-soft);
  border: 2px solid transparent;
  border-radius: var(--ih-r-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: transform var(--ih-t), box-shadow var(--ih-t), border-color var(--ih-t);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--ih-shadow-md); border-color: var(--ih-border); }
.pcard .pc-name { font-family: var(--ih-font-display); font-weight: 700; font-size: 1.05rem; color: var(--ih-heading); }
.pcard .pc-tag { font-size: 0.86rem; color: var(--ih-text-muted); margin-top: 2px; }
.pcard .pc-price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px; }
.pcard .pc-amount { font-family: var(--ih-font-display); font-weight: 800; font-size: 2.5rem; color: var(--ih-heading); letter-spacing: -0.03em; }
.pcard .pc-cur { font-weight: 700; font-size: 1.3rem; color: var(--ih-heading); }
.pcard .pc-period { color: var(--ih-text-muted); font-size: 0.92rem; margin-bottom: 18px; }
.pcard .pc-feats { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; flex-grow: 1; }
.pcard .pc-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.94rem; color: var(--ih-text-soft); }
.pcard .pc-feats svg { width: 18px; height: 18px; color: var(--ih-success); flex-shrink: 0; margin-top: 2px; }

.pcard.best {
  background: #fff;
  border-color: var(--ih-yellow);
  box-shadow: var(--ih-shadow-yellow);
  transform: scale(1.03);
  z-index: 2;
}
.pcard.best:hover { transform: scale(1.03) translateY(-6px); }
.pcard .pc-ribbon {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--ih-yellow), var(--ih-yellow-dark));
  color: var(--ih-heading-alt);
  font-family: var(--ih-font-display);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 100px;
  box-shadow: var(--ih-shadow-sm);
  white-space: nowrap;
}

@media (max-width: 1080px) { .pricing-cards { grid-template-columns: repeat(2, 1fr); } .pcard.best { transform: none; } .pcard.best:hover { transform: translateY(-6px); } }
@media (max-width: 560px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   10. ICON GRID
   ========================================================================== */
.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.icon-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.icon-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.icard {
  background: #fff;
  border: 1px solid var(--ih-border);
  border-radius: var(--ih-r-md);
  padding: 28px 24px;
  transition: transform var(--ih-t), box-shadow var(--ih-t), border-color var(--ih-t);
}
.icard:hover { transform: translateY(-4px); box-shadow: var(--ih-shadow-md); border-color: transparent; }
.icard .ic-ico { width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icard .ic-ico svg { width: 27px; height: 27px; color: #fff; }
.icard h3 { font-size: 1.18rem; margin-bottom: 8px; }
.icard p { color: var(--ih-text-soft); font-size: 0.96rem; margin: 0; }
.ic-blue { background: linear-gradient(135deg, var(--ih-blue), var(--ih-blue-dark)); }
.ic-red { background: linear-gradient(135deg, var(--ih-red), var(--ih-red-dark)); }
.ic-yellow { background: linear-gradient(135deg, var(--ih-yellow), var(--ih-yellow-dark)); }
.ic-navy { background: linear-gradient(135deg, var(--ih-heading), var(--ih-heading-alt)); }
.ic-green { background: linear-gradient(135deg, var(--ih-success), #0f8a3c); }
@media (max-width: 980px) { .icon-grid, .icon-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .icon-grid, .icon-grid.cols-4, .icon-grid.cols-2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   11. SPLIT (image + text)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--ih-r-lg); box-shadow: var(--ih-shadow-md); }
.split-media .split-float {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--ih-r-md);
  padding: 12px 16px;
  box-shadow: var(--ih-shadow-sm);
  font-weight: 700; color: var(--ih-heading);
  display: flex; align-items: center; gap: 10px;
}
.split-float svg { width: 22px; height: 22px; color: var(--ih-red); }
.split-body .sect-eyebrow { margin-bottom: 14px; }
.split-body h2 { margin-bottom: 14px; }
.split-body p { color: var(--ih-text-soft); }
.split-list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 12px; }
.split-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ih-text-soft); }
.split-list svg { width: 22px; height: 22px; color: var(--ih-blue); flex-shrink: 0; margin-top: 1px; }
.split-list strong { display: block; color: var(--ih-heading); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

/* ==========================================================================
   12. STEPS ROW
   ========================================================================== */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.steps-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ih-border);
  border-radius: var(--ih-r-md);
  padding: 30px 24px 26px;
}
.step-card .step-num {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ih-font-display); font-weight: 800; font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--ih-blue), var(--ih-blue-dark));
  border-radius: 14px;
  margin-bottom: 16px;
}
.step-card:nth-child(2) .step-num { background: linear-gradient(135deg, var(--ih-red), var(--ih-red-dark)); }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg, var(--ih-heading), var(--ih-heading-alt)); }
.step-card:nth-child(4) .step-num { background: linear-gradient(135deg, var(--ih-yellow-dark), #c79a2e); }
.step-card h3 { font-size: 1.16rem; margin-bottom: 7px; }
.step-card p { color: var(--ih-text-soft); font-size: 0.95rem; margin: 0; }
@media (max-width: 900px) { .steps-row, .steps-row.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps-row, .steps-row.cols-3 { grid-template-columns: 1fr; } }

/* ==========================================================================
   13. DEVICE ROW
   ========================================================================== */
.device-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.device-card {
  background: #fff;
  border: 1px solid var(--ih-border);
  border-radius: var(--ih-r-md);
  padding: 24px 14px;
  text-align: center;
  transition: transform var(--ih-t), box-shadow var(--ih-t);
}
.device-card:hover { transform: translateY(-4px); box-shadow: var(--ih-shadow-sm); }
.device-card svg { width: 38px; height: 38px; color: var(--ih-blue); margin: 0 auto 12px; }
.device-card span { display: block; font-weight: 700; color: var(--ih-heading); font-size: 0.92rem; }
@media (max-width: 900px) { .device-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .device-row { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   14. CHANNEL SHOWCASE
   ========================================================================== */
.channel-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.chan-card {
  position: relative;
  border-radius: var(--ih-r-md);
  overflow: hidden;
  min-height: 230px;
  display: flex; align-items: flex-end;
  color: #fff;
  box-shadow: var(--ih-shadow-sm);
  background: linear-gradient(135deg, var(--ih-blue), var(--ih-heading));
  transition: transform var(--ih-t), box-shadow var(--ih-t);
}
.chan-card:nth-child(2) { background: linear-gradient(135deg, var(--ih-red), var(--ih-heading-alt)); }
.chan-card:nth-child(3) { background: linear-gradient(135deg, var(--ih-heading), var(--ih-blue-dark)); }
.chan-card:nth-child(4) { background: linear-gradient(135deg, #6b21a8, var(--ih-heading-alt)); }
.chan-card:nth-child(5) { background: linear-gradient(135deg, #0f766e, var(--ih-heading)); }
.chan-card:nth-child(6) { background: linear-gradient(135deg, var(--ih-yellow-dark), var(--ih-red-dark)); }
.chan-card:hover { transform: translateY(-5px); box-shadow: var(--ih-shadow-md); }
.chan-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,23,43,0.62)); }
.chan-inner { position: relative; z-index: 2; padding: 24px; }
.chan-inner .chan-ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.chan-inner .chan-ico svg { width: 24px; height: 24px; color: #fff; }
.chan-inner h3 { color: #fff; font-size: 1.3rem; margin-bottom: 5px; }
.chan-inner p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin: 0 0 10px; }
.chan-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.18); padding: 5px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }
@media (max-width: 900px) { .channel-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .channel-showcase { grid-template-columns: 1fr; } }

/* Masonry variant (chaines page) */
.chan-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.chan-masonry .chan-card:nth-child(1) { grid-row: span 2; min-height: 320px; }
.chan-masonry .chan-card:nth-child(6) { grid-column: span 2; }
@media (max-width: 900px) {
  .chan-masonry { grid-template-columns: repeat(2, 1fr); }
  .chan-masonry .chan-card:nth-child(1) { grid-row: auto; min-height: 230px; }
  .chan-masonry .chan-card:nth-child(6) { grid-column: span 2; }
}
@media (max-width: 540px) {
  .chan-masonry { grid-template-columns: 1fr; }
  .chan-masonry .chan-card:nth-child(6) { grid-column: auto; }
}

/* ==========================================================================
   15. STATS STRIP
   ========================================================================== */
.stats-strip {
  background: linear-gradient(120deg, var(--ih-heading) 0%, var(--ih-heading-alt) 100%);
  border-radius: var(--ih-r-lg);
  padding: 44px 30px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 0% 0%, rgba(0,85,164,0.35), transparent 60%),
    radial-gradient(40% 80% at 100% 100%, rgba(239,65,53,0.30), transparent 60%);
}
.stat-item { position: relative; z-index: 2; text-align: center; }
.stat-item .stat-num { font-family: var(--ih-font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.7rem); color: #fff; letter-spacing: -0.02em; line-height: 1; }
.stat-item .stat-num .stat-suffix { color: var(--ih-yellow); }
.stat-item .stat-lab { color: rgba(255,255,255,0.78); font-size: 0.94rem; margin-top: 8px; }
.stat-divider { display: none; }
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; } }

/* ==========================================================================
   16. COMPARISON TABLE
   ========================================================================== */
.cmp { overflow-x: auto; }
.cmp table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 640px; background: #fff; border-radius: var(--ih-r-md); overflow: hidden; box-shadow: var(--ih-shadow-sm); }
.cmp th, .cmp td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--ih-border-soft); }
.cmp thead th { background: var(--ih-heading); color: #fff; font-family: var(--ih-font-display); font-weight: 700; font-size: 0.98rem; }
.cmp thead th.cmp-us { background: var(--ih-blue); position: relative; }
.cmp thead th.cmp-us::after { content: "★"; color: var(--ih-yellow); margin-left: 6px; }
.cmp td:first-child { font-weight: 700; color: var(--ih-heading); }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp .cmp-yes { color: var(--ih-success); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.cmp .cmp-no { color: var(--ih-red); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.cmp .cmp-yes svg, .cmp .cmp-no svg { width: 18px; height: 18px; }
.cmp td.col-us { background: rgba(0,85,164,0.05); }

/* ==========================================================================
   17. TESTIMONIAL GRID
   ========================================================================== */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-md); padding: 28px 26px; display: flex; flex-direction: column; }
.t-card .t-stars { color: var(--ih-yellow-dark); display: flex; gap: 2px; margin-bottom: 14px; }
.t-card .t-stars svg { width: 18px; height: 18px; }
.t-card .t-quote { color: var(--ih-text-soft); font-size: 1rem; flex-grow: 1; margin-bottom: 18px; }
.t-card .t-author { display: flex; align-items: center; gap: 12px; }
.t-card .t-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ih-font-display); font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--ih-blue), var(--ih-red)); flex-shrink: 0; }
.t-card .t-name { font-weight: 700; color: var(--ih-heading); font-size: 0.96rem; }
.t-card .t-meta { font-size: 0.82rem; color: var(--ih-text-muted); }
@media (max-width: 900px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .t-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   18. FAQ BLOCK
   ========================================================================== */
.faq-block { max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-md); margin-bottom: 14px; overflow: hidden; transition: box-shadow var(--ih-t), border-color var(--ih-t); }
.faq-item.open { box-shadow: var(--ih-shadow-sm); border-color: var(--ih-blue); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none; cursor: pointer;
  font-family: var(--ih-font-display); font-weight: 700; font-size: 1.05rem; color: var(--ih-heading);
}
.faq-q .faq-ico { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after { content: ""; position: absolute; background: var(--ih-blue); border-radius: 2px; transition: transform var(--ih-t); }
.faq-q .faq-ico::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq-q .faq-ico::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .faq-q .faq-ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a-inner { padding: 0 22px 22px; color: var(--ih-text-soft); }
.faq-a-inner p:last-child { margin-bottom: 0; }

.faq-cat-title { font-family: var(--ih-font-display); font-weight: 800; color: var(--ih-heading); font-size: 1.35rem; margin: 36px 0 16px; display: flex; align-items: center; gap: 10px; }
.faq-cat-title:first-child { margin-top: 0; }
.faq-cat-title svg { width: 24px; height: 24px; color: var(--ih-blue); }

/* ==========================================================================
   19. CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--ih-heading) 0%, var(--ih-blue-dark) 55%, var(--ih-heading-alt) 100%);
  border-radius: var(--ih-r-xl);
  padding: 56px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 8% 10%, rgba(239,65,53,0.30), transparent 60%),
    radial-gradient(45% 90% at 95% 90%, rgba(255,209,102,0.25), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 26px; font-size: 1.08rem; }
.cta-banner .btn-row { justify-content: center; }
@media (max-width: 560px) { .cta-banner { padding: 42px 24px; } }

/* ==========================================================================
   20. VALUES ROW
   ========================================================================== */
.values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { text-align: center; background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-md); padding: 32px 22px; }
.value-card .vc-ico { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: var(--ih-bg-soft-2); }
.value-card .vc-ico svg { width: 28px; height: 28px; color: var(--ih-blue); }
.value-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.value-card p { color: var(--ih-text-soft); font-size: 0.94rem; margin: 0; }
@media (max-width: 900px) { .values-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   21. BIG QUOTE
   ========================================================================== */
.big-quote { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.big-quote .bq-mark { font-family: var(--ih-font-display); font-size: 5rem; line-height: 0.6; color: var(--ih-yellow); }
.big-quote blockquote { font-family: var(--ih-font-display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.4; color: var(--ih-heading); margin: 14px 0 22px; letter-spacing: -0.02em; }
.big-quote cite { font-style: normal; font-weight: 700; color: var(--ih-blue); }
.big-quote .bq-role { display: block; color: var(--ih-text-muted); font-size: 0.92rem; font-weight: 500; margin-top: 4px; }

/* ==========================================================================
   22. CONTACT SPLIT
   ========================================================================== */
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: stretch; }
.contact-info { background: linear-gradient(150deg, var(--ih-heading), var(--ih-heading-alt)); color: #fff; border-radius: var(--ih-r-lg); padding: 40px 34px; }
.contact-info h2 { color: #fff; }
.contact-info p { color: rgba(255,255,255,0.8); }
.contact-info .ci-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 20px; }
.contact-info .ci-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-info .ci-ico { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info .ci-ico svg { width: 22px; height: 22px; color: var(--ih-yellow); }
.contact-info .ci-lab { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.contact-info .ci-val { font-weight: 700; color: #fff; }
.contact-info .ci-val a { color: #fff; }

.contact-form-card { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-lg); padding: 40px 34px; box-shadow: var(--ih-shadow-sm); }
.ih-form .form-row { margin-bottom: 18px; }
.ih-form label { display: block; font-weight: 700; color: var(--ih-heading); font-size: 0.92rem; margin-bottom: 7px; }
.ih-form input, .ih-form textarea, .ih-form select {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--ih-border); border-radius: var(--ih-r-sm);
  font-family: var(--ih-font-body); font-size: 0.98rem; color: var(--ih-heading);
  background: var(--ih-bg-soft);
  transition: border-color var(--ih-t), box-shadow var(--ih-t), background var(--ih-t);
}
.ih-form input:focus, .ih-form textarea:focus, .ih-form select:focus { outline: none; border-color: var(--ih-blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,85,164,0.1); }
.ih-form textarea { min-height: 140px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-grid-2 { grid-template-columns: 1fr; } }

.map-placeholder { margin-top: 0; border-radius: var(--ih-r-lg); overflow: hidden; border: 1px solid var(--ih-border); height: 340px; background:
  linear-gradient(135deg, rgba(0,85,164,0.08), rgba(239,65,53,0.06)), var(--ih-bg-soft-2);
  display: flex; align-items: center; justify-content: center; text-align: center; color: var(--ih-text-soft); }
.map-placeholder .mp-inner { display: grid; place-items: center; gap: 8px; }
.map-placeholder svg { width: 42px; height: 42px; color: var(--ih-blue); }

/* ==========================================================================
   23. LEGAL
   ========================================================================== */
.legal-wrap { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-lg); padding: 52px; box-shadow: var(--ih-shadow-sm); }
.legal-meta { background: var(--ih-bg-soft); border-left: 4px solid var(--ih-red); border-radius: var(--ih-r-sm); padding: 18px 22px; margin-bottom: 34px; font-size: 0.95rem; color: var(--ih-text-soft); }
.legal-meta strong { color: var(--ih-heading); }
.legal-wrap h2 { font-size: 1.5rem; margin: 38px 0 14px; padding-top: 34px; border-top: 1px solid var(--ih-border-soft); }
.legal-wrap h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-wrap h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.legal-wrap p, .legal-wrap li { color: var(--ih-text-soft); }
.legal-wrap ul { padding-left: 1.3em; }
.legal-wrap li { margin-bottom: 7px; }
@media (max-width: 560px) { .legal-wrap { padding: 30px 22px; } }

/* ==========================================================================
   24. BLOG
   ========================================================================== */
.blog-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.bcard { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-md); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--ih-t), box-shadow var(--ih-t); }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--ih-shadow-md); }
.bcard .bthumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ih-bg-soft-2); }
.bcard .bthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bcard:hover .bthumb img { transform: scale(1.04); }
.bcard .bbody { padding: 22px 22px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.bmeta { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; margin-bottom: 10px; }
.bmeta .bcat { color: var(--ih-red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.bmeta .bdate { color: var(--ih-text-muted); }
.bcard h3 { font-size: 1.22rem; margin-bottom: 9px; }
.bcard h3 a { color: var(--ih-heading); }
.bcard h3 a:hover { color: var(--ih-blue); }
.bcard p { color: var(--ih-text-soft); font-size: 0.95rem; flex-grow: 1; }
.bmore { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--ih-blue); margin-top: 8px; }
.bmore svg { width: 17px; height: 17px; transition: transform var(--ih-t); }
.bmore:hover svg { transform: translateX(4px); }

/* Single layout */
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 34px; align-items: start; }
.post-wrap { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-lg); padding: 44px; box-shadow: var(--ih-shadow-sm); }
.post-featured { border-radius: var(--ih-r-md); overflow: hidden; margin-bottom: 26px; }
.post-meta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; padding-bottom: 22px; margin-bottom: 26px; border-bottom: 1px solid var(--ih-border-soft); font-size: 0.9rem; color: var(--ih-text-muted); }
.post-meta-row .pm-item { display: flex; align-items: center; gap: 7px; }
.post-meta-row svg { width: 17px; height: 17px; color: var(--ih-blue); }
.prose p, .prose li { color: var(--ih-text); }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.2em; }
.prose img { border-radius: var(--ih-r-md); margin: 1.4em 0; }
.prose blockquote { border-left: 4px solid var(--ih-blue); background: var(--ih-bg-soft); padding: 16px 22px; border-radius: var(--ih-r-sm); margin: 1.4em 0; font-style: italic; color: var(--ih-heading); }
.prose a { text-decoration: underline; }
.post-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.post-tags a { background: var(--ih-bg-soft-2); color: var(--ih-blue); font-size: 0.84rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; }
.post-tags a:hover { background: var(--ih-blue); color: #fff; }

.sidebar-cta { background: linear-gradient(150deg, var(--ih-heading), var(--ih-heading-alt)); border-radius: var(--ih-r-md); padding: 28px 24px; color: #fff; margin-bottom: 24px; position: sticky; top: calc(var(--ih-header-h) + 20px); }
.sidebar-cta h3 { color: #fff; font-size: 1.2rem; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.sidebar-box { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-md); padding: 24px; margin-bottom: 24px; }
.sidebar-box h3 { font-size: 1.1rem; margin-bottom: 14px; }
.sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-box li { border-bottom: 1px solid var(--ih-border-soft); }
.sidebar-box li:last-child { border-bottom: none; }
.sidebar-box li a { display: flex; align-items: center; gap: 9px; padding: 11px 0; font-weight: 600; color: var(--ih-heading); font-size: 0.94rem; }
.sidebar-box li a:hover { color: var(--ih-blue); }
.sidebar-box li svg { width: 16px; height: 16px; color: var(--ih-red); flex-shrink: 0; }
@media (max-width: 900px) { .single-layout { grid-template-columns: 1fr; } .sidebar-cta { position: static; } .post-wrap { padding: 30px 24px; } }

/* ==========================================================================
   25. FOOTER
   ========================================================================== */
.ih-footer { background: var(--ih-heading); color: rgba(255,255,255,0.75); position: relative; padding-top: 64px; }
.ih-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--ih-blue) 0%, var(--ih-blue) 33%, #ffffff 50%, var(--ih-red) 67%, var(--ih-red) 100%); }
.ih-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 38px; padding-bottom: 48px; }
.ih-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.ih-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; background: var(--ih-yellow); border-radius: 3px; }
.ih-footer a { color: rgba(255,255,255,0.75); }
.ih-footer a:hover { color: #fff; }
.footer-brand .footer-logo-chip { background: #fff; border-radius: var(--ih-r-md); padding: 12px 16px; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .footer-logo-chip img { height: 40px; width: auto; }
.footer-brand .footer-logo-chip .ih-logo-text { color: var(--ih-heading); font-family: var(--ih-font-display); font-weight: 800; }
.footer-brand p { font-size: 0.94rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background var(--ih-t), transform var(--ih-t); }
.footer-social a:hover { background: var(--ih-blue); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.ih-footer ul.footer-menu { list-style: none; padding: 0; margin: 0; }
.ih-footer ul.footer-menu li { margin-bottom: 11px; }
.ih-footer ul.footer-menu a { font-size: 0.94rem; display: inline-flex; align-items: center; gap: 8px; }
.ih-footer ul.footer-menu a:hover { padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.94rem; }
.footer-contact-list .fc-ico { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-list .fc-ico svg { width: 18px; height: 18px; color: var(--ih-yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 0.86rem; }
.footer-bottom .fb-pay { display: flex; align-items: center; gap: 8px; }
.footer-bottom .fb-pay span { background: rgba(255,255,255,0.08); border-radius: 6px; padding: 5px 10px; font-weight: 600; color: rgba(255,255,255,0.8); font-size: 0.78rem; }
@media (max-width: 900px) { .ih-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .ih-footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   26. FLOATING WHATSAPP
   ========================================================================== */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  background: var(--ih-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  z-index: 999;
  animation: waPulse 2.6s infinite;
}
.float-wa svg { width: 30px; height: 30px; }
.float-wa:hover { color: #fff; transform: scale(1.06); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .float-wa { animation: none; } .btn::after { display: none; } html { scroll-behavior: auto; } }

/* ==========================================================================
   27. CHECKLIST / MISC
   ========================================================================== */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ih-text-soft); }
.check-list svg { width: 21px; height: 21px; color: var(--ih-success); flex-shrink: 0; margin-top: 1px; }
.check-list strong { color: var(--ih-heading); }

.checklist-card { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-md); padding: 30px 28px; }
.checklist-card h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.checklist-card h3 svg { width: 24px; height: 24px; color: var(--ih-blue); }

.lead { font-size: 1.14rem; color: var(--ih-text-soft); }

/* Pagination */
.ih-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.ih-pagination a, .ih-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: var(--ih-r-sm); border: 1px solid var(--ih-border); background: #fff; font-weight: 700; color: var(--ih-heading); }
.ih-pagination a:hover { background: var(--ih-blue); color: #fff; border-color: var(--ih-blue); }
.ih-pagination .current { background: var(--ih-red); color: #fff; border-color: var(--ih-red); }

/* Comments */
.ih-comments { background: #fff; border: 1px solid var(--ih-border); border-radius: var(--ih-r-lg); padding: 36px; margin-top: 30px; }
.ih-comments h3 { margin-bottom: 22px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 30px; }
.comment-list li { padding: 18px 0; border-bottom: 1px solid var(--ih-border-soft); }
.comment-list .comment-author { font-weight: 700; color: var(--ih-heading); }
.comment-list .comment-meta { font-size: 0.82rem; color: var(--ih-text-muted); margin-bottom: 6px; }
.comment-list .children { list-style: none; padding-left: 26px; margin-top: 12px; border-left: 2px solid var(--ih-border-soft); }

/* 404 / search empty */
.ih-empty { text-align: center; max-width: 600px; margin: 0 auto; padding: 30px 0; }
.ih-empty .empty-code { font-family: var(--ih-font-display); font-weight: 800; font-size: clamp(4rem, 14vw, 8rem); line-height: 1; background: linear-gradient(120deg, var(--ih-blue), var(--ih-red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Utility */
.ih-blue { color: var(--ih-blue); }
.ih-red { color: var(--ih-red); }
.ih-navy { color: var(--ih-heading); }
.ih-bg { background: var(--ih-bg); }
.ih-shadow-md { box-shadow: var(--ih-shadow-md); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
