* {
    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);
}

.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-bg.jpg') 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;
}