/* =========================
   WORDPRESS PAGE — HERO (LIGHT THEME)
========================= */

.wp-hero {
    position: relative;
    background: linear-gradient(135deg, #eef2ff 0%, #f0f5ff 50%, #e8f0fe 100%);
    padding: 90px 0 0;
    overflow: hidden;
    color: #0f172a;
}

.wp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.wp-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.wp-glow-1 {
    width: 500px;
    height: 500px;
    background: #4169E1;
    top: -200px;
    right: 0;
    opacity: 0.07;
}

.wp-glow-2 {
    width: 350px;
    height: 350px;
    background: #a5b4fc;
    bottom: 0;
    left: -80px;
    opacity: 0.08;
}

.wp-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(65, 105, 225, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(65, 105, 225, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.wp-bg-watermark {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 400px;
    font-weight: 900;
    color: rgba(65, 105, 225, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: 'Georgia', serif;
}

.wp-hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.wp-hero-left {
    flex: 1;
    min-width: 0;
}

.wp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(65, 105, 225, 0.1);
    color: #3b5fc0;
    border: 1px solid rgba(65, 105, 225, 0.25);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.wp-badge-dot {
    width: 7px;
    height: 7px;
    background: #4169E1;
    border-radius: 50%;
    animation: wp-blink 2s ease-in-out infinite;
}

@keyframes wp-blink {
    0%, 100% { opacity: 1 }
    50% { opacity: .3 }
}

.wp-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.wp-highlight {
    color: #4169E1;
    text-shadow: none;
}

.wp-hero-sub {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 460px;
}

.wp-hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.wp-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #374151;
}

.wp-feat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wp-icon-wp {
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.2);
    color: #4169E1;
}

.wp-icon-speed {
    background: rgba(255, 108, 44, 0.1);
    border: 1px solid rgba(255, 108, 44, 0.2);
    color: #FF6C2C;
}

.wp-icon-ssl {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.wp-icon-support {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.wp-hero-price {
    font-size: 20px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 24px;
}

.wp-hero-price span {
    color: #0f172a;
    font-weight: 800;
    font-size: 26px;
}

.wp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.wp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4169E1;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 8px 30px rgba(65, 105, 225, 0.3);
}

.wp-btn-primary:hover {
    background: #3154c7;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(65, 105, 225, 0.4);
}

.wp-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #4169E1;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid rgba(65, 105, 225, 0.3);
    transition: 0.25s;
}

.wp-btn-secondary:hover {
    background: #f0f4ff;
    border-color: #4169E1;
}

.wp-hero-trust {
    font-size: 12.5px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wp-trust-dot {
    opacity: 0.35;
    font-size: 18px;
}

.wp-hero-right {
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wp-iso-wrap {
    position: relative;
    width: 100%;
}

@keyframes wp-img-levitate {
    0%, 100% { transform: translateY(0px) }
    50% { transform: translateY(-10px) }
}

@keyframes wp-label-float-a {
    0%, 100% { transform: translateY(0px); opacity: 1 }
    50% { transform: translateY(-8px); opacity: .9 }
}

@keyframes wp-label-float-b {
    0%, 100% { transform: translateY(0px); opacity: 1 }
    50% { transform: translateY(-8px); opacity: .9 }
}

@keyframes wp-label-float-c {
    0%, 100% { transform: translateY(0px); opacity: 1 }
    50% { transform: translateY(-8px); opacity: .9 }
}

@keyframes wp-badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4) }
    50% { transform: scale(1.08); box-shadow: 0 6px 28px rgba(65, 105, 225, 0.65) }
}

.wp-hero-img {
    width: 115%;
    max-width: 680px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 24px 70px rgba(65, 105, 225, 0.18));
    margin-left: -7%;
}

.wp-img-float {
    animation: wp-img-levitate 4s ease-in-out infinite;
}

.wp-float-label {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(65, 105, 225, 0.15);
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.12);
    font-family: 'Outfit', sans-serif;
}

.wp-label-perf {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation: wp-label-float-a 3s ease-in-out infinite;
    animation-delay: 0s;
}

.wp-label-sec {
    top: 28%;
    right: -8%;
    animation: wp-label-float-b 3s ease-in-out infinite;
    animation-delay: 1s;
}

.wp-label-backup {
    bottom: 22%;
    left: -4%;
    animation: wp-label-float-c 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* =========================
   HERO WAVE DIVIDER
========================= */
.wp-hero-wave {
    position: relative;
    margin-top: -2px;
    line-height: 0;
    z-index: 2;
}

.wp-hero-wave svg {
    width: 100%;
    height: 90px;
    display: block;
}

/* =========================
   RATINGS SECTION (after trust bar)
========================= */
.wp-ratings-section {
    background: #ffffff;
    padding: 0 0 8px;
    border-bottom: 1px solid #f0f4ff;
}

.wp-ratings-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 0 20px;
}

.wp-ratings-heading {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02em;
}

.wp-ratings-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    background: #f8faff;
    border: 1px solid rgba(65, 105, 225, 0.1);
    border-radius: 16px;
    padding: 16px 32px;
    width: 100%;
    max-width: 860px;
}

.wp-rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 32px;
    min-width: 140px;
}

.wp-ratings-sep {
    width: 1px;
    height: 44px;
    background: rgba(65, 105, 225, 0.12);
    flex-shrink: 0;
}

.wp-rating-stars {
    font-size: 14px;
    color: #22c55e;
    letter-spacing: 1px;
}

.wp-stars-google { color: #4285F4; }
.wp-stars-amber  { color: #f59e0b; }

.wp-rating-score {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.wp-rating-score span {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
}

.wp-rating-label {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
}

.wp-rating-brand {
    font-size: 12px;
    font-weight: 700;
    color: #4169E1;
}

.wp-brand-google { color: #4285F4; }

/* =========================
   PRICING PLANS
========================= */

.wp-plans {
    padding: 80px 0;
    background: #f8faff;
}

.wp-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.wp-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wp-save-badge {
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.wp-toggle-btn {
    width: 48px;
    height: 26px;
    border-radius: 50px;
    background: #e5e7eb;
    border: none;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.wp-toggle-btn.active {
    background: #21759B;
}

.wp-toggle-thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wp-toggle-btn.active .wp-toggle-thumb {
    left: 25px;
}

.wp-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.wp-plan-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: 0.3s;
}

.wp-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.wp-plan-featured {
    border-color: #21759B;
    box-shadow: 0 12px 40px rgba(33, 117, 155, 0.15);
    transform: translateY(-8px);
}

.wp-plan-featured:hover {
    transform: translateY(-12px);
}

.wp-plan-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #21759B;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wp-plan-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.wp-plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.wp-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.wp-plan-desc {
    font-size: 13px;
    color: #6b7280;
}

.wp-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 4px;
}

.wp-price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 6px;
}

.wp-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.wp-plan-featured .wp-price-amount {
    color: #21759B;
}

.wp-price-period {
    font-size: 15px;
    color: #6b7280;
    padding-bottom: 8px;
}

.wp-plan-original {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 24px;
    min-height: 18px;
}

.wp-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.wp-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.wp-feat-disabled {
    color: #9ca3af;
}

.wp-plan-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
}

.wp-plan-btn-primary {
    background: #21759B;
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(33, 117, 155, 0.35);
}

.wp-plan-btn-primary:hover {
    background: #1a5f80;
    transform: translateY(-2px);
}

.wp-plan-btn-outline {
    background: transparent;
    color: #21759B;
    border: 2px solid #21759B;
}

.wp-plan-btn-outline:hover {
    background: rgba(33, 117, 155, 0.07);
}

.wp-plans-note {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 32px;
}

/* =========================
   WHY SKYSERVER SECTION
========================= */

.wp-why {
    padding: 80px 0;
    background: #ffffff;
}

.wp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wp-why-card {
    background: #f8faff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    transition: 0.3s;
}

.wp-why-card:hover {
    border-color: #21759B;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(33, 117, 155, 0.1);
}

.wp-why-number {
    font-size: 36px;
    font-weight: 900;
    color: rgba(33, 117, 155, 0.15);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.wp-why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.wp-why-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* =========================
   CTA OVERRIDES
========================= */

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-align: center;
}

.cta-title span {
    color: rgba(255, 255, 255, 0.9);
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .wp-hero-right {
        flex: 0 0 460px;
    }
    .wp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .wp-hero-container {
        flex-direction: column;
        padding-bottom: 40px;
    }
    .wp-hero-right {
        flex: none;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }
    .wp-hero-img {
        width: 100%;
        margin-left: 0;
    }
    .wp-hero-title {
        font-size: 40px;
    }
    .wp-label-sec {
        display: none;
    }
    .wp-plans-grid {
        grid-template-columns: 1fr;
    }
    .wp-plan-featured {
        transform: none;
    }
    .wp-hero-wave svg {
        height: 60px;
    }
}

@media (max-width: 700px) {
    .wp-ratings-row {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }
    .wp-ratings-sep {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 600px) {
    .wp-hero {
        padding: 60px 0 0;
    }
    .wp-hero-title {
        font-size: 32px;
    }
    .wp-btn-primary,
    .wp-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .wp-hero-actions {
        flex-direction: column;
    }
    .wp-why-grid {
        grid-template-columns: 1fr;
    }
    .wp-bg-watermark {
        display: none;
    }
    .wp-hero-wave svg {
        height: 50px;
    }
}