:root {
    --bg-main: #020617;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --border-color: #1e293b;
    --gradient-bg: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #475569;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    position: relative;
    background: radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15), transparent 50%);
}

.hero-content {
    max-width: 600px;
}

.badge-top {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image-wrapper {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
}

.floating-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

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

.float-1 { top: 10%; left: 0; animation-delay: 0s; }
.float-2 { top: 50%; right: 0; animation-delay: 2s; }

/* Features */
.features {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(2, 6, 23, 1) 100%);
    border: 1px solid var(--accent);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    color: white;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 5% 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    .hero-image-wrapper {
        width: 100%;
        margin-top: 50px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    nav ul {
        display: none; /* Mobile menu needed for real app */
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
}

/* Dynamic Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Button pulse effect */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.btn-primary {
    animation: pulseGlow 3s infinite;
}

.btn-primary:hover {
    animation: none;
    transform: translateY(-2px);
}

/* Card Hover Enhancements */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(59, 130, 246, 0.1) inset;
}

.pricing-card {
    transition: all 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Badge glow */
@keyframes badgeGlow {
    0% { border-color: rgba(59, 130, 246, 0.3); }
    50% { border-color: rgba(59, 130, 246, 0.8); text-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }
    100% { border-color: rgba(59, 130, 246, 0.3); }
}

.badge-top {
    animation: badgeGlow 2s infinite alternate;
}

/* Float animations refined */
@keyframes floatDynamic {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-card {
    animation: floatDynamic 8s ease-in-out infinite;
}

/* Premium Services Design */
.premium-services-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5% 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.premium-services-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-left {
    max-width: 500px;
}

.hero-left h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-left h1 span {
    color: #3b82f6;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.hero-left p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-right {
    position: relative;
    width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    max-width: 100%;
    max-height: 100%;
    animation: floatDynamic 6s infinite alternate ease-in-out;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Premium Cards */
.premium-cards-section {
    padding: 0 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(59, 130, 246, 0.1) inset;
}

.premium-card-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.premium-card-bg.purple {
    background: radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

.premium-card-bg.cyan {
    background: radial-gradient(ellipse at bottom, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}

.premium-icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), inset 0 0 10px rgba(59, 130, 246, 0.2);
}

.premium-icon-ring.purple {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3), inset 0 0 10px rgba(168, 85, 247, 0.2);
}

.premium-icon-ring.cyan {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3), inset 0 0 10px rgba(6, 182, 212, 0.2);
}

.premium-icon-ring svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.premium-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
    flex-grow: 1;
}

.premium-arrow-btn {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 2;
    position: relative;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.03);
}

.premium-arrow-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .premium-services-hero { flex-direction: column; text-align: center; }
    .hero-right { display: none; }
    .premium-grid { grid-template-columns: 1fr; }
    .hero-left { margin: 0 auto; }
}

/* Premium Hosting Design */
.hosting-premium-hero {
    text-align: center;
    padding: 100px 5% 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hosting-premium-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.hosting-premium-hero h1 span {
    color: #3b82f6;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.hosting-premium-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.glow-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    margin: 0 auto;
    box-shadow: 0 0 10px #3b82f6;
    position: relative;
}

.glow-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px 3px #3b82f6;
}

.hosting-cards-section {
    padding: 0 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.hosting-card-premium {
    background: rgba(10, 15, 30, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(59, 130, 246, 0.05);
}

.hosting-card-premium.hc-popular {
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(59, 130, 246, 0.2), inset 0 0 30px rgba(59, 130, 246, 0.1);
}

.hc-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0052ff;
    color: #fff;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 82, 255, 0.5);
    z-index: 10;
}

.hc-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hc-icon-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), inset 0 0 10px rgba(59, 130, 246, 0.2);
}

.hc-icon-ring svg {
    width: 30px;
    height: 30px;
    color: #3b82f6;
}

.hc-title h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.hc-line {
    width: 40px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.hc-line-popular {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

.hc-body {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.hc-left {
    flex: 1;
}

.hc-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.hc-price .val {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.hc-price .curr {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.hc-features {
    list-style: none;
    padding: 0;
}

.hc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1.1rem;
}

.hc-features li svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #3b82f6;
    stroke-width: 2;
}

.hc-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    max-width: 200px;
    animation: floatDynamic 6s infinite alternate ease-in-out;
    filter: drop-shadow(0 20px 30px rgba(59, 130, 246, 0.4));
}

.hc-btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.hc-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: #fff;
}

.hc-btn-solid {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: linear-gradient(90deg, #0052ff, #00b4ff);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
}

.hc-btn-solid:hover {
    box-shadow: 0 15px 30px rgba(0, 82, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hosting-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .hc-body {
        flex-direction: column;
    }
    .hc-right {
        margin-top: 30px;
    }
}

/* Premium Portfolio Design */
.portfolio-hero {
    text-align: center;
    padding: 100px 5% 40px;
    position: relative;
}

.portfolio-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.portfolio-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.glow-divider-center {
    width: 60px;
    height: 4px;
    background: #3b82f6;
    margin: 0 auto 40px;
    border-radius: 2px;
    box-shadow: 0 0 15px #3b82f6;
    position: relative;
}
.glow-divider-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px #3b82f6;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
    background: #0f2c68;
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.portfolio-grid-section {
    padding: 0 5% 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.port-card {
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.05);
}

.port-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), inset 0 0 30px rgba(59, 130, 246, 0.1);
}

.port-image {
    flex: 0 0 55%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.port-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.port-card:hover .port-image img {
    transform: scale(1.05);
}

.port-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.port-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
    align-self: flex-start;
}

.port-tag.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.port-tag.cyan { background: rgba(6, 182, 212, 0.15); color: #67e8f9; border: 1px solid rgba(6, 182, 212, 0.3); }
.port-tag.blue { background: rgba(59, 130, 246, 0.15); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.3); }
.port-tag.green { background: rgba(34, 197, 94, 0.15); color: #86efac; border: 1px solid rgba(34, 197, 94, 0.3); }

.port-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.port-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.port-tech {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.port-tech span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.port-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.port-link:hover {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@media (max-width: 1200px) {
    .port-card { flex-direction: column; }
    .port-image { flex: auto; width: 100%; height: 250px; }
}
@media (max-width: 768px) {
    .port-grid { grid-template-columns: 1fr; }
}

/* Home Hosting Premium Design */
.hosting-home-premium {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hhp-header {
    text-align: center;
    margin-bottom: 60px;
}

.hhp-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.hhp-line {
    flex: 1;
    height: 1px;
    max-width: 200px;
    background: linear-gradient(90deg, transparent, #3b82f6);
    position: relative;
}
.hhp-line:last-child {
    background: linear-gradient(270deg, transparent, #3b82f6);
}
.hhp-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #3b82f6;
}
.hhp-line:last-child::after {
    left: 0;
    right: auto;
}

.hhp-title-wrap h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
}

.hhp-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.hhp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hhp-card {
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.hhp-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(59, 130, 246, 0.1);
}

.hhp-popular {
    border-color: #3b82f6;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), inset 0 0 30px rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.hhp-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.hhp-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.hhp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}
.hhp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hhp-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.hhp-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.hhp-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 30px;
}

.hhp-price {
    margin-bottom: 30px;
}

.hhp-price .val {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hhp-price .curr {
    font-size: 1rem;
    color: var(--text-muted);
}

.hhp-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.hhp-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.hhp-features li svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #3b82f6;
    stroke-width: 2;
    flex-shrink: 0;
}

.hhp-btn-outline, .hhp-btn-solid {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.hhp-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}
.hhp-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: #fff;
}

.hhp-btn-solid {
    background: linear-gradient(90deg, #0052ff, #00b4ff);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
}
.hhp-btn-solid:hover {
    box-shadow: 0 15px 30px rgba(0, 82, 255, 0.5);
    transform: translateY(-2px);
}

.hhp-footer-bar {
    display: flex;
    justify-content: space-between;
    background: rgba(10, 15, 30, 0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.hhp-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hhp-bar-icon {
    font-size: 2rem;
}

.hhp-bar-item strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.hhp-bar-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .hhp-grid { grid-template-columns: 1fr; }
    .hhp-popular { transform: none; }
    .hhp-popular:hover { transform: translateY(-10px); }
    .hhp-footer-bar { flex-direction: column; }
}
