/* ============================================
   LIT LOOP LANDING PAGE — STYLE SHEET
   Colors: #754043 (primary), #F9EEDC (bg), #eadbc3 (light)
   ============================================ */

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

:root {
    --primary: #754043;
    --primary-dark: #5c3234;
    --primary-light: #eadbc3;
    --bg: #F9EEDC;
    --bg-dark: #0F2027;
    --bg-dark-mid: #203A43;
    --bg-dark-end: #2C5364;
    --card-bg: #ffffff;
    --text: #1C1917;
    --text-secondary: #78716C;
    --text-light: #A8A29E;
    --border: #E7E5E4;
    --white: #FFFFFF;
    --error: #EF4444;
    --success: #22C55E;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, .16);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Lato', Georgia, sans-serif;
    font-weight: 900;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ──────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 238, 220, .82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(117, 64, 67, .08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(249, 238, 220, .95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-logo-text {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(117, 64, 67, .25);
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(117, 64, 67, .35);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(249, 238, 220, .98);
    backdrop-filter: blur(16px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    transition: all .25s ease;
}

.mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-link.cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    border: none;
    margin-top: 8px;
}

/* ── Hero ─────────────────────────────────── */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-mid) 50%, var(--bg-dark-end) 100%);
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #c2956a 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(234, 219, 195, .12);
    border: 1px solid rgba(234, 219, 195, .2);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: fadeInUp .6s ease .1s both;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp .6s ease .2s both;
}

.hero-title-accent {
    color: var(--primary-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp .6s ease .3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp .6s ease .4s both;
}

/* ── Buttons ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(117, 64, 67, .3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(117, 64, 67, .4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .25);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon,
.btn-icon-right {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Hero Stats ───────────────────────────── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp .6s ease .5s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-light);
}

.stat-plus {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
}

/* ── Phone Mockup ─────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp .8s ease .3s both;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 280px;
    height: 570px;
    background: var(--bg-dark);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255, 255, 255, .1) inset;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: var(--bg-dark);
    border-radius: 0 0 16px 16px;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    border-radius: 26px;
    overflow: hidden;
    padding: 44px 16px 0;
    display: flex;
    flex-direction: column;
}

.mock-header {
    margin-bottom: 20px;
}

.mock-greeting {
    display: block;
    font-size: .65rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.mock-title {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--text);
}

.mock-section {
    margin-bottom: 16px;
}

.mock-section-title {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.mock-cards {
    display: flex;
    gap: 8px;
}

.mock-card {
    width: 72px;
    height: 100px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.mock-tab-bar {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 8px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.mock-tab {
    text-align: center;
    opacity: .4;
}

.mock-tab.active {
    opacity: 1;
}

.mock-tab-icon {
    font-size: .9rem;
}

.mock-tab-label {
    font-size: .5rem;
    font-weight: 500;
    margin-top: 2px;
}

/* ── Floating Cards ───────────────────────── */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.floating-card-1 {
    top: 15%;
    right: -30px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 20%;
    left: -20px;
    animation: floatCard 5s ease-in-out infinite .5s;
}

@keyframes floatCard {

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

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

.floating-emoji {
    font-size: 1.5rem;
}

.floating-title {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
}

.floating-sub {
    display: block;
    font-size: .7rem;
    color: var(--text-light);
}

/* ── Section Common ──────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(117, 64, 67, .08);
    color: var(--primary);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

/* ── Features ─────────────────────────────── */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(117, 64, 67, .1);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(117, 64, 67, .08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--primary);
    transform: scale(1.05);
}

.feature-card:hover .feature-icon {
    filter: brightness(10);
}

.feature-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-icon-svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-svg {
    stroke: var(--white);
}

.step-icon-svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── How It Works ─────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: var(--bg);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(117, 64, 67, .15);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 4px 12px rgba(117, 64, 67, .3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 8px;
}

.step-desc {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    flex-shrink: 0;
    opacity: .4;
}

/* ── Pricing ──────────────────────────────── */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--bg);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    border: 2px solid rgba(117, 64, 67, .1);
    text-align: center;
    transition: all var(--transition);
}

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

.pricing-header {
    margin-bottom: 32px;
}

.pricing-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
}

.pricing-rupee {
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 300;
}

.pricing-value {
    font-family: 'DM Serif Display', serif;
    font-size: 4.5rem;
    color: var(--primary);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: .92rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ── Download CTA ─────────────────────────── */
.download {
    padding: 100px 0;
    background: var(--bg);
}

.download-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-mid) 50%, var(--bg-dark-end) 100%);
    border-radius: 28px;
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    overflow: hidden;
    position: relative;
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.download-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.download-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.download-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 32px;
    max-width: 400px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 12px 24px;
    border-radius: 14px;
    color: var(--white);
    transition: all var(--transition);
}

.store-badge:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.store-icon {
    width: 28px;
    height: 28px;
}

.store-small {
    display: block;
    font-size: .6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .8;
}

.store-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.download-note {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    font-style: italic;
}

.download-visual {
    position: relative;
    z-index: 1;
}

.download-logo {
    width: 180px;
    height: 180px;
    border-radius: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
    animation: floatCard 4s ease-in-out infinite;
}

/* ── Footer ───────────────────────────────── */
.footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-mid) 50%, var(--bg-dark-end) 100%);
    padding: 64px 0 32px;
    color: rgba(255, 255, 255, .7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-tagline {
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .5);
    max-width: 280px;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

/* ── Animations ──────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta-btn {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features,
    .how-it-works,
    .pricing,
    .download {
        padding: 72px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-row {
        flex-direction: column;
        gap: 32px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .download-card {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
    }

    .download-subtitle {
        margin: 0 auto 32px;
    }

    .download-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .floating-card {
        display: none;
    }

    .phone-frame {
        width: 240px;
        height: 490px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-value {
        font-size: 3.5rem;
    }
}