/* ============================================================
   HOSTINQ 2026 — clean design system
   Reset + tokens + components for the entire site.
   Replaces the previous 6994-line patchwork.
   ============================================================ */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------- */
:root {
    /* Brand */
    --h26-green-50:  #e8faf0;
    --h26-green-100: #d6f9e6;
    --h26-green-200: #a7f3c5;
    --h26-green-300: #6ee7b7;
    --h26-green-400: #34d399;
    --h26-green-500: #2dd07f;
    --h26-green-600: #16a45f;
    --h26-green-700: #0d7c47;
    --h26-green-800: #14644a;
    --h26-green-900: #0d3a2c;
    --h26-green-950: #082b22;

    /* Neutrals */
    --h26-bg:        #ffffff;
    --h26-bg-soft:   #f4f7f5;
    --h26-line:      #e3ebe7;
    --h26-line-soft: #eef2ef;

    /* Text */
    --h26-text:      #0b1f17;
    --h26-text-soft: #5a6d65;
    --h26-text-muted:#94a3b8;
    --h26-text-on-dark:     #ffffff;
    --h26-text-on-dark-soft:#d1fae5;

    /* Accent */
    --h26-accent:        var(--h26-green-500);
    --h26-accent-strong: var(--h26-green-600);
    --h26-accent-soft:   rgba(45, 208, 127, 0.08);
    --h26-accent-ring:   rgba(45, 208, 127, 0.25);

    /* Effects */
    --h26-radius-sm: 8px;
    --h26-radius:    12px;
    --h26-radius-lg: 18px;
    --h26-radius-xl: 24px;

    --h26-shadow-sm: 0 2px 8px rgba(8,41,31,0.04);
    --h26-shadow:    0 8px 28px rgba(8,41,31,0.06);
    --h26-shadow-lg: 0 18px 50px rgba(8,41,31,0.12);

    --h26-grad-accent: linear-gradient(135deg, #2dd07f 0%, #16a45f 100%);
    --h26-grad-dark:   linear-gradient(135deg, #082b22 0%, #0d3a2c 50%, #145740 100%);

    /* Type */
    --h26-font: 'Inter','SF Pro medium','Poppins',-apple-system,BlinkMacSystemFont,sans-serif;

    /* Layout */
    --h26-container: 1200px;
}

body { background: var(--h26-bg); }

/* ---------------------------------------------------------------
   2. HIDE LEGACY CHROME
   --------------------------------------------------------------- */
.hosting-container,
.slider-main,
.domain-card,
.ctslider,
.ctslider-slider-container { display: none !important; }
.coretema-menu-badge,
.megahedars-badge,
.megahedars-discount-badge { display: none !important; }
.coretema-theme-switcher,
.coretema-theme-btn,
.coretema-theme-toggle { display: none !important; }

/* ---------------------------------------------------------------
   3. HEADER (chrome) — minimal hosting.com style
   --------------------------------------------------------------- */
.coretema-header {
    background: #ffffff !important;
    border-bottom: 1px solid var(--h26-line) !important;
    box-shadow: 0 1px 0 rgba(8,41,31,0.04) !important;
}
.coretema-topbar {
    background: linear-gradient(135deg, var(--h26-green-950), var(--h26-green-900)) !important;
    color: #b6d8c9 !important;
    padding: 6px 0 !important;
    font-size: 12px !important;
    border-bottom: none !important;
}
.coretema-topbar a,
.coretema-topbar-link {
    color: #b6d8c9 !important;
    transition: color .15s ease;
}
.coretema-topbar a:hover { color: #ffffff !important; }

.coretema-main-menu { background: #ffffff !important; }
.coretema-menu-item,
.coretema-menu-title {
    color: var(--h26-text) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: color .15s ease;
}
.coretema-menu-item:hover,
.coretema-menu-item:hover .coretema-menu-title { color: var(--h26-accent-strong) !important; }
.coretema-menu-title i { font-size: 10px !important; opacity: .55; margin-left: 4px !important; }
.coretema-logo img { filter: none !important; }

.asnavbar-icon,
.coretema-header .asnavbar-cart-icon {
    background: transparent !important;
    border: none !important;
    color: var(--h26-text) !important;
    width: 38px !important; height: 38px !important;
    border-radius: 8px !important;
}
.asnavbar-icon:hover,
.coretema-header .asnavbar-cart-icon:hover {
    background: var(--h26-bg-soft) !important;
    color: var(--h26-accent-strong) !important;
}
.asnavbar-cart-button {
    background: transparent !important;
    color: var(--h26-text) !important;
    border: none !important;
    box-shadow: none !important;
    width: 38px !important; height: 38px !important;
}
.asnavbar-cart-button:hover { background: var(--h26-bg-soft) !important; color: var(--h26-accent-strong) !important; transform: none !important; }
.asnavbar-badge {
    background: var(--h26-accent-strong) !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    font-weight: 800 !important;
}
.coretema-user-btn {
    background: transparent !important;
    color: var(--h26-text) !important;
    border: 1px solid var(--h26-line) !important;
    box-shadow: none !important;
    border-radius: 999px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}
.coretema-user-btn:hover {
    background: var(--h26-bg-soft) !important;
    border-color: var(--h26-accent) !important;
    color: var(--h26-accent-strong) !important;
    transform: none !important;
    box-shadow: none !important;
}
.coretema-user-btn svg { color: currentColor !important; }

/* Mega-menu dropdown */
.coretema-dropdown-menu,
.megahedars-mega-menu-container {
    background: #ffffff !important;
    border: 1px solid var(--h26-line) !important;
    box-shadow: 0 24px 60px rgba(8,41,31,.12) !important;
    border-radius: var(--h26-radius-lg) !important;
}
.megahedars-dropdown-item {
    background: #ffffff !important;
    border: 1px solid transparent !important;
    border-radius: var(--h26-radius) !important;
    padding: 10px 12px !important;
    transition: all .2s ease;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
.megahedars-dropdown-item:hover {
    background: var(--h26-bg-soft) !important;
    border-color: var(--h26-accent-ring) !important;
}
.megahedars-dropdown-icon {
    width: 36px !important; height: 36px !important;
    background: var(--h26-grad-accent) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
.megahedars-dropdown-icon svg,
.megahedars-dropdown-icon i { width: 18px !important; height: 18px !important; color: #ffffff !important; font-size: 16px !important; }
.megahedars-title { color: var(--h26-text) !important; font-weight: 700 !important; font-size: 14px !important; }
.megahedars-description { color: var(--h26-text-soft) !important; font-size: 12px !important; }
.megahedars-column-title {
    color: var(--h26-accent-strong) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    font-size: 12px !important;
}
.megahedars-mega-menu-image {
    background: var(--h26-grad-dark) !important;
    border-radius: var(--h26-radius) !important;
    overflow: hidden !important;
    min-height: 200px !important;
    position: relative !important;
}
.megahedars-mega-menu-image img { opacity: .45 !important; }
.megahedars-image-overlay { background: linear-gradient(180deg, transparent, rgba(8,41,31,.85)) !important; padding: 16px !important; }
.megahedars-image-title { color: #ffffff !important; font-weight: 800 !important; }
.megahedars-image-text { color: var(--h26-text-on-dark-soft) !important; }
.megahedars-image-button {
    background: var(--h26-grad-accent) !important;
    color: var(--h26-green-950) !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    padding: 7px 16px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(45,208,127,.4) !important;
}

/* Floating side nav */
.asnavbar-bar {
    background: rgba(13,58,44,.55) !important;
    backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(45,208,127,.18) !important;
    box-shadow: 0 18px 50px rgba(8,41,31,.4) !important;
}
.asnavbar-item { color: #b6d8c9 !important; }
.asnavbar-item.active,
.asnavbar-item[class*="active"] { color: var(--h26-accent) !important; }
.asnavbar-item.active .asnavbar-icon,
.asnavbar-item[class*="active"] .asnavbar-icon {
    background: rgba(45,208,127,.18) !important;
    border-color: rgba(45,208,127,.4) !important;
    color: var(--h26-accent) !important;
}
.asnavbar-cart-button:not(.coretema-header .asnavbar-cart-button) {
    background: var(--h26-grad-accent) !important;
    color: var(--h26-green-950) !important;
    box-shadow: 0 12px 28px rgba(45,208,127,.4) !important;
}

/* WhatsApp + scroll-to-top */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    box-shadow: 0 8px 24px rgba(37,211,102,.4) !important;
    border: none !important;
}
.scroll-progress {
    background: var(--h26-grad-accent) !important;
    border: 2px solid rgba(45,208,127,.5) !important;
    color: #ffffff !important;
}

/* ---------------------------------------------------------------
   4. HOMEPAGE HERO
   --------------------------------------------------------------- */
.h26-hero {
    position: relative; overflow: hidden;
    padding: 90px 0 110px;
    background: var(--h26-grad-dark);
    color: #ffffff;
    font-family: var(--h26-font);
}
.h26-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.h26-hero-bg::before {
    content: ""; position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(45,208,127,.18), rgba(45,208,127,0) 65%);
}
.h26-hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6), rgba(0,0,0,0) 70%);
            mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6), rgba(0,0,0,0) 70%);
}
.h26-hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
    max-width: var(--h26-container); margin: 0 auto; padding: 0 24px;
}
.h26-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(45,208,127,.1);
    border: 1px solid rgba(45,208,127,.28);
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    color: #6ee7a7; text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: 24px;
}
.h26-pulse-dot { width: 7px; height: 7px; background: var(--h26-accent); border-radius: 50%; animation: h26pulse 2.4s infinite; }
@keyframes h26pulse {
    0% { box-shadow: 0 0 0 0 rgba(45,208,127,.7); }
    70% { box-shadow: 0 0 0 12px rgba(45,208,127,0); }
    100% { box-shadow: 0 0 0 0 rgba(45,208,127,0); }
}
.h26-hero-title {
    font-size: clamp(38px, 5.6vw, 68px);
    font-weight: 800; line-height: 1.08; letter-spacing: -.03em;
    color: #ffffff; margin: 0 0 22px;
}
.h26-accent-text {
    background: linear-gradient(135deg, #2dd07f, #fbbf24);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.h26-hero-sub {
    font-size: 18px; line-height: 1.6;
    color: var(--h26-text-on-dark-soft);
    max-width: 540px; margin: 0 0 36px;
}
.h26-hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.h26-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 28px;
    background: var(--h26-grad-accent);
    color: var(--h26-green-950) !important;
    border: none; border-radius: 12px;
    font-size: 15px; font-weight: 800;
    text-decoration: none; cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 6px 20px rgba(45,208,127,.35);
    font-family: inherit;
}
.h26-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(45,208,127,.5); filter: brightness(1.05); }
.h26-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 22px;
    background: transparent; color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.18); border-radius: 12px;
    font-size: 15px; font-weight: 700;
    text-decoration: none; cursor: pointer;
    transition: all .2s ease;
    font-family: inherit;
}
.h26-btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.h26-hero-trust {
    display: flex; gap: 22px; flex-wrap: wrap;
    color: var(--h26-text-on-dark-soft);
    font-size: 13px; font-weight: 500;
}
.h26-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.h26-hero-trust svg { color: var(--h26-accent); flex-shrink: 0; }

/* Animated server stack */
.h26-hero-art {
    position: relative; width: 100%;
    aspect-ratio: 1/1; max-width: 460px; min-height: 360px;
    margin: 0 auto;
    border-radius: var(--h26-radius-xl);
    background: radial-gradient(circle at center, rgba(45,208,127,.1), rgba(8,41,31,.6));
    border: 1px solid rgba(255,255,255,.04);
    overflow: visible;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.h26-art-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    border-radius: 50%;
    border: 2px solid rgba(45,208,127,.35);
    animation: h26ring 3s linear infinite;
    pointer-events: none;
    width: 120px; height: 120px;
}
.h26-art-ring-2 { animation-delay: 1s; }
.h26-art-ring-3 { animation-delay: 2s; }
@keyframes h26ring {
    0% { width: 120px; height: 120px; opacity: .7; }
    100% { width: 380px; height: 380px; opacity: 0; }
}
.h26-art-tower {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 180px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 2;
    animation: h26towerFloat 4.5s ease-in-out infinite;
}
@keyframes h26towerFloat {
    0%,100% { transform: translate(-50%,-50%); }
    50%     { transform: translate(-50%, calc(-50% - 6px)); }
}
.h26-art-rack {
    position: relative;
    background: var(--h26-grad-dark);
    border: 1px solid rgba(45,208,127,.3);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 22px rgba(8,41,31,.5);
}
.h26-art-rack-bar {
    flex: 1; height: 6px;
    background: linear-gradient(90deg, rgba(45,208,127,.05), rgba(45,208,127,.4), rgba(45,208,127,.05));
    background-size: 200% 100%;
    border-radius: 3px;
    animation: h26barFlow 2.5s linear infinite;
}
@keyframes h26barFlow { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.h26-art-led { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.h26-art-led-on { background: var(--h26-accent); box-shadow: 0 0 8px rgba(45,208,127,.7); animation: h26ledBlink 1.6s ease-in-out infinite; }
.h26-art-led-warm { background: #fbbf24; box-shadow: 0 0 6px rgba(251,191,36,.6); animation: h26ledBlink 2.4s ease-in-out infinite; }
@keyframes h26ledBlink { 0%,100%{opacity:1} 50%{opacity:.4} }
.h26-art-beam {
    position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(45,208,127,.6), rgba(110,231,183,.9), rgba(45,208,127,.6), transparent);
    background-size: 100% 200%;
    animation: h26beamFlow 2.2s linear infinite;
    border-radius: 2px; opacity: .85;
}
@keyframes h26beamFlow { 0%{background-position:0 -200%} 100%{background-position:0 200%} }
.h26-art-node {
    position: absolute; width: 14px; height: 14px; border-radius: 50%;
    background: var(--h26-grad-accent);
    box-shadow: 0 0 14px rgba(45,208,127,.6), 0 0 0 4px rgba(45,208,127,.15);
    animation: h26nodePulse 3.4s ease-in-out infinite;
    z-index: 3;
}
.h26-art-node-1 { top: 12%; left: 12%; animation-delay: 0s; }
.h26-art-node-2 { top: 18%; right: 14%; animation-delay: .8s; }
.h26-art-node-3 { bottom: 18%; left: 14%; animation-delay: 1.6s; }
.h26-art-node-4 { bottom: 14%; right: 12%; animation-delay: 2.4s; }
@keyframes h26nodePulse {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.3); box-shadow: 0 0 22px rgba(45,208,127,.9), 0 0 0 8px rgba(45,208,127,.05); }
}
.h26-art-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.h26-art-line {
    stroke: rgba(45,208,127,.4); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 6 8;
    animation: h26lineFlow 4s linear infinite;
}
.h26-art-line-2 { animation-delay: 1s; }
.h26-art-line-3 { animation-delay: 2s; }
.h26-art-line-4 { animation-delay: 3s; }
@keyframes h26lineFlow { 0%{stroke-dashoffset:0} 100%{stroke-dashoffset:56} }
.h26-art-floating {
    position: absolute; bottom: -16px; right: -16px;
    background: #ffffff; color: var(--h26-text);
    padding: 14px 18px; border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    z-index: 4;
    animation: h26badgeBob 3.6s ease-in-out infinite;
}
.h26-art-floating .num { font-size: 22px; color: var(--h26-accent-strong); font-weight: 800; }
@keyframes h26badgeBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ---------------------------------------------------------------
   5. PRODUCT CARDS (4-col under hero)
   --------------------------------------------------------------- */
.h26-products-wrap { background: #ffffff; padding: 64px 0 80px; }
.h26-products {
    max-width: var(--h26-container);
    margin: -80px auto 0;
    padding: 0 24px;
    position: relative; z-index: 5;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.h26-product-card {
    background: #ffffff;
    border: 1px solid var(--h26-line);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: var(--h26-shadow);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.h26-product-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--h26-green-500), var(--h26-green-600), var(--h26-green-300));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.h26-product-card:hover {
    transform: translateY(-6px);
    border-color: var(--h26-accent-ring);
    box-shadow: 0 24px 60px rgba(45,208,127,.18);
}
.h26-product-card:hover::before { transform: scaleX(1); }
.h26-product-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--h26-green-100), var(--h26-green-200));
    color: var(--h26-green-900);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(45,208,127,.22), inset 0 1px 0 rgba(255,255,255,.6);
    transition: all .3s ease;
}
.h26-product-card:hover .h26-product-icon {
    background: var(--h26-grad-accent);
    color: #ffffff;
    transform: scale(1.1) rotate(-6deg);
}
.h26-product-name { font-size: 19px; font-weight: 800; color: var(--h26-text); margin: 0 0 8px; letter-spacing: -.02em; }
.h26-product-desc { font-size: 13px; color: var(--h26-text-soft); line-height: 1.55; margin: 0 0 22px; min-height: 42px; }
.h26-product-price { margin-top: auto; display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.h26-product-price .from { font-size: 11px; color: var(--h26-text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.h26-product-price .num {
    font-size: 32px; font-weight: 900; line-height: 1; letter-spacing: -.03em;
    background: linear-gradient(135deg, var(--h26-green-600), var(--h26-green-500));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.h26-product-price .per { font-size: 12px; color: var(--h26-text-soft); }
.h26-product-link {
    align-self: flex-start;
    color: var(--h26-accent-strong);
    font-size: 13px; font-weight: 800;
    text-decoration: none;
    padding: 10px 18px;
    background: rgba(45,208,127,.1);
    border: 1px solid rgba(45,208,127,.28);
    border-radius: 999px;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    display: inline-flex; align-items: center; gap: 6px;
}
.h26-product-card:hover .h26-product-link {
    background: var(--h26-grad-accent);
    color: var(--h26-green-950);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(45,208,127,.4);
    gap: 10px;
}

/* ---------------------------------------------------------------
   6. TRUST BAR
   --------------------------------------------------------------- */
.h26-trust-bar {
    background: #ffffff;
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid var(--h26-line-soft);
    border-bottom: 1px solid var(--h26-line-soft);
}
.h26-trust-title {
    font-size: 12px; font-weight: 800;
    color: var(--h26-accent-strong);
    text-transform: uppercase; letter-spacing: .18em;
    margin: 0 0 32px;
    position: relative; display: inline-block;
}
.h26-trust-title::before, .h26-trust-title::after {
    content: ""; position: absolute; top: 50%; width: 28px; height: 1px;
    background: rgba(45,208,127,.4);
}
.h26-trust-title::before { right: calc(100% + 14px); }
.h26-trust-title::after  { left: calc(100% + 14px); }
.h26-trust-logos {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 28px 32px;
    align-items: center;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.h26-trust-bar { background: #ffffff; }
/* Logo cards: each logo sits in a soft gray card so any background renders
   uniformly. Works for white-bg, dark-bg, transparent and white-fill logos. */
.h26-trust-logo {
    display: flex; align-items: center; justify-content: center;
    height: 88px; width: 100%;
    padding: 14px 16px;
    background: #f4f7f5;
    border: 1px solid #e3ebe7;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-sizing: border-box;
    overflow: hidden;
}
.h26-trust-logo:hover {
    background: #ffffff;
    border-color: rgba(45,208,127,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(45,208,127,0.1);
}
.h26-trust-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    opacity: 0.78;
    transition: filter 0.25s ease, opacity 0.25s ease;
}
.h26-trust-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
/* SVG logos with white fills/strokes — invert so they show as dark on light bg */
.h26-trust-logo img[src*="azbrand"],
.h26-trust-logo img[src*="logoWhite"],
.h26-trust-logo img[src*="logo-white"],
.h26-trust-logo img[src*="azgranatawhite"],
.h26-trust-logo img[src*="rahat"],
.h26-trust-logo img[src*="logo%20%281%29.svg"],
.h26-trust-logo img[src*="92d2ec5c"] {
    filter: invert(0.85) grayscale(1);
    opacity: 0.85;
}
.h26-trust-logo:hover img[src*="azbrand"],
.h26-trust-logo:hover img[src*="logoWhite"],
.h26-trust-logo:hover img[src*="logo-white"],
.h26-trust-logo:hover img[src*="azgranatawhite"],
.h26-trust-logo:hover img[src*="rahat"],
.h26-trust-logo:hover img[src*="logo%20%281%29.svg"],
.h26-trust-logo:hover img[src*="92d2ec5c"] {
    filter: invert(0.85) grayscale(0);
    opacity: 1;
}
@media (max-width: 992px) {
    .h26-trust-logos { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
    .h26-trust-logos { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .h26-trust-logo { height: 44px; }
}

/* ---------------------------------------------------------------
   7. DOMAIN SEARCH SECTION
   --------------------------------------------------------------- */
.h26-domain-section { background: var(--h26-bg-soft); padding: 90px 0; }
.h26-domain-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; text-align: center; }
.h26-domain-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 32px 0 16px; }
.h26-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #ffffff; border: 1px solid var(--h26-line);
    border-radius: 999px;
    color: var(--h26-text);
    font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all .2s ease;
    font-family: inherit;
}
.h26-tab:hover { border-color: var(--h26-accent); color: var(--h26-accent-strong); }
.h26-tab.active {
    background: var(--h26-grad-accent);
    border-color: var(--h26-accent); color: var(--h26-green-950);
    box-shadow: 0 6px 16px rgba(45,208,127,.35);
}
.h26-tab small { font-size: 11px; font-weight: 600; opacity: .7; }
.h26-search-form {
    display: flex; align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px; gap: 4px;
    box-shadow: var(--h26-shadow), 0 0 0 1px var(--h26-line);
    transition: all .25s ease;
}
.h26-search-form:focus-within { box-shadow: 0 18px 50px rgba(45,208,127,.18), 0 0 0 2px var(--h26-accent); }
.h26-search-icon { width: 48px; height: 56px; display: flex; align-items: center; justify-content: center; color: var(--h26-text-muted); }
.h26-search-input {
    flex: 1; min-width: 0;
    height: 56px;
    border: none; outline: none; background: transparent;
    font-size: 17px; font-weight: 500;
    color: var(--h26-text);
    padding: 0 8px;
    font-family: inherit;
}
.h26-search-input::placeholder { color: #c2cdc7; }
.h26-tld-suffix {
    height: 44px;
    display: inline-flex; align-items: center;
    padding: 0 14px;
    background: var(--h26-accent-soft);
    border-radius: 10px;
    color: var(--h26-accent-strong);
    font-size: 15px; font-weight: 800;
    margin: 0 6px;
}
.h26-search-btn {
    height: 56px; padding: 0 26px;
    background: var(--h26-grad-accent);
    color: var(--h26-green-950);
    border: none; border-radius: 10px;
    font-size: 15px; font-weight: 800;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s ease;
    box-shadow: 0 6px 16px rgba(45,208,127,.35);
    font-family: inherit; white-space: nowrap;
}
.h26-search-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(45,208,127,.5); filter: brightness(1.05); }
.h26-domain-perks {
    display: flex; justify-content: center; gap: 24px; margin-top: 18px;
    flex-wrap: wrap;
    color: var(--h26-text-soft); font-size: 13px; font-weight: 500;
}
.h26-domain-perks span { display: inline-flex; align-items: center; gap: 6px; }
.h26-domain-perks svg { color: var(--h26-accent-strong); }

/* ---------------------------------------------------------------
   8. STATS BAR (deep green)
   --------------------------------------------------------------- */
.h26-stats-bar { background: var(--h26-grad-dark); color: #ffffff; padding: 70px 0; }
.h26-stats-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.h26-stats-title {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 800; color: #ffffff;
    text-align: center; margin: 0 0 36px;
    letter-spacing: -.02em;
}
.h26-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.h26-stat-card { text-align: center; padding: 24px; border-left: 1px solid rgba(255,255,255,.08); }
.h26-stat-card:first-child { border-left: 0; }
.h26-stat-num {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800; line-height: 1; letter-spacing: -.03em;
    background: linear-gradient(135deg, var(--h26-green-500), var(--h26-green-300));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.h26-stat-label { margin-top: 10px; font-size: 14px; color: var(--h26-text-on-dark-soft); font-weight: 500; }
.h26-container { max-width: var(--h26-container); margin: 0 auto; padding: 0 24px; }
.h26-section-eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--h26-accent-strong); margin-bottom: 12px; }
.h26-section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--h26-text); margin: 0 0 16px; }
.h26-section-sub { font-size: 17px; line-height: 1.6; color: var(--h26-text-soft); max-width: 640px; }

/* ---------------------------------------------------------------
   9. PRICING CARDS (homepage + category)
   --------------------------------------------------------------- */
.corecartpkts-wrapper { background: #ffffff !important; padding: 80px 16px !important; text-align: center !important; }
.corecartpkts-period-selector {
    background: var(--h26-bg-soft) !important;
    border: 1px solid var(--h26-line) !important;
    border-radius: 999px !important;
    padding: 5px !important;
    display: inline-flex !important; gap: 4px !important;
    margin: 0 auto 50px !important;
}
.coreservercart-button {
    background: transparent !important;
    border: none !important;
    color: var(--h26-text-soft) !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: all .2s ease !important;
}
.coreservercart-button.coreservercart-active {
    background: var(--h26-grad-accent) !important;
    color: var(--h26-green-950) !important;
    box-shadow: 0 6px 16px rgba(45,208,127,.35) !important;
}
.corecartpkts-container,
.corecartpkts-container.carousel {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: var(--h26-container) !important;
    margin: 0 auto !important;
    padding: 28px 12px !important;
    overflow: visible !important;
    background: transparent !important;
    text-align: left !important;
}
@media (max-width:992px) { .corecartpkts-container { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width:640px) { .corecartpkts-container { grid-template-columns: 1fr !important; } }

.h26-pkg-card {
    position: relative;
    display: flex; flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--h26-line);
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: var(--h26-shadow);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    color: var(--h26-text);
    overflow: visible;
    margin-top: 22px;
    text-decoration: none;
}
.h26-pkg-card:hover {
    transform: translateY(-6px);
    border-color: var(--h26-accent);
    box-shadow: 0 28px 60px rgba(45,208,127,.16);
}
.h26-pkg-card.is-popular {
    background: var(--h26-grad-dark);
    border-color: rgba(45,208,127,.4);
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(8,41,31,.4), 0 0 0 1px rgba(45,208,127,.25);
}
.h26-pkg-card.is-popular:hover { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(45,208,127,.25); }
.h26-pkg-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 16px;
    background: var(--h26-grad-accent);
    color: var(--h26-green-950);
    font-size: 11px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(45,208,127,.4);
    border: 2px solid #ffffff;
    white-space: nowrap; z-index: 5;
    line-height: 1;
}
.h26-pkg-card.is-popular .h26-pkg-badge { border-color: var(--h26-green-950); }
.h26-pkg-badge svg { width: 11px; height: 11px; fill: currentColor; }
.h26-pkg-badge-premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #422006;
    box-shadow: 0 8px 20px rgba(251,191,36,.4);
}
.h26-pkg-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.h26-pkg-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--h26-green-100), var(--h26-green-200));
    color: var(--h26-green-900);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(45,208,127,.2), inset 0 1px 0 rgba(255,255,255,.6);
    transition: all .3s ease;
}
.h26-pkg-card.is-popular .h26-pkg-icon {
    background: rgba(45,208,127,.2);
    color: var(--h26-green-300);
}
.h26-pkg-card:hover .h26-pkg-icon { transform: scale(1.08) rotate(-4deg); }
.h26-pkg-icon svg { width: 26px; height: 26px; color: currentColor; }
.h26-pkg-name { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: inherit; line-height: 1.2; }
.h26-pkg-desc {
    margin: 0 0 22px;
    font-size: 13.5px; line-height: 1.55;
    color: var(--h26-text-soft);
    font-weight: 500;
    min-height: 42px;
}
.h26-pkg-card.is-popular .h26-pkg-desc { color: rgba(255,255,255,.78); }
.h26-pkg-desc strong { color: var(--h26-accent-strong); font-weight: 700; }
.h26-pkg-card.is-popular .h26-pkg-desc strong { color: var(--h26-green-300); }
.h26-pkg-price { padding: 16px 0 18px; margin-bottom: 22px; display: flex; flex-direction: column; gap: 6px; }
.h26-pkg-price-old { text-decoration: line-through; color: var(--h26-text-muted); font-size: 13px; font-weight: 600; }
.h26-pkg-price-main { display: inline-flex; align-items: baseline; gap: 4px; line-height: 1; }
.h26-pkg-currency {
    font-size: 22px; font-weight: 900;
    background: linear-gradient(135deg, var(--h26-green-600), var(--h26-green-500));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.h26-pkg-amount {
    font-size: 44px; font-weight: 900; letter-spacing: -.03em;
    background: linear-gradient(135deg, var(--h26-green-600), var(--h26-green-500));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.h26-pkg-card.is-popular .h26-pkg-currency,
.h26-pkg-card.is-popular .h26-pkg-amount {
    background: linear-gradient(135deg, var(--h26-green-300), var(--h26-green-400));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.h26-pkg-price-meta { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; }
.h26-pkg-period { color: var(--h26-text-soft); font-weight: 700; }
.h26-pkg-card.is-popular .h26-pkg-period { color: rgba(255,255,255,.7); }
.h26-pkg-discount {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #422006;
    font-size: 11px; font-weight: 800;
    padding: 3px 8px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: .04em;
}
.h26-pkg-features { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.h26-pkg-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; line-height: 1.4;
    color: #1f2937; font-weight: 500;
}
.h26-pkg-card.is-popular .h26-pkg-feature { color: rgba(255,255,255,.92); }
.h26-pkg-feature svg {
    flex-shrink: 0;
    width: 14px; height: 14px;
    padding: 4px;
    background: var(--h26-accent-soft);
    color: var(--h26-accent-strong);
    border-radius: 50%;
    box-sizing: content-box;
}
.h26-pkg-card.is-popular .h26-pkg-feature svg { background: rgba(45,208,127,.22); color: var(--h26-green-300); }
.h26-pkg-location {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--h26-text-soft);
    font-size: 12px; font-weight: 600;
    margin: 0 0 18px; padding: 6px 12px;
    background: var(--h26-accent-soft);
    border: 1px solid rgba(45,208,127,.18);
    border-radius: 999px;
    align-self: flex-start;
}
.h26-pkg-location svg { color: var(--h26-accent-strong); }
.h26-pkg-card.is-popular .h26-pkg-location {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
}
.h26-pkg-card.is-popular .h26-pkg-location svg { color: var(--h26-green-300); }
.h26-pkg-cta {
    margin-top: auto;
    background: var(--h26-grad-accent);
    color: var(--h26-green-950);
    border: none; border-radius: 14px;
    padding: 14px 24px;
    font-weight: 800; font-size: 15px;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 8px 22px rgba(45,208,127,.35);
}
.h26-pkg-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(45,208,127,.5); filter: brightness(1.05); color: var(--h26-green-950); }
.h26-pkg-card.is-popular .h26-pkg-cta {
    background: #ffffff;
    color: var(--h26-green-900);
    box-shadow: 0 12px 30px rgba(255,255,255,.18);
}
.h26-pkg-card.is-popular .h26-pkg-cta:hover { background: #f0fdf4; }
.tableslogan {
    color: var(--h26-text-soft) !important;
    font-size: 14px !important;
    text-align: center !important;
    margin: 32px 0 0 !important;
}
.tableslogan a {
    color: var(--h26-accent-strong) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    border-bottom: 2px solid rgba(45,208,127,.25) !important;
}
.tableslogan a:hover { color: var(--h26-accent) !important; border-color: var(--h26-accent) !important; }

/* ---------------------------------------------------------------
   10. REVIEWS (testimonials)
   --------------------------------------------------------------- */
.h26-reviews {
    position: relative;
    padding: 100px 16px;
    background: var(--h26-grad-dark);
    color: #ffffff;
    overflow: hidden;
}
.h26-reviews-glow {
    position: absolute; top: -180px; right: -120px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(45,208,127,.18), rgba(45,208,127,0) 60%);
    pointer-events: none; z-index: 0;
}
.h26-reviews .h26-container { position: relative; z-index: 2; }
.h26-reviews-header { text-align: center; margin-bottom: 56px; }
.h26-reviews-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(45,208,127,.12);
    border: 1px solid rgba(45,208,127,.3);
    color: var(--h26-green-300);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 7px 14px; border-radius: 999px;
    margin-bottom: 18px;
}
.h26-reviews-eyebrow svg { color: var(--h26-accent); }
.h26-reviews-title {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; line-height: 1.15; letter-spacing: -.025em;
    margin: 0 0 14px;
}
.h26-reviews-title span {
    background: linear-gradient(135deg, var(--h26-green-500), var(--h26-green-300));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.h26-reviews-sub { color: rgba(209,250,229,.8); font-size: 16px; line-height: 1.6; margin: 0 auto 24px; max-width: 540px; }
.h26-reviews-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    background: var(--h26-grad-accent);
    color: var(--h26-green-950);
    font-weight: 800; font-size: 14px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(45,208,127,.4);
    transition: all .2s ease;
    cursor: pointer;
    border: none;
}
.h26-reviews-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(45,208,127,.55); filter: brightness(1.05); color: var(--h26-green-950); }
.h26-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width:768px) { .h26-reviews-grid { grid-template-columns: 1fr; } }
.h26-review-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(45,208,127,.18);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all .25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    color: #ffffff;
}
.h26-review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45,208,127,.5);
    background: rgba(255,255,255,.06);
}
.h26-review-stars { display: flex; gap: 4px; color: var(--h26-accent); margin-bottom: 16px; }
.h26-review-stars svg { color: var(--h26-accent); }
.h26-review-text { color: rgba(255,255,255,.92); font-size: 15px; line-height: 1.65; margin: 0 0 22px; }
.h26-review-footer { display: flex; align-items: center; gap: 12px; }
.h26-review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(45,208,127,.3); flex-shrink: 0; }
.h26-review-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.3; }
.h26-review-meta strong { color: #ffffff; font-size: 14px; font-weight: 800; }
.h26-review-meta span { color: var(--h26-green-300); font-size: 12px; font-weight: 600; }
.h26-review-date {
    background: rgba(45,208,127,.14);
    color: var(--h26-green-300);
    border: 1px solid rgba(45,208,127,.28);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px; font-weight: 700;
    flex-shrink: 0;
}

/* ---------------------------------------------------------------
   11. NEWS / ARTICLES (4-col grid)
   --------------------------------------------------------------- */
.h26-news { background: #ffffff; padding: 100px 16px; }
.h26-news-header { text-align: center; margin-bottom: 50px; }
.h26-news-eyebrow {
    display: inline-block;
    color: var(--h26-accent-strong);
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .12em;
    margin-bottom: 14px;
    background: var(--h26-accent-soft);
    border: 1px solid rgba(45,208,127,.25);
    padding: 6px 14px;
    border-radius: 999px;
}
.h26-news-title {
    color: var(--h26-text);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800; line-height: 1.15; letter-spacing: -.02em;
    margin: 0 0 12px;
}
.h26-news-title span {
    background: linear-gradient(135deg, var(--h26-green-600), var(--h26-green-500));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.h26-news-sub { color: var(--h26-text-soft); font-size: 16px; line-height: 1.6; margin: 0 auto; max-width: 580px; }
.h26-news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width:992px) { .h26-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:540px) { .h26-news-grid { grid-template-columns: 1fr; } }
.h26-news-card {
    display: flex; flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--h26-line);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    box-shadow: var(--h26-shadow-sm);
    transition: all .25s ease;
}
.h26-news-card:hover {
    transform: translateY(-4px);
    border-color: var(--h26-accent);
    box-shadow: 0 18px 36px rgba(45,208,127,.12);
    color: inherit;
}
.h26-news-card-image {
    position: relative; width: 100%; aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--h26-green-100), var(--h26-green-500));
    overflow: hidden;
}
.h26-news-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.h26-news-card:hover .h26-news-card-image img { transform: scale(1.06); }
.h26-news-card-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255,255,255,.96);
    color: var(--h26-accent-strong);
    font-size: 10px; font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase; letter-spacing: .08em;
    z-index: 2;
}
.h26-news-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.h26-news-card-meta {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    color: var(--h26-text-soft); font-size: 11px; font-weight: 600;
    margin-bottom: 4px;
}
.h26-news-card-date, .h26-news-card-readtime { display: inline-flex; align-items: center; gap: 4px; }
.h26-news-card-date svg, .h26-news-card-readtime svg { color: var(--h26-accent-strong); }
.h26-news-card-title {
    color: var(--h26-text);
    font-size: 16px; font-weight: 800; line-height: 1.35;
    margin: 0; letter-spacing: -.01em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.h26-news-card-excerpt {
    color: var(--h26-text-soft);
    font-size: 13px; line-height: 1.55;
    margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.h26-news-card-cta {
    margin-top: auto;
    color: var(--h26-accent-strong);
    font-size: 13px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 4px;
    transition: gap .2s ease;
}
.h26-news-card:hover .h26-news-card-cta { gap: 8px; }
.h26-news-footer { text-align: center; margin-top: 40px; }
.h26-news-all {
    display: inline-block;
    background: var(--h26-accent-soft);
    border: 1px solid rgba(45,208,127,.4);
    color: var(--h26-accent-strong);
    font-weight: 800; font-size: 14px;
    padding: 12px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: all .2s ease;
}
.h26-news-all:hover {
    background: var(--h26-grad-accent);
    color: var(--h26-green-950);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(45,208,127,.35);
}

/* ---------------------------------------------------------------
   12. SITE-WIDE CHROME (forms, buttons, tables, etc.)
   --------------------------------------------------------------- */

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus,
input[type="search"]:focus, input[type="tel"]:focus, input[type="url"]:focus,
input[type="number"]:focus, input[type="date"]:focus,
textarea:focus, select:focus {
    outline: none !important;
    border-color: var(--h26-accent) !important;
    box-shadow: 0 0 0 3px var(--h26-accent-ring) !important;
}
input[type="checkbox"], input[type="radio"] { accent-color: var(--h26-accent-strong); }

.btn-primary, .button-primary, .submit-btn, .btn-success {
    background: var(--h26-grad-accent) !important;
    color: var(--h26-green-950) !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(45,208,127,.32) !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    transition: all .2s ease !important;
}
.btn-primary:hover, .button-primary:hover, .submit-btn:hover, .btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(45,208,127,.45) !important;
    filter: brightness(1.05);
}
.btn-secondary, .btn-outline {
    background: transparent !important;
    color: var(--h26-accent-strong) !important;
    border: 2px solid rgba(45,208,127,.35) !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
}
.btn-secondary:hover { background: var(--h26-accent-soft) !important; border-color: var(--h26-accent) !important; }
.btn-danger { background: linear-gradient(135deg, #ef4444, #dc2626) !important; color: #fff !important; border: none !important; }

table.table, .container table, table[class*="table"] {
    background: #ffffff !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: var(--h26-shadow-sm) !important;
    border: 1px solid var(--h26-line) !important;
}
table.table thead th, .container table thead th {
    background: var(--h26-bg-soft) !important;
    color: var(--h26-text) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    font-size: 12px !important;
    padding: 14px !important;
}
table.table tbody td, .container table tbody td {
    background: #ffffff !important;
    color: var(--h26-text) !important;
    padding: 14px !important;
    border-bottom: 1px solid var(--h26-line-soft) !important;
}
table.table tbody tr:hover td { background: var(--h26-bg-soft) !important; }

.card, .panel, .info-box {
    background: #ffffff !important;
    border: 1px solid var(--h26-line) !important;
    border-radius: 14px !important;
    box-shadow: var(--h26-shadow-sm) !important;
}

.breadcrumb {
    background: var(--h26-accent-soft) !important;
    border: 1px solid rgba(45,208,127,.18) !important;
    border-radius: 999px !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}
.breadcrumb a, .breadcrumb li { color: var(--h26-accent-strong) !important; }
.breadcrumb .active { color: var(--h26-text) !important; }

.alert, .message {
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-weight: 600 !important;
    border: 1px solid transparent !important;
}
.alert-success { background: var(--h26-accent-soft) !important; color: var(--h26-accent-strong) !important; border-color: rgba(45,208,127,.3) !important; }
.alert-danger, .alert-error { background: rgba(239,68,68,.08) !important; color: #b91c1c !important; border-color: rgba(239,68,68,.25) !important; }
.alert-warning { background: rgba(251,191,36,.1) !important; color: #92400e !important; border-color: rgba(251,191,36,.3) !important; }
.alert-info { background: rgba(59,130,246,.08) !important; color: #1e40af !important; border-color: rgba(59,130,246,.25) !important; }

.pagination { display: flex !important; gap: 6px !important; justify-content: center !important; list-style: none !important; padding: 0 !important; }
.pagination a, .pagination li {
    background: #ffffff !important;
    border: 1px solid var(--h26-line) !important;
    color: var(--h26-text) !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    font-weight: 700 !important;
    transition: all .2s ease !important;
    text-decoration: none !important;
}
.pagination a:hover { background: var(--h26-bg-soft) !important; border-color: var(--h26-accent) !important; color: var(--h26-accent-strong) !important; }
.pagination .active, .pagination li.active {
    background: var(--h26-grad-accent) !important;
    color: var(--h26-green-950) !important;
    border-color: transparent !important;
}

/* Inner-page hero (introslider) */
.introslider-container { padding: 30px 16px !important; }
.introslider-single-card {
    background: var(--h26-grad-dark) !important;
    border: 1px solid rgba(45,208,127,.18) !important;
    border-radius: 20px !important;
    box-shadow: 0 18px 50px rgba(8,41,31,.25) !important;
    overflow: hidden !important;
    position: relative !important;
    padding-right: 40% !important;
    min-height: 280px !important;
}
.introslider-single-card::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45,208,127,.18), rgba(45,208,127,0) 65%);
    pointer-events: none; z-index: 0;
}
.introslider-badge {
    background: rgba(45,208,127,.1) !important;
    border: 1px solid rgba(45,208,127,.35) !important;
    color: var(--h26-green-300) !important;
    border-radius: 999px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
}
.introslider-badge a, .introslider-badge { color: var(--h26-green-300) !important; }
.introslider-icon { color: var(--h26-accent) !important; fill: var(--h26-accent) !important; }
.introslider-title {
    color: #ffffff !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 800 !important;
    letter-spacing: -.02em !important;
    line-height: 1.1 !important;
}
.introslider-title-highlight {
    background: linear-gradient(135deg, var(--h26-green-500), var(--h26-green-300)) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.introslider-description { color: var(--h26-text-on-dark-soft) !important; font-size: 15px !important; line-height: 1.6 !important; }
.introslider-image-section { position: absolute !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 45% !important; pointer-events: none !important; overflow: hidden !important; z-index: 0 !important; }
.introslider-image-section img, .dynamic-color-image {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important;
    opacity: .18 !important;
    filter: hue-rotate(110deg) saturate(.6) brightness(1.1) !important;
    mix-blend-mode: screen !important;
}
.introslider-content, .introslider-header-section { position: relative !important; z-index: 2 !important; }
@media (max-width:768px) {
    .introslider-image-section { display: none !important; }
    .introslider-single-card { padding-right: 24px !important; }
}
.introslider-social-area a {
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    color: var(--h26-text-on-dark-soft) !important;
    border-radius: 10px !important;
    width: 36px !important; height: 36px !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
}
.introslider-social-area a:hover { background: rgba(45,208,127,.18) !important; border-color: rgba(45,208,127,.45) !important; color: var(--h26-accent) !important; }

/* genelbaslik (section header) */
.genelbaslik-rozet {
    background: var(--h26-accent-soft) !important;
    border: 1px solid rgba(45,208,127,.3) !important;
    color: var(--h26-accent-strong) !important;
    border-radius: 999px !important;
    padding: 8px 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.genelbaslik-rozet *,
.genelbaslik-rozet-ikon,
.genelbaslik-rozet-metin {
    background: transparent !important;
    color: var(--h26-accent-strong) !important;
    font-weight: 700 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}
.genelbaslik-ana-baslik { color: var(--h26-text) !important; font-weight: 800 !important; }
.genelbaslik-vurgu {
    background: linear-gradient(135deg, var(--h26-green-600), var(--h26-green-500)) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.genelbaslik-aciklama { color: var(--h26-text-soft) !important; }

/* Pro-slider feature carousel */
.pro-slider-section { background: #ffffff !important; padding: 70px 16px !important; }
.pro-slider-section .sec-header__title { color: var(--h26-text) !important; font-weight: 800 !important; }
.pro-slider__card {
    background: #ffffff !important;
    border: 1px solid var(--h26-line) !important;
    border-radius: 18px !important;
    box-shadow: var(--h26-shadow) !important;
    transition: all .3s cubic-bezier(.4,0,.2,1) !important;
    overflow: hidden !important;
}
.pro-slider__card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--h26-accent) !important;
    box-shadow: 0 22px 50px rgba(45,208,127,.16) !important;
}
.pro-slider__card-inner { padding: 28px 24px !important; display: flex !important; flex-direction: column !important; gap: 14px !important; }
.pro-slider__icon-wrapper {
    width: 56px !important; height: 56px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, var(--h26-green-100), var(--h26-green-200)) !important;
    color: var(--h26-green-900) !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    box-shadow: 0 8px 18px rgba(45,208,127,.22) !important;
    transition: all .3s ease !important;
}
.pro-slider__icon-wrapper svg { color: var(--h26-green-900) !important; fill: var(--h26-green-900) !important; }
.pro-slider__card:hover .pro-slider__icon-wrapper { background: var(--h26-grad-accent) !important; color: #ffffff !important; transform: scale(1.08) rotate(-4deg) !important; }
.pro-slider__card:hover .pro-slider__icon-wrapper svg { color: #ffffff !important; fill: #ffffff !important; }
.pro-slider__card-title { color: var(--h26-text) !important; font-weight: 800 !important; font-size: 18px !important; line-height: 1.25 !important; margin: 0 !important; }
.pro-slider__card-description { color: var(--h26-text-soft) !important; font-size: 14px !important; line-height: 1.6 !important; }
.pro-slider__card-description strong { color: var(--h26-accent-strong) !important; font-weight: 800 !important; }
.pro-slider__nav {
    background: #ffffff !important;
    border: 1px solid var(--h26-line) !important;
    color: var(--h26-accent-strong) !important;
    border-radius: 50% !important;
    box-shadow: var(--h26-shadow-sm) !important;
    transition: all .2s ease !important;
}
.pro-slider__nav:hover { background: var(--h26-grad-accent) !important; color: var(--h26-green-950) !important; border-color: transparent !important; }
.pro-slider__dots > * {
    width: 10px !important; height: 10px !important;
    border-radius: 50% !important;
    background: var(--h26-line) !important;
    transition: all .2s ease !important;
}
.pro-slider__dots > *.active,
.pro-slider__dots [class*="active"] {
    background: var(--h26-grad-accent) !important;
    width: 24px !important;
    border-radius: 999px !important;
}

/* Footer */
.cartsfooter-footer {
    background: var(--h26-grad-dark) !important;
    color: var(--h26-text-on-dark-soft) !important;
}
.cartsfooter-footer a, .cartsfooter-category-toggle, .cartsfooter-copyright-text { color: var(--h26-text-on-dark-soft) !important; }
.cartsfooter-footer a:hover { color: var(--h26-accent) !important; }
.cartsfooter-category-title { color: #ffffff !important; }
.cartsfooter-badge-icon { color: var(--h26-accent) !important; }
.cartsfooter-contact-button {
    background: var(--h26-grad-accent) !important;
    color: var(--h26-green-950) !important;
}

/* ---------------------------------------------------------------
   13. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 992px) {
    .h26-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .h26-hero-art { max-width: 500px; width: 100%; }
    .h26-products { grid-template-columns: repeat(2, 1fr); margin-top: -50px; }
    .h26-stats-grid { grid-template-columns: 1fr; gap: 8px; }
    .h26-stat-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
    .h26-stat-card:first-child { border-top: 0; }
}
@media (max-width: 640px) {
    .h26-hero { padding: 60px 0 80px; }
    .h26-hero-title { font-size: clamp(32px, 8vw, 48px); }
    .h26-products { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGACY SECTION HIDING — kill all old designer's chunks
   ============================================================ */
.hakimizdaalani-section,
.coreservercart-home-servers,
.corecartpkts-wrapper,
.hz-paket,
.pulsuz-section,
.veb-sayt-section,
.musteriyorumlari-section,
.bloghaber-wrapper,
section.genelbaslik:not(.h26-section .genelbaslik),
.miotab-contents,
.dvm-section,
.statss-section { display: none !important; }

/* Section headings that aren't inside an h26 wrapper */
body > section.genelbaslik,
.content-wrapper > section.genelbaslik { display: none !important; }

/* ============================================================
   SHARED SECTION SCAFFOLDING
   ============================================================ */
.h26-section { padding: 90px 0; position: relative; background: #ffffff; }
.h26-section.h26-on-dark {
    background: linear-gradient(135deg, #082b22 0%, #0d3a2c 50%, #082b22 100%);
    color: #d1fae5;
}
.h26-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.h26-section-head .h26-section-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #16a45f;
    margin-bottom: 14px;
}
.h26-section-head .h26-section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0b1f17;
    margin: 0 0 14px;
}
.h26-on-dark .h26-section-head .h26-section-title { color: #ffffff; }
.h26-section-head .h26-section-sub {
    font-size: 17px; line-height: 1.6;
    color: #5a6d65;
    margin: 0 auto;
}
.h26-on-dark .h26-section-head .h26-section-sub { color: #a7d9c4; }

.h26-accent-text {
    background: linear-gradient(135deg, #2dd07f 0%, #16a45f 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}

/* ============================================================
   6. FEATURES GRID
   ============================================================ */
.h26-features { background: #f4f7f5; }
.h26-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.h26-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid #e3ebe7;
    box-shadow: 0 6px 22px rgba(8,41,31,.05);
    transition: all 0.25s ease;
}
.h26-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45,208,127,0.4);
    box-shadow: 0 14px 32px rgba(45,208,127,0.08);
}
.h26-feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #d6f9e6;
    color: #16a45f;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.h26-feature-title {
    font-size: 17px; font-weight: 700;
    color: #0b1f17;
    margin: 0 0 8px;
    letter-spacing: -0.015em;
}
.h26-feature-desc {
    font-size: 14px; line-height: 1.6;
    color: #5a6d65;
    margin: 0;
}

/* ============================================================
   7. EXPERTS GRID
   ============================================================ */
.h26-experts { background: #ffffff; }
.h26-experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.h26-expert-card {
    background: linear-gradient(160deg, #ffffff 0%, #f4f7f5 100%);
    border: 1px solid #e3ebe7;
    border-radius: 16px;
    padding: 26px 22px;
    transition: all 0.25s ease;
}
.h26-expert-card:hover {
    border-color: #2dd07f;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(45,208,127,0.1);
}
.h26-expert-num {
    font-size: 38px; font-weight: 800;
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}
.h26-expert-title {
    font-size: 16px; font-weight: 700;
    color: #0b1f17;
    margin: 0 0 6px;
}
.h26-expert-desc {
    font-size: 13px; line-height: 1.55;
    color: #5a6d65;
    margin: 0;
}

/* ============================================================
   8. HOSTING PACKAGES — full detailed cards
   ============================================================ */
.h26-packages { background: #f4f7f5; }
.h26-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: stretch;
}
.h26-pkg-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 26px;
    border: 1px solid #e3ebe7;
    box-shadow: 0 6px 22px rgba(8,41,31,.05);
    display: flex; flex-direction: column;
    transition: all 0.25s ease;
    position: relative;
}
.h26-pkg-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45,208,127,0.4);
    box-shadow: 0 16px 36px rgba(45,208,127,0.1);
}
.h26-pkg-popular {
    border-color: #2dd07f;
    box-shadow: 0 14px 36px rgba(45,208,127,0.18);
    background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
}
.h26-pkg-flag {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(45,208,127,0.3);
}
.h26-pkg-name {
    font-size: 18px; font-weight: 800;
    color: #0b1f17;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
}
.h26-pkg-price {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed #d4ddd8;
}
.h26-pkg-amount {
    font-size: 36px; font-weight: 800;
    color: #0b1f17;
    line-height: 1;
    letter-spacing: -0.03em;
}
.h26-pkg-per {
    font-size: 14px; color: #5a6d65;
    font-weight: 500;
}
.h26-pkg-features {
    list-style: none;
    padding: 0; margin: 0 0 22px;
    display: flex; flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.h26-pkg-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px; line-height: 1.5;
    color: #364a40;
}
.h26-pkg-features svg {
    color: #16a45f;
    flex-shrink: 0;
    margin-top: 4px;
}
.h26-pkg-cta {
    display: block; text-align: center;
    padding: 13px 18px;
    background: #ffffff;
    border: 1.5px solid #d4ddd8;
    border-radius: 11px;
    color: #0b1f17 !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.h26-pkg-cta:hover {
    background: #16a45f;
    border-color: #16a45f;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.h26-pkg-popular .h26-pkg-cta {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    border-color: transparent;
    color: #08291f !important;
    box-shadow: 0 4px 14px rgba(45,208,127,0.3);
}
.h26-pkg-popular .h26-pkg-cta:hover {
    color: #08291f !important;
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,208,127,0.4);
}

/* ============================================================
   9. REVIEWS
   ============================================================ */
.h26-reviews { padding: 100px 0; position: relative; overflow: hidden; }
.h26-reviews-glow {
    position: absolute;
    top: -300px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(45,208,127,0.18) 0%, rgba(45,208,127,0) 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
.h26-reviews .h26-container { position: relative; z-index: 2; }
.h26-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.h26-review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}
.h26-review-card:hover {
    background: rgba(45,208,127,0.06);
    border-color: rgba(45,208,127,0.3);
    transform: translateY(-2px);
}
.h26-review-stars {
    display: flex; gap: 2px;
    color: #fbbf24;
    margin-bottom: 16px;
}
.h26-review-msg {
    color: #d1fae5;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 22px;
}
.h26-review-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.h26-review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.h26-review-name {
    color: #ffffff; font-weight: 700;
    font-size: 14px;
}
.h26-review-company {
    color: #6ee7a7; font-size: 12px;
    margin-top: 2px;
}
.h26-reviews-empty {
    text-align: center;
    color: #a7d9c4;
    font-size: 16px;
    padding: 40px 0;
}

/* ============================================================
   10. NEWS / BLOG
   ============================================================ */
.h26-news { background: #ffffff; }
.h26-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.h26-news-card {
    display: flex; flex-direction: column;
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.h26-news-card:hover {
    transform: translateY(-3px);
    border-color: #2dd07f;
    box-shadow: 0 14px 36px rgba(45,208,127,0.1);
}
.h26-news-thumb {
    height: 180px;
    background: linear-gradient(135deg, #082b22 0%, #0d3a2c 50%, #145740 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(45,208,127,0.6);
}
.h26-news-body {
    padding: 24px 22px;
    flex: 1;
    display: flex; flex-direction: column;
}
.h26-news-date {
    font-size: 12px;
    color: #5a6d65;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.h26-news-title {
    font-size: 17px;
    font-weight: 800;
    color: #0b1f17;
    line-height: 1.3;
    margin: 0 0 10px;
    letter-spacing: -0.015em;
}
.h26-news-excerpt {
    font-size: 13.5px;
    color: #5a6d65;
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}
.h26-news-link {
    color: #16a45f;
    font-weight: 700;
    font-size: 13px;
}

/* ============================================================
   11. AWARDS
   ============================================================ */
.h26-awards { background: #f4f7f5; }
.h26-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.h26-award-card {
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s ease;
}
.h26-award-card:hover {
    transform: translateY(-3px);
    border-color: #2dd07f;
    box-shadow: 0 14px 32px rgba(45,208,127,0.1);
}
.h26-award-badge {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d6f9e6, #ecfdf5);
    color: #16a45f;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.h26-award-name {
    font-size: 16px; font-weight: 800;
    color: #0b1f17;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.h26-award-year {
    font-size: 12px;
    color: #5a6d65;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ============================================================
   12. SUPPORT CTA
   ============================================================ */
.h26-support { padding: 100px 0; }
.h26-support-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}
.h26-support-cta-row {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-top: 28px;
}
.h26-support-art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin-left: auto;
}
.h26-support-art-circle {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(45,208,127,0.25), rgba(45,208,127,0.04) 65%);
    border: 1px solid rgba(45,208,127,0.15);
}
.h26-support-art-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #2dd07f;
}

/* ============================================================
   RESPONSIVE — sub-hero sections
   ============================================================ */
@media (max-width: 992px) {
    .h26-features-grid,
    .h26-experts-grid,
    .h26-packages-grid,
    .h26-reviews-grid,
    .h26-news-grid { grid-template-columns: repeat(2, 1fr); }
    .h26-awards-grid { grid-template-columns: 1fr; max-width: 480px; }
    .h26-support-inner { grid-template-columns: 1fr; }
    .h26-support-art { display: none; }
}
@media (max-width: 640px) {
    .h26-section { padding: 60px 0; }
    .h26-features-grid,
    .h26-experts-grid,
    .h26-packages-grid,
    .h26-reviews-grid,
    .h26-news-grid { grid-template-columns: 1fr; }
    .h26-section-head { margin-bottom: 36px; padding: 0 24px; }
}

/* ============================================================
   H26 FOOTER — hosting.com 6-column layout
   ============================================================ */

/* Hide entire legacy footer once new is in place */
.cartsfooter-footer { display: none !important; }

.h26-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #061d17 0%, #030f0c 100%);
    color: #d1fae5;
    padding: 0;
}
.h26-footer-glow {
    position: absolute;
    top: -300px; left: 50%;
    transform: translateX(-50%);
    width: 1200px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(45,208,127,0.12) 0%, rgba(45,208,127,0) 60%);
    pointer-events: none;
    filter: blur(40px);
}
.h26-footer-inner {
    position: relative; z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top CTA strip */
.h26-footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 56px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.h26-footer-cta-title {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}
.h26-footer-cta-sub {
    font-size: 15px;
    color: #a7d9c4;
    margin: 0;
}
.h26-footer-cta-row {
    display: flex; gap: 12px; flex-wrap: wrap;
}

/* 6-column grid */
.h26-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(5, 1fr);
    gap: 40px 32px;
    padding: 64px 0;
}

.h26-footer-brand { padding-right: 12px; }
.h26-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.h26-footer-logo img {
    max-height: 44px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.15) saturate(0.95);
}
.h26-footer-logo-mark {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}
.h26-footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.h26-footer-logo-text span {
    color: #2dd07f;
}
.h26-footer-tag {
    font-size: 14px;
    line-height: 1.6;
    color: #86b9a3;
    margin: 0 0 20px;
}
.h26-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.h26-footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.2s ease;
}
.h26-footer-contact-item:hover { color: #2dd07f; }
.h26-footer-contact-item svg { color: #2dd07f; flex-shrink: 0; }

.h26-footer-social {
    display: flex; gap: 8px;
}
.h26-footer-social a {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #a7d9c4;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: all 0.2s ease;
}
.h26-footer-social a:hover {
    background: rgba(45,208,127,0.15);
    border-color: rgba(45,208,127,0.4);
    color: #2dd07f;
    transform: translateY(-2px);
}

.h26-footer-col-title {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 18px;
}
.h26-footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 10px;
}
.h26-footer-links a {
    color: #a7d9c4;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    transition: color 0.18s ease, padding 0.18s ease;
}
.h26-footer-links a:hover {
    color: #2dd07f;
    padding-left: 4px;
}

/* Bottom row */
.h26-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0 36px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 13px;
    color: #86b9a3;
}
.h26-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.h26-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(45,208,127,0.08);
    border: 1px solid rgba(45,208,127,0.18);
    border-radius: 999px;
    color: #6ee7a7;
    font-size: 12px;
    font-weight: 600;
}
.h26-footer-badge svg { color: #2dd07f; }
.h26-footer-bottom-right {
    display: flex; gap: 8px;
}
.h26-footer-pay {
    padding: 5px 11px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #d1fae5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .h26-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px 24px; }
    .h26-footer-brand { grid-column: span 3; padding-right: 0; }
}
@media (max-width: 640px) {
    .h26-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
    .h26-footer-brand { grid-column: span 2; }
    .h26-footer-cta { padding: 36px 0; }
    .h26-footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   REVIEWS — toggle button + form modal-like card
   ============================================================ */
.h26-reviews-cta-row {
    display: flex; justify-content: center; margin-bottom: 36px;
}
.h26-review-form-wrap {
    margin-top: 36px;
    display: flex; justify-content: center;
}
.h26-review-form-wrap[hidden] { display: none !important; }
.h26-review-form-card {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 36px 32px 32px;
    backdrop-filter: blur(8px);
}
.h26-review-form-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #d1fae5;
    font-size: 20px; line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}
.h26-review-form-close:hover {
    background: rgba(45,208,127,0.15);
    color: #2dd07f;
    border-color: rgba(45,208,127,0.4);
}
.h26-review-form-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.015em;
}
.h26-review-form-sub {
    color: #a7d9c4;
    font-size: 14px;
    margin: 0 0 24px;
}
.h26-review-form {
    display: flex; flex-direction: column;
    gap: 12px;
}
.h26-review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.h26-review-input,
.h26-review-textarea {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.h26-review-input::placeholder,
.h26-review-textarea::placeholder { color: rgba(209,250,229,0.45); }
.h26-review-input:focus,
.h26-review-textarea:focus {
    outline: none;
    border-color: #2dd07f;
    box-shadow: 0 0 0 3px rgba(45,208,127,0.15);
}
.h26-review-textarea {
    min-height: 110px;
    resize: vertical;
}
.h26-review-captcha {
    display: flex; gap: 10px; align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}
.h26-review-output {
    padding: 10px 14px;
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 10px;
    color: #fca5a5;
    font-size: 13px;
}
.h26-review-submit {
    align-self: flex-start;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .h26-review-form-row { grid-template-columns: 1fr; }
    .h26-review-form-card { padding: 30px 22px 24px; }
}

/* Review avatar with image */
.h26-review-avatar-img {
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(45,208,127,0.3);
}
.h26-review-avatar-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* News meta row (tag + date) */
.h26-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.h26-news-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.h26-news-tag-news {
    background: rgba(45,208,127,0.12);
    color: #16a45f;
}
.h26-news-tag-articles {
    background: rgba(59,130,246,0.1);
    color: #2563eb;
}
.h26-news-meta .h26-news-date {
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    color: #5a6d65;
    font-weight: 500;
}

/* ============================================================
   ARTICLE / NEWS DETAIL PAGE
   ============================================================ */
.h26-article {
    background: #ffffff;
    color: #0b1f17;
}

/* Hero */
.h26-article-hero {
    position: relative;
    padding: 80px 0 56px;
    background: linear-gradient(135deg, #082b22 0%, #0d3a2c 50%, #145740 100%);
    color: #ffffff;
}
.h26-article-hero.has-cover {
    background-size: cover !important;
    background-position: center !important;
    padding: 120px 0 64px;
}

.h26-article-crumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    color: #a7d9c4;
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 500;
}
.h26-article-crumbs a {
    color: #a7d9c4;
    text-decoration: none;
    transition: color 0.2s ease;
}
.h26-article-crumbs a:hover { color: #2dd07f; }
.h26-article-crumbs .is-current { color: #ffffff; }

.h26-article-meta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
}
.h26-article-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(45,208,127,0.18);
    border: 1px solid rgba(45,208,127,0.35);
    color: #6ee7a7;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.h26-article-date {
    color: #a7d9c4;
    font-size: 13px;
    font-weight: 500;
}

.h26-article-title {
    font-size: clamp(28px, 4.4vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0;
    max-width: 820px;
}

/* Body */
.h26-article-body {
    background: #f4f7f5;
    padding: 64px 0 96px;
}
.h26-article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}
.h26-article-content {
    background: #ffffff;
    border-radius: 18px;
    padding: 48px 48px 36px;
    border: 1px solid #e3ebe7;
    box-shadow: 0 6px 22px rgba(8,41,31,0.05);
    color: #1a2b22;
    font-size: 16.5px;
    line-height: 1.75;
    overflow-wrap: break-word;
}
.h26-article-content > h1,
.h26-article-content > h2,
.h26-article-content > h3,
.h26-article-content h2,
.h26-article-content h3,
.h26-article-content h4 {
    color: #0b1f17;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 36px 0 14px;
}
.h26-article-content h2 { font-size: 26px; }
.h26-article-content h3 { font-size: 21px; }
.h26-article-content h4 { font-size: 18px; }
.h26-article-content p { margin: 0 0 18px; }
.h26-article-content a {
    color: #16a45f;
    text-decoration: underline;
    text-decoration-color: rgba(22,164,95,0.4);
    text-underline-offset: 3px;
}
.h26-article-content a:hover { text-decoration-color: #16a45f; }
.h26-article-content ul,
.h26-article-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}
.h26-article-content li { margin-bottom: 8px; }
.h26-article-content blockquote {
    border-left: 3px solid #2dd07f;
    background: #f4f7f5;
    margin: 22px 0;
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    color: #2c3e35;
}
.h26-article-content code {
    background: #f4f7f5;
    border: 1px solid #e3ebe7;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    color: #16a45f;
}
.h26-article-content pre {
    background: #082b22;
    color: #d1fae5;
    border-radius: 12px;
    padding: 18px 22px;
    overflow-x: auto;
    font-size: 14px;
    margin: 22px 0;
}
.h26-article-content pre code {
    background: transparent;
    border: 0;
    color: inherit;
    padding: 0;
}
.h26-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 22px 0;
    display: block;
}
.h26-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
}
.h26-article-content th,
.h26-article-content td {
    padding: 12px 14px;
    border: 1px solid #e3ebe7;
    text-align: left;
}
.h26-article-content th {
    background: #f4f7f5;
    font-weight: 700;
}

/* Share */
.h26-article-share {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e3ebe7;
    display: flex;
    align-items: center;
    gap: 12px;
}
.h26-article-share-label {
    font-size: 13px;
    font-weight: 700;
    color: #5a6d65;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
}
.h26-article-share a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #f4f7f5;
    border: 1px solid #e3ebe7;
    color: #5a6d65;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: all 0.2s ease;
}
.h26-article-share a:hover {
    background: #16a45f;
    border-color: #16a45f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Sidebar */
.h26-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 24px;
}
.h26-sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e3ebe7;
    padding: 24px 22px;
    box-shadow: 0 4px 14px rgba(8,41,31,0.04);
}
.h26-sidebar-title {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 800;
    color: #0b1f17;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.h26-sidebar-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 14px;
}
.h26-sidebar-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px;
    line-height: 1.45;
}
.h26-sidebar-num {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 6px;
    background: #d6f9e6;
    color: #16a45f;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.h26-sidebar-list a {
    color: #1a2b22;
    text-decoration: none;
    transition: color 0.2s ease;
    flex: 1;
}
.h26-sidebar-list a:hover { color: #16a45f; }

.h26-sidebar-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.h26-sidebar-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f4f7f5;
    border: 1px solid #e3ebe7;
    border-radius: 999px;
    color: #1a2b22;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.h26-sidebar-tag:hover {
    background: #16a45f;
    border-color: #16a45f;
    color: #ffffff;
}

.h26-sidebar-cta {
    background: linear-gradient(135deg, #082b22 0%, #0d3a2c 100%);
    color: #d1fae5;
    border-color: rgba(45,208,127,0.2);
}
.h26-sidebar-cta .h26-sidebar-title {
    color: #ffffff;
    margin-bottom: 6px;
}
.h26-sidebar-cta p {
    color: #a7d9c4;
    font-size: 13.5px;
    margin: 0 0 14px;
    line-height: 1.55;
}
.h26-sidebar-btn {
    width: 100%;
    justify-content: center;
}

/* Comments */
.h26-article-comments {
    margin-top: 56px;
    padding: 32px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e3ebe7;
}
.h26-comments-title {
    font-size: 22px;
    font-weight: 800;
    color: #0b1f17;
    margin: 0 0 18px;
}

@media (max-width: 992px) {
    .h26-article-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .h26-article-sidebar { position: static; }
    .h26-article-content { padding: 36px 28px 28px; }
}
@media (max-width: 640px) {
    .h26-article-hero { padding: 56px 0 36px; }
    .h26-article-hero.has-cover { padding: 80px 0 40px; }
    .h26-article-content {
        padding: 28px 22px 22px;
        font-size: 15.5px;
    }
}

/* News card thumb with cover image */
.h26-news-thumb.has-img {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.h26-trust-sub {
    text-align: center;
    color: #5a6d65;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 auto 28px;
    max-width: 520px;
    font-weight: 500;
}

.h26-trust-more {
    margin-top: 32px;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.h26-trust-more-num {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
    line-height: 1;
}
.h26-trust-more-label {
    font-size: 15px;
    color: #5a6d65;
    font-weight: 600;
}

/* Centered CTA below product cards */
.h26-products-cta {
    max-width: 1200px;
    margin: 36px auto 0;
    padding: 0 24px;
    text-align: center;
}
.h26-products-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    color: #16a45f;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid rgba(45,208,127,0.4);
    border-radius: 999px;
    background: rgba(45,208,127,0.06);
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}
.h26-products-cta-link:hover {
    background: linear-gradient(135deg, #2dd07f 0%, #16a45f 100%);
    color: #08291f;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(45,208,127,0.3);
}
.h26-products-cta-link svg {
    transition: transform 0.2s ease;
}
.h26-products-cta-link:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   EXPERIENCE NOTE (replaces awards) — director's signature
   ============================================================ */
.h26-experience { background: #f4f7f5; }
.h26-experience-card {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 24px;
    padding: 48px 48px 40px;
    box-shadow: 0 14px 40px rgba(8,41,31,0.06);
    text-align: center;
}
.h26-experience-mark {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d6f9e6, #ecfdf5);
    color: #16a45f;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.h26-experience-eyebrow {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #16a45f;
    margin-bottom: 12px;
}
.h26-experience-title {
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: #0b1f17;
    margin: 0 0 18px;
}
.h26-experience-body {
    font-size: 16.5px;
    line-height: 1.7;
    color: #364a40;
    max-width: 640px;
    margin: 0 auto 36px;
}
.h26-experience-body strong {
    color: #0b1f17;
    font-weight: 700;
}
.h26-experience-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0 36px;
    padding: 28px 0;
    border-top: 1px solid #e3ebe7;
    border-bottom: 1px solid #e3ebe7;
}
.h26-experience-pillar-num {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
}
.h26-experience-pillar-label {
    margin-top: 8px;
    font-size: 13px;
    color: #5a6d65;
    font-weight: 600;
}
.h26-experience-signature {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    margin-top: 8px;
}
.h26-signature-mark {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #082b22, #0d3a2c);
    color: #2dd07f;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.02em;
    border: 2px solid #2dd07f;
}
.h26-signature-name {
    font-size: 16px; font-weight: 800;
    color: #0b1f17;
    letter-spacing: -0.01em;
}
.h26-signature-role {
    font-size: 13px;
    color: #5a6d65;
    margin-top: 2px;
}

@media (max-width: 640px) {
    .h26-experience-card { padding: 36px 24px 32px; }
    .h26-experience-pillars { grid-template-columns: 1fr; gap: 18px; padding: 22px 0; }
}
