/* ============================================================
   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; }
}

/* ============================================================
   MOBILE APP SECTION — iOS + Android (3-phone fan layout)
   ============================================================ */
.h26-app {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(45,208,127,0.16) 0%, rgba(45,208,127,0) 55%),
        linear-gradient(135deg, #082b22 0%, #0d3a2c 50%, #082b22 100%);
    color: #d1fae5;
}
.h26-app-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(45,208,127,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,208,127,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, rgba(0,0,0,0.5), transparent 70%);
    mask-image: radial-gradient(ellipse at 70% 50%, rgba(0,0,0,0.5), transparent 70%);
}
.h26-app .h26-container { position: relative; z-index: 2; }
.h26-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left text column */
.h26-app-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    margin-bottom: 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.4),
                0 0 0 1px rgba(255,255,255,0.06);
    display: block;
}
.h26-app .h26-section-title { color: #ffffff; }
.h26-app .h26-section-sub { color: #a7d9c4; max-width: 540px; margin-bottom: 28px; }

.h26-app-features {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.h26-app-features li {
    display: flex; align-items: center; gap: 10px;
    color: #d1fae5;
    font-size: 14.5px;
    font-weight: 500;
}
.h26-app-features svg { color: #2dd07f; flex-shrink: 0; }

.h26-app-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.h26-app-btn {
    display: inline-flex; align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: #ffffff;
    color: #08291f !important;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    min-width: 200px;
}
.h26-app-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ffffff, #d6f9e6);
    box-shadow: 0 14px 34px rgba(45,208,127,0.35);
}
.h26-app-btn svg { color: #08291f; flex-shrink: 0; }
.h26-app-btn span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.h26-app-btn small {
    font-size: 11px; opacity: 0.65;
    margin-bottom: 3px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.h26-app-btn strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.h26-app-rating {
    display: inline-flex; align-items: center;
    gap: 12px;
}
.h26-app-stars { display: inline-flex; gap: 2px; color: #fbbf24; }
.h26-app-rating-text { color: #a7d9c4; font-size: 13px; }
.h26-app-rating-text strong { color: #ffffff; font-weight: 800; margin-right: 4px; }

/* Right side — 3 phone screenshots fanned out */
.h26-app-art {
    position: relative;
    height: 580px;
    max-width: 560px;
    margin: 0 auto;
}
.h26-app-phone {
    position: absolute;
    width: 230px;
    height: 470px;
    border-radius: 36px;
    overflow: hidden;
    background: #0a1612;
    border: 1.5px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.55),
        0 0 0 8px rgba(255,255,255,0.04);
    transition: transform 0.4s ease;
}
.h26-app-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
/* Center phone — front, biggest */
.h26-app-phone-2 {
    z-index: 3;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 510px;
}
/* Left phone — slightly back, tilted left */
.h26-app-phone-1 {
    z-index: 2;
    top: 50%; left: 50%;
    transform: translate(-115%, -45%) rotate(-8deg);
    opacity: 0.92;
    filter: saturate(0.92) brightness(0.95);
}
/* Right phone — slightly back, tilted right */
.h26-app-phone-3 {
    z-index: 2;
    top: 50%; left: 50%;
    transform: translate(15%, -45%) rotate(8deg);
    opacity: 0.92;
    filter: saturate(0.92) brightness(0.95);
}
.h26-app-art:hover .h26-app-phone-2 { transform: translate(-50%, -52%) scale(1.02); }
.h26-app-art:hover .h26-app-phone-1 { transform: translate(-118%, -47%) rotate(-9deg); }
.h26-app-art:hover .h26-app-phone-3 { transform: translate(18%, -47%) rotate(9deg); }

@media (max-width: 1100px) {
    .h26-app-art { height: 520px; max-width: 500px; }
    .h26-app-phone { width: 200px; height: 410px; }
    .h26-app-phone-2 { width: 220px; height: 450px; }
}
@media (max-width: 992px) {
    .h26-app { padding: 80px 0; }
    .h26-app-grid { grid-template-columns: 1fr; gap: 56px; }
    .h26-app-art { margin: 0 auto; height: 520px; }
}
@media (max-width: 640px) {
    .h26-app-features { grid-template-columns: 1fr; }
    .h26-app-cta-row { flex-direction: column; }
    .h26-app-btn { width: 100%; justify-content: center; min-width: 0; }
    .h26-app-art { height: 460px; max-width: 360px; }
    .h26-app-phone { width: 160px; height: 320px; }
    .h26-app-phone-2 { width: 180px; height: 360px; }
    .h26-app-phone-1 { transform: translate(-110%, -45%) rotate(-7deg); }
    .h26-app-phone-3 { transform: translate(10%, -45%) rotate(7deg); }
}

/* ============================================================
   HOSTING CATEGORY PAGE (hosting-products.php)
   ============================================================ */

/* Page hero (smaller than home hero) */
.h26-page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #082b22 0%, #0d3a2c 50%, #145740 100%);
    color: #ffffff;
    padding: 80px 0 70px;
}
.h26-page-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(45,208,127,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,208,127,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.5), transparent 70%);
    mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.5), transparent 70%);
}
.h26-page-hero-inner { position: relative; z-index: 2; }
.h26-page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(45,208,127,0.12);
    border: 1px solid rgba(45,208,127,0.3);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #6ee7a7;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.h26-page-hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 16px;
}
.h26-page-hero-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #a7d9c4;
    max-width: 640px;
    margin: 0;
}

/* Period toggle */
.h26-period-toggle {
    display: inline-flex;
    background: #f4f7f5;
    border: 1px solid #e3ebe7;
    border-radius: 999px;
    padding: 5px;
    margin: 0 auto 36px;
    gap: 4px;
}
.h26-period-toggle-row {
    display: flex; justify-content: center; margin-bottom: 36px;
}
.h26-hosting .h26-container > .h26-period-toggle {
    display: flex;
    width: max-content;
    margin: 0 auto 36px;
}
.h26-period-btn {
    padding: 9px 20px;
    border: none;
    background: transparent;
    color: #5a6d65;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.2s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.h26-period-btn:hover { color: #0b1f17; }
.h26-period-btn.is-active {
    background: #ffffff;
    color: #0b1f17;
    box-shadow: 0 2px 8px rgba(8,41,31,0.08);
}

/* Package grid (used here + on homepage) */
.h26-hosting { background: #f4f7f5; padding: 80px 0; }
.h26-pkg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}
@media (max-width: 1100px) { .h26-pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .h26-pkg-grid { grid-template-columns: 1fr; } }

/* Old/discount price + period suffix */
.h26-pkg-price { gap: 4px; flex-wrap: wrap; }
.h26-pkg-price-old {
    width: 100%;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.h26-pkg-discount {
    display: inline-block;
    margin: -16px 0 18px;
    padding: 4px 12px;
    background: rgba(45,208,127,0.12);
    border: 1px solid rgba(45,208,127,0.3);
    color: #16a45f;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* Premium flag (different color from popular) */
.h26-pkg-flag-premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #422006;
}

/* Disabled buy */
.h26-pkg-cta.is-disabled {
    background: #f4f7f5 !important;
    border-color: #e3ebe7 !important;
    color: #94a3b8 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* FAQ */
.h26-faq { background: #ffffff; }
.h26-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.h26-faq-item {
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease;
}
.h26-faq-item:hover { border-color: #2dd07f; }
.h26-faq-item[open] {
    border-color: #2dd07f;
    box-shadow: 0 6px 20px rgba(45,208,127,0.08);
}
.h26-faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    color: #0b1f17;
    font-size: 15px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    letter-spacing: -0.015em;
}
.h26-faq-item summary::-webkit-details-marker { display: none; }
.h26-faq-item summary::after {
    content: "+";
    width: 28px; height: 28px;
    background: #f4f7f5;
    color: #16a45f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.h26-faq-item[open] summary::after {
    content: "−";
    background: #16a45f;
    color: #ffffff;
}
.h26-faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: #364a40;
    font-size: 14.5px;
    line-height: 1.65;
}

/* Hide all legacy hosting-page chrome */
.introslider-container,
.coresayfacarts-bg,
.pro-slider-section,
.corefaq-section,
.chat-section,
.modern-faq-section,
.professional-tabs-container,
.modern-content-wrapper,
.miotab-contents,
.hakimizdaalani-section,
.coreservercart-home-servers,
.corecartpkts-wrapper { display: none !important; }

/* ============================================================
   MEGA MENU HARD RESET — kill ALL legacy designer chrome
   ============================================================ */

/* 1. Kill the dark promo "image" card (woman + 20% endirim button) */
.megahedars-mega-menu-image,
.megahedars-image-overlay,
.megahedars-image-button,
.megahedars-image-text,
.megahedars-image-title,
.megahedars-discount-badge,
.megahedars-mega-menu-image *,
.coretema-dropdown-menu .megahedars-mega-menu-image { display: none !important; }

/* 2. Restructure mega menu — clean white card, no image column */
.coretema-dropdown-menu {
    background: #ffffff !important;
    border: 1px solid var(--h26-line, #e3ebe7) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 60px rgba(8,41,31,0.15),
                0 4px 12px rgba(8,41,31,0.05) !important;
    padding: 18px !important;
    overflow: hidden !important;
}
.coretema-dropdown-menu-inner {
    background: transparent !important;
    padding: 0 !important;
}
.megahedars-mega-menu-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* 3. Force 2-column layout (no image column) */
.megahedars-mega-menu-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
}
.megahedars-mega-menu-column {
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
}

/* 4. Column titles — small uppercase green */
.megahedars-column-title {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #16a45f !important;
    margin: 0 0 12px 12px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* 5. Dropdown items — clean rows with icon + title + subtitle */
.megahedars-dropdown-content {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}
.megahedars-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    margin: 2px 0 !important;
    transition: all 0.18s ease !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.megahedars-dropdown-item:hover {
    background: #f4f7f5 !important;
    border-color: rgba(45,208,127,0.25) !important;
    transform: none !important;
}

.megahedars-dropdown-icon {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, #d6f9e6, #ecfdf5) !important;
    color: #16a45f !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
}
.megahedars-dropdown-icon svg,
.megahedars-dropdown-icon i {
    width: 18px !important;
    height: 18px !important;
    color: #16a45f !important;
    font-size: 16px !important;
}
.megahedars-dropdown-item:hover .megahedars-dropdown-icon {
    background: linear-gradient(135deg, #2dd07f, #16a45f) !important;
    color: #ffffff !important;
}
.megahedars-dropdown-item:hover .megahedars-dropdown-icon svg,
.megahedars-dropdown-item:hover .megahedars-dropdown-icon i {
    color: #ffffff !important;
}

.megahedars-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0b1f17 !important;
    letter-spacing: -0.015em !important;
    line-height: 1.3 !important;
    margin: 0 0 2px !important;
    background: none !important;
    -webkit-text-fill-color: #0b1f17 !important;
}
.megahedars-dropdown-item:hover .megahedars-title { color: #16a45f !important; }

.megahedars-description {
    font-size: 12.5px !important;
    color: #5a6d65 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* 6. Force-kill ALL legacy promo badges/discount labels inside menu */
.coretema-dropdown-menu .megahedars-badge,
.coretema-dropdown-menu .megahedars-discount-badge,
.coretema-menu-badge,
.megahedars-badge { display: none !important; }

/* ============================================================
   H26-NAV — completely new clean menu (replaces legacy mega menu)
   ============================================================ */

/* Kill legacy menu nodes still present anywhere */
.coretema-main-menu { display: none !important; }
.coretema-dropdown-menu { display: none !important; }

/* New nav layout */
.h26-nav {
    display: flex;
    flex: 1;
    justify-content: center;
}
.h26-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.h26-nav-item {
    position: relative;
}
.h26-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1f17;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.18s ease;
    letter-spacing: -0.005em;
    white-space: nowrap;
}
.h26-nav-link:hover {
    color: #16a45f;
    background: rgba(45,208,127,0.06);
}
.h26-nav-link svg {
    transition: transform 0.18s ease;
    opacity: 0.6;
}
.h26-nav-has-child:hover .h26-nav-link svg {
    transform: rotate(180deg);
    opacity: 1;
}

/* CTA-style nav link (Müştəri paneli) */
.h26-nav-link-cta {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f !important;
    margin-left: 6px;
    box-shadow: 0 4px 14px rgba(45,208,127,0.3);
}
.h26-nav-link-cta:hover {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(45,208,127,0.4);
}

/* Dropdown panel */
.h26-nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(8,41,31,0.18),
                0 4px 12px rgba(8,41,31,0.06);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    z-index: 1000;
}
.h26-nav-panel::before {
    /* invisible bridge so hover doesn't flicker between trigger and panel */
    content: "";
    position: absolute;
    top: -10px; left: 0; right: 0;
    height: 10px;
}
.h26-nav-has-child:hover .h26-nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

/* Dropdown items */
.h26-nav-panel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #0b1f17;
    text-decoration: none;
    transition: background 0.15s ease;
}
.h26-nav-panel-item:hover { background: #f4f7f5; }
.h26-nav-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, #d6f9e6, #ecfdf5);
    color: #16a45f;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: all 0.18s ease;
}
.h26-nav-panel-item:hover .h26-nav-icon {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #ffffff;
}
.h26-nav-panel-item span:not(.h26-nav-icon) {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.25;
}
.h26-nav-panel-item strong {
    font-size: 13.5px;
    font-weight: 700;
    color: #0b1f17;
    letter-spacing: -0.01em;
}
.h26-nav-panel-item small {
    font-size: 12px;
    color: #5a6d65;
    line-height: 1.35;
}

/* Mobile: hide nav (mobile drawer handled separately) */
@media (max-width: 992px) {
    .h26-nav { display: none; }
}

/* ============================================================
   HERO SLIDER (3 slayd, real DB data)
   ============================================================ */
.h26-hero-slider { position: relative; }
.h26-slides {
    position: relative;
    min-height: 280px;
}
.h26-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
    pointer-events: none;
}
.h26-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
    position: relative;
}
.h26-slide .h26-hero-title {
    margin-bottom: 18px;
}
.h26-slide .h26-hero-sub {
    margin-bottom: 28px;
}

/* Slide navigation: dots + arrows */
.h26-slide-controls {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 24px;
    padding: 6px 6px 6px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.h26-slide-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(45,208,127,0.12);
    border: 1px solid rgba(45,208,127,0.25);
    color: #6ee7a7;
    cursor: pointer;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.h26-slide-arrow:hover {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(45,208,127,0.4);
}
.h26-slide-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.h26-slide-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.h26-slide-dot:hover { background: rgba(255,255,255,0.5); }
.h26-slide-dot.is-active {
    background: #2dd07f;
    width: 24px;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(45,208,127,0.5);
}

@media (max-width: 640px) {
    .h26-slides { min-height: 320px; }
    .h26-slide-controls { padding: 4px; gap: 8px; }
}

/* ============================================================
   KORPORATIV MAIL — special landing page styles
   ============================================================ */

/* HERO */
.kmail-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background: linear-gradient(135deg, #082b22 0%, #0d3a2c 50%, #145740 100%);
    color: #ffffff;
}
.kmail-hero-glow {
    position: absolute;
    top: -200px; right: -150px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(45,208,127,0.25) 0%, rgba(45,208,127,0) 60%);
    filter: blur(50px);
    pointer-events: none;
}
.kmail-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(45,208,127,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,208,127,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 70%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 70%);
    pointer-events: none;
}
.kmail-hero-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.kmail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(45,208,127,0.12);
    border: 1px solid rgba(45,208,127,0.3);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6ee7a7;
    margin-bottom: 22px;
}
.kmail-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 22px;
}
.kmail-title-accent {
    display: inline-block;
    background: linear-gradient(135deg, #2dd07f, #6ee7b7);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: -0.02em;
}
.kmail-sub {
    font-size: 17px; line-height: 1.65;
    color: #a7d9c4;
    max-width: 540px;
    margin: 0 0 32px;
}
.kmail-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.kmail-hero-trust {
    display: flex; gap: 22px; flex-wrap: wrap;
    color: #86b9a3;
    font-size: 13px;
    font-weight: 500;
}
.kmail-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.kmail-hero-trust svg { color: #2dd07f; flex-shrink: 0; }

/* INBOX MOCKUP */
.kmail-hero-art {
    position: relative;
    margin-left: auto;
    width: 100%;
    max-width: 460px;
}
.kmail-inbox {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4),
                0 0 0 1px rgba(255,255,255,0.06);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.kmail-hero-art:hover .kmail-inbox { transform: rotate(0deg) translateY(-4px); }
.kmail-inbox-bar {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: #f4f7f5;
    border-bottom: 1px solid #e3ebe7;
}
.kmail-inbox-dots { display: flex; gap: 6px; }
.kmail-inbox-dots span {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #d4ddd8;
}
.kmail-inbox-dots span:first-child { background: #ef4444; }
.kmail-inbox-dots span:nth-child(2) { background: #fbbf24; }
.kmail-inbox-dots span:nth-child(3) { background: #16a45f; }
.kmail-inbox-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #5a6d65;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.kmail-inbox-list {
    background: #ffffff;
    max-height: 460px;
}
.kmail-msg {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #eef2ef;
    position: relative;
    transition: background 0.2s ease;
}
.kmail-msg:hover { background: #f4f7f5; }
.kmail-msg-unread { background: #ecfdf5; }
.kmail-msg-unread:hover { background: #d6f9e6; }
.kmail-msg-unread::before {
    content: "";
    position: absolute;
    left: 6px; top: 50%; transform: translateY(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #16a45f;
}
.kmail-avatar {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.kmail-msg-body { flex: 1; min-width: 0; }
.kmail-msg-from {
    display: flex; justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #0b1f17;
    margin-bottom: 2px;
}
.kmail-msg-time {
    font-size: 11px;
    color: #5a6d65;
    font-weight: 500;
}
.kmail-msg-preview {
    font-size: 13px;
    color: #1a2b22;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kmail-msg-snippet {
    font-size: 12px;
    color: #5a6d65;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kmail-msg-tag {
    position: absolute;
    top: 10px; right: 14px;
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kmail-floating-badge {
    position: absolute;
    bottom: -18px; left: -22px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(45,208,127,0.25);
    z-index: 5;
    color: #16a45f;
    transform: rotate(3deg);
    animation: kmail-float 4s ease-in-out infinite;
}
@keyframes kmail-float {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-8px); }
}
.kmail-floating-badge strong {
    display: block;
    font-size: 13px;
    color: #0b1f17;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.kmail-floating-badge small {
    display: block;
    font-size: 11px;
    color: #5a6d65;
    margin-top: 1px;
}

/* WHY SECTION (compare) */
.kmail-why { background: #f4f7f5; }
.kmail-why-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.kmail-why-bad, .kmail-why-good {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    border: 1px solid #e3ebe7;
}
.kmail-why-good {
    border-color: #2dd07f;
    box-shadow: 0 14px 36px rgba(45,208,127,0.12);
    background: linear-gradient(180deg, #ffffff, #ecfdf5);
}
.kmail-why-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}
.kmail-why-bad-tag {
    background: rgba(239,68,68,0.1);
    color: #b91c1c;
    border: 1px solid rgba(239,68,68,0.25);
}
.kmail-why-good-tag {
    background: rgba(45,208,127,0.12);
    color: #16a45f;
    border: 1px solid rgba(45,208,127,0.3);
}
.kmail-why-bad ul, .kmail-why-good ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.kmail-why-bad li, .kmail-why-good li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #364a40;
}
.kmail-why-x {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(239,68,68,0.1);
    color: #b91c1c;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 800;
}
.kmail-why-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #ffffff;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.kmail-vs {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #082b22, #0d3a2c);
    color: #2dd07f;
    font-weight: 800;
    font-size: 16px;
    border: 2px solid #2dd07f;
    box-shadow: 0 8px 22px rgba(45,208,127,0.3);
    letter-spacing: 0.02em;
}

/* FEATURE GRID */
.kmail-features { background: #ffffff; }
.kmail-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
.kmail-feat {
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 18px;
    padding: 30px 26px;
    transition: all 0.25s ease;
}
.kmail-feat:hover {
    transform: translateY(-3px);
    border-color: rgba(45,208,127,0.4);
    box-shadow: 0 14px 36px rgba(45,208,127,0.1);
}
.kmail-feat-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d6f9e6, #ecfdf5);
    color: #16a45f;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.kmail-feat h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0b1f17;
    margin: 0 0 8px;
    letter-spacing: -0.015em;
}
.kmail-feat p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6d65;
    margin: 0;
}

/* PLANS */
.kmail-plans { background: #f4f7f5; }
.kmail-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: stretch;
}
.kmail-plan {
    position: relative;
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    box-shadow: 0 6px 22px rgba(8,41,31,0.05);
}
.kmail-plan:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(45,208,127,0.12); }
.kmail-plan-popular {
    border-color: #2dd07f;
    background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
    box-shadow: 0 18px 40px rgba(45,208,127,0.18);
}
.kmail-plan-premium {
    border-color: #fbbf24;
    background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}
.kmail-plan-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.06em;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(45,208,127,0.3);
    white-space: nowrap;
}
.kmail-plan-flag-premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #422006;
    box-shadow: 0 4px 12px rgba(251,191,36,0.3);
}
.kmail-plan-name {
    font-size: 18px;
    font-weight: 800;
    color: #0b1f17;
    margin-bottom: 14px;
}
.kmail-plan-price {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed #d4ddd8;
}
.kmail-plan-price span {
    font-size: 36px;
    font-weight: 800;
    color: #0b1f17;
    line-height: 1;
    letter-spacing: -0.03em;
}
.kmail-plan-price small {
    font-size: 14px;
    color: #5a6d65;
    font-weight: 500;
}
.kmail-plan ul {
    list-style: none;
    padding: 0; margin: 0 0 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kmail-plan li {
    font-size: 14px;
    color: #364a40;
    padding-left: 22px;
    position: relative;
}
.kmail-plan li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    width: 16px; height: 16px;
    color: #16a45f;
    font-weight: 800;
}
.kmail-plan-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;
}
.kmail-plan-cta:hover {
    background: #16a45f;
    border-color: #16a45f;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.kmail-plan-popular .kmail-plan-cta {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    border-color: transparent;
    color: #08291f !important;
    box-shadow: 0 4px 14px rgba(45,208,127,0.3);
}
.kmail-plan-popular .kmail-plan-cta:hover { color: #08291f !important; filter: brightness(1.05); transform: translateY(-2px); }

/* SETUP STEPS */
.kmail-steps { padding: 90px 0; }
.kmail-steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    counter-reset: kstep;
}
.kmail-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 22px;
    backdrop-filter: blur(8px);
    position: relative;
    transition: all 0.25s ease;
}
.kmail-step:hover {
    background: rgba(45,208,127,0.06);
    border-color: rgba(45,208,127,0.3);
    transform: translateY(-2px);
}
.kmail-step-num {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #2dd07f, #6ee7b7);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.kmail-step h3 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: -0.015em;
}
.kmail-step p {
    font-size: 13.5px;
    line-height: 1.55;
    color: #a7d9c4;
    margin: 0;
}

@media (max-width: 992px) {
    .kmail-hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .kmail-hero-art { margin: 0 auto; }
    .kmail-floating-badge { left: 0; }
    .kmail-why-compare { grid-template-columns: 1fr; gap: 16px; }
    .kmail-vs { margin: 0 auto; }
    .kmail-features-grid { grid-template-columns: repeat(2, 1fr); }
    .kmail-plans-grid { grid-template-columns: 1fr; }
    .kmail-steps-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .kmail-hero { padding: 60px 0 80px; }
    .kmail-features-grid { grid-template-columns: 1fr; }
    .kmail-steps-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.h26-contact { background: #f4f7f5; }
.h26-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: start;
}
.h26-contact-info, .h26-contact-form-wrap {
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 6px 22px rgba(8,41,31,0.05);
}
.h26-contact-info-title, .h26-contact-form-title {
    font-size: 22px;
    font-weight: 800;
    color: #0b1f17;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.h26-contact-info-sub, .h26-contact-form-sub {
    font-size: 14.5px;
    color: #5a6d65;
    line-height: 1.6;
    margin: 0 0 24px;
}
.h26-contact-block {
    display: flex; gap: 14px;
    padding: 16px 0;
    border-top: 1px solid #eef2ef;
}
.h26-contact-block:first-of-type { border-top: 0; padding-top: 8px; }
.h26-contact-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d6f9e6, #ecfdf5);
    color: #16a45f;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.h26-contact-label {
    font-size: 12px;
    font-weight: 800;
    color: #5a6d65;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.h26-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0b1f17;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.18s ease;
}
.h26-contact-link:hover { color: #16a45f; }
.h26-contact-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(45,208,127,0.12);
    color: #16a45f;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.h26-contact-address {
    font-size: 14.5px;
    color: #1a2b22;
    margin: 0;
    line-height: 1.55;
}
.h26-contact-social {
    display: flex; gap: 8px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #eef2ef;
}
.h26-contact-social a {
    width: 40px; height: 40px;
    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-contact-social a:hover {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Contact form */
.h26-contact-form { display: flex; flex-direction: column; gap: 14px; }
.h26-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.h26-input, .h26-textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f4f7f5;
    border: 1.5px solid #e3ebe7;
    border-radius: 12px;
    color: #0b1f17;
    font-size: 14.5px;
    font-family: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    box-sizing: border-box;
}
.h26-input::placeholder, .h26-textarea::placeholder { color: #94a3b8; }
.h26-input:focus, .h26-textarea:focus {
    outline: none;
    border-color: #2dd07f;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45,208,127,0.12);
}
.h26-textarea { resize: vertical; min-height: 120px; }
.h26-contact-captcha {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
    padding: 12px;
    background: #f4f7f5;
    border-radius: 12px;
    border: 1px dashed #e3ebe7;
}
.h26-contact-gdpr {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px;
    color: #5a6d65;
    line-height: 1.5;
    cursor: pointer;
}
.h26-contact-gdpr input { margin-top: 3px; accent-color: #16a45f; }
.h26-contact-gdpr a { color: #16a45f; text-decoration: underline; }
.h26-contact-output {
    padding: 12px 16px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 10px;
    color: #b91c1c;
    font-size: 13.5px;
}
.h26-contact-submit { align-self: flex-start; margin-top: 8px; }

/* Map */
.h26-map-section { background: #ffffff; padding: 36px 0 90px; }
.h26-map-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e3ebe7;
    box-shadow: 0 14px 40px rgba(8,41,31,0.08);
}
.h26-map-frame iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
    filter: saturate(0.85) hue-rotate(-8deg);
}
.h26-map-link {
    position: absolute;
    bottom: 18px; right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 10px;
    color: #0b1f17;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(8,41,31,0.18);
    transition: all 0.18s ease;
}
.h26-map-link:hover {
    background: #16a45f;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .h26-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .h26-contact-form-row { grid-template-columns: 1fr; }
    .h26-contact-info, .h26-contact-form-wrap { padding: 28px 22px; }
}

/* Hide legacy contact chrome */
.iletsimsf-section, .iletisimkonkart-section, .iletsim-form-section,
.iletsim-map-section { display: none !important; }

/* ============================================================
   BLOG / NEWS LISTING PAGE
   ============================================================ */
.h26-blog-featured { background: #ffffff; padding-bottom: 32px; }
.h26-blog-featured-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 22px;
    align-items: stretch;
}
.h26-blog-feat-card {
    display: flex; flex-direction: column;
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    box-shadow: 0 6px 22px rgba(8,41,31,0.05);
}
.h26-blog-feat-card:hover {
    transform: translateY(-3px);
    border-color: #2dd07f;
    box-shadow: 0 18px 50px rgba(45,208,127,0.12);
}
.h26-blog-feat-thumb {
    position: relative;
    height: 360px;
    background: linear-gradient(135deg, #082b22, #145740);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; justify-content: center;
}
.h26-blog-feat-fallback {
    font-size: 88px; font-weight: 800;
    color: rgba(45,208,127,0.5);
    letter-spacing: -0.05em;
}
.h26-blog-tag {
    position: absolute;
    top: 16px; left: 16px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: #16a45f;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
}
.h26-blog-tag-featured {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f;
}
.h26-blog-feat-body { padding: 28px 30px 30px; }
.h26-blog-feat-title {
    font-size: 24px;
    font-weight: 800;
    color: #0b1f17;
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.h26-blog-feat-excerpt {
    font-size: 15px;
    color: #5a6d65;
    line-height: 1.6;
    margin: 0 0 18px;
}
.h26-blog-feat-link {
    color: #16a45f;
    font-weight: 700;
    font-size: 14px;
}

.h26-blog-side-stack {
    display: flex; flex-direction: column;
    gap: 16px;
}
.h26-blog-side-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    flex: 1;
}
.h26-blog-side-card:hover {
    transform: translateY(-2px);
    border-color: #2dd07f;
    box-shadow: 0 12px 32px rgba(45,208,127,0.1);
}
.h26-blog-side-thumb {
    flex-shrink: 0;
    width: 140px;
    background: linear-gradient(135deg, #082b22, #145740);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; justify-content: center;
}
.h26-blog-side-thumb .h26-blog-feat-fallback { font-size: 48px; }
.h26-blog-side-body { padding: 18px 22px; flex: 1; }
.h26-blog-side-title {
    font-size: 15px;
    font-weight: 800;
    color: #0b1f17;
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.015em;
}
.h26-blog-side-excerpt {
    font-size: 13px;
    color: #5a6d65;
    line-height: 1.5;
    margin: 0;
}

.h26-blog-list { background: #f4f7f5; }
.h26-blog-grid-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}
.h26-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.h26-blog-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-blog-card:hover {
    transform: translateY(-3px);
    border-color: #2dd07f;
    box-shadow: 0 14px 36px rgba(45,208,127,0.1);
}
.h26-blog-card-thumb {
    height: 160px;
    background: linear-gradient(135deg, #082b22, #145740);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; justify-content: center;
    color: rgba(45,208,127,0.6);
}
.h26-blog-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.h26-blog-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #0b1f17;
    margin: 0 0 8px;
    line-height: 1.35;
    letter-spacing: -0.015em;
}
.h26-blog-card-excerpt {
    font-size: 13.5px;
    color: #5a6d65;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
}
.h26-blog-card-link { color: #16a45f; font-weight: 700; font-size: 13px; }

.h26-blog-sidebar {
    display: flex; flex-direction: column;
    gap: 18px;
    position: sticky; top: 24px;
}
.h26-newsletter-form {
    display: flex; flex-direction: column; gap: 8px;
}
.h26-newsletter-form .h26-input {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-color: rgba(255,255,255,0.12);
}
.h26-newsletter-form .h26-input::placeholder { color: rgba(209,250,229,0.5); }

.h26-blog-pagination {
    margin-top: 32px;
    display: flex; justify-content: center; align-items: center;
    gap: 6px;
}
.h26-blog-pagination a, .h26-blog-pagination span {
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #e3ebe7;
    border-radius: 10px;
    color: #0b1f17;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.18s ease;
}
.h26-blog-pagination a:hover { border-color: #2dd07f; color: #16a45f; }
.h26-blog-pagination .active, .h26-blog-pagination .current {
    background: linear-gradient(135deg, #2dd07f, #16a45f);
    color: #08291f;
    border-color: transparent;
}

@media (max-width: 992px) {
    .h26-blog-featured-grid { grid-template-columns: 1fr; }
    .h26-blog-grid-layout { grid-template-columns: 1fr; }
    .h26-blog-sidebar { position: static; }
}
@media (max-width: 640px) {
    .h26-blog-side-card { flex-direction: column; }
    .h26-blog-side-thumb { width: 100%; height: 140px; }
    .h26-blog-grid { grid-template-columns: 1fr; }
    .h26-blog-feat-thumb { height: 220px; }
}

/* Hide legacy haberlercarts chrome */
.haberlercarts-section, .haberlercarts-wrapper, .haberlercarts-grid,
.haberlercarts-hero-card, .haberlercarts-content { display: none !important; }

/* Single article layout (when only 1 news/article) */
.h26-blog-featured-grid.is-solo { grid-template-columns: 1fr; }
.h26-blog-featured-grid.is-solo .h26-blog-feat-card { max-width: 720px; margin: 0 auto; }
.h26-blog-featured-grid.is-solo .h26-blog-feat-thumb { height: 320px; }

/* Hide empty list section completely if no items */
.h26-blog-list:empty, .h26-blog-list .h26-container:empty { display: none; }

/* ============================================================
   CWV — Cumulative Layout Shift (CLS) prevention
   Forces browser to reserve space for all images even without
   explicit width/height attributes. Critical for Google ranking.
   ============================================================ */
img:not([width]):not([height]) {
    aspect-ratio: var(--h26-img-ratio, 16/9);
    height: auto;
    max-width: 100%;
}
.h26-trust-logo img,
.h26-product-icon img,
.h26-feature-icon img,
.coretema-logo img,
.h26-footer-logo img {
    aspect-ratio: auto;
}

/* Avoid huge initial layout for the hero illustration */
.h26-hero-art { aspect-ratio: 4 / 3; }

/* Optimization hint for browsers — content-visibility skips off-screen rendering */
.h26-section,
.h26-app,
.h26-experience,
.h26-support {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* ============================================================
   HOTFIXES — 2026-04-30
   1. Phone screenshots in .h26-app section were squashed into 16:9
      because img:not([width]):not([height]) {aspect-ratio:16/9}
      had higher specificity than the .h26-app-phone img rule.
   2. Header logo capped at 80x45 — too small for the new wide logo.
   ============================================================ */

.h26-app-phone img,
.h26-app-phone-1 img,
.h26-app-phone-2 img,
.h26-app-phone-3 img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
}

/* Logo: allow proper size for the wide hostinq-logo-full */
.coretema-logo,
.coretema-mobile-logo {
    max-width: 240px !important;
    width: auto !important;
}

.coretema-logo img,
.coretema-mobile-logo img {
    max-height: 56px !important;
    height: auto !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
}

/* Header height accommodation */
.coretema-logo a {
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
}

/* ============================================================
   MOBILE FIX — h26-app section (2026-04-30)
   On mobile, .h26-app-grid collapses to 1 column. The .h26-app-art
   container had no intrinsic width because all phones inside are
   position:absolute → grid item collapsed to 0px wide → phones
   appeared in random spots and clipped weirdly.
   ============================================================ */

.h26-app-art {
    width: 100% !important;
    min-width: 100% !important;
    min-height: 460px;
    position: relative;
}

@media (max-width: 768px) {
    .h26-app-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .h26-app-art {
        min-height: 480px;
        max-width: 360px;
        margin: 0 auto;
    }
    /* Reset desktop-only transforms; layout phones cleanly side-by-side */
    .h26-app-phone {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 auto !important;
    }
    /* Show only the center phone on small screens — cleaner */
    .h26-app-phone-1,
    .h26-app-phone-3 {
        display: none !important;
    }
    .h26-app-phone-2 {
        width: 240px !important;
        height: 480px !important;
        margin: 0 auto !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet: keep all 3 but smaller and more contained */
    .h26-app-art {
        min-height: 520px;
    }
    .h26-app-phone {
        transform: scale(0.85) !important;
    }
}

/* ============================================================
   MOBILE HEADER FIX (2026-04-30)
   Desktop logo at 56px is too tall for the 70px mobile header
   (which has 16px padding → only 38px inner space). Logo overflowed
   the green band and made icons look misaligned.
   ============================================================ */

@media (max-width: 768px) {
    /* Mobile logo: cap at 36px to match icon visual weight */
    .coretema-mobile-logo,
    .coretema-mobile-logo a,
    .coretema-mobile-logo img {
        max-height: 36px !important;
        height: 36px !important;
    }
    .coretema-mobile-logo img {
        width: auto !important;
        max-width: 160px !important;
        object-fit: contain !important;
    }
    /* Mobile header: tighten padding + ensure symmetric alignment */
    .coretema-mobile-header {
        padding: 12px 16px !important;
        height: auto !important;
        min-height: 60px !important;
    }
    .coretema-mobile-header-top {
        align-items: center !important;
        justify-content: space-between !important;
        height: 36px !important;
    }
    .coretema-mobile-actions {
        align-items: center !important;
        gap: 8px !important;
    }
    /* Action icon buttons should match logo height */
    .coretema-mobile-actions > * {
        height: 36px !important;
        min-width: 36px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Smaller phones: logo even more compact */
@media (max-width: 480px) {
    .coretema-mobile-logo img {
        max-width: 130px !important;
        max-height: 32px !important;
        height: 32px !important;
    }
    .coretema-mobile-header-top {
        height: 32px !important;
    }
    .coretema-mobile-actions > * {
        height: 32px !important;
        min-width: 32px !important;
    }
}

/* ============================================================
   WHATSAPP WIDGET — recolor blue → WhatsApp green (2026-04-30)
   ============================================================ */
.whatsapp-widget .chat-header,
.whatsapp-widget .start-chat-btn {
    background-color: #25D366 !important;
    background-image: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
}

.whatsapp-widget .start-chat-btn:hover {
    background-image: linear-gradient(135deg, #1ebe5b 0%, #0e6f64 100%) !important;
}

/* Avatar accent + action buttons hover stay readable on green */
.whatsapp-widget .action-btn {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.whatsapp-widget .action-btn:hover {
    background-color: rgba(255, 255, 255, 0.32) !important;
}

/* ============================================================
   TOPBAR POLISH (2026-04-30)
   Make the contact strip above the green header tidy + symmetric.
   ============================================================ */
.coretema-topbar {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 8px 0 !important;
    font-size: 13px !important;
    color: #cbd5e1 !important;
    position: relative;
    z-index: 50;
}

.coretema-topbar .coretema-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 0 20px !important;
}

.coretema-topbar-left,
.coretema-topbar-right {
    display: inline-flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}

.coretema-topbar-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    padding: 4px 0 !important;
    transition: color 0.15s ease;
}

.coretema-topbar-link:hover {
    color: #ffffff !important;
}

.coretema-topbar-link i {
    font-size: 12px !important;
    color: var(--coretema-primary, #25D366) !important;
    width: 14px;
    text-align: center;
}

/* Right cluster: social + theme switch */
.coretema-topbar-social {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.coretema-topbar-social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e2e8f0 !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.coretema-topbar-social-link:hover {
    background: var(--coretema-primary, #25D366) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.coretema-topbar-social-link i {
    font-size: 13px !important;
}

/* Theme switcher: ensure visible + properly sized */
.coretema-theme-switcher {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    color: #e2e8f0 !important;
    padding: 0 !important;
    transition: all 0.2s ease;
}

.coretema-theme-switcher:hover {
    background: rgba(255, 255, 255, 0.16) !important;
}

.coretema-theme-switcher .coretema-theme-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.coretema-theme-switcher .coretema-theme-icon svg {
    width: 16px;
    height: 16px;
}

/* Mobile: stack contact + simplify */
@media (max-width: 600px) {
    .coretema-topbar {
        padding: 6px 0 !important;
        font-size: 12px !important;
    }
    .coretema-topbar .coretema-container {
        gap: 8px !important;
        padding: 0 12px !important;
        justify-content: center !important;
    }
    .coretema-topbar-left,
    .coretema-topbar-right {
        gap: 14px !important;
    }
    .coretema-topbar-link {
        font-size: 12px !important;
    }
    /* Hide email on very small screens (mobilgizle class likely already does this) */
    .mobilgizle {
        display: none !important;
    }
}

/* ============================================================
   TOPBAR POLISH (2026-04-30)
   ============================================================ */
.coretema-topbar {
    background: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 8px 0 !important;
    font-size: 13px !important;
    color: #cbd5e1 !important;
    position: relative;
    z-index: 50;
}
.coretema-topbar .coretema-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}

/* Hide theme switcher (not needed) */
.coretema-theme-switcher,
.coretema-topbar .coretema-theme-switcher {
    display: none !important;
}
.coretema-topbar-left,
.coretema-topbar-right {
    display: inline-flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}
.coretema-topbar-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    padding: 4px 0 !important;
    transition: color 0.15s ease;
}
.coretema-topbar-link:hover { color: #ffffff !important; }
.coretema-topbar-link i {
    font-size: 12px !important;
    color: var(--coretema-primary, #25D366) !important;
    width: 14px;
    text-align: center;
}
.coretema-topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.12);
    display: inline-block;
}
.coretema-topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 999px;
    color: #25D366 !important;
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.coretema-topbar-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: topbar-pulse 2.4s infinite;
}
@keyframes topbar-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.coretema-topbar-social {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.coretema-topbar-social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e2e8f0 !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
}
.coretema-topbar-social-link:hover {
    background: var(--coretema-primary, #25D366) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.coretema-topbar-social-link i { font-size: 12px !important; }
.coretema-theme-switcher {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    color: #e2e8f0 !important;
    padding: 0 !important;
    transition: all 0.2s ease;
}
.coretema-theme-switcher:hover { background: rgba(255, 255, 255, 0.16) !important; }
.coretema-theme-switcher .coretema-theme-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}
.coretema-theme-switcher .coretema-theme-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
@media (max-width: 600px) {
    .coretema-topbar { padding: 6px 0 !important; font-size: 11px !important; }
    .coretema-topbar .coretema-container {
        gap: 8px !important;
        padding: 0 12px !important;
        justify-content: center !important;
    }
    .coretema-topbar-left, .coretema-topbar-right { gap: 12px !important; }
    .coretema-topbar-link { font-size: 11px !important; gap: 6px !important; }
    .coretema-topbar-badge { font-size: 10px !important; padding: 2px 8px !important; }
    .mobilgizle { display: none !important; }
}
