@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-1: #07101b;
    --navy-2: #0b1830;
    --navy-3: #10274a;
    --navy-4: #15335f;

    --royal-blue: #2f6dff;
    --royal-blue-dark: #194abf;
    --royal-blue-soft: #8db7ff;

    --royal-brown: #7b4d32;
    --royal-brown-dark: #59341f;
    --royal-gold: #d4a164;
    --royal-gold-soft: #f1d5af;
    --royal-gold-fade: rgba(212, 161, 100, 0.18);

    --white: #ffffff;
    --text-main: #f8f3ec;
    --text-soft: rgba(248, 243, 236, 0.85);
    --text-muted: rgba(248, 243, 236, 0.62);

    --glass: rgba(255, 255, 255, 0.055);
    --glass-strong: rgba(255, 255, 255, 0.08);
    --card-border: rgba(241, 213, 175, 0.12);
    --blue-border: rgba(47, 109, 255, 0.20);

    --shadow-main: 0 20px 45px rgba(0, 0, 0, 0.30);
    --shadow-blue: 0 16px 35px rgba(47, 109, 255, 0.20);
    --shadow-gold: 0 12px 32px rgba(212, 161, 100, 0.16);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 38px;

    --transition: 0.32s ease;
    --wrapper: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(47, 109, 255, 0.18), transparent 20%),
        radial-gradient(circle at 85% 8%, rgba(212, 161, 100, 0.10), transparent 18%),
        radial-gradient(circle at 50% 100%, rgba(123, 77, 50, 0.10), transparent 20%),
        linear-gradient(140deg, #06101a 0%, #0b1830 34%, #11284d 66%, #132340 100%);
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}

body::before {
    top: -70px;
    right: -90px;
    background: rgba(47, 109, 255, 0.12);
}

body::after {
    bottom: -100px;
    left: -60px;
    background: rgba(212, 161, 100, 0.10);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

.wrapper {
    width: min(92%, var(--wrapper));
    margin: 0 auto;
}

.announcement-bar {
    background: linear-gradient(90deg, rgba(123, 77, 50, 0.92), rgba(47, 109, 255, 0.92));
    border-bottom: 1px solid rgba(241, 213, 175, 0.18);
}

.announcement-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.announcement-inner strong {
    color: var(--royal-gold-soft);
}

/* progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    z-index: 1200;
    background: linear-gradient(90deg, var(--royal-gold), var(--royal-blue));
    box-shadow: 0 0 18px rgba(47, 109, 255, 0.45);
}

/* splash */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background:
        radial-gradient(circle at center, rgba(47, 109, 255, 0.18), transparent 30%),
        radial-gradient(circle at center, rgba(212, 161, 100, 0.14), transparent 46%),
        linear-gradient(145deg, #06101d, #0b1830, #101f3b);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    animation: splashPulse 1.8s ease-in-out infinite alternate;
}

.splash-logo {
    width: 150px;
    margin: 0 auto 18px;
    filter:
        drop-shadow(0 0 18px rgba(47, 109, 255, 0.35))
        drop-shadow(0 0 22px rgba(212, 161, 100, 0.22));
}

.splash-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.splash-content p {
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.92rem;
}

@keyframes splashPulse {
    from { transform: scale(0.98); }
    to { transform: scale(1.02); }
}

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(7, 16, 28, 0.78);
    border-bottom: 1px solid rgba(241, 213, 175, 0.10);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}

.brand-home-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px;
    box-shadow: var(--shadow-blue), var(--shadow-gold);
    transition: transform var(--transition), box-shadow var(--transition);
}

.brand-home-link:hover .brand-logo,
.brand-home-link:hover .brand-text h1 {
    transform: translateY(-2px);
}

.brand-text h1 {
    font-size: clamp(1.08rem, 2.4vw, 1.82rem);
    line-height: 1.08;
    transition: var(--transition);
}

.brand-text p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(241, 213, 175, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-main);
    cursor: pointer;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.navbar a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    padding: 11px 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
    color: var(--royal-gold-soft);
    background: rgba(212, 161, 100, 0.10);
    box-shadow: inset 0 0 0 1px rgba(212, 161, 100, 0.18);
}

.nav-btn,
.active-btn {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
    color: white !important;
    box-shadow: 0 10px 24px rgba(47, 109, 255, 0.24);
}

.nav-btn:hover,
.active-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(47, 109, 255, 0.30);
}

/* generic */
.section {
    padding: 76px 0;
}

.alt-section {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(241, 213, 175, 0.08);
    border-bottom: 1px solid rgba(241, 213, 175, 0.08);
}

.section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--text-soft);
    max-width: 760px;
    margin: 0 auto;
}

.page-banner {
    position: relative;
    padding: 94px 0 52px;
    text-align: center;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 213, 175, 0.22), transparent);
}

.page-banner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
}

.page-banner p {
    color: var(--text-soft);
    max-width: 760px;
    margin: 0 auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(212, 161, 100, 0.10);
    border: 1px solid rgba(212, 161, 100, 0.20);
    color: var(--royal-gold-soft);
    font-size: 0.92rem;
    letter-spacing: 0.03em;
}

.hero-section {
    position: relative;
    padding: 94px 0 54px;
}

.hero-grid,
.feature-grid,
.services-grid,
.contact-grid,
.two-column,
.app-grid,
.stats-grid,
.mini-highlight-grid,
.footer-grid,
.trust-strip,
.contact-mini-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
}

.hero-text h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.04;
    margin: 18px 0 16px;
    letter-spacing: -0.03em;
    text-shadow: 0 0 20px rgba(47, 109, 255, 0.08);
}

.hero-text p {
    max-width: 690px;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.metric-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    min-width: 150px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(241, 213, 175, 0.10);
    box-shadow: var(--shadow-main);
}

.metric-chip strong {
    color: var(--royal-gold-soft);
    font-size: 1.05rem;
}

.metric-chip span {
    font-size: 0.88rem;
    color: var(--text-soft);
}

.hero-card,
.feature-box,
.service-card,
.content-card,
.app-card,
.cta-box,
.stat-card,
.highlight-card,
.contact-mini-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-main);
    backdrop-filter: blur(12px);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hero-card:hover,
.feature-box:hover,
.service-card:hover,
.content-card:hover,
.app-card:hover,
.stat-card:hover,
.highlight-card:hover,
.contact-mini-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 213, 175, 0.22);
    box-shadow: var(--shadow-main), var(--shadow-blue), var(--shadow-gold);
}

.hero-logo-card {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(47, 109, 255, 0.16), transparent 35%),
        radial-gradient(circle at center, rgba(212, 161, 100, 0.10), transparent 54%),
        rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}

.hero-logo-card::before,
.hero-logo-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-logo-card::before {
    width: 180px;
    height: 180px;
    background: rgba(47, 109, 255, 0.08);
    top: -45px;
    right: -25px;
    filter: blur(15px);
}

.hero-logo-card::after {
    width: 130px;
    height: 130px;
    background: rgba(212, 161, 100, 0.10);
    bottom: -25px;
    left: -15px;
    filter: blur(15px);
}

.hero-logo {
    width: 100%;
    max-width: 440px;
    filter: drop-shadow(0 0 22px rgba(47, 109, 255, 0.25)) drop-shadow(0 0 24px rgba(212, 161, 100, 0.20));
}

.trust-strip {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
}

.highlight-card,
.contact-mini-card {
    text-align: center;
}

.highlight-card span,
.contact-mini-card span {
    display: block;
    color: var(--royal-gold-soft);
    font-weight: 700;
    margin-bottom: 8px;
}

.stats-section {
    padding: 0 0 34px;
}

.stats-grid,
.mini-highlight-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--royal-gold-soft);
    margin-bottom: 6px;
}

.stat-card p,
.highlight-card p,
.contact-mini-card p {
    color: var(--text-soft);
}

.feature-grid,
.services-grid,
.app-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-grid,
.two-column,
.footer-grid,
.contact-mini-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 161, 100, 0.18), rgba(47, 109, 255, 0.18));
    border: 1px solid rgba(241, 213, 175, 0.12);
}

.feature-box h3,
.service-card h3,
.content-card h3,
.app-card h3,
.cta-box h2,
.contact-form-card h3 {
    margin-bottom: 10px;
}

.feature-box p,
.service-card p,
.content-card p,
.app-card p,
.cta-box p {
    color: var(--text-soft);
}

.content-card p + p {
    margin-top: 12px;
}

.service-card p strong {
    color: var(--royal-gold-soft);
}

.service-card .card-label,
.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 0.84rem;
    color: var(--royal-gold-soft);
    background: rgba(212, 161, 100, 0.10);
    border: 1px solid rgba(212, 161, 100, 0.16);
}

button,
.secondary-btn,
.primary-link-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border: none;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px;
}

button,
.primary-link-btn {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
    color: white;
    box-shadow: 0 12px 24px rgba(47, 109, 255, 0.25);
}

button:hover,
.primary-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(47, 109, 255, 0.32);
}

.secondary-btn {
    background: rgba(212, 161, 100, 0.10);
    color: var(--royal-gold-soft);
    border: 1px solid rgba(212, 161, 100, 0.22);
}

.secondary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
    background: rgba(212, 161, 100, 0.16);
    color: #fff;
}

.ghost-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(241, 213, 175, 0.12);
    color: var(--text-main);
}

/* app area */
.app-dashboard-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(241, 213, 175, 0.12);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #39d98a;
    box-shadow: 0 0 12px rgba(57, 217, 138, 0.65);
}

.dashboard-meta {
    color: var(--text-soft);
}

#lightStatus,
#securityStatus {
    margin-top: 14px;
    font-weight: 700;
    color: var(--royal-blue-soft);
}

.status-pill {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    background: rgba(47, 109, 255, 0.10);
    color: var(--royal-blue-soft);
    border: 1px solid rgba(47, 109, 255, 0.18);
}

.status-pill.active {
    background: rgba(57, 217, 138, 0.14);
    color: #bff5d8;
    border-color: rgba(57, 217, 138, 0.22);
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 12px;
    border: 1px solid rgba(212, 161, 100, 0.12);
    background: rgba(8, 17, 31, 0.72);
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(47, 109, 255, 0.48);
    box-shadow: 0 0 0 3px rgba(47, 109, 255, 0.14);
}

.form-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-box {
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(47, 109, 255, 0.16), transparent 36%),
        radial-gradient(circle at bottom, rgba(212, 161, 100, 0.10), transparent 42%),
        rgba(255,255,255,0.04);
}

.center-btn {
    text-align: center;
}

.top-space {
    margin-top: 30px;
}

/* footer */
footer {
    margin-top: 40px;
    background:
        linear-gradient(180deg, rgba(5, 10, 20, 0.96), rgba(4, 8, 18, 1));
    border-top: 1px solid rgba(212, 161, 100, 0.14);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 161, 100, 0.08), transparent 18%),
        radial-gradient(circle at 90% 0%, rgba(47, 109, 255, 0.08), transparent 18%);
    pointer-events: none;
}

.footer-inner {
    padding: 42px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(47, 109, 255, 0.22)) drop-shadow(0 0 14px rgba(212, 161, 100, 0.16));
}

.footer-brand p,
.footer-links p,
.footer-contact p,
.footer-bottom {
    color: var(--text-soft);
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: var(--text-soft);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--royal-gold-soft);
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(241, 213, 175, 0.10);
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(212, 161, 100, 0.12);
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(241, 213, 175, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.94rem;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    text-decoration: none;
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* back to top */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(241, 213, 175, 0.18);
    background: linear-gradient(135deg, rgba(47,109,255,0.95), rgba(25,74,191,0.95));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-main);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 992px) {
    .hero-grid,
    .feature-grid,
    .services-grid,
    .app-grid,
    .stats-grid,
    .mini-highlight-grid,
    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid,
    .two-column,
    .footer-grid,
    .contact-mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo-card {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        align-items: center;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .navbar {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 12px;
    }

    .navbar.show {
        display: flex;
    }

    .navbar a {
        width: 100%;
        text-align: center;
    }

    .hero-grid,
    .feature-grid,
    .services-grid,
    .contact-grid,
    .two-column,
    .app-grid,
    .stats-grid,
    .mini-highlight-grid,
    .trust-strip,
    .footer-grid,
    .contact-mini-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 78px 0 46px;
    }

    .page-banner {
        padding: 74px 0 40px;
    }

    .section {
        padding: 58px 0;
    }

    .brand-logo {
        width: 62px;
        height: 62px;
    }

    .brand-text p {
        font-size: 0.84rem;
    }

    .hero-buttons,
    .app-dashboard-bar,
    .hero-metrics,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    button,
    .secondary-btn,
    .primary-link-btn,
    .ghost-btn {
        width: 100%;
    }

    .hero-logo {
        max-width: 280px;
    }

    .splash-logo {
        width: 120px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .announcement-inner {
        padding: 10px 0;
        font-size: 0.84rem;
    }
}

/* additional page enhancements */
.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
}

.featured-price-card {
    border-color: rgba(47, 109, 255, 0.38);
    box-shadow: var(--shadow-main), 0 0 0 1px rgba(47, 109, 255, 0.18), var(--shadow-blue);
}

.price-tag {
    display: inline-block;
    margin: 10px 0 14px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(212, 161, 100, 0.10);
    border: 1px solid rgba(212, 161, 100, 0.20);
    color: var(--royal-gold-soft);
    font-weight: 700;
}

.card-list {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.card-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--royal-gold);
}

.legal-card {
    padding: 28px;
}

.legal-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.legal-item {
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(241, 213, 175, 0.08);
}

.legal-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.legal-item p {
    color: var(--text-soft);
}
