/* ============================================
   MALAWI HOSTIT — MODERN LANDING ENHANCEMENTS
   ============================================ */

/* CSS Variables */
:root {
    --primary: #7EBC12;
    --primary-dark: #5a8a0e;
    --primary-light: #a8e040;
    --secondary: #FF0F10;
    --dark: #0B1120;
    --dark-light: #1a2332;
    --light: #F8FAFC;
    --gray: #64748B;
    --gray-light: #E2E8F0;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #7EBC12 0%, #5a8a0e 100%);
    --gradient-hero: linear-gradient(135deg, #0B1120 0%, #1a2332 50%, #0f1a2e 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(126, 188, 18, 0.15) 0px, transparent 50%),
                      radial-gradient(at 80% 0%, rgba(255, 15, 16, 0.08) 0px, transparent 50%),
                      radial-gradient(at 0% 50%, rgba(126, 188, 18, 0.1) 0px, transparent 50%),
                      radial-gradient(at 80% 50%, rgba(255, 15, 16, 0.05) 0px, transparent 50%),
                      radial-gradient(at 0% 100%, rgba(126, 188, 18, 0.12) 0px, transparent 50%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(126, 188, 18, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ============================================
   GLOBAL & UTILITIES
   ============================================ */
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* Modern scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ============================================
   SPINNER — Modernized
   ============================================ */
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--dark) !important;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25rem;
    border-color: var(--primary) transparent var(--primary) transparent;
    animation: spinner-modern 1s linear infinite;
}

@keyframes spinner-modern {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ============================================
   NAVBAR — Glassmorphism Modern
   ============================================ */
.mh-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.mh-navbar.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
    animation: navbarSlideDown 0.4s ease;
}

@keyframes navbarSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.mh-navbar .navbar-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mh-navbar .navbar-brand h1 i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mh-navbar.sticky .navbar-brand h1 {
    color: var(--dark);
}

.mh-navbar .nav-link {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.125rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.mh-navbar.sticky .nav-link {
    color: var(--dark) !important;
}

.mh-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.mh-navbar .nav-link:hover,
.mh-navbar .nav-link.active {
    color: var(--primary) !important;
}

.mh-navbar .nav-link:hover::after,
.mh-navbar .nav-link.active::after {
    width: 60%;
}

.mh-navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem;
    margin-top: 0.75rem !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    animation: dropdownFade 0.25s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.mh-navbar .dropdown-item {
    border-radius: var(--radius-md);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.2s ease;
}

.mh-navbar .dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateX(4px);
}

.mh-navbar .btn-nav {
    border-radius: var(--radius-full);
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mh-navbar .btn-nav-register {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(126, 188, 18, 0.35);
}

.mh-navbar .btn-nav-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 188, 18, 0.45);
    color: var(--white);
}

.mh-navbar .btn-nav-login {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.mh-navbar.sticky .btn-nav-login {
    color: var(--dark);
    border-color: var(--gray-light);
}

.mh-navbar .btn-nav-login:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.mh-navbar.sticky .btn-nav-login:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--white) !important;
    font-size: 1.5rem;
}

.mh-navbar.sticky .navbar-toggler {
    color: var(--dark) !important;
}

/* ============================================
   HERO SECTION — Full Modern
   ============================================ */
.mh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.mh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: 1;
}

.mh-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(126, 188, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.05); }
}

.mh-hero .hero-content {
    position: relative;
    z-index: 2;
}

.mh-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(126, 188, 18, 0.15);
    border: 1px solid rgba(126, 188, 18, 0.3);
    color: var(--primary-light);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.mh-hero .hero-badge i {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.mh-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.mh-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mh-hero .hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.mh-hero .hero-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.mh-hero .hero-price .price-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.mh-hero .hero-price .price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.mh-hero .hero-price .price-value span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-light);
}

.mh-hero .hero-price .price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.mh-hero .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.mh-hero .btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    box-shadow: 0 8px 30px rgba(126, 188, 18, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mh-hero .btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.mh-hero .btn-hero-primary:hover::before {
    left: 100%;
}

.mh-hero .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(126, 188, 18, 0.5);
    color: var(--white);
}

.mh-hero .btn-hero-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mh-hero .btn-hero-secondary:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Visual */
.mh-hero .hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease 0.6s both;
}

.mh-hero .hero-visual .server-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.mh-hero .hero-visual .server-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1rem;
    animation: floatCard 4s ease-in-out infinite;
}

.mh-hero .hero-visual .server-card:nth-child(2) {
    animation-delay: 1s;
    margin-left: 2rem;
}

.mh-hero .hero-visual .server-card:nth-child(3) {
    animation-delay: 2s;
    margin-left: 1rem;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mh-hero .server-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mh-hero .server-card .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.mh-hero .server-card .card-title {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.mh-hero .server-card .progress-bar-modern {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.mh-hero .server-card .progress-bar-modern .progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    animation: progressGrow 2s ease 1s both;
}

@keyframes progressGrow {
    from { width: 0; }
}

.mh-hero .server-card .card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero scroll indicator */
.mh-hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s ease infinite;
}

.mh-hero .scroll-indicator i {
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION HEADERS — Modern
   ============================================ */
.mh-section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.mh-section-header .section-label {
    display: inline-block;
    background: rgba(126, 188, 18, 0.1);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.mh-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.mh-section-header p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================
   DOMAIN SEARCH — Floating Card
   ============================================ */
.mh-domain {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding: 0 1rem;
}

.mh-domain .domain-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 3rem 2.5rem;
    border: 1px solid var(--gray-light);
}

.mh-domain .domain-search-box {
    position: relative;
    margin-bottom: 2rem;
}

.mh-domain .domain-search-box input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    padding-right: 160px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    background: var(--light);
}

.mh-domain .domain-search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(126, 188, 18, 0.15);
}

.mh-domain .domain-search-box input::placeholder {
    color: var(--gray);
}

.mh-domain .domain-search-box .btn-search {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(126, 188, 18, 0.3);
}

.mh-domain .domain-search-box .btn-search:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 6px 20px rgba(126, 188, 18, 0.4);
}

.mh-domain .tld-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.mh-domain .tld-item {
    text-align: center;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mh-domain .tld-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.mh-domain .tld-item .tld-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.mh-domain .tld-item .tld-price {
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   STATS CARDS — Modern
   ============================================ */
.mh-stats .stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mh-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mh-stats .stat-card:hover::before {
    transform: scaleX(1);
}

.mh-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mh-stats .stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: rgba(126, 188, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.mh-stats .stat-card:hover .stat-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.mh-stats .stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mh-stats .stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PRICING CARDS — Modern Gradient Border
   ============================================ */
.mh-pricing {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.mh-pricing .pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

.mh-pricing .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mh-pricing .pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gradient-primary) border-box;
    transform: scale(1.03);
}

.mh-pricing .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.mh-pricing .pricing-card .pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.mh-pricing .pricing-card .pricing-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.mh-pricing .pricing-card .pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(126, 188, 18, 0.3);
}

.mh-pricing .pricing-card.featured .pricing-icon {
    background: var(--gradient-primary);
    box-shadow: 0 8px 25px rgba(126, 188, 18, 0.4);
}

.mh-pricing .pricing-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.mh-pricing .pricing-card .pricing-desc {
    font-size: 0.8125rem;
    color: var(--gray);
}

.mh-pricing .pricing-card .pricing-price-box {
    padding: 1.5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(126, 188, 18, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid var(--gray-light);
}

.mh-pricing .pricing-card .pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.mh-pricing .pricing-card .pricing-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: super;
}

.mh-pricing .pricing-card .pricing-price .period {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.mh-pricing .pricing-card .pricing-save {
    display: inline-block;
    background: rgba(126, 188, 18, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mh-pricing .pricing-card .btn-pricing {
    display: block;
    width: calc(100% - 4rem);
    margin: 0 2rem;
    padding: 0.875rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mh-pricing .pricing-card .btn-pricing-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(126, 188, 18, 0.3);
}

.mh-pricing .pricing-card .btn-pricing-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(126, 188, 18, 0.4);
    color: var(--white);
}

.mh-pricing .pricing-card .btn-pricing-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-light);
}

.mh-pricing .pricing-card .btn-pricing-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.mh-pricing .pricing-card .pricing-features {
    padding: 1.5rem 2rem 2rem;
}

.mh-pricing .pricing-card .pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.875rem;
    color: var(--dark);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.mh-pricing .pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.mh-pricing .pricing-card .pricing-features li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(126, 188, 18, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    flex-shrink: 0;
}

/* ============================================
   FEATURES — Modern Grid
   ============================================ */
.mh-features {
    background: #0F172A;
    position: relative;
}

.mh-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(126, 188, 18, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 15, 16, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.mh-features .mh-section-header h2,
.mh-features .mh-section-header p {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.mh-features .feature-card {
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.mh-features .feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mh-features .feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(126, 188, 18, 0.25);
}

.mh-features .feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mh-features .feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.mh-features .feature-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.mh-features .feature-card ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.mh-features .feature-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* ============================================
   TESTIMONIALS — Modern Cards
   ============================================ */
.mh-testimonials {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.mh-testimonials .testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.mh-testimonials .testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.mh-testimonials .testimonial-card .quote-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(126, 188, 18, 0.3);
}

.mh-testimonials .testimonial-card p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mh-testimonials .testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.mh-testimonials .testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.mh-testimonials .testimonial-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mh-testimonials .testimonial-card .author-info h6 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.125rem;
}

.mh-testimonials .testimonial-card .author-info small {
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 500;
}

/* Owl carousel dots */
.mh-testimonials .owl-dots {
    margin-top: 2rem !important;
}

.mh-testimonials .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: var(--gray-light) !important;
    transition: all 0.3s ease !important;
}

.mh-testimonials .owl-dot.active span {
    width: 30px !important;
    background: var(--primary) !important;
}

/* ============================================
   TEAM — Modern Cards
   ============================================ */
.mh-team {
    background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
}

.mh-team .team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid #CBD5E1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.mh-team .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mh-team .team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.mh-team .team-card:hover::before {
    transform: scaleX(1);
}

.mh-team .team-card .team-image {
    position: relative;
    padding: 2rem 2rem 0;
    text-align: center;
}

.mh-team .team-card .team-image .avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(126, 188, 18, 0.3);
}

.mh-team .team-card .team-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mh-team .team-card .team-info {
    padding: 1.5rem;
    text-align: center;
}

.mh-team .team-card .team-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.mh-team .team-card .team-info small {
    font-size: 0.8125rem;
    color: #475569;
    font-weight: 600;
}

.mh-team .team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.mh-team .team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #E2E8F0;
}

.mh-team .team-card .team-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(126, 188, 18, 0.3);
}

/* ============================================
   FOOTER — Modern
   ============================================ */
.mh-footer {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.mh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.mh-footer .footer-top {
    padding: 5rem 0 3rem;
}

.mh-footer .footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mh-footer .footer-brand h3 i {
    color: var(--primary);
}

.mh-footer .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.mh-footer .footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mh-footer .footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    padding: 0.375rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mh-footer .footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

.mh-footer .footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mh-footer .footer-links a:hover::before {
    width: 12px;
}

.mh-footer .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
}

.mh-footer .footer-contact p i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 1rem;
}

.mh-footer .footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mh-footer .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mh-footer .footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.mh-footer .newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.mh-footer .newsletter-box input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 0.875rem 1.25rem;
    color: var(--white);
    font-size: 0.875rem;
    width: 100%;
    margin-bottom: 0.75rem;
}

.mh-footer .newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mh-footer .newsletter-box input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.mh-footer .newsletter-box button {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.875rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.mh-footer .newsletter-box button:hover {
    box-shadow: 0 4px 15px rgba(126, 188, 18, 0.3);
    transform: translateY(-2px);
}

.mh-footer .footer-contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.mh-footer .footer-contact-form input,
.mh-footer .footer-contact-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.875rem;
    width: 100%;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.mh-footer .footer-contact-form input:focus,
.mh-footer .footer-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.mh-footer .footer-contact-form input::placeholder,
.mh-footer .footer-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mh-footer .footer-contact-form button {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.875rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.mh-footer .footer-contact-form button:hover {
    box-shadow: 0 4px 15px rgba(126, 188, 18, 0.3);
    transform: translateY(-2px);
}

.mh-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.mh-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.mh-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 1.5rem;
}

.mh-footer .footer-bottom a:hover {
    color: var(--primary);
}

/* ============================================
   BACK TO TOP — Modern
   ============================================ */
.back-to-top-modern {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(126, 188, 18, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top-modern.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 188, 18, 0.5);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 991.98px) {
    .mh-hero { min-height: auto; padding-top: 120px; padding-bottom: 40px; }
    .mh-hero .hero-visual { margin-top: 3rem; }
    .mh-navbar.sticky .navbar-collapse,
    .mh-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    .mh-navbar .nav-link { color: var(--dark) !important; padding: 0.625rem 1rem !important; }
    .mh-navbar .btn-nav-login { color: var(--dark) !important; border-color: var(--gray-light) !important; }
    .mh-navbar .navbar-brand h1 { color: var(--primary) !important; }
    .mh-domain { margin-top: -30px; }
    .mh-domain .domain-card { padding: 2rem 1.5rem; }
    .mh-pricing .pricing-card.featured { transform: scale(1); }
    .mh-pricing .pricing-card.featured:hover { transform: scale(1) translateY(-10px); }
}

@media (max-width: 767.98px) {
    .mh-hero h1 { font-size: 2rem; }
    .mh-hero .hero-price .price-value { font-size: 2.5rem; }
    .mh-footer .footer-top { padding: 3rem 0 2rem; }
}
