/* Modern & Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Logo-Inspired Palette */
    --primary-color: #6f3a94;
    /* Brand Purple */
    --primary-light: #8e5cb5;
    /* Lighter Purple */
    --secondary-color: #2c3e50;
    /* Deep Blue/Indigo from Logo */
    --secondary-hover: #34495e;
    /* Slightly Lighter Professional Blue */
    --accent-color: #f59e0b;
    /* Keeping Amber for high-contrast highlights */

    /* Neutral Colors */
    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-white: #ffffff;
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --border-color: #e2e8f0;
    /* Slate 200 */

    /* Gradients - Refined for Purple/Blue theme */
    --gradient-primary: linear-gradient(135deg, #6f3a94 0%, #4c266a 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);


    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    /* 12px */
    --radius-lg: 1rem;
    /* 16px */
    --radius-xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-body);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* --- Navigation --- */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.footer-logo {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition-base);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color) !important;
    background-color: rgba(30, 58, 138, 0.05);
    transform: translateY(-1px);
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-with-bg {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 58, 148, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    z-index: 1;
}

.hero-with-bg .container {
    position: relative;
    z-index: 2;
}

.hero-with-bg .hero-title,
.hero-with-bg .hero-subtitle,
.hero-with-bg .hero-title span {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    transform: rotate(-15deg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-light);
}

.hero-with-bg .hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(30, 58, 138, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-body);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    color: white;
}

/* --- Section Styling --- */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1rem auto;
    border-radius: var(--radius-full);
}

/* --- Cards --- */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: var(--transition-base);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-img-wrapper {
    height: 200px;
    width: 100%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-img-wrapper i {
    font-size: 4rem;
    color: var(--primary-light);
    transition: var(--transition-base);
}

.card:hover .card-img-wrapper i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Features / Delivery Platforms --- */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.platform-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.platform-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition-base);
}

.platform-card:hover .platform-logo {
    transform: scale(1.1);
}

.platform-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.platform-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
}

/* --- Testimonials --- */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow-md);
}

.testimonial-icon {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* --- About Page Refinements --- */
.story-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border-right: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 10rem;
    color: rgba(111, 58, 148, 0.05);
    font-family: serif;
}

.vision-card-premium {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.vision-card-premium:hover {
    transform: translateY(-10px);
}

.value-card-premium {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition-base);
    border-bottom: 4px solid transparent;
}

.value-card-premium:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(111, 58, 148, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition-base);
}

.value-card-premium:hover .value-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

/* --- Stats Section --- */
/* --- Modern Stats Section --- */
.stats-section-modern {
    padding: 6rem 0;
    background-color: var(--bg-body);
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(111, 58, 148, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(44, 62, 80, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.stat-card {
    background: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.stat-card.active {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(111, 58, 148, 0.02) 100%);
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(111, 58, 148, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.stat-card:hover .stat-icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(10deg);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 991px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

/* Specific override for centering from screenshot */
.justify-content-center {
    justify-content: center !important;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-section-modern {
        padding: 4rem 0 !important;
        background-color: var(--bg-white) !important;
        text-align: center !important;
    }

    .stats-section-modern .container {
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .stats-section-modern .row {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        width: 100% !important;
        gap: 3.5rem !important;
        display: flex !important;
    }

    .stats-section-modern [class*="col-"] {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .stat-card {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .stat-icon-box {
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem !important;
        color: var(--primary-color) !important;
        display: flex !important;
        justify-content: center !important;
    }

    .stat-content {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .stat-number {
        font-size: 2.8rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
        color: var(--text-main) !important;
        text-align: center !important;
    }

    .stat-label {
        font-size: 1.15rem !important;
        color: var(--text-muted) !important;
        margin-top: 0.25rem !important;
        text-align: center !important;
    }
}

/* --- Footer --- */
footer {
    background: #fdfcff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    text-align: right;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.footer-national-number {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-policy-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: var(--transition-base);
}

.footer-policy-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.footer-social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.2);
}

.bank-details-card {
    background: white;
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: right;
    direction: rtl;
}

.footer-qr-img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.bank-info-text {
    flex: 1;
}

.bank-info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.bank-info-value {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    word-break: break-all;
    margin-bottom: 8px;
}

.copyright-text {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    text-align: center;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .footer-col-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .bank-details-card {
        max-width: 400px;
        margin: 0 auto;
        flex-direction: column;
        text-align: center;
    }

    .footer-qr-img {
        width: 120px;
        height: 120px;
    }
}

/* --- Utilities --- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        margin-top: 1rem;
    }
}

/* Hover Lift Effect */
.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* --- Preloader & Transitions --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: logo-pulse 1.5s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.1));
}

@keyframes logo-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: transform, opacity;
}

[data-reveal="fade-up"] {
    transform: translateY(30px);
}

[data-reveal="fade-down"] {
    transform: translateY(-30px);
}

[data-reveal="fade-left"] {
    transform: translateX(30px);
}

[data-reveal="fade-right"] {
    transform: translateX(-30px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.95);
}

[data-reveal].active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* --- Micro-interactions --- */
.btn:active {
    transform: scale(0.98);
}

.platform-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* --- Pricing Section Symmetry --- */
.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: var(--transition-base);
    border-top: 5px solid transparent !important;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.pricing-features ul {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px dotted var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1rem 0;
}

.pricing-currency {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}