/* index — migrated from pages.css */

        * {
            box-sizing: border-box;
        }

        .hp-body {
            font-family: 'Inter', sans-serif;
            color: #1e293b;
            background: #f8fafc;
        }

        /* HP HERO */
        /* ── HERO ── */
        .hp-hero {
            background: linear-gradient(135deg, #020617 0%, #0f172a 55%, #042f2e 100%);
            padding: 72px 24px 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hp-hero::before {
            content: '';
            position: absolute; top: -40%; left: -15%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(20,184,166,.18) 0%, transparent 70%);
            border-radius: 50%;
            animation: hpBlobDrift1 16s ease-in-out infinite alternate;
        }
        .hp-hero::after {
            content: '';
            position: absolute; bottom: -40%; right: -15%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(15,118,110,.18) 0%, transparent 70%);
            border-radius: 50%;
            animation: hpBlobDrift2 20s ease-in-out infinite alternate;
        }
        @keyframes hpBlobDrift1 {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(4%, 3%) scale(1.08); }
        }
        @keyframes hpBlobDrift2 {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-4%, -3%) scale(1.1); }
        }
        @keyframes hpFadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .hp-hero-inner {
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .hp-hero-eyebrow {
            display: inline-block;
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.2);
            color: rgba(255,255,255,.85);
            font-size: 14px; font-weight: 700;
            padding: 5px 14px; border-radius: 20px;
            margin-bottom: 20px; letter-spacing: .04em;
            animation: hpFadeUp .7s cubic-bezier(.16,1,.3,1) both;
        }
        .hp-hero h1 {
            font-size: 3.2rem; font-weight: 900;
            color: #fff !important;
            line-height: 1.08; margin: 0 0 18px;
            letter-spacing: -0.035em;
            text-align: center;
            animation: hpFadeUp .7s cubic-bezier(.16,1,.3,1) .12s both;
        }
        .hp-hero h1 span {
            background: linear-gradient(100deg, #5eead4, #14b8a6, #5eead4);
            background-size: 220% auto;
            background-position: 0% 50%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: hpGradientShift 5s ease-in-out infinite alternate;
        }
        .hp-hero-sub {
            font-size: 1.1rem;
            color: rgba(255,255,255,.72);
            max-width: 600px;
            margin: 0 auto 32px;
            line-height: 1.6;
            animation: hpFadeUp .7s cubic-bezier(.16,1,.3,1) .24s both;
        }

        /* Trust bar (inside hero) */
        .hp-trust-bar {
            display: flex; align-items: center; justify-content: center;
            gap: 24px; flex-wrap: wrap;
            font-size: 14px; font-weight: 600;
            color: rgba(255,255,255,.6);
            animation: hpFadeUp .7s cubic-bezier(.16,1,.3,1) .36s both;
        }
        .hp-trust-bar span { display: flex; align-items: center; gap: 6px; }
        .hp-trust-bar i { color: rgba(20,184,166,.8); }
        .hp-live-dot {
            display: inline-block; width: 7px; height: 7px; border-radius: 50%;
            background: #2dd4bf; flex-shrink: 0;
            box-shadow: 0 0 0 0 rgba(45,212,191,.6);
            animation: hpLivePulse 2s ease-out infinite;
        }
        @keyframes hpLivePulse {
            0%   { box-shadow: 0 0 0 0 rgba(45,212,191,.55); }
            70%  { box-shadow: 0 0 0 6px rgba(45,212,191,0); }
            100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
        }
        @keyframes hpGradientShift {
            0%   { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        /* SECTION GLOBALS */
        .hp-section {
            padding: 80px 40px;
        }

        .hp-section.gray {
            background: #f1f5f9;
        }

        .hp-sh {
            text-align: center;
            margin-bottom: 60px;
        }

        .hp-sh h2 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 16px;
        }

        .hp-sh p {
            font-size: 1.1rem;
            color: #64748b;
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* HOSTING GRID (Tabs-like layout) */
        .hp-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .hp-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 36px 30px;
            transition: all 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .hp-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            border-color: #99f6e4;
            transform: translateY(-4px);
        }

        .hp-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
        }

        .hp-card-icon i {
            font-size: 26px;
            color: #0d9488;
        }

        .hp-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 12px;
        }

        .hp-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin: 0 0 24px;
            flex: 1;
        }

        .hp-card-price {
            margin-bottom: 24px;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }

        .hp-card-price span {
            display: block;
            font-size: 14px;
            color: #94a3b8;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .hp-card-price strong {
            font-size: 28px;
            font-weight: 800;
            color: #0f172a;
        }

        .hp-card-price small {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        .hp-card-btn {
            display: block;
            text-align: center;
            background: #f8fafc;
            color: #1e293b;
            border: 1px solid #e2e8f0;
            padding: 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s;
            margin-top: auto;
        }

        .hp-card-btn:hover {
            background: #115e59;
            color: #fff;
            border-color: #0d9488;
        }

        /* PREMIUM FEATURE CARDS */
        .hp-card.premium {
            background: linear-gradient(135deg, #0f172a 0%, #042f2e 100%);
            border: none;
            color: #fff;
        }

        .hp-card.premium .hp-card-icon {
            background: linear-gradient(135deg, #14b8a6, #0d9488);
            box-shadow: 0 8px 24px rgba(20,184,166, 0.3);
        }

        .hp-card.premium .hp-card-icon i {
            color: #fff;
        }

        .hp-card.premium h3 {
            color: #fff;
        }

        .hp-card.premium p {
            color: rgba(255, 255, 255, 0.7);
        }

        .hp-card.premium .hp-card-price {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .hp-card.premium .hp-card-price span {
            color: rgba(255, 255, 255, 0.5);
        }

        .hp-card.premium .hp-card-price strong {
            color: #fff;
        }

        .hp-card.premium .hp-card-price small {
            color: rgba(255, 255, 255, 0.6);
        }

        .hp-card.premium .hp-card-btn {
            background: #115e59;
            color: #fff;
            border: none;
        }

        .hp-card.premium .hp-card-btn:hover {
            background: #0d9488;
        }

        /* EMAIL HUB */
        .hp-email-sec {
            background: #fff;
            padding: 100px 40px;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .hp-email-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .hp-email-text h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #0f172a;
            line-height: 1.2;
            margin: 0 0 20px;
        }

        .hp-email-text p {
            font-size: 1.15rem;
            color: #64748b;
            line-height: 1.7;
            margin: 0 0 32px;
        }

        .hp-email-boxes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .hp-ebo {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 28px 24px;
            transition: all 0.2s;
            text-decoration: none;
            display: block;
        }

        .hp-ebo:hover {
            border-color: #0d9488;
            box-shadow: 0 8px 32px rgba(15,118,110, 0.08);
            transform: translateY(-3px);
        }

        .hp-ebo-head {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .hp-ebo-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hp-ebo-icon i {
            color: #fff;
            font-size: 20px;
        }

        .hp-ebo-head h3 {
            font-size: 18px;
            font-weight: 800;
            color: #0f172a;
            margin: 0;
        }

        .hp-ebo p {
            font-size: 14px;
            color: #64748b;
            margin: 0 0 16px;
            line-height: 1.5;
        }

        .hp-ebo-price {
            font-size: 14px;
            font-weight: 700;
            color: #0d9488;
        }

        /* PARTNERS / TRUST */
        .hp-trust {
            background: #fff;
            padding: 60px 0;
        }

        .hp-trust-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .hp-titem i {
            font-size: 40px;
            color: #14b8a6;
            margin-bottom: 16px;
        }

        .hp-titem h4 {
            font-size: 18px;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 8px;
        }

        .hp-titem p {
            font-size: 14px;
            color: #64748b;
            margin: 0;
        }

        /* CTA */
        .hp-cta {
            background: radial-gradient(ellipse 70% 90% at 85% 12%, rgba(20,184,166,.22) 0%, transparent 60%), radial-gradient(ellipse 55% 70% at 8% 95%, rgba(45,212,191,.13) 0%, transparent 55%), linear-gradient(135deg, #0b1c33 0%, #123047 55%, #0e4a44 100%);
            padding: 100px 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .hp-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(20,184,166, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hp-cta h2 {
            font-size: 3.2rem;
            font-weight: 900;
            color: #fff !important;
            margin: 0 0 20px;
            position: relative;
            z-index: 2;
            letter-spacing: -0.03em;
        }

        .hp-cta p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0 auto 40px;
            max-width: 650px;
            position: relative;
            z-index: 2;
        }

        .hp-cta-btn {
            display: inline-block;
            background: #0f766e;
            color: #fff;
            padding: 18px 48px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.2s;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(20,184,166, 0.2);
        }

        .hp-cta-btn:hover {
            background: #115e59;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(20,184,166, 0.3);
            color: #fff;
        }@media(max-width:1100px) {
            .hp-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hp-email-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }@media(max-width:768px) {
            .hp-hero { padding: 56px 16px 48px; }
            .hp-hero h1 { font-size: 2.2rem; }
            .hp-hero-sub { font-size: 1rem; margin-bottom: 24px; }
            .hp-trust-bar { gap: 14px; font-size: 11px; }

            .hp-grid,
            .hp-email-boxes,
            .hp-trust-grid {
                grid-template-columns: 1fr;
            }
        }@media(max-width:480px) {
            .hp-hero h1 { font-size: 1.9rem; }
        }

/* index — extracted from blade inline styles */
.hp-seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }@media (max-width: 768px) { .hp-seo-grid { grid-template-columns: 1fr; gap: 20px; } }
@keyframes hpSpin { to { transform: rotate(360deg); } }

/* Announcement bar */

/* Hero CTA row */
.hp-hero-cta-row {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    flex-wrap: wrap; margin: 28px 0 24px;
    animation: hpFadeUp .7s cubic-bezier(.16,1,.3,1) .44s both;
}
.hp-hero-cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #fff !important; text-decoration: none !important;
    font-size: 15px; font-weight: 800; padding: 15px 32px;
    border-radius: 12px; box-shadow: 0 8px 24px rgba(13,148,136,.35);
    transition: transform .15s, box-shadow .15s;
    position: relative; overflow: hidden;
}
.hp-hero-cta-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%);
    background-size: 250% 100%; background-position: 150% 0;
    animation: hpShineSweep 4.5s ease-in-out 1.2s infinite;
    pointer-events: none;
}
@keyframes hpShineSweep {
    0%, 55%  { background-position: 150% 0; }
    85%, 100% { background-position: -50% 0; }
}
.hp-hero-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(13,148,136,.45); }
.hp-hero-cta-secondary {
    color: rgba(255,255,255,.82) !important; text-decoration: underline !important;
    font-size: 14px; font-weight: 600;
}
.hp-hero-cta-secondary:hover { color: #fff !important; }

/* Plan picker strip */
.hp-plan-picker {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 10px 18px; max-width: 980px; margin: -30px auto 48px; padding: 16px 24px;
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px;
    font-size: 14px; color: #475569;
}
.hp-plan-picker-label { font-weight: 800; color: #0f172a; }
.hp-plan-picker-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.hp-plan-picker-item i { font-size: 14px; color: #94a3b8; }
.hp-plan-picker-item strong { color: #0d9488; }

/* ── Section eyebrow label ── */
.hp-eyebrow {
    display: inline-block; margin-bottom: 14px;
    font-size: 14px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
    color: #0f766e; background: rgba(13,148,136,.09);
    border: 1px solid rgba(13,148,136,.18);
    padding: 6px 14px; border-radius: 999px;
}

/* ══════════════════════════════════════════
   CATEGORY PRICING CARDS
   ══════════════════════════════════════════ */
/* Flex rather than grid so the seven cards wrap 4 + 3 with the short row
   centred, instead of leaving a hole in the last grid track. */
.hp-pt-grid {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
    gap: 22px; max-width: 1200px; margin: 0 auto 26px; padding: 0 20px;
}
.hp-pt-card {
    /* Capped at the width four cards resolve to, so the centred row of three
       below them is not visibly wider than the row of four above. */
    flex: 1 1 268px; max-width: 274px;
    position: relative; display: flex; flex-direction: column; min-width: 0;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
    padding: 26px 24px 24px;
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
    transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.hp-pt-card::before {
    content: ''; position: absolute; top: 0; left: 22px; right: 22px; height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #14b8a6, #0d9488);
    opacity: 0; transition: opacity .25s ease;
}
.hp-pt-card:hover {
    transform: translateY(-5px); border-color: #99f6e4;
    box-shadow: 0 20px 46px rgba(15,23,42,.10);
}
.hp-pt-card:hover::before { opacity: 1; }

.hp-pt-badge {
    position: absolute; top: -11px; right: 20px;
    background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff;
    font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 999px;
    box-shadow: 0 4px 12px rgba(13,148,136,.32);
}

.hp-pt-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hp-pt-ico {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(13,148,136,.1); color: #0d9488; font-size: 17px;
}
.hp-pt-ico.windows  { background: rgba(20,184,166,.1); color: #0f766e; }
.hp-pt-ico.cloud    { background: rgba(59,130,246,.1); color: #2563eb; }
.hp-pt-ico.vps      { background: rgba(139,92,246,.1); color: #7c3aed; }
.hp-pt-ico.dedicated{ background: rgba(220,38,38,.1);  color: #b91c1c; }
.hp-pt-ico.reseller { background: rgba(217,119,6,.12); color: #d97706; }
.hp-pt-ico.master   { background: rgba(219,39,119,.1); color: #db2777; }
.hp-pt-head h3 { margin: 0; font-size: 1.08rem; font-weight: 800; color: #0f172a; line-height: 1.3; }
.hp-pt-head h3 a { color: inherit !important; text-decoration: none !important; transition: color .2s ease; }
.hp-pt-card:hover .hp-pt-head h3 a { color: #0d9488 !important; }

.hp-pt-desc {
    font-size: 14px; line-height: 1.62; color: #64748b; margin: 0 0 18px;
}

.hp-pt-price {
    padding: 16px 0 14px; margin-bottom: 16px;
    border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9;
    /* Holds the savings-pill row open on plans that have no yearly saving,
       so the spec lists start on the same line across a row of cards. */
    min-height: 110px;
}
.hp-pt-from {
    display: block; font-size: 14px; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: .09em; margin-bottom: 4px;
}
.hp-pt-figure { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.hp-pt-cur { font-size: 17px; font-weight: 700; color: #0f172a; }
.hp-pt-amt { font-size: 30px; font-weight: 900; color: #0f172a; letter-spacing: -.02em; line-height: 1.1; }
.hp-pt-per { font-size: 14px; font-weight: 600; color: #64748b; }
.hp-pt-save {
    display: inline-flex; align-items: center; gap: 5px; margin-top: 8px;
    background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d;
    font-size: 14px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
}

.hp-pt-specs { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.hp-pt-specs li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 14px; color: #475569; line-height: 1.45;
}
.hp-pt-specs li i { color: #0d9488; font-size: 14px; margin-top: 3px; flex-shrink: 0; }

.hp-pt-bestfor {
    font-size: 14px; color: #64748b; line-height: 1.5;
    margin: 0 0 18px; padding: 9px 11px;
    background: #f8fafc; border-radius: 9px; border: 1px solid #eef2f7;
}
.hp-pt-bestfor i { color: #0d9488; margin-right: 5px; }

.hp-pt-actions { margin-top: auto; display: grid; gap: 9px; }
.hp-pt-btn {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #fff !important; text-decoration: none !important;
    font-size: 14px; font-weight: 800; padding: 12px 14px; border-radius: 10px;
    box-shadow: 0 4px 14px rgba(13,148,136,.24);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.hp-pt-btn i { font-size: 14px; transition: transform .18s ease; }
.hp-pt-btn:hover { filter: brightness(1.06); box-shadow: 0 7px 20px rgba(13,148,136,.34); }
.hp-pt-btn:hover i { transform: translateX(3px); }
.hp-pt-btn-alt {
    display: block; text-align: center;
    color: #0f766e !important; text-decoration: none !important;
    font-size: 14px; font-weight: 700; padding: 8px;
    border: 1px solid #e2e8f0; border-radius: 10px; background: #f8fafc;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    transition: border-color .18s ease, background .18s ease;
}
.hp-pt-btn-alt:hover { border-color: #99f6e4; background: #f0fdfa; }

/* Featured card inverts to the dark brand surface */
.hp-pt-card.featured {
    background: linear-gradient(150deg, #0f172a 0%, #042f2e 100%);
    border-color: transparent;
}
.hp-pt-card.featured:hover { border-color: rgba(94,234,212,.4); }
.hp-pt-card.featured .hp-pt-head h3,
.hp-pt-card.featured .hp-pt-cur,
.hp-pt-card.featured .hp-pt-amt { color: #fff; }
.hp-pt-card.featured .hp-pt-head h3 a { color: #fff !important; }
.hp-pt-card.featured:hover .hp-pt-head h3 a { color: #5eead4 !important; }
.hp-pt-card.featured .hp-pt-ico { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; }
.hp-pt-card.featured .hp-pt-desc { color: rgba(255,255,255,.68); }
.hp-pt-card.featured .hp-pt-price { border-color: rgba(255,255,255,.12); }
.hp-pt-card.featured .hp-pt-from { color: rgba(255,255,255,.5); }
.hp-pt-card.featured .hp-pt-per { color: rgba(255,255,255,.65); }
.hp-pt-card.featured .hp-pt-save { background: rgba(20,184,166,.16); border-color: rgba(94,234,212,.3); color: #5eead4; }
.hp-pt-card.featured .hp-pt-specs li { color: rgba(255,255,255,.78); }
.hp-pt-card.featured .hp-pt-specs li i { color: #5eead4; }
.hp-pt-card.featured .hp-pt-bestfor { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.09); color: rgba(255,255,255,.66); }
.hp-pt-card.featured .hp-pt-bestfor i { color: #5eead4; }
.hp-pt-card.featured .hp-pt-btn-alt { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #5eead4 !important; }
.hp-pt-card.featured .hp-pt-btn-alt:hover { background: rgba(255,255,255,.1); border-color: rgba(94,234,212,.4); }

.hp-pt-note {
    max-width: 900px; margin: 0 auto 8px; padding: 0 20px;
    text-align: center; font-size: 14px; line-height: 1.7; color: #64748b;
}
.hp-pt-note i { color: #0d9488; margin-right: 5px; }

/* Secondary heading, sits between the pricing grid and the long-form copy */
.hp-sh-sub { margin: 54px auto 34px; }
.hp-sh-sub h2 { font-size: 1.72rem; }
.hp-sh-sub p { font-size: 1rem; }

/* Below four-across the width cap has nothing to match, so let the cards
   use the space instead of stranding it in the margins. */
@media (max-width: 1000px) {
    .hp-pt-card { max-width: 400px; }
}@media (max-width: 640px) {
    .hp-pt-grid { gap: 18px; padding: 0 16px; }
    .hp-pt-card { flex-basis: 100%; max-width: none; padding: 24px 20px 22px; }
    .hp-pt-amt { font-size: 27px; }
    /* Single column has no neighbouring card to line up with, so the
       reserved savings-pill row would only read as dead space. */
    .hp-pt-price { min-height: 0; }
}@media (prefers-reduced-motion: reduce) {
    .hp-pt-card, .hp-pt-btn, .hp-pt-btn i { transition: none !important; }
    .hp-pt-card:hover { transform: none; }
}

/* Service / email / reseller SEO copy blocks */
.hp-svc-seo {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
    align-items: stretch;
}
.hp-svc-item {
    position: relative; min-width: 0; overflow: hidden;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
    padding: 30px 30px 28px;
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
    transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.hp-svc-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #14b8a6, #0d9488);
    opacity: 0; transition: opacity .25s ease;
}
.hp-svc-item:hover {
    transform: translateY(-4px); border-color: #99f6e4;
    box-shadow: 0 18px 44px rgba(15,23,42,.09);
}
.hp-svc-item:hover::before { opacity: 1; }
.hp-svc-item h3 {
    display: flex; align-items: center; gap: 13px;
    font-size: 1.22rem; font-weight: 800; color: #0f172a;
    margin: 0 0 16px; line-height: 1.3;
}
.hp-svc-item h3 a {
    color: inherit !important; text-decoration: none !important;
    transition: color .2s ease;
}
.hp-svc-item h3 a::after {
    content: '\f061'; font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 14px; margin-left: 9px; opacity: 0;
    display: inline-block; transform: translateX(-4px);
    transition: opacity .22s ease, transform .22s ease;
}
.hp-svc-item:hover h3 a { color: #0d9488 !important; }
.hp-svc-item:hover h3 a::after { opacity: 1; transform: translateX(0); }
.hp-svc-ico {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(13,148,136,.1); color: #0d9488; font-size: 18px;
}
.hp-svc-ico.windows  { background: rgba(20,184,166,.1);  color: #0f766e; }
.hp-svc-ico.cloud    { background: rgba(59,130,246,.1);  color: #2563eb; }
.hp-svc-ico.vps      { background: rgba(139,92,246,.1);  color: #7c3aed; }
.hp-svc-ico.dedicated{ background: rgba(220,38,38,.1);   color: #b91c1c; }
.hp-svc-ico.managed  { background: rgba(234,88,12,.1);   color: #ea580c; }
.hp-svc-ico.gws      { background: rgba(66,133,244,.12); color: #4285F4; }
.hp-svc-ico.zoho     { background: rgba(234,88,12,.1);   color: #ea580c; }
.hp-svc-ico.zohow    { background: rgba(5,150,105,.1);   color: #059669; }
.hp-svc-ico.titan    { background: rgba(30,41,59,.08);   color: #1e293b; }
.hp-svc-ico.reseller { background: rgba(217,119,6,.12);  color: #d97706; }
.hp-svc-item p {
    font-size: 14.6px; line-height: 1.78; color: #475569; margin: 0 0 14px;
}
/* Lead sentence of each block reads a shade stronger than the body copy */
.hp-svc-item h3 + p {
    font-size: 15.2px; color: #334155; font-weight: 500;
    padding-bottom: 14px; margin-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}
.hp-svc-item p:last-child { margin-bottom: 0; }
.hp-svc-item p a {
    color: #0f766e !important; font-weight: 600;
    text-decoration: none !important;
    box-shadow: inset 0 -1px 0 rgba(13,148,136,.35);
    transition: box-shadow .18s ease, color .18s ease;
}
.hp-svc-item p a:hover {
    color: #0d9488 !important; box-shadow: inset 0 -2px 0 rgba(13,148,136,.7);
}@media (max-width: 860px) {
    .hp-svc-seo { grid-template-columns: 1fr; gap: 20px; padding: 0 16px; }
    .hp-svc-item { padding: 26px 22px 24px; border-radius: 16px; }
    .hp-svc-item h3 { font-size: 1.12rem; }
}

/* FAQ accordion (collapsed by default, click to open) */
.hp-faq-list { max-width: 900px; margin: 0 auto; }
.hp-faq-item {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
    margin-bottom: 16px; overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.hp-faq-item[open] {
    background: #fff; border-color: #99f6e4;
    box-shadow: 0 6px 22px rgba(15,118,110,.07);
}
.hp-faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 22px 25px; cursor: pointer; list-style: none;
    -webkit-tap-highlight-color: transparent;
}
.hp-faq-q::-webkit-details-marker { display: none; }
.hp-faq-q::marker { content: ''; }
.hp-faq-q h3 {
    margin: 0; font-size: 1.18rem; font-weight: 700; color: #0f172a; line-height: 1.45;
}
.hp-faq-q:hover h3, .hp-faq-item[open] .hp-faq-q h3 { color: #0f766e; }
.hp-faq-q:focus-visible { outline: 2px solid #0d9488; outline-offset: -2px; border-radius: 12px; }
.hp-faq-caret {
    flex-shrink: 0; color: #0d9488; font-size: 14px;
    transition: transform .25s ease;
}
.hp-faq-item[open] .hp-faq-caret { transform: rotate(180deg); }
.hp-faq-a { padding: 0 25px 24px; }
.hp-faq-a p { margin: 0; color: #475569; line-height: 1.75; font-size: 15px; }@media (max-width: 640px) {
    .hp-faq-q { padding: 18px; gap: 12px; }
    .hp-faq-q h3 { font-size: 1.02rem; }
    .hp-faq-a { padding: 0 18px 20px; }
}@media (prefers-reduced-motion: reduce) {
    .hp-faq-item, .hp-faq-caret { transition: none; }
}

/* ══════════════════════════════════════════
   HOMEPAGE DESIGN POLISH
   ══════════════════════════════════════════ */

/* Section rhythm: tighter vertical scale, clear separation between
   the three consecutive copy sections. */
.hp-section { padding: 76px 40px; }
.hp-section.gray {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e8eef4;
    border-bottom: 1px solid #e8eef4;
}
.hp-sh { margin-bottom: 46px; }
.hp-sh h2 {
    font-size: 2.25rem; line-height: 1.22; letter-spacing: -.02em;
    margin: 0 0 14px;
}
.hp-sh p { font-size: 1.06rem; line-height: 1.65; max-width: 660px; }

/* Plan picker strip */
.hp-plan-picker {
    max-width: 1160px; margin: -14px auto 44px; padding: 18px 26px;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    box-shadow: 0 4px 18px rgba(15,23,42,.04);
}
.hp-plan-picker-label { color: #0f172a; }
.hp-plan-picker-label i { color: #0d9488; margin-right: 4px; }
.hp-plan-picker-item {
    background: #f8fafc; border: 1px solid #eef2f7;
    padding: 6px 12px; border-radius: 9px;
}

/* Trust row: sits between two light sections, so lift it onto cards */
.hp-trust { background: #fff; padding: 70px 0; border-top: 1px solid #eef2f7; }
.hp-trust-grid { gap: 24px; }
.hp-titem {
    background: #f8fafc; border: 1px solid #eef2f7; border-radius: 16px;
    padding: 30px 24px; transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease;
}
.hp-titem:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(15,23,42,.07); }
.hp-titem i {
    font-size: 26px; color: #0d9488; margin-bottom: 18px;
    width: 56px; height: 56px; border-radius: 15px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(13,148,136,.08));
}
.hp-titem h4 { font-size: 17px; }
.hp-titem p { line-height: 1.65; }

/* Zero-risk badge strip */
.zero-risk-badge {
    background: #fff; border: 1px solid #bbf7d0; border-radius: 999px;
    color: #14532d; font-weight: 700; letter-spacing: .01em;
    box-shadow: 0 2px 8px rgba(22,101,52,.05);
}
.zero-risk-badge i { color: #0d9488; margin-right: 6px; }

/* FAQ section framing */
.hp-faq-sec { background: #fff; }@media (max-width: 900px) {
    .hp-section { padding: 58px 20px; }
    .hp-sh { margin-bottom: 34px; }
    .hp-sh h2 { font-size: 1.72rem; }
    .hp-sh p { font-size: 1rem; }
    .hp-plan-picker { margin: -6px auto 30px; padding: 16px 18px; }
}@media (max-width: 640px) {
    .hp-hero-cta-row { flex-direction: column; gap: 12px; }
    .hp-hero-cta-primary { width: 100%; justify-content: center; }
    .hp-plan-picker { margin-top: 0; }
    .hp-eyebrow { font-size: 11px; padding: 5px 12px; }
    .hp-titem { padding: 24px 20px; }
}@media (prefers-reduced-motion: reduce) {
    .hp-svc-item, .hp-titem, .hp-svc-item h3 a::after { transition: none !important; }
    .hp-svc-item:hover, .hp-titem:hover { transform: none; }
}


/* shared rules copied from domain-registration-in-nepal (used by this page, split from pages.css) */
.clients-logo-section {
    background: #fff;
    padding: 44px 0 28px;
}
.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    filter: grayscale(100%);
    opacity: .65;
    transition: filter .2s, opacity .2s, transform .2s;
}
.client-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}
.client-logo-item img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
}
.client-logo-fallback {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-muted, #64748b);
}
.powered-ticker-section {
    background: #fff;
    padding: 44px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}
.powered-ticker-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 24px;
}
.ticker-track-wrap {
    overflow: hidden;
    position: relative;
}
.ticker-track-wrap::before, .ticker-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.ticker-track-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 28s linear infinite;
    width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 24px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}
.ticker-item i { color: #0d9488; font-size: 18px; }
