/*
Theme Name: IPTV Canada Hub
Theme URI: http://iptvcanadahub.com/
Author: IPTV Canada Hub
Author URI: http://iptvcanadahub.com/
Description: Production-ready custom WordPress theme for IPTV Canada Hub. Design family: App Dashboard / Control Center ("Aurora Control Deck"). Mobile-first, accessible, fast, SEO-focused. Built for the Canadian (English) market.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
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-canada-hub
Tags: custom-background, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, blog
*/

/* ==========================================================================
   IPTV Canada Hub — "Aurora Control Deck"
   1.  Design tokens
   2.  Reset & base
   3.  Typography
   4.  Layout / containers
   5.  Buttons & links
   6.  Header & navigation
   7.  Hero (streaming dashboard)
   8.  Stats / trust strip
   9.  Content tabs (interactive)
   10. Device compatibility grid
   11. Pricing / plan selector (interactive)
   12. Activation steps
   13. Why-Canada / local trust
   14. Speed / uptime panel
   15. Customer-scenario cards
   16. FAQ accordion
   17. CTA banner & WhatsApp
   18. Blog cards & single
   19. Forms
   20. Breadcrumbs & inner page headers
   21. Footer
   22. Utilities & helpers
   23. Accessibility & reduced motion
   24. Responsive
   ========================================================================== */

/* 1. DESIGN TOKENS ========================================================= */
:root {
    /* Surfaces */
    --ich-bg:            #0a0e1a;   /* midnight navy (dark sections)   */
    --ich-bg-2:          #0e1424;   /* slightly lighter dark           */
    --ich-panel:         #121a2e;   /* card panel on dark              */
    --ich-panel-2:       #18213a;   /* raised panel                    */
    --ich-bg-light:      #f6f8fc;   /* light section bg                */
    --ich-soft:          #eef2fb;   /* soft light bg                   */
    --ich-white:         #ffffff;

    /* Text */
    --ich-heading:       #0c1322;   /* headings on light               */
    --ich-text:          #45526c;   /* body on light                   */
    --ich-muted:         #7a8699;   /* muted on light                  */
    --ich-on-dark:       #ffffff;   /* headings on dark                */
    --ich-on-dark-soft:  #aeb8d0;   /* body on dark                    */
    --ich-on-dark-mute:  #6f7c99;   /* muted on dark                   */

    /* Brand / accent */
    --ich-primary:       #2ee6c8;   /* aurora teal                     */
    --ich-primary-2:     #12b6a0;   /* deep teal                       */
    --ich-violet:        #7c5cff;   /* aurora violet                   */
    --ich-coral:         #ff5a6e;   /* warm highlight                  */
    --ich-success:       #34d399;
    --ich-warn:          #ffb020;
    --ich-wa:            #25d366;   /* WhatsApp green (WA CTAs only)    */
    --ich-wa-dark:       #1da851;

    /* Aurora gradients (signature) */
    --ich-aurora:        linear-gradient(135deg, #2ee6c8 0%, #5ad1ff 45%, #7c5cff 100%);
    --ich-aurora-soft:   linear-gradient(135deg, rgba(46,230,200,.16), rgba(124,92,255,.16));
    --ich-glow:          radial-gradient(60% 60% at 70% 20%, rgba(46,230,200,.22), transparent 70%),
                         radial-gradient(50% 50% at 15% 80%, rgba(124,92,255,.20), transparent 70%);

    /* Borders & lines */
    --ich-border:        #e4e9f3;   /* on light  */
    --ich-border-dark:   rgba(255,255,255,.10);

    /* Radius */
    --ich-r-sm: 10px;
    --ich-r:    16px;
    --ich-r-lg: 22px;
    --ich-r-xl: 30px;
    --ich-pill: 999px;

    /* Shadows */
    --ich-shadow-sm: 0 2px 8px rgba(12,19,34,.06);
    --ich-shadow:    0 10px 30px rgba(12,19,34,.10);
    --ich-shadow-lg: 0 24px 60px rgba(12,19,34,.18);
    --ich-shadow-glow: 0 18px 50px rgba(46,230,200,.18);

    /* Typography */
    --ich-font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
    --ich-font-body: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

    /* Spacing & layout */
    --ich-container: 1180px;
    --ich-container-narrow: 880px;
    --ich-gap: clamp(1rem, 2.5vw, 2rem);
    --ich-section-y: clamp(3.5rem, 7vw, 6rem);
    --ich-header-h: 76px;
}

/* 2. RESET & BASE ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--ich-font-body);
    font-size: 1.0625rem;            /* 17px base */
    line-height: 1.7;
    color: var(--ich-text);
    background: var(--ich-white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2em; }
a { color: var(--ich-primary-2); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ich-violet); }
strong { font-weight: 700; color: inherit; }
hr { border: 0; border-top: 1px solid var(--ich-border); margin: 2rem 0; }

/* 3. TYPOGRAPHY ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ich-font-head);
    color: var(--ich-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.ich-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--ich-font-head);
    font-size: .8rem; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ich-primary-2);
    background: var(--ich-aurora-soft);
    border: 1px solid rgba(46,230,200,.35);
    padding: .35rem .8rem; border-radius: var(--ich-pill);
}
.ich-lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ich-text); }

/* 4. LAYOUT / CONTAINERS =================================================== */
.ich-container { width: min(var(--ich-container), 100% - 2.5rem); margin-inline: auto; }
.ich-narrow    { width: min(var(--ich-container-narrow), 100% - 2.5rem); margin-inline: auto; }
.ich-section   { padding-block: var(--ich-section-y); }
.ich-section--dark { background: var(--ich-bg); color: var(--ich-on-dark-soft); position: relative; }
.ich-section--dark h1, .ich-section--dark h2, .ich-section--dark h3,
.ich-section--dark h4 { color: var(--ich-on-dark); }
.ich-section--soft { background: var(--ich-soft); }
.ich-section--light{ background: var(--ich-bg-light); }
.ich-section-head { max-width: 720px; margin: 0 auto clamp(2rem,4vw,3rem); text-align: center; }
.ich-section-head p { color: inherit; opacity: .92; }
.ich-grid { display: grid; gap: var(--ich-gap); }
.ich-center { text-align: center; }

/* 5. BUTTONS & LINKS ======================================================= */
.ich-btn {
    --b: var(--ich-primary);
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-family: var(--ich-font-head); font-weight: 600; font-size: 1rem;
    line-height: 1; padding: .95rem 1.5rem; border-radius: var(--ich-pill);
    border: 1px solid transparent; cursor: pointer; text-align: center;
    transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    will-change: transform;
}
.ich-btn:hover { transform: translateY(-2px); }
.ich-btn:active { transform: translateY(0); }
.ich-btn--primary {
    background: var(--ich-aurora); color: #04241f;
    box-shadow: var(--ich-shadow-glow);
}
.ich-btn--primary:hover { color: #04241f; box-shadow: 0 22px 60px rgba(46,230,200,.30); }
.ich-btn--ghost {
    background: transparent; color: var(--ich-on-dark);
    border-color: var(--ich-border-dark);
}
.ich-btn--ghost:hover { background: rgba(255,255,255,.06); color: var(--ich-on-dark); }
.ich-btn--dark { background: var(--ich-heading); color: #fff; }
.ich-btn--dark:hover { color: #fff; background: #1a2540; }
.ich-btn--light { background: #fff; color: var(--ich-heading); border-color: var(--ich-border); box-shadow: var(--ich-shadow-sm); }
.ich-btn--light:hover { color: var(--ich-heading); }
.ich-btn--wa { background: var(--ich-wa); color: #04210f; }
.ich-btn--wa:hover { background: var(--ich-wa-dark); color: #fff; }
.ich-btn--lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.ich-btn--block { display: flex; width: 100%; }
.ich-btn svg { width: 1.15em; height: 1.15em; }

/* 6. HEADER & NAVIGATION =================================================== */
.ich-skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--ich-heading); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--ich-r) 0;
}
.ich-skip-link:focus { left: 0; color: #fff; }

.ich-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(10,14,26,.82);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--ich-border-dark);
}
.ich-header__inner {
    display: flex; align-items: center; gap: 1.25rem;
    min-height: var(--ich-header-h);
}
.ich-brand { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; }
.ich-brand img { height: 42px; width: auto; }
.ich-brand__txt { font-family: var(--ich-font-head); font-weight: 700; color: #fff; font-size: 1.15rem; letter-spacing: -.01em; }
.ich-brand__txt span { color: var(--ich-primary); }

.ich-nav { display: flex; align-items: center; gap: .25rem; }
.ich-nav ul { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.ich-nav a {
    display: block; padding: .55rem .85rem; border-radius: var(--ich-pill);
    color: var(--ich-on-dark-soft); font-weight: 500; font-size: .97rem;
}
.ich-nav a:hover, .ich-nav .current-menu-item > a { color: #fff; background: rgba(255,255,255,.07); }
.ich-header__cta { display: flex; align-items: center; gap: .6rem; }

/* mobile menu toggle */
.ich-burger {
    display: none; width: 46px; height: 46px; border-radius: var(--ich-r-sm);
    background: rgba(255,255,255,.08); border: 1px solid var(--ich-border-dark);
    cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.ich-burger span, .ich-burger span::before, .ich-burger span::after {
    content: ""; display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.ich-burger span::before { transform: translateY(-6px); }
.ich-burger span::after  { transform: translateY(4px); }
.ich-burger span { position: relative; }
.ich-burger span::before, .ich-burger span::after { position: absolute; left: 0; }
.ich-burger[aria-expanded="true"] span { background: transparent; }
.ich-burger[aria-expanded="true"] span::before { transform: rotate(45deg); }
.ich-burger[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* 7. HERO — STREAMING DASHBOARD =========================================== */
.ich-hero {
    position: relative; background: var(--ich-bg); color: var(--ich-on-dark-soft);
    padding-block: clamp(3rem, 6vw, 5.5rem) clamp(4rem, 8vw, 7rem);
    overflow: hidden;
}
.ich-hero::before {
    content: ""; position: absolute; inset: 0; background: var(--ich-glow); pointer-events: none;
}
.ich-hero__grid {
    position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.ich-hero__title { color: #fff; margin: 1rem 0 1.1rem; }
.ich-hero__title .grad { background: var(--ich-aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ich-hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 30ch; }
.ich-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }
.ich-hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; align-items: center; color: var(--ich-on-dark-mute); font-size: .92rem; }
.ich-hero__trust b { color: #fff; }
.ich-hero__trust .ich-check { color: var(--ich-primary); }

/* dashboard mockup panel */
.ich-dash {
    position: relative; background: linear-gradient(160deg, var(--ich-panel), var(--ich-bg-2));
    border: 1px solid var(--ich-border-dark); border-radius: var(--ich-r-lg);
    box-shadow: var(--ich-shadow-lg); padding: 1rem; overflow: hidden;
}
.ich-dash::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: var(--ich-aurora); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none; }
.ich-dash__bar { display: flex; align-items: center; gap: .4rem; padding: .3rem .4rem .8rem; }
.ich-dash__dot { width: 10px; height: 10px; border-radius: 50%; background: #2c3653; }
.ich-dash__dot:nth-child(1){ background:#ff5f57;} .ich-dash__dot:nth-child(2){ background:#febc2e;} .ich-dash__dot:nth-child(3){ background:#28c840;}
.ich-dash__live { margin-left: auto; display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; color: #fff; font-family: var(--ich-font-head); letter-spacing: .08em; }
.ich-dash__live i { width: 8px; height: 8px; border-radius: 50%; background: var(--ich-coral); box-shadow: 0 0 0 0 rgba(255,90,110,.6); animation: ich-pulse 1.8s infinite; }
.ich-dash__media { border-radius: var(--ich-r); overflow: hidden; aspect-ratio: 16/9; background: #0c1222; position: relative; }
.ich-dash__media img { width: 100%; height: 100%; object-fit: cover; }
.ich-dash__chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .8rem; }
.ich-chip { font-size: .8rem; padding: .4rem .7rem; border-radius: var(--ich-pill); background: rgba(255,255,255,.06); border: 1px solid var(--ich-border-dark); color: var(--ich-on-dark-soft); }
.ich-chip--on { background: var(--ich-aurora-soft); color: #fff; border-color: rgba(46,230,200,.4); }
.ich-dash__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin-top: .8rem; }
.ich-dash__stat { background: rgba(255,255,255,.04); border: 1px solid var(--ich-border-dark); border-radius: var(--ich-r-sm); padding: .7rem .6rem; text-align: center; }
.ich-dash__stat b { display: block; font-family: var(--ich-font-head); color: #fff; font-size: 1.15rem; }
.ich-dash__stat span { font-size: .72rem; color: var(--ich-on-dark-mute); }

@keyframes ich-pulse { 0%{box-shadow:0 0 0 0 rgba(255,90,110,.55);} 70%{box-shadow:0 0 0 8px rgba(255,90,110,0);} 100%{box-shadow:0 0 0 0 rgba(255,90,110,0);} }

/* 8. STATS / TRUST STRIP =================================================== */
.ich-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--ich-gap); }
.ich-stat { text-align: center; padding: 1.4rem 1rem; background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r); box-shadow: var(--ich-shadow-sm); }
.ich-stat__num { font-family: var(--ich-font-head); font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--ich-heading); line-height: 1; }
.ich-stat__num .grad { background: var(--ich-aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ich-stat__label { color: var(--ich-muted); font-size: .95rem; margin-top: .4rem; }

/* 9. CONTENT TABS ========================================================== */
.ich-tabs__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.ich-tab-btn {
    font-family: var(--ich-font-head); font-weight: 600; font-size: .98rem;
    padding: .7rem 1.2rem; border-radius: var(--ich-pill); cursor: pointer;
    background: #fff; border: 1px solid var(--ich-border); color: var(--ich-text);
    display: inline-flex; align-items: center; gap: .5rem; transition: all .2s ease;
}
.ich-tab-btn[aria-selected="true"] { background: var(--ich-heading); color: #fff; border-color: var(--ich-heading); }
.ich-tab-btn svg { width: 1.1em; height: 1.1em; }
.ich-tabpanel { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,3vw,3rem); align-items: center; }
.ich-tabpanel[hidden] { display: none; }
.ich-tabpanel__media { border-radius: var(--ich-r-lg); overflow: hidden; box-shadow: var(--ich-shadow); aspect-ratio: 4/3; background: var(--ich-soft); }
.ich-tabpanel__media img { width: 100%; height: 100%; object-fit: cover; }
.ich-tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; padding: 0; list-style: none; }
.ich-tag-list li { font-size: .9rem; padding: .4rem .85rem; border-radius: var(--ich-pill); background: var(--ich-soft); border: 1px solid var(--ich-border); }

/* 10. DEVICE GRID ========================================================== */
.ich-devices { grid-template-columns: repeat(4,1fr); }
.ich-device {
    background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r);
    padding: 1.5rem 1.2rem; text-align: center; box-shadow: var(--ich-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.ich-device:hover { transform: translateY(-4px); box-shadow: var(--ich-shadow); }
.ich-device__icon { width: 56px; height: 56px; margin: 0 auto .8rem; display: grid; place-items: center; border-radius: var(--ich-r-sm); background: var(--ich-aurora-soft); color: var(--ich-primary-2); }
.ich-device__icon svg { width: 30px; height: 30px; }
.ich-device h4 { margin-bottom: .25rem; }
.ich-device p { font-size: .9rem; color: var(--ich-muted); margin: 0; }

/* 11. PRICING / PLAN SELECTOR ============================================== */
.ich-plans { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: stretch; }
.ich-plan-list { display: grid; gap: .85rem; }
.ich-plan {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
    width: 100%; text-align: left; cursor: pointer;
    background: #fff; border: 2px solid var(--ich-border); border-radius: var(--ich-r);
    padding: 1.1rem 1.3rem; transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
    font-family: var(--ich-font-body);
}
.ich-plan:hover { transform: translateY(-2px); box-shadow: var(--ich-shadow-sm); }
.ich-plan[aria-pressed="true"] { border-color: var(--ich-primary-2); box-shadow: var(--ich-shadow-glow); }
.ich-plan__radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--ich-border); display: grid; place-items: center; }
.ich-plan[aria-pressed="true"] .ich-plan__radio { border-color: var(--ich-primary-2); }
.ich-plan[aria-pressed="true"] .ich-plan__radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--ich-aurora); }
.ich-plan__name { font-family: var(--ich-font-head); font-weight: 700; color: var(--ich-heading); font-size: 1.1rem; }
.ich-plan__meta { font-size: .85rem; color: var(--ich-muted); }
.ich-plan__price { text-align: right; font-family: var(--ich-font-head); }
.ich-plan__price b { font-size: 1.4rem; color: var(--ich-heading); }
.ich-plan__price span { display: block; font-size: .78rem; color: var(--ich-muted); font-family: var(--ich-font-body); }
.ich-badge-best { background: var(--ich-coral); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .5rem; border-radius: var(--ich-pill); margin-left: .5rem; }

.ich-plan-detail {
    background: var(--ich-heading); color: #fff; border-radius: var(--ich-r-lg);
    padding: clamp(1.5rem,3vw,2.2rem); box-shadow: var(--ich-shadow-lg);
    position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.ich-plan-detail::before { content: ""; position: absolute; inset: 0; background: var(--ich-glow); opacity: .7; }
.ich-plan-detail > * { position: relative; }
.ich-plan-detail h3 { color: #fff; }
.ich-plan-detail__price { font-family: var(--ich-font-head); font-size: clamp(2.4rem,5vw,3.2rem); font-weight: 700; line-height: 1; margin: .4rem 0 .2rem; }
.ich-plan-detail__price small { font-size: 1rem; color: var(--ich-on-dark-mute); font-weight: 500; }
.ich-plan-detail__per { color: var(--ich-on-dark-mute); margin-bottom: 1.2rem; }
.ich-feat { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .6rem; }
.ich-feat li { display: flex; align-items: flex-start; gap: .6rem; color: var(--ich-on-dark-soft); }
.ich-feat svg { width: 20px; height: 20px; color: var(--ich-primary); flex-shrink: 0; margin-top: .15rem; }

/* 12. ACTIVATION STEPS ===================================================== */
.ich-steps { counter-reset: ich-step; grid-template-columns: repeat(3,1fr); }
.ich-step { position: relative; background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r); padding: 2rem 1.5rem 1.5rem; box-shadow: var(--ich-shadow-sm); }
.ich-step__num { counter-increment: ich-step; position: absolute; top: -22px; left: 1.5rem; width: 46px; height: 46px; border-radius: 14px; background: var(--ich-aurora); color: #04241f; display: grid; place-items: center; font-family: var(--ich-font-head); font-weight: 700; font-size: 1.2rem; box-shadow: var(--ich-shadow-glow); }
.ich-step__num::after { content: counter(ich-step); }
.ich-step h4 { margin: .6rem 0 .4rem; }
.ich-step p { font-size: .95rem; margin: 0; }

/* 13. WHY-CANADA / LOCAL TRUST ============================================= */
.ich-why { grid-template-columns: repeat(2,1fr); }
.ich-why__card { display: flex; gap: 1rem; padding: 1.4rem; background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r); box-shadow: var(--ich-shadow-sm); }
.ich-why__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--ich-r-sm); display: grid; place-items: center; background: var(--ich-aurora-soft); color: var(--ich-primary-2); }
.ich-why__icon svg { width: 26px; height: 26px; }
.ich-why__card h4 { margin-bottom: .3rem; }
.ich-why__card p { margin: 0; font-size: .95rem; }

/* 14. SPEED / UPTIME PANEL ================================================= */
.ich-uptime { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,3rem); align-items: center; }
.ich-meter { background: var(--ich-panel); border: 1px solid var(--ich-border-dark); border-radius: var(--ich-r-lg); padding: 1.6rem; box-shadow: var(--ich-shadow-lg); }
.ich-meter__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.ich-meter__row:last-child { margin-bottom: 0; }
.ich-meter__label { color: var(--ich-on-dark-soft); font-size: .95rem; }
.ich-meter__bar { flex: 1; height: 8px; margin: 0 1rem; background: rgba(255,255,255,.08); border-radius: var(--ich-pill); overflow: hidden; }
.ich-meter__fill { height: 100%; background: var(--ich-aurora); border-radius: inherit; }
.ich-meter__val { color: #fff; font-family: var(--ich-font-head); font-weight: 600; min-width: 56px; text-align: right; }

/* 15. CUSTOMER-SCENARIO CARDS ============================================== */
.ich-scenarios { grid-template-columns: repeat(3,1fr); }
.ich-scenario { background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r-lg); padding: 1.6rem; box-shadow: var(--ich-shadow-sm); display: flex; flex-direction: column; }
.ich-scenario__tag { align-self: flex-start; font-size: .78rem; font-weight: 600; color: var(--ich-violet); background: rgba(124,92,255,.1); padding: .25rem .7rem; border-radius: var(--ich-pill); margin-bottom: .9rem; }
.ich-scenario p { font-size: .98rem; }
.ich-scenario__who { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--ich-border); }
.ich-scenario__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ich-aurora); display: grid; place-items: center; color: #04241f; font-family: var(--ich-font-head); font-weight: 700; }
.ich-scenario__who b { display: block; color: var(--ich-heading); font-size: .95rem; }
.ich-scenario__who span { font-size: .82rem; color: var(--ich-muted); }
.ich-note { font-size: .82rem; color: var(--ich-muted); text-align: center; margin-top: 1.2rem; }

/* 16. FAQ ACCORDION ======================================================== */
.ich-faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.ich-faq__item { background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r); overflow: hidden; }
.ich-faq__q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    font-family: var(--ich-font-head); font-weight: 600; font-size: 1.05rem; color: var(--ich-heading);
    padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.ich-faq__q .ich-faq__sign { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--ich-aurora-soft); display: grid; place-items: center; color: var(--ich-primary-2); transition: transform .25s ease; }
.ich-faq__q[aria-expanded="true"] .ich-faq__sign { transform: rotate(45deg); }
.ich-faq__a { padding: 0 1.4rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.ich-faq__a p { margin: 0 0 1.2rem; color: var(--ich-text); }
.ich-faq__item.is-open .ich-faq__a { padding-top: .2rem; }

/* 17. CTA BANNER & WHATSAPP ================================================ */
.ich-cta-banner { position: relative; background: var(--ich-heading); border-radius: var(--ich-r-xl); padding: clamp(2.5rem,5vw,4rem); text-align: center; overflow: hidden; color: #fff; }
.ich-cta-banner::before { content: ""; position: absolute; inset: 0; background: var(--ich-glow); }
.ich-cta-banner > * { position: relative; }
.ich-cta-banner h2 { color: #fff; }
.ich-cta-banner__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

/* sticky mobile bar */
.ich-mobilebar { display: none; }

/* floating WhatsApp */
.ich-wa-float {
    position: fixed; right: 18px; bottom: 18px; z-index: 150;
    width: 58px; height: 58px; border-radius: 50%; background: var(--ich-wa);
    display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5);
    color: #fff; transition: transform .2s ease;
}
.ich-wa-float:hover { transform: scale(1.07); color: #fff; }
.ich-wa-float svg { width: 30px; height: 30px; }

/* 18. BLOG CARDS & SINGLE ================================================== */
.ich-posts { grid-template-columns: repeat(3,1fr); }
.ich-card-post { background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r-lg); overflow: hidden; box-shadow: var(--ich-shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.ich-card-post:hover { transform: translateY(-4px); box-shadow: var(--ich-shadow); }
.ich-card-post__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--ich-soft); }
.ich-card-post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ich-card-post:hover .ich-card-post__thumb img { transform: scale(1.05); }
.ich-card-post__body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.ich-card-post__cat { font-size: .78rem; font-weight: 600; color: var(--ich-primary-2); text-transform: uppercase; letter-spacing: .06em; }
.ich-card-post__body h3 { font-size: 1.2rem; margin: .4rem 0 .5rem; }
.ich-card-post__body h3 a { color: var(--ich-heading); }
.ich-card-post__body h3 a:hover { color: var(--ich-primary-2); }
.ich-card-post__meta { margin-top: auto; padding-top: 1rem; font-size: .85rem; color: var(--ich-muted); }

.ich-article { max-width: 760px; margin-inline: auto; }
.ich-article img { border-radius: var(--ich-r); margin: 1.5rem 0; }
.ich-article h2, .ich-article h3 { margin-top: 2rem; }
.ich-article ul, .ich-article ol { margin-bottom: 1.2rem; }
.ich-article li { margin-bottom: .4rem; }
.ich-post-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--ich-muted); font-size: .92rem; margin-bottom: 1.5rem; }
.ich-post-cta { background: var(--ich-soft); border: 1px solid var(--ich-border); border-radius: var(--ich-r-lg); padding: 1.6rem; margin: 2.5rem 0; text-align: center; }
.ich-related { grid-template-columns: repeat(3,1fr); }

/* 19. FORMS ================================================================ */
.ich-form { display: grid; gap: 1.1rem; }
.ich-field { display: grid; gap: .4rem; }
.ich-field label { font-family: var(--ich-font-head); font-weight: 600; font-size: .95rem; color: var(--ich-heading); }
.ich-field input, .ich-field textarea, .ich-field select {
    font-family: var(--ich-font-body); font-size: 1rem; color: var(--ich-heading);
    padding: .95rem 1.1rem; border-radius: var(--ich-r-sm); border: 1px solid var(--ich-border);
    background: #fff; width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.ich-field input:focus, .ich-field textarea:focus, .ich-field select:focus {
    outline: none; border-color: var(--ich-primary-2); box-shadow: 0 0 0 4px rgba(46,230,200,.18);
}
.ich-field textarea { min-height: 140px; resize: vertical; }
.ich-form__note { font-size: .85rem; color: var(--ich-muted); }

/* 20. BREADCRUMBS & INNER PAGE HEADERS ===================================== */
.ich-pagehead { position: relative; background: var(--ich-bg); color: var(--ich-on-dark-soft); padding-block: clamp(2.5rem,5vw,4rem); overflow: hidden; }
.ich-pagehead::before { content: ""; position: absolute; inset: 0; background: var(--ich-glow); }
.ich-pagehead__inner { position: relative; max-width: 760px; }
.ich-pagehead h1 { color: #fff; margin: .8rem 0 .6rem; }
.ich-pagehead p { color: var(--ich-on-dark-soft); }
.ich-breadcrumbs { font-size: .88rem; color: var(--ich-on-dark-mute); }
.ich-breadcrumbs a { color: var(--ich-on-dark-soft); }
.ich-breadcrumbs a:hover { color: var(--ich-primary); }
.ich-breadcrumbs .sep { margin: 0 .4rem; opacity: .5; }

.ich-prose { max-width: 820px; margin-inline: auto; }
.ich-prose h2 { margin-top: 2.2rem; margin-bottom: .8rem; }
.ich-prose h3 { margin-top: 1.6rem; margin-bottom: .6rem; }
.ich-prose ul, .ich-prose ol { margin-bottom: 1.2rem; }
.ich-prose li { margin-bottom: .5rem; }
.ich-updated { display: inline-block; font-size: .85rem; color: var(--ich-muted); background: var(--ich-soft); border: 1px solid var(--ich-border); padding: .4rem .9rem; border-radius: var(--ich-pill); margin-bottom: 1.5rem; }

/* 21. FOOTER =============================================================== */
.ich-footer { background: var(--ich-bg); color: var(--ich-on-dark-soft); padding-top: clamp(3rem,6vw,4.5rem); }
.ich-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem,3vw,3rem); padding-bottom: 2.5rem; border-bottom: 1px solid var(--ich-border-dark); }
.ich-footer__brand img { height: 44px; margin-bottom: 1rem; }
.ich-footer__brand p { max-width: 34ch; font-size: .95rem; }
.ich-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.ich-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.ich-footer a { color: var(--ich-on-dark-soft); font-size: .95rem; }
.ich-footer a:hover { color: var(--ich-primary); }
.ich-footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.ich-footer__contact svg { width: 18px; height: 18px; color: var(--ich-primary); flex-shrink: 0; margin-top: .25rem; }
.ich-footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-block: 1.6rem; font-size: .88rem; color: var(--ich-on-dark-mute); }
.ich-footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.ich-disclaimer { font-size: .82rem; color: var(--ich-on-dark-mute); padding-bottom: 1.5rem; max-width: 90ch; }

/* 22. UTILITIES =========================================================== */
.ich-check { display: inline-flex; }
.ich-mt-0 { margin-top: 0; }
.ich-mb-0 { margin-bottom: 0; }
.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; }
.ich-text-light { color: var(--ich-on-dark-soft); }

/* pagination */
.ich-pagination { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 3rem; }
.ich-pagination a, .ich-pagination span { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .8rem; border-radius: var(--ich-r-sm); border: 1px solid var(--ich-border); background: #fff; font-family: var(--ich-font-head); font-weight: 600; color: var(--ich-heading); }
.ich-pagination .current { background: var(--ich-heading); color: #fff; border-color: var(--ich-heading); }
.ich-pagination a:hover { border-color: var(--ich-primary-2); color: var(--ich-primary-2); }

/* 23. ACCESSIBILITY & MOTION ============================================== */
:focus-visible { outline: 3px solid var(--ich-violet); outline-offset: 2px; border-radius: 4px; }
/* Content is visible by default; the hide-then-reveal animation only kicks in
   when main.js has run and added .ich-js to <html>. If JS fails to load,
   nothing is ever hidden. */
.ich-reveal { opacity: 1; transform: none; }
.ich-js .ich-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.ich-js .ich-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .ich-reveal, .ich-js .ich-reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- Inner page hero with media (city skylines) ---- */
.ich-pagehead--media { padding-block: clamp(3.5rem,7vw,5.5rem); }
.ich-pagehead__img { position: absolute; inset: 0; z-index: 0; }
.ich-pagehead__img img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.ich-pagehead--media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,14,26,.92), rgba(10,14,26,.55)); z-index: 1; }
.ich-pagehead--media .ich-container { position: relative; z-index: 2; }
.ich-pagehead__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }

/* ---- Currency tag ---- */
.ich-cur { font-size: .55em; font-weight: 600; color: var(--ich-muted); vertical-align: middle; }
.ich-plan-detail__price .ich-cur, .ich-plan-detail small { color: var(--ich-on-dark-mute); }

/* ---- Two-column prose + aside ---- */
.ich-split { display: grid; grid-template-columns: 1fr 320px; gap: clamp(1.5rem,3vw,3rem); align-items: start; }
.ich-aside { position: sticky; top: calc(var(--ich-header-h) + 16px); display: grid; gap: 1.2rem; }
.ich-aside-card { background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r-lg); padding: 1.5rem; box-shadow: var(--ich-shadow-sm); }
.ich-aside-card--dark { background: var(--ich-heading); color: #fff; }
.ich-aside-card--dark h3, .ich-aside-card--dark h4 { color: #fff; }
.ich-aside-card--dark p { color: var(--ich-on-dark-soft); }

/* ---- Feature checklist ---- */
.ich-checklist { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .7rem; }
.ich-checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.ich-checklist svg { width: 22px; height: 22px; color: var(--ich-primary-2); flex-shrink: 0; margin-top: .15rem; }

/* ---- Callout box ---- */
.ich-callout { background: var(--ich-aurora-soft); border: 1px solid rgba(46,230,200,.4); border-radius: var(--ich-r); padding: 1.3rem 1.5rem; margin: 1.5rem 0; }
.ich-callout--warn { background: rgba(255,176,32,.1); border-color: rgba(255,176,32,.45); }
.ich-callout p:last-child { margin-bottom: 0; }

/* ---- Channel category grid ---- */
.ich-catgrid { grid-template-columns: repeat(3,1fr); }
.ich-catcard { background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r); padding: 1.4rem; box-shadow: var(--ich-shadow-sm); }
.ich-catcard h4 { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.ich-catcard h4 svg { width: 22px; height: 22px; color: var(--ich-primary-2); }
.ich-catcard ul { margin: 0; padding-left: 1.1em; font-size: .95rem; color: var(--ich-text); }

/* ---- Contact grid ---- */
.ich-contact-grid { grid-template-columns: repeat(3,1fr); margin-bottom: 2.5rem; }
.ich-contact-card { text-align: center; background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r-lg); padding: 1.8rem 1.4rem; box-shadow: var(--ich-shadow-sm); }
.ich-contact-card__icon { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: var(--ich-r-sm); display: grid; place-items: center; background: var(--ich-aurora-soft); color: var(--ich-primary-2); }
.ich-contact-card__icon svg { width: 30px; height: 30px; }

/* ---- Comparison table ---- */
.ich-compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--ich-r); overflow: hidden; box-shadow: var(--ich-shadow-sm); border: 1px solid var(--ich-border); }
.ich-compare th, .ich-compare td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--ich-border); }
.ich-compare thead th { background: var(--ich-heading); color: #fff; font-family: var(--ich-font-head); }
.ich-compare tbody tr:last-child td { border-bottom: 0; }
.ich-compare .yes { color: var(--ich-success); font-weight: 700; }
.ich-compare .no { color: var(--ich-muted); }

/* ---- Widgets & comments ---- */
.ich-widget { background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-r); padding: 1.3rem; margin-bottom: 1.2rem; }
.ich-widget__title { margin-bottom: .8rem; }
.ich-comments { margin-top: 2rem; }
.ich-comment-list { list-style: none; padding: 0; }
.ich-comment-list .children { list-style: none; padding-left: 1.5rem; }
.ich-comment-list li { background: var(--ich-soft); border: 1px solid var(--ich-border); border-radius: var(--ich-r); padding: 1.1rem 1.3rem; margin-bottom: 1rem; }
.ich-tag-prefix { font-weight: 700; color: var(--ich-heading); }

@media (max-width: 860px) {
	.ich-split { grid-template-columns: 1fr; }
	.ich-aside { position: static; }
	.ich-catgrid, .ich-contact-grid { grid-template-columns: 1fr; }
	.ich-compare { display: block; overflow-x: auto; white-space: nowrap; }
}

/* 24. RESPONSIVE ========================================================== */
@media (max-width: 1024px) {
    .ich-hero__grid { grid-template-columns: 1fr; }
    .ich-plans { grid-template-columns: 1fr; }
    .ich-uptime { grid-template-columns: 1fr; }
    .ich-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .ich-nav { position: fixed; inset: var(--ich-header-h) 0 auto 0; background: var(--ich-bg-2); border-bottom: 1px solid var(--ich-border-dark); padding: 1rem 1.25rem 1.5rem; transform: translateY(-120%); transition: transform .3s ease; max-height: calc(100vh - var(--ich-header-h)); overflow-y: auto; }
    .ich-nav.is-open { transform: translateY(0); }
    .ich-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
    .ich-nav a { padding: .85rem 1rem; }
    .ich-burger { display: inline-flex; }
    .ich-header__cta .ich-btn--ghost { display: none; }
    .ich-stats { grid-template-columns: repeat(2,1fr); }
    .ich-tabpanel { grid-template-columns: 1fr; }
    .ich-devices { grid-template-columns: repeat(2,1fr); }
    .ich-steps { grid-template-columns: 1fr; gap: 2rem; }
    .ich-why { grid-template-columns: 1fr; }
    .ich-scenarios, .ich-posts, .ich-related { grid-template-columns: 1fr; }
    .ich-footer__top { grid-template-columns: 1fr; }
    .ich-mobilebar {
        display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
        gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
        background: rgba(10,14,26,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--ich-border-dark);
    }
    .ich-mobilebar .ich-btn { flex: 1; padding: .85rem 1rem; }
    .ich-wa-float { display: none; }
    body { padding-bottom: 72px; }
}
@media (max-width: 520px) {
    .ich-stats { grid-template-columns: 1fr 1fr; }
    .ich-devices { grid-template-columns: 1fr 1fr; }
    .ich-plan { grid-template-columns: auto 1fr; }
    .ich-plan__price { grid-column: 2; text-align: left; margin-top: .3rem; }
    .ich-hero__actions { flex-direction: column; }
    .ich-hero__actions .ich-btn { width: 100%; }
}

/* ==========================================================================
   HOME PAGE — light / white refined theme  (scoped to body.ich-home only;
   inner pages keep the original styling)
   ========================================================================== */
.ich-home { background: #fff; }

/* ---- Hero (light) ---- */
.ich-home .ich-hero {
    background:
        radial-gradient(60% 60% at 90% -5%, rgba(46,230,200,.13), transparent 70%),
        radial-gradient(48% 55% at -8% 105%, rgba(124,92,255,.11), transparent 70%),
        #ffffff;
    color: var(--ich-text);
    padding-block: clamp(2.5rem, 5vw, 4.25rem) clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--ich-border);
}
.ich-home .ich-hero::before { display: none; }
.ich-home .ich-hero__grid { align-items: center; gap: clamp(2rem, 4vw, 4rem); }
.ich-home .ich-hero__title { color: var(--ich-heading); }
.ich-home .ich-hero__sub { color: var(--ich-text); max-width: 38ch; }
.ich-home .ich-hero__trust { color: var(--ich-muted); }
.ich-home .ich-hero__trust b { color: var(--ich-heading); }
.ich-home .ich-hero .ich-eyebrow { background: var(--ich-aurora-soft); }
.ich-home .ich-hero__actions .ich-btn--ghost {
    background: #fff; color: var(--ich-heading);
    border-color: var(--ich-border); box-shadow: var(--ich-shadow-sm);
}
.ich-home .ich-hero__actions .ich-btn--ghost:hover { background: var(--ich-soft); color: var(--ich-heading); }

/* hero trust pills */
.ich-home .ich-hero__pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.ich-home .ich-hero__pill {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .86rem; font-weight: 600; color: var(--ich-heading);
    background: #fff; border: 1px solid var(--ich-border); border-radius: var(--ich-pill);
    padding: .5rem .85rem; box-shadow: var(--ich-shadow-sm);
}
.ich-home .ich-hero__pill svg { width: 18px; height: 18px; color: var(--ich-primary-2); }

/* ---- Sections: white, with optional subtle band for rhythm ---- */
.ich-home .ich-section--soft, .ich-home .ich-section--light { background: #fff; }
.ich-home .ich-band { background: #f7f9fc; border-block: 1px solid var(--ich-border); }
.ich-home .ich-section-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }

/* ---- "Works with" device strip ---- */
.ich-home .ich-logos {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: .7rem 1.6rem; padding-block: 1.4rem; border-bottom: 1px solid var(--ich-border);
}
.ich-home .ich-logos b { color: var(--ich-muted); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-right: .4rem; }
.ich-home .ich-logos span { display: inline-flex; align-items: center; gap: .5rem; color: var(--ich-heading); font-weight: 600; font-size: .95rem; }
.ich-home .ich-logos svg { width: 22px; height: 22px; color: var(--ich-primary-2); }

/* ---- Stats: lively gradient numbers ---- */
.ich-home .ich-stat { border: 1px solid var(--ich-border); box-shadow: var(--ich-shadow); background: #fff; }
.ich-home .ich-stat__num, .ich-home .ich-stat__num span {
    background: var(--ich-aurora); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ich-home .ich-stat__num small { -webkit-text-fill-color: var(--ich-muted); color: var(--ich-muted); font-size: .5em; }

/* ---- SEO content blocks ---- */
.ich-home .ich-seo { max-width: 880px; margin-inline: auto; }
.ich-home .ich-seo h2 { margin-bottom: .7rem; }
.ich-home .ich-seo h3 { margin: 1.7rem 0 .5rem; }
.ich-home .ich-seo p { color: var(--ich-text); }
.ich-home .ich-seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 2.2rem; margin: 1.3rem 0; }
.ich-home .ich-seo-cols li { display: flex; gap: .6rem; align-items: flex-start; }
.ich-home .ich-seo-cols svg { width: 21px; height: 21px; color: var(--ich-primary-2); flex-shrink: 0; margin-top: .15rem; }
.ich-home .ich-seo-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.ich-home .ich-citylinks { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.ich-home .ich-citylinks a {
    display: inline-flex; align-items: center; gap: .4rem; padding: .55rem 1rem;
    border: 1px solid var(--ich-border); border-radius: var(--ich-pill); background: #fff;
    font-weight: 600; color: var(--ich-heading); box-shadow: var(--ich-shadow-sm);
}
.ich-home .ich-citylinks a:hover { border-color: var(--ich-primary-2); color: var(--ich-primary-2); }
.ich-home .ich-citylinks svg { width: 16px; height: 16px; color: var(--ich-primary-2); }

/* ---- Uptime eyebrow on white ---- */
.ich-home .ich-uptime .ich-eyebrow { background: var(--ich-aurora-soft); }

@media (max-width: 860px) {
    .ich-home .ich-seo-cols { grid-template-columns: 1fr; }
}
