* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070b16;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(7, 11, 22, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 800;
}

.logo span {
    color: #00e0ff;
}

.main-nav {
    display: flex;
    gap: 26px;
}

.main-nav a {
    color: #c8d3e6;
    font-size: 15px;
}

.main-nav a:hover {
    color: #00e0ff;
}

.header-btn,
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s;
}

.header-btn,
.btn-primary {
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn:hover,
.header-btn:hover {
    transform: translateY(-2px);
}

.hero {
    padding: 110px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.22), transparent 34%),
        radial-gradient(circle at top right, rgba(124, 60, 255, 0.24), transparent 32%),
        #070b16;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge,
.section-title span,
.quote-box span {
    display: inline-block;
    color: #00e0ff;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero p {
    color: #c8d3e6;
    font-size: 18px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 34px 0;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 18px;
}

.hero-stats strong {
    display: block;
    font-size: 24px;
    color: #00e0ff;
}

.hero-stats span {
    color: #c8d3e6;
    font-size: 14px;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.server-box {
    background: #0d1428;
    border-radius: 24px;
    padding: 26px;
    margin-bottom: 18px;
}

.server-box span {
    width: 14px;
    height: 14px;
    background: #18ff8b;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 18px #18ff8b;
}

.server-box h3 {
    margin: 18px 0 8px;
}

.server-box p {
    color: #c8d3e6;
}

.mini-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
    color: #dbe7ff;
}

.section {
    padding: 90px 0;
    background: #ffffff;
    color: #111827;
}

.dark-section {
    background: #0b1020;
    color: #fff;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 14px;
}

.section-title p {
    color: #667085;
}

.dark-section .section-title p {
    color: #c8d3e6;
}

.cards,
.pricing-grid,
.process-grid {
    display: grid;
    gap: 24px;
}

.cards {
    grid-template-columns: repeat(4, 1fr);
}

.card,
.price-card,
.process-grid div {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: 0.25s;
}

.card:hover,
.price-card:hover,
.process-grid div:hover {
    transform: translateY(-6px);
}

.icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.card h3,
.price-card h3 {
    margin-bottom: 12px;
}

.card p,
.process-grid p {
    color: #667085;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.price-card {
    position: relative;
    background: #11182d;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-card.featured {
    border-color: #00e0ff;
    box-shadow: 0 0 45px rgba(0, 224, 255, 0.18);
}

.popular {
    position: absolute;
    top: -15px;
    right: 24px;
    background: #00e0ff;
    color: #07101f;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.price {
    font-size: 36px;
    font-weight: 800;
    margin: 18px 0;
}

.price span {
    font-size: 15px;
    color: #c8d3e6;
}

.price-card ul {
    list-style: none;
    margin: 22px 0;
}

.price-card li {
    padding: 9px 0;
    color: #dbe7ff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card .btn {
    margin-right: 8px;
    margin-top: 10px;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-grid strong {
    color: #00a7c7;
    font-size: 28px;
}

.quote-section {
    background: linear-gradient(135deg, #07101f, #11182d);
    color: #fff;
}

.quote-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.quote-box h2 {
    font-size: 42px;
    margin-bottom: 14px;
}

.quote-box p {
    color: #c8d3e6;
}

.quote-form {
    display: grid;
    gap: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
}

.quote-form textarea {
    min-height: 130px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #b8c3d8;
}

.quote-form button {
    border: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #fff;
    font-weight: 800;
}

.site-footer {
    background: #050812;
    color: #c8d3e6;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-grid h3,
.footer-grid h4 {
    color: #fff;
    margin-bottom: 14px;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
}

.footer-grid a:hover {
    color: #00e0ff;
}

.footer-bottom {
    text-align: center;
    padding: 22px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 950px) {

    .hero-grid,
    .quote-box {
        grid-template-columns: 1fr;
    }

    .cards,
    .pricing-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        display: none;
    }
}

@media (max-width: 600px) {

    .cards,
    .pricing-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-btn {
        display: none;
    }

    .hero {
        padding-top: 80px;
    }
}

.hero-v2 {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(7, 11, 22, 0.78), rgba(7, 11, 22, 0.92)),
        url('../images/hero-section01.png') center/cover no-repeat;
}

.hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.45;
    pointer-events: none;
}

.hero-v2 .container {
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

.hero-glow-one {
    background: #00e0ff;
    top: 8%;
    left: -120px;
}

.hero-glow-two {
    background: #7c3cff;
    right: -130px;
    bottom: 5%;
    animation-delay: 1.5s;
}

@keyframes floatGlow {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-35px) scale(1.12);
    }
}

.hero-v2 .hero-content h1 {
    max-width: 820px;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
    max-width: 720px;
}

.hero-trust div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.hero-trust strong {
    display: block;
    color: #00e0ff;
    font-size: 22px;
    margin-bottom: 4px;
}

.hero-trust span {
    color: #c8d3e6;
    font-size: 14px;
}

.hero-dashboard {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(22px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dashboard-top div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-top small {
    color: #c8d3e6;
}

.status-dot {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 50%;
    background: #18ff8b;
    box-shadow: 0 0 18px #18ff8b;
}

.dashboard-card {
    background: rgba(5, 8, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 22px;
}

.main-server-card {
    display: flex;
    gap: 18px;
    align-items: center;
}

.server-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 28px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
}

.main-server-card p {
    color: #c8d3e6;
    font-size: 14px;
}

.dashboard-bars {
    margin-top: 24px;
    display: grid;
    gap: 18px;
}

.dashboard-bars span {
    display: block;
    color: #dbe7ff;
    margin-bottom: 8px;
    font-size: 14px;
}

.bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
}

.floating-panel {
    position: absolute;
    min-width: 135px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(5, 8, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
    animation: floatingPanel 4s ease-in-out infinite alternate;
}

.floating-panel strong {
    display: block;
    color: #00e0ff;
    font-size: 22px;
}

.floating-panel span {
    color: #c8d3e6;
    font-size: 13px;
}

.panel-one {
    top: -35px;
    right: -20px;
}

.panel-two {
    bottom: -35px;
    left: -25px;
    animation-delay: 1s;
}

@keyframes floatingPanel {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-14px);
    }
}

@media (max-width: 950px) {
    .hero-v2 {
        min-height: auto;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .panel-one,
    .panel-two {
        position: static;
        margin-top: 14px;
    }
}

@media (max-width: 600px) {
    .hero-v2 .hero-content h1 {
        font-size: 38px;
    }

    .hero-dashboard {
        padding: 20px;
        border-radius: 24px;
    }

    .main-server-card {
        align-items: flex-start;
    }
}

.trusted-section {
    padding: 42px 0;
    background: #050812;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trusted-title {
    text-align: center;
    margin-bottom: 26px;
}

.trusted-title span {
    display: inline-block;
    color: #00e0ff;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px;
}

.trusted-title p {
    color: #c8d3e6;
    font-size: 15px;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.trusted-grid div {
    min-height: 72px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: 0.25s;
}

.trusted-grid div:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 224, 255, 0.55);
    box-shadow: 0 20px 55px rgba(0, 224, 255, 0.12);
}

.stats-section {
    padding: 55px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.14), transparent 30%),
        #070b16;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 32px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    transition: 0.25s;
}

.stat-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(0, 224, 255, 0.16);
    top: -40px;
    right: -40px;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 224, 255, 0.55);
}

.stat-card strong {
    display: block;
    position: relative;
    z-index: 1;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 12px;
    color: #00e0ff;
}

.stat-card span {
    display: block;
    position: relative;
    z-index: 1;
    color: #dbe7ff;
    font-weight: 700;
}

@media (max-width: 950px) {
    .trusted-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.why-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.13), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.16), transparent 32%),
        #070b16;
    color: #fff;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.32;
    pointer-events: none;
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-section .section-title p {
    color: #c8d3e6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transition: 0.28s;
}

.why-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -70px;
    right: -70px;
    border-radius: 50%;
    background: rgba(0, 224, 255, 0.15);
    transition: 0.28s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 224, 255, 0.55);
    box-shadow: 0 30px 90px rgba(0, 224, 255, 0.12);
}

.why-card:hover::before {
    transform: scale(1.25);
    background: rgba(124, 60, 255, 0.18);
}

.why-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    font-size: 30px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    box-shadow: 0 18px 35px rgba(0, 224, 255, 0.18);
}

.why-card h3 {
    position: relative;
    z-index: 1;
    font-size: 22px;
    margin-bottom: 12px;
}

.why-card p {
    position: relative;
    z-index: 1;
    color: #c8d3e6;
}

@media (max-width: 950px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }
}

.portfolio-section {
    padding: 95px 0;
    background: #ffffff;
    color: #111827;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.portfolio-card {
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    transition: 0.28s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.featured-project {
    border-color: rgba(0, 224, 255, 0.8);
}

.portfolio-image {
    height: 230px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.20), transparent 34%),
        linear-gradient(135deg, #0b1020, #141b35);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.35s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
    opacity: 1;
}

.portfolio-content {
    padding: 28px;
}

.portfolio-content h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.portfolio-content p {
    color: #667085;
    margin-bottom: 18px;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.tags span {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef7ff;
    color: #007894;
    font-size: 13px;
    font-weight: 800;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007894;
    font-weight: 900;
}

.portfolio-link::after {
    content: "→";
    transition: 0.25s;
}

.portfolio-link:hover::after {
    transform: translateX(5px);
}

@media (max-width: 950px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 260px;
    }
}

.testimonials-section {
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.11), transparent 32%),
        #f8fafc;
    color: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    transition: 0.28s;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -30px;
    right: 22px;
    font-size: 130px;
    line-height: 1;
    color: rgba(0, 224, 255, 0.11);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.featured-testimonial {
    border-color: rgba(0, 224, 255, 0.7);
    box-shadow: 0 28px 90px rgba(0, 224, 255, 0.14);
}

.stars {
    position: relative;
    z-index: 1;
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 18px;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    color: #475467;
    font-size: 16px;
    margin-bottom: 24px;
}

.client {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.client strong {
    display: block;
    color: #111827;
    font-size: 17px;
}

.client span {
    color: #667085;
    font-size: 14px;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #070b16;
    color: #fff;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.45;
}

.cta-glow-one {
    background: #00e0ff;
    left: -120px;
    top: 10%;
}

.cta-glow-two {
    background: #7c3cff;
    right: -120px;
    bottom: 5%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 35px;
    align-items: center;
    padding: 46px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.cta-inner span {
    display: inline-block;
    color: #00e0ff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.cta-inner h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    margin-bottom: 16px;
}

.cta-inner p {
    color: #c8d3e6;
    max-width: 680px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 950px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .cta-inner {
        padding: 26px;
        border-radius: 26px;
    }

    .cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.package-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.20), transparent 34%),
        #070b16;
    color: #fff;
}

.package-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
}

.package-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.package-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.package-hero p {
    color: #c8d3e6;
    font-size: 18px;
    max-width: 680px;
}

.package-price-box {
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.package-price-box>span {
    color: #00e0ff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.package-price-box h2 {
    font-size: 58px;
    margin: 12px 0 0;
}

.package-price-box p {
    color: #c8d3e6;
    margin-bottom: 22px;
}

.package-price-box ul {
    list-style: none;
}

.package-price-box li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    color: #dbe7ff;
}

.package-price-box li::before {
    content: "✓ ";
    color: #00e0ff;
    font-weight: 900;
}

.package-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-feature-card {
    padding: 30px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
    transition: 0.25s;
}

.package-feature-card:hover {
    transform: translateY(-7px);
}

.package-feature-card p {
    color: #667085;
}

.package-specs-section {
    padding: 90px 0;
    background: #0b1020;
    color: #fff;
}

.package-specs-section .section-title p {
    color: #c8d3e6;
}

.specs-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
}

.specs-box div {
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.specs-box strong {
    display: block;
    color: #00e0ff;
    margin-bottom: 8px;
}

.specs-box span {
    color: #dbe7ff;
}

.package-faq-section {
    padding: 90px 0;
    background: #f8fafc;
    color: #111827;
}

.faq-list {
    max-width: 850px;
    margin: auto;
    display: grid;
    gap: 14px;
}

.faq-list details {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
    color: #111827;
}

.faq-list p {
    margin-top: 14px;
    color: #667085;
}

.package-buy-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.13), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.15), transparent 32%),
        #070b16;
    color: #fff;
}

.buy-box {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
}

.buy-box span {
    display: inline-block;
    color: #00e0ff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.buy-box h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin-bottom: 14px;
}

.buy-box p {
    color: #c8d3e6;
}

.paypal-demo-box {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.paypal-demo-box .btn {
    margin-top: 12px;
    margin-right: 8px;
}

@media (max-width: 950px) {

    .package-hero-grid,
    .buy-box {
        grid-template-columns: 1fr;
    }

    .package-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .package-features-grid,
    .specs-box {
        grid-template-columns: 1fr;
    }

    .paypal-demo-box .btn {
        width: 100%;
        text-align: center;
    }
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 34px;
    left: 0;
    min-width: 230px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(7, 11, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s;
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #c8d3e6;
}

.dropdown-menu a:hover {
    background: rgba(0, 224, 255, 0.10);
    color: #00e0ff;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

@media (max-width: 950px) {

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;

        background: #070b16;
        border-top: 1px solid rgba(255, 255, 255, 0.10);

        padding: 15px;

        display: none;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 14px;
        border-radius: 12px;
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-menu a:hover {
        background: rgba(0, 224, 255, 0.10);
        color: #00e0ff;
    }
}

.compare-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.20), transparent 34%),
        #070b16;
    color: #fff;
}

.compare-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
}

.compare-hero .container {
    position: relative;
    z-index: 2;
}

.compare-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    max-width: 900px;
    margin-bottom: 20px;
}

.compare-hero p {
    color: #c8d3e6;
    font-size: 18px;
    max-width: 760px;
}

.compare-section {
    padding: 95px 0;
    background: #f8fafc;
    color: #111827;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    border: 1px solid #e5e7eb;
    background: #fff;
}

.compare-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

.compare-table th {
    background: #0b1020;
    color: #fff;
    padding: 22px;
    text-align: left;
    font-size: 15px;
}

.compare-table th:nth-child(3) {
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
}

.compare-table td {
    padding: 20px 22px;
    border-bottom: 1px solid #e5e7eb;
    color: #475467;
    font-weight: 700;
}

.compare-table td:first-child {
    color: #111827;
    font-weight: 900;
}

.compare-table tr:hover td {
    background: #f9fbff;
}

.compare-table .yes {
    color: #079455;
    font-size: 22px;
    font-weight: 900;
}

.compare-table .no {
    color: #98a2b3;
    font-size: 22px;
}

.compare-table .optional {
    color: #b54708;
}

.compare-note {
    margin-top: 18px;
    color: #667085;
    font-size: 14px;
}

.compare-actions-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compare-plan-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    transition: 0.25s;
}

.compare-plan-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
}

.compare-plan-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.compare-plan-card p {
    color: #667085;
    margin-bottom: 22px;
}

.compare-plan-card .btn {
    margin-right: 8px;
    margin-top: 8px;
}

.featured-compare {
    border-color: rgba(0, 224, 255, 0.7);
    box-shadow: 0 28px 90px rgba(0, 224, 255, 0.13);
}

.featured-compare>span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #00e0ff;
    color: #07101f;
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 950px) {
    .compare-actions-grid {
        grid-template-columns: 1fr;
    }
}

.form-message {
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 800;
}

.form-message.success {
    background: rgba(24, 255, 139, 0.12);
    border: 1px solid rgba(24, 255, 139, 0.35);
    color: #18ff8b;
}

.form-message.error {
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.35);
    color: #ff6b6b;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-legal a {
    color: #c8d3e6;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #00e0ff;
}

.legal-page {
    padding: 100px 0;
    background: #f8fafc;
    color: #111827;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    color: #111827 !important;
    margin-bottom: 30px;
    font-size: 42px;
}

.legal-page h2 {
    color: #111827 !important;
    margin-top: 35px;
    margin-bottom: 12px;
}

.legal-page h3 {
    color: #111827 !important;
}

.legal-page p,
.legal-page li {
    line-height: 1.8;
    color: #475467;
}

.legal-page ul {
    margin-left: 20px;
}

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(7, 11, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
}

.cookie-consent.show {
    display: flex;
}

.cookie-text strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 6px;
}

.cookie-text p {
    color: #c8d3e6;
    max-width: 760px;
}

.cookie-text a {
    color: #00e0ff;
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions button {
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
}

#acceptCookies {
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #fff;
}

#declineCookies {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 700px) {
    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: 0.25s;
}

.logo:hover img {
    transform: scale(1.03);
}

.site-header {
    transition: 0.28s ease;
}

.header-inner {
    transition: 0.28s ease;
}

.logo img {
    transition: 0.28s ease;
}

.site-header.header-shrink {
    background: rgba(7, 11, 22, 0.96);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.32);
    border-bottom-color: rgba(0, 224, 255, 0.16);
}

.site-header.header-shrink .header-inner {
    height: 64px;
}

.site-header.header-shrink .logo img {
    height: 58px;
}

.site-header.header-shrink .header-btn {
    padding: 10px 20px;
}

.order-success-box {
    margin-top: 34px;
    margin-bottom: 32px;
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.order-success-box div {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.order-success-box strong {
    display: block;
    color: #00e0ff;
    font-size: 14px;
    margin-bottom: 6px;
}

.order-success-box span {
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 600px) {
    .order-success-box {
        grid-template-columns: 1fr;
    }
}

.cta-next-card {
    margin-left: 0;

    padding: 35px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);
}

.cta-next-card {
    padding: 35px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    max-width: 760px;


}

.admin-orders-hero {
    padding: 115px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.20), transparent 34%),
        #070b16;
    color: #fff;
}

.admin-orders-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 16px;
}

.admin-orders-hero p {
    color: #c8d3e6;
}

.admin-orders-section {
    padding: 80px 0;
    background: #f8fafc;
    color: #111827;
}

.admin-orders-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.admin-orders-top h2 {
    color: #111827 !important;
    font-size: 34px;
    margin-bottom: 4px;
}

.admin-orders-top p {
    color: #667085;
}

.orders-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.orders-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

.orders-table th {
    background: #0b1020;
    color: #fff;
    padding: 18px;
    text-align: left;
}

.orders-table td {
    padding: 18px;
    border-bottom: 1px solid #e5e7eb;
    color: #475467;
    font-weight: 700;
}

.orders-table td:nth-child(2) {
    color: #111827;
    font-weight: 900;
}

.order-status {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(24, 255, 139, 0.12);
    color: #079455;
    font-weight: 900;
}

.empty-orders {
    padding: 35px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.empty-orders h3 {
    color: #111827 !important;
    margin-bottom: 8px;
}

.empty-orders p {
    color: #667085;
}

@media (max-width: 700px) {
    .admin-orders-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

.orders-filter-form {
    display: grid;
    grid-template-columns: 1fr 240px auto auto;
    gap: 14px;
    margin-bottom: 30px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.orders-filter-form input,
.orders-filter-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d0d5dd;
    outline: none;
    color: #111827;
}

.orders-filter-form button,
.clear-filter,
.details-btn {
    border: none;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
}

.orders-filter-form button,
.details-btn {
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #fff;
}

.clear-filter {
    background: #eef2f7;
    color: #111827;
}

.details-btn {
    padding: 10px 15px;
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(5, 8, 18, 0.76);
    backdrop-filter: blur(10px);
}

.order-modal.show {
    display: grid;
}

.order-modal-box {
    position: relative;
    width: min(680px, 100%);
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.order-modal-box h2 {
    color: #111827 !important;
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #eef2f7;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.modal-details-grid div {
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.modal-details-grid strong {
    display: block;
    color: #007894;
    margin-bottom: 6px;
}

.modal-details-grid span {
    color: #111827;
    font-weight: 900;
}

@media (max-width: 800px) {
    .orders-filter-form {
        grid-template-columns: 1fr;
    }

    .modal-details-grid {
        grid-template-columns: 1fr;
    }
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.language-menu {
    position: absolute;
    top: 50px;
    right: 0;

    min-width: 180px;

    background: rgba(7, 11, 22, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    backdrop-filter: blur(14px);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.25s;

    z-index: 999;
}

.language-menu a {
    display: block;

    padding: 12px 16px;

    color: #c8d3e6;

    border-radius: 12px;
}

.language-menu a:hover {
    background: rgba(0, 224, 255, 0.08);
    color: #00e0ff;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quote-form select {
    color: #ffffff;
}

.quote-form select option {
    background: #2b2b2c;
    color: #ffffff;
}

select {
    background: #494a4d;
    color: #ffffff;
}

@media (max-width: 950px) {
    .language-dropdown {
        display: none;
    }
}

.inquiry-section {
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.11), transparent 32%),
        #ffffff;
    color: #111827;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.inquiry-card {
    padding: 32px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    transition: 0.28s;
}

.inquiry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.inquiry-card h3 {
    color: #111827 !important;
    font-size: 24px;
    margin-bottom: 12px;
}

.inquiry-card p {
    color: #667085;
    margin-bottom: 24px;
}

@media (max-width: 950px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;

    max-height: calc(100vh - 80px);

    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
}
/* ===============================
   DF WEB STUDIO PREMIUM HEADER v3
================================ */

.site-header {
    position: fixed;
    top: 6px;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    border-bottom: none;
    padding: 0;
    transition:
        top .35s ease,
        transform .35s ease,
        background .35s ease;
}

.header-inner {
    height: 76px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(7, 11, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.site-header.header-shrink {
    top: 0;
}

.site-header.header-shrink .header-inner {
    height: 66px;
    background: rgba(7, 11, 22, 0.94);
    border-color: rgba(0, 224, 255, .20);

    backdrop-filter: blur(28px);

    box-shadow:
        0 15px 45px rgba(0,0,0,.35),
        0 0 25px rgba(0,224,255,.08);
}

.logo img {
    height: 64px;
}

.site-header.header-shrink .logo img {
    height: 58px;
}

.main-nav {
    align-items: center;
    gap: 8px;
}

.main-nav > a,
.dropdown-trigger {
    position: relative;
    padding: 11px 14px;
    border-radius: 999px;
    color: #dbe7ff;
    font-weight: 800;
    font-size: 14px;
    transition: 0.25s ease;
}

.main-nav > a::after,
.dropdown-trigger::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.25s ease;
}

.main-nav > a:hover,
.dropdown-trigger:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.main-nav > a:hover::after,
.dropdown-trigger:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-btn {
    position: relative;
    overflow: hidden;
    padding: 12px 22px;
    box-shadow: 0 12px 34px rgba(0, 224, 255, 0.22);
}

.header-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    transition: 0.45s ease;
}

.header-btn:hover::before {
    left: 130%;
}

.dropdown-menu {
    top: 48px;
    min-width: 250px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(7, 11, 22, 0.96);
    border: 1px solid rgba(0, 224, 255, 0.18);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.dropdown-menu a {
    font-weight: 800;
}

.mobile-menu-btn {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    display: block;
    margin: 3px 0;
    border-radius: 999px;
    background: #ffffff;
    transition: 0.25s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    top: 92px;
    left: 4%;
    right: 4%;
    padding: 18px;
    border-radius: 28px;
    background: rgba(7, 11, 22, 0.96);
    border: 1px solid rgba(0, 224, 255, 0.18);
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.mobile-menu a {
    font-weight: 800;
}

.mobile-menu .mobile-cta {
    text-align: center;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #ffffff;
}

@media (max-width: 950px) {
   .site-header {
    top: 0;
}

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
    }

    .header-btn {
        display: none;
    }

    .header-inner {
        height: 70px;
    }

    .logo img {
        height: 58px;
    }
}

@media (max-width: 600px) {
    .container.header-inner {
        width: min(94%, 1200px);
    }

    .mobile-menu {
        left: 3%;
        right: 3%;
    }
}
.header-inner::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:999px;
    padding:1px;

    background:linear-gradient(
        90deg,
        rgba(0,224,255,.25),
        rgba(124,60,255,.15),
        rgba(0,224,255,.25)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    opacity:.45;
    pointer-events:none;
}
.header-inner{
    position:relative;
}
/* ===============================
   DF WEB STUDIO HERO v3
================================ */

.hero-v3 {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 95px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,224,255,.18), transparent 32%),
        radial-gradient(circle at 85% 25%, rgba(124,60,255,.20), transparent 34%),
        linear-gradient(135deg, #050812 0%, #070b16 45%, #0b1020 100%);
    color: #fff;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .45;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
}

.hero-v3::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(5,8,18,.55) 78%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    opacity: .55;
    animation: heroOrbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-one {
    width: 360px;
    height: 360px;
    background: #00e0ff;
    top: 12%;
    left: -110px;
}

.hero-orb-two {
    width: 430px;
    height: 430px;
    background: #7c3cff;
    right: -150px;
    top: 18%;
    animation-delay: 1.3s;
}

.hero-orb-three {
    width: 260px;
    height: 260px;
    background: #18ff8b;
    right: 25%;
    bottom: -130px;
    opacity: .22;
    animation-delay: 2s;
}

@keyframes heroOrbFloat {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-35px) scale(1.12);
    }
}

.hero-v3-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.hero-v3-content {
    max-width: 780px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: #dffbff;
    font-size: 14px;
    font-weight: 900;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(0,224,255,.22);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(0,224,255,.08);
}

.premium-badge i {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: #18ff8b;
    box-shadow: 0 0 18px #18ff8b;
}

.hero-v3 h1 {
    max-width: 850px;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    text-shadow: 0 22px 75px rgba(0,0,0,.55);
}

.hero-v3 h1::first-line {
    color: #ffffff;
}

.hero-v3 p {
    max-width: 680px;
    color: #c8d3e6;
    font-size: 18px;
}

.hero-v3-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 660px;
    margin-top: 34px;
}

.hero-v3-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    transition: .28s ease;
}

.hero-v3-stats div:hover {
    transform: translateY(-6px);
    border-color: rgba(0,224,255,.45);
    box-shadow: 0 24px 55px rgba(0,224,255,.10);
}

.hero-v3-stats strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #00e0ff;
    margin-bottom: 8px;
}

.hero-v3-stats span {
    color: #dbe7ff;
    font-size: 14px;
    font-weight: 800;
}

.hero-ui-card {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(24px);
    box-shadow:
        0 35px 100px rgba(0,0,0,.48),
        inset 0 1px 0 rgba(255,255,255,.14);
    animation: heroCardFloat 5s ease-in-out infinite alternate;
    max-width:560px;
     margin-left:auto;
}

@keyframes heroCardFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-14px);
    }
}

.hero-ui-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.hero-ui-top div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #18ff8b;
    box-shadow: 0 0 20px #18ff8b;
}

.hero-ui-top small {
    color: #c8d3e6;
}

.hero-ui-main {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 24px;
    border-radius: 26px;
    background: rgba(5,8,18,.72);
    border: 1px solid rgba(255,255,255,.12);
}

.hero-ui-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 30px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    box-shadow: 0 18px 45px rgba(0,224,255,.20);
}

.hero-ui-main h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.hero-ui-main p {
    font-size: 14px;
    color: #c8d3e6;
}

.hero-ui-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.hero-ui-list > div:not(.progress) {
    display: flex;
    justify-content: space-between;
    color: #dbe7ff;
    font-size: 14px;
    font-weight: 800;
}

.progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}

.progress i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    box-shadow: 0 0 18px rgba(0,224,255,.45);
}

.hero-mini-card {
    position: absolute;
    min-width: 132px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(5,8,18,.86);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 22px 60px rgba(0,0,0,.35);
    animation: miniFloat 4s ease-in-out infinite alternate;
}

.hero-mini-card strong {
    display: block;
    color: #00e0ff;
    font-size: 21px;
}

.hero-mini-card span {
    color: #c8d3e6;
    font-size: 13px;
    font-weight: 700;
}

.mini-card-one {
    top: -28px;
    right: -20px;
}

.mini-card-two {
    left: -32px;
    bottom: 82px;
    animation-delay: 1s;
}

.mini-card-three {
    right: 35px;
    bottom: -32px;
    animation-delay: 1.6s;
}

@keyframes miniFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-12px);
    }
}

@media (max-width: 950px) {
    .hero-v3 {
        min-height: auto;
        padding: 125px 0 75px;
    }

    .hero-v3-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-v3-stats {
        grid-template-columns: 1fr;
    }

    .hero-mini-card {
        position: static;
        margin-top: 14px;
    }
}

@media (max-width: 600px) {
    .hero-v3 {
        padding: 112px 0 65px;
    }

    .hero-v3 h1 {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .hero-v3 p {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-ui-card {
        padding: 20px;
        border-radius: 26px;
    }

    .hero-ui-main {
        padding: 20px;
        align-items: flex-start;
    }
}
.hero-v3{
    padding-top:170px;
}
/* ===============================
   DF WEB STUDIO HERO v3.1 POLISH
================================ */

.hero-v3 {
    padding-top: 175px;
}

.hero-v3 h1 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    max-width: 760px;
}

.hero-v3 p {
    max-width: 620px;
}

.hero-actions .btn {
    padding: 15px 30px;
    font-size: 15px;
}

.hero-ui-card {
    max-width: 560px;
    margin-left: auto;
}

.mini-card-one {
    top: -18px;
    right: -8px;
}

.mini-card-two {
    left: -18px;
    bottom: 110px;
}

.mini-card-three {
    right: 20px;
    bottom: -18px;
}

/* premium ring behind dashboard */
.hero-ui-card::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -95px;
    top: -95px;
    border-radius: 50%;
    border: 1px solid rgba(0, 224, 255, 0.10);
    box-shadow:
        0 0 0 70px rgba(124, 60, 255, 0.025),
        0 0 0 140px rgba(0, 224, 255, 0.018);
    animation: heroRingRotate 18s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes heroRingRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* subtle premium text glow */
.hero-v3 h1 {
    text-shadow:
        0 16px 60px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(0, 224, 255, 0.06);
}

/* nicer stat cards */
.hero-v3-stats div {
    min-height: 105px;
}

.hero-v3-stats strong {
    font-size: 34px;
}

/* mobile polish */
@media (max-width: 950px) {
    .hero-v3 {
        padding-top: 125px;
    }

    .hero-ui-card {
        max-width: 100%;
        margin-left: 0;
    }

    .hero-ui-card::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-v3 {
        padding-top: 110px;
    }

    .hero-v3 h1 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .hero-actions .btn {
        padding: 15px 22px;
    }
}
.hero-v3 h1 span{

background:linear-gradient(90deg,#00e0ff,#7c3cff);

-webkit-background-clip:text;

color:transparent;

}
/*==================================
 PREMIUM SERVICES
==================================*/

.premium-services{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    radial-gradient(circle at top left,
    rgba(0,224,255,.12),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(124,60,255,.15),
    transparent 35%),

    #070b16;

}

.premium-services::before{

content:"";

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

background-size:44px 44px;

opacity:.35;

}

.premium-services .container{

position:relative;

z-index:2;

}

.premium-badge-section{

display:inline-block;

padding:10px 18px;

border-radius:999px;

background:rgba(255,255,255,.08);

border:1px solid rgba(0,224,255,.22);

color:#00e0ff;

font-weight:800;

margin-bottom:22px;

}

.premium-services h2{

color:#fff;

font-size:clamp(36px,5vw,60px);

margin-bottom:18px;

}

.premium-services h2 span{

background:linear-gradient(90deg,#00e0ff,#7c3cff);

-webkit-background-clip:text;

color:transparent;

}

.premium-services p{

color:#c8d3e6;

}

.premium-grid{

margin-top:70px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

}

.premium-card{

position:relative;

overflow:hidden;

padding:38px;

border-radius:30px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(18px);

transition:.35s;

}

.premium-card::before{

content:"";

position:absolute;

width:160px;

height:160px;

right:-70px;

top:-70px;

border-radius:50%;

background:rgba(0,224,255,.10);

transition:.35s;

}

.premium-card:hover{

transform:translateY(-12px);

border-color:rgba(0,224,255,.5);

box-shadow:

0 25px 70px rgba(0,224,255,.12);

}

.premium-card:hover::before{

transform:scale(1.4);

background:rgba(124,60,255,.18);

}

.premium-icon{

width:70px;

height:70px;

display:grid;

place-items:center;

border-radius:22px;

font-size:34px;

margin-bottom:24px;

background:linear-gradient(135deg,#00e0ff,#7c3cff);

box-shadow:0 20px 40px rgba(0,224,255,.18);

transition:.35s;

}

.premium-card:hover .premium-icon{

transform:scale(1.12) rotate(-6deg);

}

.premium-card h3{

font-size:24px;

margin-bottom:14px;

color:#fff;

}

@media(max-width:950px){

.premium-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.premium-grid{

grid-template-columns:1fr;

}

}
/* ===============================
   INTERACTIVE PORTFOLIO PREMIUM
================================ */

.portfolio-premium {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #f8fafc;
    color: #111827;
}

.portfolio-premium .section-title h2 {
    color: #111827;
    font-size: clamp(36px, 5vw, 58px);
}

.portfolio-premium .section-title h2 span {
    background: linear-gradient(90deg, #00a7c7, #7c3cff);
    -webkit-background-clip: text;
    color: transparent;
}

.portfolio-premium .section-title p {
    color: #667085;
}

.portfolio-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 65px;
}

.portfolio-premium-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 26px 75px rgba(15, 23, 42, 0.10);
    transition: 0.35s ease;
}

.portfolio-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 34px 95px rgba(15, 23, 42, 0.16);
}

.featured-portfolio {
    border-color: rgba(0, 224, 255, 0.7);
    box-shadow: 0 30px 90px rgba(0, 224, 255, 0.12);
}

.portfolio-screen {
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.20), transparent 35%),
        linear-gradient(135deg, #070b16, #11182d);
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 270px;
    padding: 18px;
}

.screen-top {
    display: flex;
    gap: 8px;
    margin-bottom: 34px;
}

.screen-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.screen-content {
    min-height: 185px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    color: #fff;
    transition: 0.35s ease;
}

.portfolio-premium-card:hover .screen-content {
    transform: scale(1.035);
}

.screen-content strong {
    display: block;
    font-size: 26px;
    margin-bottom: 8px;
}

.screen-content p {
    color: #c8d3e6;
    margin-bottom: 28px;
}

.screen-bars {
    display: grid;
    gap: 12px;
}

.screen-bars i {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00e0ff, #7c3cff);
}

.screen-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.screen-grid-mini i {
    min-height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.30), rgba(124, 60, 255, 0.22));
}

.screen-stat {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    margin: 10px auto 0;
    border-radius: 50%;
    background: conic-gradient(#00e0ff 0 82%, rgba(255,255,255,.12) 82% 100%);
}

.screen-stat b {
    display: block;
    font-size: 38px;
    color: #fff;
    line-height: 1;
}

.screen-stat small {
    color: #dbe7ff;
    font-weight: 800;
}

.portfolio-info {
    padding: 24px 8px 10px;
}

.portfolio-info span {
    display: inline-block;
    color: #00a7c7;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.portfolio-info h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: #667085;
}

@media (max-width: 950px) {
    .portfolio-premium-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-screen {
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .portfolio-premium {
        padding: 90px 0;
    }

    .portfolio-screen {
        min-height: auto;
    }

    .screen-content {
        min-height: auto;
    }
}
/* ===============================
   PREMIUM RADIO HOSTING
================================ */

.premium-hosting {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.14), transparent 32%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.17), transparent 34%),
        #070b16;
    color: #fff;
}

.premium-hosting::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .35;
    pointer-events: none;
}

.premium-hosting .container {
    position: relative;
    z-index: 2;
}

.hosting-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: .45;
}

.hosting-glow-one {
    width: 360px;
    height: 360px;
    background: #00e0ff;
    left: -120px;
    top: 15%;
}

.hosting-glow-two {
    width: 420px;
    height: 420px;
    background: #7c3cff;
    right: -150px;
    bottom: 10%;
}

.hosting-hero-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hosting-content h2 {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    margin-bottom: 20px;
    max-width: 760px;
}

.hosting-content h2 span {
    background: linear-gradient(90deg, #00e0ff, #7c3cff);
    -webkit-background-clip: text;
    color: transparent;
}

.hosting-content p {
    color: #c8d3e6;
    font-size: 18px;
    max-width: 650px;
}

.hosting-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.hosting-features span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #dbe7ff;
    font-weight: 800;
    font-size: 14px;
}

.hosting-dashboard {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(24px);
    box-shadow: 0 35px 100px rgba(0,0,0,.45);
    animation: hostingFloat 5s ease-in-out infinite alternate;
}

@keyframes hostingFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-12px); }
}

.hosting-dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.hosting-dashboard-top div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hosting-dashboard-top small {
    color: #18ff8b;
    font-weight: 900;
}

.hosting-server-box {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 24px;
    background: rgba(5,8,18,.72);
    border: 1px solid rgba(255,255,255,.12);
}

.hosting-server-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 28px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
}

.hosting-server-box p {
    color: #c8d3e6;
    font-size: 14px;
}

.hosting-bars {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.hosting-bars > div:not(.hosting-progress) {
    display: flex;
    justify-content: space-between;
    color: #dbe7ff;
    font-weight: 800;
    font-size: 14px;
}

.hosting-progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}

.hosting-progress i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #00e0ff, #7c3cff);
    box-shadow: 0 0 18px rgba(0,224,255,.45);
}

.hosting-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.hosting-status-grid div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(5,8,18,.65);
    border: 1px solid rgba(255,255,255,.10);
    color: #c8d3e6;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.hosting-status-grid strong {
    display: block;
    color: #18ff8b;
    margin-top: 4px;
}

.hosting-floating {
    position: absolute;
    min-width: 128px;
    padding: 15px 17px;
    border-radius: 20px;
    background: rgba(5,8,18,.78);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0,0,0,.35);
    animation: hostingMiniFloat 4s ease-in-out infinite alternate;
}

.hosting-floating strong {
    display: block;
    color: #00e0ff;
    font-size: 22px;
}

.hosting-floating span {
    color: #c8d3e6;
    font-size: 13px;
    font-weight: 800;
}

.hosting-float-one {
    top: -26px;
    right: -18px;
}

.hosting-float-two {
    left: -24px;
    bottom: 72px;
    animation-delay: 1s;
}

@keyframes hostingMiniFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-12px); }
}

.hosting-plans-title {
    text-align: center;
    margin: 95px auto 45px;
}

.hosting-plans-title span {
    color: #00e0ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.hosting-plans-title h3 {
    font-size: clamp(32px, 4vw, 48px);
    margin-top: 10px;
}

.hosting-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.hosting-plan-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 75px rgba(0,0,0,.28);
    transition: .35s ease;
}

.hosting-plan-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -75px;
    top: -75px;
    border-radius: 50%;
    background: rgba(0,224,255,.12);
    transition: .35s ease;
}

.hosting-plan-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0,224,255,.5);
    box-shadow: 0 32px 90px rgba(0,224,255,.12);
}

.hosting-plan-card:hover::before {
    transform: scale(1.35);
}

.hosting-plan-card.professional {
    border-color: rgba(124,60,255,.65);
    transform: scale(1.04);
    box-shadow: 0 34px 95px rgba(124,60,255,.18);
}

.hosting-plan-card.professional:hover {
    transform: scale(1.04) translateY(-12px);
}

.plan-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
}

.hosting-plan-card h3 {
    position: relative;
    z-index: 1;
    font-size: 27px;
    margin-bottom: 12px;
}

.hosting-price {
    position: relative;
    z-index: 1;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hosting-price span {
    font-size: 15px;
    color: #c8d3e6;
}

.hosting-plan-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 26px 0;
}

.hosting-plan-card li {
    padding: 11px 0;
    color: #dbe7ff;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hosting-plan-card li::before {
    content: "✓ ";
    color: #18ff8b;
    font-weight: 900;
}

.hosting-plan-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hosting-plan-actions .btn {
    flex: 1;
    text-align: center;
    min-width: 130px;
}

@media (max-width: 950px) {
    .hosting-hero-grid,
    .hosting-plans-grid {
        grid-template-columns: 1fr;
    }

    .hosting-plan-card.professional {
        transform: none;
    }

    .hosting-plan-card.professional:hover {
        transform: translateY(-12px);
    }

    .hosting-floating {
        position: static;
        margin-top: 14px;
    }
}

@media (max-width: 600px) {
    .premium-hosting {
        padding: 90px 0;
    }

    .hosting-dashboard {
        padding: 20px;
        border-radius: 26px;
    }

    .hosting-server-box {
        align-items: flex-start;
    }

    .hosting-status-grid {
        grid-template-columns: 1fr;
    }

    .hosting-plan-card {
        padding: 26px;
    }
}
/* ===============================
   HOSTING FINAL POLISH
================================ */

.premium-hosting {
    animation: hostingBgMove 42s ease-in-out infinite alternate;
    background-size: 130% 130%;
}

@keyframes hostingBgMove {
    from {
        background-position: left top;
    }

    to {
        background-position: right bottom;
    }
}

.hosting-features span {
    padding: 12px 18px;
    box-shadow: 0 12px 32px rgba(0, 224, 255, 0.06);
}

.hosting-plan-card.starter,
.hosting-plan-card.enterprise {
    background: rgba(255, 255, 255, 0.065);
}

.hosting-plan-card.professional {
    box-shadow:
        0 34px 95px rgba(124, 60, 255, 0.22),
        0 0 45px rgba(124, 60, 255, 0.12);
}

.hosting-dashboard::after {
    content: "152";
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(5, 8, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #00e0ff;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.hosting-dashboard::before {
    content: "Listeners";
    position: absolute;
    right: 48px;
    bottom: 39px;
    z-index: 2;
    color: #c8d3e6;
    font-size: 12px;
    font-weight: 900;
    transform: translateY(25px);
}

.hosting-status-grid {
    padding-right: 115px;
}

.hosting-plan-actions .btn,
.hosting-content .btn {
    position: relative;
    overflow: hidden;
}

.hosting-plan-actions .btn::before,
.hosting-content .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
    transform: skewX(-20deg);
    transition: .45s ease;
}

.hosting-plan-actions .btn:hover::before,
.hosting-content .btn:hover::before {
    left: 130%;
}

@media (max-width: 950px) {
    .hosting-dashboard::after,
    .hosting-dashboard::before {
        display: none;
    }

    .hosting-status-grid {
        padding-right: 0;
    }

    .hosting-plans-title {
        margin-top: 120px;
    }
}

@media (max-width: 600px) {
    .hosting-plans-title {
        margin-top: 95px;
    }

    .hosting-features span {
        padding: 11px 15px;
    }
}
/* ===============================
   CLIENT SUCCESS PREMIUM
================================ */

.client-success {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.13), transparent 32%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.16), transparent 34%),
        #050812;
    color: #fff;
}

.client-success::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .34;
    pointer-events: none;
}

.client-success .container {
    position: relative;
    z-index: 2;
}

.client-success .section-title h2 {
    color: #fff;
    font-size: clamp(36px, 5vw, 60px);
}

.client-success .section-title h2 span {
    background: linear-gradient(90deg, #00e0ff, #7c3cff);
    -webkit-background-clip: text;
    color: transparent;
}

.client-success .section-title p {
    color: #c8d3e6;
}

.success-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: .42;
}

.success-glow-one {
    width: 360px;
    height: 360px;
    background: #00e0ff;
    left: -120px;
    top: 20%;
}

.success-glow-two {
    width: 420px;
    height: 420px;
    background: #7c3cff;
    right: -150px;
    bottom: 10%;
}

.success-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 65px 0 55px;
}

.success-stat {
    position: relative;
    overflow: hidden;
    padding: 30px 22px;
    border-radius: 28px;
    text-align: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
    transition: .32s ease;
}

.success-stat::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -50px;
    top: -50px;
    border-radius: 50%;
    background: rgba(0,224,255,.12);
}

.success-stat:hover {
    transform: translateY(-8px);
    border-color: rgba(0,224,255,.48);
    box-shadow: 0 30px 80px rgba(0,224,255,.11);
}

.success-stat strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 42px;
    line-height: 1;
    color: #00e0ff;
    margin-bottom: 12px;
}

.success-stat span {
    position: relative;
    z-index: 1;
    color: #dbe7ff;
    font-weight: 800;
}

.success-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.success-review-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 75px rgba(0,0,0,.28);
    transition: .35s ease;
}

.success-review-card::before {
    content: "“";
    position: absolute;
    top: -34px;
    right: 22px;
    font-size: 140px;
    line-height: 1;
    color: rgba(0,224,255,.10);
    font-family: Georgia, serif;
}

.success-review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,224,255,.5);
    box-shadow: 0 34px 90px rgba(0,224,255,.12);
}

.featured-review {
    border-color: rgba(124,60,255,.65);
    box-shadow:
        0 30px 90px rgba(124,60,255,.16),
        0 0 40px rgba(124,60,255,.10);
}

.review-stars {
    position: relative;
    z-index: 1;
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(251,191,36,.25);
}

.success-review-card p {
    position: relative;
    z-index: 1;
    color: #dbe7ff;
    font-size: 16px;
    margin-bottom: 28px;
}

.review-client {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.client-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 14px 35px rgba(0,224,255,.16);
}

.review-client strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.review-client span {
    color: #c8d3e6;
    font-size: 13px;
}

.success-cta {
    margin-top: 60px;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(0,224,255,.11), rgba(124,60,255,.12));
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.success-cta span {
    display: inline-block;
    color: #00e0ff;
    font-weight: 900;
    margin-bottom: 8px;
}

.success-cta h3 {
    font-size: clamp(26px, 3vw, 38px);
}

@media (max-width: 950px) {
    .success-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-reviews-grid {
        grid-template-columns: 1fr;
    }

    .success-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .client-success {
        padding: 90px 0;
    }

    .success-stats-grid {
        grid-template-columns: 1fr;
    }

    .success-review-card {
        padding: 28px;
    }

    .success-cta {
        padding: 26px;
    }

    .success-cta .btn {
        width: 100%;
        text-align: center;
    }
}
/* ===============================
   PREMIUM CONTACT
================================ */

.premium-contact {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 224, 255, 0.13), transparent 32%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.16), transparent 34%),
        #070b16;
    color: #fff;
}

.premium-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .34;
    pointer-events: none;
}

.premium-contact .container {
    position: relative;
    z-index: 2;
}

.contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: .42;
}

.contact-glow-one {
    width: 360px;
    height: 360px;
    background: #00e0ff;
    left: -120px;
    top: 20%;
}

.contact-glow-two {
    width: 420px;
    height: 420px;
    background: #7c3cff;
    right: -150px;
    bottom: 10%;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-content h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    margin-bottom: 22px;
}

.contact-content h2 span {
    background: linear-gradient(90deg, #00e0ff, #7c3cff);
    -webkit-background-clip: text;
    color: transparent;
}

.contact-content p {
    color: #c8d3e6;
    font-size: 18px;
    max-width: 620px;
}

.contact-info-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-info-grid div {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
    transition: .32s ease;
}

.contact-info-grid div:hover {
    transform: translateY(-6px);
    border-color: rgba(0,224,255,.48);
    box-shadow: 0 24px 60px rgba(0,224,255,.10);
}

.contact-info-grid strong {
    display: block;
    color: #00e0ff;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-info-grid span {
    color: #dbe7ff;
    font-weight: 800;
    font-size: 14px;
}

.contact-form-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(24px);
    box-shadow: 0 35px 100px rgba(0,0,0,.45);
}

.contact-form-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(0,224,255,.13);
}

.premium-quote-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.premium-quote-form input,
.premium-quote-form select,
.premium-quote-form textarea {
    background: rgba(5,8,18,.72);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-weight: 700;
    transition: .25s ease;
}

.premium-quote-form input:focus,
.premium-quote-form select:focus,
.premium-quote-form textarea:focus {
    border-color: rgba(0,224,255,.6);
    box-shadow: 0 0 0 4px rgba(0,224,255,.10);
}

.premium-quote-form select option {
    background: #070b16;
    color: #fff;
}

.premium-quote-form button {
    position: relative;
    overflow: hidden;
}

.premium-quote-form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
    transform: skewX(-20deg);
    transition: .45s ease;
}

.premium-quote-form button:hover::before {
    left: 130%;
}

@media (max-width: 950px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .premium-contact {
        padding: 90px 0;
    }

    .contact-info-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 26px;
        border-radius: 28px;
    }
}
/* CONTACT FINAL POLISH */

.contact-form-card {
    max-width: 760px;
    margin-left: auto;
}

.contact-info-grid div {
    min-height: 110px;
}

.premium-contact {
    background-size: 130% 130%;
    animation: contactBgMove 42s ease-in-out infinite alternate;
}

@keyframes contactBgMove {
    from {
        background-position: left top;
    }

    to {
        background-position: right bottom;
    }
}

.contact-form-card:hover {
    border-color: rgba(0, 224, 255, 0.38);
    box-shadow:
        0 38px 110px rgba(0, 0, 0, 0.48),
        0 0 45px rgba(0, 224, 255, 0.08);
}

@media (max-width: 600px) {
    .contact-content h2 {
        font-size: 38px;
    }

    .contact-info-grid div {
        min-height: auto;
    }
}
/*==================================================
 PREMIUM FOOTER
==================================================*/

.premium-footer{
    position:relative;
    overflow:hidden;
    padding:100px 0 35px;
    background:
    radial-gradient(circle at left,#00e0ff18,transparent 35%),
    radial-gradient(circle at right,#7c3cff18,transparent 35%),
    #050812;
}

.premium-footer::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:48px 48px;

    opacity:.30;

    pointer-events:none;
}

.footer-glow{

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    filter:blur(90px);

    opacity:.35;
}

.footer-glow-left{

    left:-140px;

    top:80px;

    background:#00e0ff;
}

.footer-glow-right{

    right:-140px;

    bottom:60px;

    background:#7c3cff;
}

.footer-cta{

    text-align:center;

    max-width:850px;

    margin:0 auto 90px;
}

.footer-cta h2{

    font-size:clamp(40px,5vw,64px);

    color:#fff;

    margin-bottom:20px;
}

.footer-cta p{

    color:#c8d3e6;

    font-size:19px;

    line-height:1.8;

    margin-bottom:35px;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr repeat(4,1fr);

    gap:40px;
}

.footer-brand img{

    max-width:220px;

    margin-bottom:20px;
}

.footer-brand p{

    color:#bfcde3;

    line-height:1.8;
}

.footer-status{

    display:inline-block;

    margin-top:25px;

    padding:12px 18px;

    border-radius:50px;

    background:rgba(0,224,255,.10);

    border:1px solid rgba(0,224,255,.25);

    color:#00e0ff;

    font-weight:700;
}

.footer-grid h4{

    color:#fff;

    margin-bottom:18px;
}

.footer-grid a{

    display:block;

    color:#bfcde3;

    text-decoration:none;

    margin-bottom:12px;

    transition:.25s;
}

.footer-grid a:hover{

    color:#00e0ff;

    transform:translateX(8px);
}

.footer-grid p{

    color:#bfcde3;

    margin-bottom:12px;
}

.footer-bottom-premium{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#8fa4c2;

    font-size:14px;
}

@media(max-width:1100px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom-premium{

flex-direction:column;

gap:10px;

text-align:center;

}

.footer-cta{

margin-bottom:60px;

}

}
/*==================================================
 PREMIUM POLISH
==================================================*/

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(6px);
    transition:
        opacity .75s ease,
        transform .75s ease,
        filter .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #00e0ff, #7c3cff);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0, 224, 255, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0, 224, 255, 0.35);
}

@media (max-width: 600px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}