/* ================================================================
   landing.css — Public-facing marketing / landing pages
   Standalone: no Bootstrap dependency.
   Requires: palette.css loaded first (for --color-brand-* scales).
   ================================================================
   Table of contents
   1.  Local tokens
   2.  Reset & base
   3.  Typography helpers
   4.  Layout — header
   5.  Layout — hero
   6.  Layout — features
   7.  Layout — CTA
   8.  Layout — footer
   9.  Pricing
   10. Subpage variants
   11. Responsive (≤1024px, ≤768px)
   ================================================================ */

/* ────────────────────────────────────────────────────────────────
   1. Local tokens (landing-specific only)
   These map to palette.css scales where possible so a single
   palette edit propagates everywhere.
   ──────────────────────────────────────────────────────────────── */
:root {
    --l-purple:     var(--color-brand-400, #8b5cf6);
    --l-cyan:       #60c7f6;
    --l-black:      #0a0a0f;
    --l-navy:       #1e293b;
    --l-gray:       #9ca3af;
    --l-gray-dark:  #4b5563;
    --l-white:      #ffffff;
}

/* ────────────────────────────────────────────────────────────────
   2. Reset & base
   ──────────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { overflow-x: hidden; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--l-black);
    color: var(--l-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ────────────────────────────────────────────────────────────────
   3. Typography helpers
   ──────────────────────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--l-purple), var(--l-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-title-lg  { font-size: 48px; }
.section-subtitle  { font-size: 18px; color: var(--l-gray); }
.section-subtitle-lg {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--l-gray);
}

/* ────────────────────────────────────────────────────────────────
   4. Header
   ──────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 24px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--l-purple), var(--l-cyan));
    border-radius: 8px;
    color: white;
    font-size: 24px;
}
.logo-text  { @extend .gradient-text; }   /* composed below */
.logo-image { display: block; height: 36px; width: auto; }

/* Nav */
.nav { display: flex; gap: 32px; }

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--l-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--l-cyan); }
.nav-link:focus-visible { outline: 2px solid var(--l-cyan); outline-offset: 4px; border-radius: 6px; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 0; height: 2px;
    background: var(--l-cyan);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--l-purple), var(--l-cyan));
    color: white;
    border: none;
}
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--l-cyan);
    border: 2px solid var(--l-cyan);
}
.btn-outline:hover { background: var(--l-cyan); color: white; }

.btn-register {
    padding: 10px 20px;
    background: transparent;
    color: var(--l-cyan);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 1.5px solid var(--l-cyan);
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}
.btn-register:hover { background: var(--l-cyan); color: var(--l-navy); transform: translateY(-2px); }
.btn-register:focus-visible { outline: 2px solid var(--l-cyan); outline-offset: 3px; }

.btn-login {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--l-purple), var(--l-cyan));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}
.btn-login:hover { box-shadow: 0 0 30px rgba(139, 92, 246, 0.5); transform: translateY(-2px); }
.btn-login:focus-visible { outline: 2px solid var(--l-cyan); outline-offset: 3px; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    border: 3px solid rgba(96, 199, 246, 0.4);
    color: var(--l-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    background: rgba(96, 199, 246, 0.08);
    list-style: none;
}
.lang-toggle::-webkit-details-marker { display: none; }
.lang-switcher[open] .lang-toggle { box-shadow: 0 0 16px rgba(96, 199, 246, 0.35); }

.lang-menu {
    position: absolute;
    top: 44px; right: 0;
    min-width: 120px;
    background: rgba(10, 10, 15, 0.98);
    border: 1px solid rgba(96, 199, 246, 0.35);
    border-radius: 10px;
    padding: 8px;
    display: grid;
    gap: 6px;
    z-index: 1100;
}
.lang-menu a {
    color: var(--l-white);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    transition: all 0.2s ease;
}
.lang-menu a:hover  { background: rgba(96, 199, 246, 0.18); color: var(--l-cyan); }
.lang-menu a.active { background: rgba(96, 199, 246, 0.28); color: var(--l-cyan); }
.lang-toggle:focus-visible,
.lang-menu a:focus-visible { outline: 2px solid var(--l-cyan); outline-offset: 2px; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 24px; height: 2px;
    background: var(--l-white);
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav     { display: none; }
.mobile-overlay { display: none; }

/* ────────────────────────────────────────────────────────────────
   5. Hero
   ──────────────────────────────────────────────────────────────── */
.hero {
    padding: 160px 0 100px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
    pointer-events: none;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--l-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-buttons   { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-stats     { display: flex; gap: 48px; }

.stat { display: flex; flex-direction: column; }
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--l-purple), var(--l-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 14px; color: var(--l-gray); }

/* Hero image */
.hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.35), 0 0 80px rgba(139, 92, 246, 0.2);
}
.hero-main-image { display: block; width: 100%; height: auto; object-fit: contain; }

/* Dashboard mockup */
.dashboard-mockup {
    display: block;
    width: 100%;
    height: auto;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}
.mockup-header {
    background: rgba(30, 41, 59, 0.8);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--l-gray-dark); }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #10b981; }
.mockup-content { padding: 40px; height: 400px; }
.chart-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(96, 199, 246, 0.1));
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.chart-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(96, 199, 246, 0.3), transparent);
    clip-path: polygon(0 100%, 10% 80%, 20% 85%, 30% 60%, 40% 70%, 50% 40%, 60% 45%, 70% 30%, 80% 35%, 90% 20%, 100% 25%, 100% 100%);
}

/* ────────────────────────────────────────────────────────────────
   6. Features
   ──────────────────────────────────────────────────────────────── */
.features { padding: 100px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    background: rgba(30, 41, 59, 0.3);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--l-cyan);
    box-shadow: 0 0 30px rgba(96, 199, 246, 0.2);
    transform: translateY(-4px);
}
.feature-icon  { width: 64px; height: 64px; margin-bottom: 24px; color: var(--l-cyan); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-title { font-family: 'Orbitron', sans-serif; font-size: 24px; margin-bottom: 12px; }
.feature-description { color: var(--l-gray); line-height: 1.8; font-size: 17px; }

/* ────────────────────────────────────────────────────────────────
   7. CTA
   ──────────────────────────────────────────────────────────────── */
.cta {
    padding: 100px 0;
    position: relative;
}
.cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
    pointer-events: none;
}
.cta-content  { text-align: center; position: relative; z-index: 1; }
.cta-title    { font-family: 'Orbitron', sans-serif; font-size: 48px; font-weight: 700; margin-bottom: 16px; }
.cta-subtitle { font-size: 18px; color: var(--l-gray); margin-bottom: 32px; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; }

/* ────────────────────────────────────────────────────────────────
   8. Footer
   ──────────────────────────────────────────────────────────────── */
.footer {
    padding: 80px 0 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}
.footer-logo .logo-image { height: 32px; }
.footer-tagline { color: var(--l-gray); margin-bottom: 24px; }

.social-links { display: flex; gap: 16px; }
.social-links a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--l-cyan);
    transition: all 0.3s ease;
}
.social-links a:hover { background: var(--l-cyan); color: white; }
.social-links svg { width: 20px; height: 20px; }

.footer-heading { font-family: 'Orbitron', sans-serif; font-size: 16px; margin-bottom: 16px; }
.footer-links   { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--l-gray); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--l-cyan); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--l-gray);
    font-size: 14px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--l-gray); text-decoration: none; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--l-cyan); }

/* ────────────────────────────────────────────────────────────────
   9. Pricing
   ──────────────────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
.pricing-card {
    background: rgba(30, 41, 59, 0.3);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card.featured {
    border-color: var(--l-cyan);
    box-shadow: 0 0 40px rgba(96, 199, 246, 0.3);
    transform: scale(1.05);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}
.popular-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--l-purple), var(--l-cyan));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}
.pricing-plan        { font-family: 'Orbitron', sans-serif; font-size: 24px; margin-bottom: 16px; }
.pricing-price       { display: flex; align-items: baseline; margin-bottom: 16px; }
.price-currency      { font-size: 24px; color: var(--l-gray); }
.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--l-purple), var(--l-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-period        { font-size: 18px; color: var(--l-gray); margin-left: 8px; }
.pricing-description { color: var(--l-gray); margin-bottom: 32px; }
.pricing-features    { list-style: none; margin-bottom: 0; }
.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--l-gray);
}
.pricing-features li:last-child { border-bottom: none; }

/* ────────────────────────────────────────────────────────────────
   10. Subpage variants
   ──────────────────────────────────────────────────────────────── */
/* Header page heading — visible on desktop for subpages */
.header-page-heading {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}
.header-page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}
.header-page-subtitle {
    font-size: 15px;
    color: var(--l-gray);
    margin: 0;
    line-height: 1.4;
}

/* Mobile page heading — hidden on desktop, shown on mobile */
.page-heading-mobile {
    display: none;
    padding: 120px 0 40px;
}
.page-heading-mobile .section-header {
    margin-bottom: 0;
}

.landing-content-section { padding: 60px 0 100px; }
.landing-feature-grid    { grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); }
.landing-currency-symbol { font-size: 0.45em; vertical-align: super; }
.landing-pricing-note    { margin-top: 24px; text-align: center; color: var(--l-gray); font-size: 14px; }
.landing-pricing-btn     { width: 100%; }

/* ────────────────────────────────────────────────────────────────
   11. Responsive
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content         { grid-template-columns: 1fr; gap: 48px; }
    .hero-title           { font-size: 42px; }
    .features-grid        { grid-template-columns: 1fr; }
    .footer-content       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pricing-grid         { grid-template-columns: 1fr; gap: 24px; }
    .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    /* Header */
    .header-content  { flex-wrap: nowrap; position: relative; }
    .nav             { display: none; }
    .header-actions  { display: none; }
    .mobile-menu-toggle { display: flex; order: -1; }
    .logo {
        order: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Mobile nav drawer */
    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }
    .mobile-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

    .mobile-nav {
        position: fixed;
        top: 80px; left: 0; bottom: 0;
        width: 290px;
        background: var(--l-black);
        border-right: 1px solid rgba(139, 92, 246, 0.15);
        display: flex !important;
        flex-direction: column;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    .mobile-nav.open { transform: translateX(0); }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        padding: 16px 16px 8px;
        gap: 4px;
    }
    .mobile-nav-link {
        display: block;
        font-family: 'Orbitron', sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #dee4ee;
        text-decoration: none;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    .mobile-nav-link:hover  { background: rgba(255, 255, 255, 0.06); color: var(--l-white); }
    .mobile-nav-link.active { background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(96, 199, 246, 0.15)); color: var(--l-white); }

    .mobile-nav .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 16px;
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mobile-nav .mobile-nav-actions .btn-register,
    .mobile-nav .mobile-nav-actions .btn-login {
        display: block;
        text-align: center;
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 14px;
    }

    .mobile-nav-lang {
        display: flex;
        gap: 8px;
        padding: 16px 16px 8px;
        justify-content: center;
    }
    .mobile-lang-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px; height: 42px;
        border-radius: 8px;
        border: 1.5px solid rgba(96, 199, 246, 0.4);
        background: transparent;
        color: var(--l-white);
        font-family: 'Orbitron', sans-serif;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .mobile-lang-btn.active { background: linear-gradient(135deg, var(--l-purple), var(--l-cyan)); border-color: transparent; color: white; }
    .mobile-lang-btn:hover:not(.active) { background: rgba(96, 199, 246, 0.1); border-color: var(--l-cyan); }

    /* Page heading: hide in header, show in body on mobile */
    .header-page-heading { display: none; }
    .page-heading-mobile { display: block; }

    /* Hero */
    .hero             { padding: 120px 0 60px; }
    .hero-title       { font-size: 28px; }
    .hero-subtitle    { font-size: 16px; }
    .hero-buttons     { flex-direction: column; }
    .hero-buttons .btn { padding: 14px 20px; font-size: 14px; }
    .hero-stats       { flex-direction: row; gap: 24px; justify-content: space-between; }
    .stat             { align-items: center; text-align: center; }
    .stat-number      { font-size: 24px; }
    .hero-image       { box-shadow: 0 0 20px rgba(139, 92, 246, 0.25); }

    /* Sections */
    .section-title,
    .section-title-lg  { font-size: 26px; }
    .section-subtitle,
    .section-subtitle-lg { font-size: 16px; }
    .section-header    { margin-bottom: 32px; }

    /* Features */
    .feature-card        { padding: 24px; }
    .feature-icon        { width: 48px; height: 48px; margin-bottom: 16px; }
    .feature-title       { font-size: 20px; }
    .feature-description { font-size: 16px; }

    /* CTA */
    .cta            { padding: 60px 0; }
    .cta-title      { font-size: 24px; }
    .cta-subtitle   { font-size: 16px; }
    .cta-buttons    { flex-direction: column; }
    .cta-buttons .btn { padding: 14px 20px; font-size: 14px; }

    /* Footer */
    .footer          { padding: 48px 0 24px; }
    .footer-content  { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom   { flex-direction: column; gap: 16px; text-align: center; }
    .footer-legal    { flex-wrap: wrap; justify-content: center; gap: 16px; }

    /* Pricing */
    .pricing-card        { padding: 24px; }
    .pricing-plan        { font-size: 18px; }
    .price-amount        { font-size: 40px; }
    .price-currency      { font-size: 18px; }
    .price-period        { font-size: 14px; }
    .pricing-description { font-size: 14px; margin-bottom: 20px; }
    .pricing-features li { font-size: 14px; padding: 10px 0; }
}
