/* ================================================
   BUSINESS.CSS — Business Hosting Page
   Theme: Light White — unique tint vs shared hosting
   Hero BG: clean white + warm amber/orange hints
   Primary: #4169E1 (site-wide blue)
   Accent:  #FF6C2C (orange — same as hosting.css)
   ================================================ */

/* =========================
   HERO SECTION
   Difference from hosting.css (dark):
   - Light/white background instead of dark navy
   - Subtle warm amber gradient instead of blue glow
   - Cards and text on white surface
========================= */

.biz-hero {
    position: relative;
    background: #ffffff;
    background-image:
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(255, 108, 44, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 10% 60%, rgba(65, 105, 225, 0.04) 0%, transparent 50%);
    padding: 80px 0 0;
    min-height: 540px;
    overflow: hidden;
    color: #0f172a;
}

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

/* Subtle dot grid — different pattern from other pages */
.biz-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(65, 105, 225, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.biz-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.biz-glow-1 {
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 108, 44, 0.08), transparent);
    top: -100px;
    right: -60px;
}

.biz-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(65, 105, 225, 0.06), transparent);
    bottom: 0;
    left: -60px;
}

.biz-glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.05), transparent);
    top: 40%;
    left: 40%;
}

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

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

/* Badge — orange tint (matches sh-hero-badge but light) */
.biz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 108, 44, 0.08);
    color: #d9531c;
    border: 1px solid rgba(255, 108, 44, 0.25);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.biz-badge-dot {
    width: 7px;
    height: 7px;
    background: #FF6C2C;
    border-radius: 50%;
    animation: biz-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes biz-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.biz-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
}

.biz-highlight {
    color: #FF6C2C;
}

.biz-text-accent {
    color: #4169E1;
}

.biz-hero-sub {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 500px;
}

/* Feature list — mirrors sh-hero-features but dark text */
.biz-hero-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.biz-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.biz-feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(65, 105, 225, 0.08);
    border: 1px solid rgba(65, 105, 225, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4169E1;
    flex-shrink: 0;
}

.biz-hero-price {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    font-weight: 500;
}

.biz-hero-price span {
    color: #0f172a;
    font-weight: 800;
    font-size: 26px;
    font-family: 'Outfit', sans-serif;
}

.biz-hero-price em {
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

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

/* Outline button for hero */
.biz-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #475569;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid #d1d5db;
    transition: 0.25s;
}

.biz-btn-outline:hover {
    border-color: rgba(65, 105, 225, 0.5);
    color: #4169E1;
}

.biz-hero-trust {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.biz-trust-dot {
    opacity: 0.4;
    font-size: 18px;
}

/* =========================
   RIGHT — Dashboard card (light)
========================= */

.biz-hero-right {
    flex: 0 0 460px;
    position: relative;
}

.biz-dash-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 50px rgba(65, 105, 225, 0.1),
        0 0 0 1px rgba(65, 105, 225, 0.05);
}

/* Card header */
.biz-dash-header {
    background: #f8faff;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.biz-dash-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.biz-dash-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4169E1, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.biz-dash-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.biz-dash-sub {
    font-size: 11px;
    color: #64748b;
}

.biz-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.biz-live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: biz-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Metrics grid */
.biz-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.biz-metric-box {
    background: #fff;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.biz-metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-icon-blue {
    background: rgba(65, 105, 225, 0.1);
    color: #4169E1;
}

.biz-icon-green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.biz-icon-amber {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.biz-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.biz-metric-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.biz-metric-val {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

/* Uptime row */
.biz-uptime-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: #f0fdf4;
    border-bottom: 1px solid #f1f5f9;
    font-size: 12px;
    color: #15803d;
    font-weight: 600;
}

.biz-uptime-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: biz-blink 2s ease-in-out infinite;
}

.biz-uptime-bar-wrap {
    flex: 1;
    height: 5px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50px;
    overflow: hidden;
}

.biz-uptime-bar {
    width: 99.9%;
    height: 100%;
    background: #22c55e;
    border-radius: 50px;
}

/* Pills */
.biz-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.biz-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.biz-pill-green {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.biz-pill-blue {
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
}

.biz-pill-orange {
    background: rgba(255, 108, 44, 0.08);
    color: #c44d12;
}

.biz-pill-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

/* Card footer stats */
.biz-card-footer {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 0;
    background: #fafcff;
}

.biz-footer-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.biz-footer-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 400;
}

.biz-footer-stat strong {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.biz-footer-sep {
    width: 1px;
    height: 28px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* Floating chips — mirrors sh-float-label but light */
.biz-float-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(65, 105, 225, 0.2);
    color: #0f172a;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.biz-chip-1 {
    top: -14px;
    left: 24px;
    animation: biz-float-a 3s ease-in-out infinite;
}

.biz-chip-2 {
    top: -14px;
    right: 28px;
    animation: biz-float-b 3s ease-in-out infinite;
    animation-delay: 1s;
}

.biz-chip-3 {
    bottom: 60px;
    right: -16px;
    animation: biz-float-b 3s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes biz-float-a {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes biz-float-b {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* =========================
   PLANS SECTION
========================= */

.biz-plans {
    padding: 80px 0;
    background: #f8faff;
    border-top: 1px solid #e5e7eb;
}

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

/* Plan card */
.biz-plan-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 26px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.biz-plan-card:hover {
    border-color: rgba(65, 105, 225, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(65, 105, 225, 0.1);
}

/* Featured */
.biz-plan-hot {
    border-color: rgba(65, 105, 225, 0.5);
    background: #f0f4ff;
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(65, 105, 225, 0.15);
}

.biz-plan-hot:hover {
    transform: translateY(-12px);
}

.biz-hot-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #4169E1;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.biz-plan-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: #4169E1;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.biz-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

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

.biz-price-sym {
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
    padding-bottom: 6px;
}

.biz-price-num {
    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.biz-plan-hot .biz-price-num {
    color: #4169E1;
}

.biz-price-per {
    font-size: 14px;
    color: #64748b;
    padding-bottom: 8px;
}

.biz-plan-orig {
    font-size: 12px;
    color: #94a3b8;
    min-height: 18px;
    margin-bottom: 18px;
}

.biz-orig-txt {
    text-decoration: line-through;
}

/* Plan buttons */
.biz-plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.biz-btn-primary {
    background: #4169E1;
    color: #fff;
    box-shadow: 0 6px 24px rgba(65, 105, 225, 0.3);
}

.biz-btn-primary:hover {
    background: #3154c7;
    transform: translateY(-1px);
}

.biz-plan-btn.biz-btn-outline {
    background: transparent;
    color: #475569;
    border: 1.5px solid #d1d5db;
    margin-bottom: 20px;
    padding: 13px;
}

.biz-plan-btn.biz-btn-outline:hover {
    border-color: rgba(65, 105, 225, 0.4);
    color: #4169E1;
    background: rgba(65, 105, 225, 0.04);
    transform: none;
}

.biz-plan-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 18px;
}

/* Feature list */
.biz-plan-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.biz-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
    line-height: 1.45;
}

.biz-chk {
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.biz-na {
    color: #d1d5db;
    flex-shrink: 0;
    font-size: 14px;
}

.biz-plans-note {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 32px;
}

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

@media (max-width: 1200px) {
    .biz-hero-right {
        flex: 0 0 420px;
    }

    .biz-plans-grid {
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .biz-hero-right {
        flex: 0 0 360px;
    }

    .biz-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .biz-hero-container {
        flex-direction: column;
        padding-bottom: 40px;
    }

    .biz-hero-right {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .biz-float-chip {
        display: none;
    }

    .biz-hero-title {
        font-size: 38px;
    }

    .biz-plans-grid {
        grid-template-columns: 1fr;
    }

    .biz-plan-hot {
        transform: none;
    }
}

@media (max-width: 600px) {
    .biz-hero {
        padding: 60px 0 0;
        min-height: unset;
    }

    .biz-hero-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .biz-hero-actions {
        flex-direction: column;
    }

    .sh-btn-primary,
    .biz-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .biz-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* CTA overrides for cloud page */
.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.88);
}

.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;
}