body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
}

.cruip-landing {
    --cruip-blue: #0ea5e9;
    --cruip-cyan: #22d3ee;
    --cruip-navy: #0b2347;
    --cruip-text: #0f172a;
    --cruip-muted: #475569;
    color: var(--cruip-text);
    background: #ffffff;
}

.cruip-landing a {
    color: var(--cruip-blue);
}

.cruip-landing a:hover,
.cruip-landing a:focus {
    color: #0284c7;
}

.cruip-landing .text-muted {
    color: var(--cruip-muted) !important;
}

.cruip-hero {
    background: radial-gradient(1200px 600px at 20% 10%, rgba(34, 211, 238, 0.35) 0%, rgba(34, 211, 238, 0) 60%),
        radial-gradient(900px 500px at 85% 15%, rgba(14, 165, 233, 0.35) 0%, rgba(14, 165, 233, 0) 60%),
        linear-gradient(135deg, #071a3a 0%, #0b2347 40%, #06284f 100%);
    color: #ffffff;
}

.cruip-hero .cruip-muted,
.cruip-hero .text-muted,
.cruip-hero small,
.cruip-hero .small,
.cruip-hero p,
.cruip-hero li,
.cruip-hero span,
.cruip-hero label {
    color: rgba(255, 255, 255, 0.92) !important;
}

.cruip-hero .form-label {
    color: rgba(255, 255, 255, 0.95) !important;
}

.cruip-hero .cruip-kicker span.opacity-75 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cruip-hero .alert {
    color: rgba(255, 255, 255, 0.95);
}

.cruip-hero a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.cruip-hero a:hover,
.cruip-hero a:focus {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.9);
}

.cruip-hero .cruip-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
}

.cruip-hero h2 {
    color: #ffffff;
    letter-spacing: -0.02em;
}

.cruip-hero p {
    color: rgba(226, 232, 240, 0.9);
}

.cruip-glass-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.cruip-input {
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.25) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.cruip-input::placeholder {
    color: rgba(71, 85, 105, 0.85);
}

.cruip-btn {
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--cruip-blue) 0%, var(--cruip-cyan) 100%);
    border: 0;
}

.cruip-btn:hover,
.cruip-btn:focus {
    filter: brightness(0.95);
}

.cruip-section-title h2 {
    color: var(--cruip-text);
    letter-spacing: -0.02em;
}

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

.cruip-soft {
    background-color: #f8fafc;
    background-image: linear-gradient(180deg, rgba(14, 165, 233, 0.09) 0%, rgba(34, 211, 238, 0.06) 100%);
}

.cruip-landing .pricing-area {
    background-color: #f8fafc !important;
    background-image: linear-gradient(180deg, rgba(14, 165, 233, 0.09) 0%, rgba(34, 211, 238, 0.06) 100%) !important;
}

.cruip-card {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
    overflow: hidden;
}

.cruip-card-header {
    padding: 1rem 1rem 0.75rem 1rem;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.12) 0%, rgba(34, 211, 238, 0.12) 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.cruip-pricing {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cruip-pricing .price {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--cruip-blue) 0%, var(--cruip-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cruip-muted {
    color: var(--cruip-muted) !important;
}

.cruip-video-frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.cruip-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cruip-banner {
    width: 100%;
    height: clamp(200px, 26vw, 380px);
    background: #f1f5f9;
    overflow: hidden;
}

.cruip-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

@media (max-width: 576px) {
    .cruip-banner {
        height: clamp(180px, 52vw, 260px);
    }
}

.cruip-invoice {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
}

.cruip-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.2;
}

.cruip-badge-success {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.cruip-badge-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.22);
}

.cruip-badge-warning {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.cruip-paymethods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .cruip-paymethods {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.cruip-paymethod {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #ffffff;
    padding: 0.75rem;
    height: 100%;
}

.cruip-paymethod img {
    max-height: 26px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
