:root {
    /* Popcorn-inspired Palette */
    --bg-body: #FDFCF8;
    /* Very subtle off-white/paper */
    --bg-card: #FFFFFF;
    --bg-dark: #111111;

    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-muted: #888888;

    --primary: #1A1A1A;
    /* Dark button */
    --primary-hover: #000000;

    --accent: #E8F5E9;
    /* Soft Green for success/money */

    --border-color: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08);

    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-pill: 100px;

    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --green: #2E7D32;
    --green-light: #E8F5E9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: 'Figtree', sans-serif;
    /* Global font update */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    /* Tighter tracking for headings like Popcorn */
}

/* Specific Override for Hero Title */
h1.hero-title {
    font-family: 'Figtree', sans-serif;
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.section-title {
    font-family: 'Figtree', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.btn-white {
    background-color: white;
    color: #111;
    border: 1px solid white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    /* Wider padding for alignment */
}

/* Navbar */
.nav {
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-body);
    /* Match body bg */
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Middle column 'auto' centers it if both sides are '1fr' */
    align-items: center;
}

/* Nav Left: Logo */
.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'Figtree', sans-serif;
    font-size: 1.15rem;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Nav Center: Links */
.nav-center {
    display: flex;
    gap: 2.5rem;
    /* Wide spacing */
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #888;
    /* Muted default state */
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: #333;
}

/* Exact "Active" underline style from screenshot */
.nav-link.active {
    color: #1a1a1a;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    /* Slightly thicker per screenshot */
    background-color: #1a1a1a;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
}

.btn-dark-pill {
    background-color: #000000;
    /* Changed to pure black */
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    border: 1px solid transparent;
    /* Match secondary button height */
}

.btn-dark-pill:hover {
    background-color: #000;
}

.btn-secondary {
    background-color: white;
    color: #111;
    border: 1px solid #E5E5E5;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: #CCC;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    padding-top: 4rem;
    padding-bottom: 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes gradient-dance {
    0% {
        background-position: 0% 50%;
        opacity: 0.8;
    }

    50% {
        background-position: 100% 50%;
        opacity: 1;
    }

    100% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
}

.hero-badge {
    position: relative;
    /* Skeuomorphic: Subtle gradient surface */
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: inline-block;
    z-index: 1;

    /* Skeuomorphic: Inner highlight and shadow */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 24px -4px rgba(164, 78, 230, 0.4);
    /* The requested lower purple glow */
}

.hero-badge::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    /* Delicate border width */
    border-radius: inherit;
    z-index: -1;

    /* Uneven "Dancing" Gradient: Transparent sections create the "not even" look */
    background: linear-gradient(110deg,
            rgba(164, 78, 230, 0.1),
            #A44EE6 25%,
            #694ED7 50%,
            #A44EE6 75%,
            rgba(164, 78, 230, 0.1));
    background-size: 200% 100%;
    animation: gradient-dance 3s ease infinite;
}

.hero-badge::after {
    /* Background blocker to keep content clean */
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}



.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    /* Increased to allow wider title feel */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: row;
    /* Horizontal again */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.hero-visual {
    margin-top: 4rem;
    position: relative;
    width: 100%;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(230, 230, 230, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    /* More subtle greyish glow like popcorn if any */
    filter: blur(60px);
    z-index: -1;
}

.hero-img-placeholder {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
    background: white;
    overflow: hidden;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
}

/* How it Works - Steps */
.steps-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

/* Connecting line for desktop */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: #f0f0f0;
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 260px;
    line-height: 1.5;
}

/* Comparison Section */
.comparison-section {
    padding: var(--spacing-xl) 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.comparison-table th {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.comparison-table td {
    font-size: 1.1rem;
}

.check-icon {
    color: #A44EE6;
    /* Purple accent */
    margin-right: 0.5rem;
}

.cross-icon {
    color: #ccc;
    margin-right: 0.5rem;
}

.tery-table-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    object-fit: contain;
}

/* Generic Icon Support */
.icon-svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #FAFAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #A44EE6;
    /* Purple Accent for icons */
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

/* Map Section */
.map-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: #FAFAFA;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

@keyframes turnBlackSmooth {
    0% {
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    100% {
        color: #1a1a1a;
        background: none;
        -webkit-text-fill-color: #1a1a1a;
    }
}

.star-rating {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: inline-block;
    font-weight: 700;
}

.star {
    display: inline-block;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.5s ease;
    /* Smooth fade in/out on scroll */

    /* Initial Gradient State */
    background: linear-gradient(110deg,
            rgba(164, 78, 230, 0.4),
            #A44EE6 25%,
            #694ED7 50%,
            #A44EE6 75%,
            rgba(164, 78, 230, 0.4));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    /* Dance is always active but only visible when opacity > 0 */
    animation: gradient-dance 3s ease infinite;
}

/* When the container has the 'animate' class */
.review-card.animate .star {
    opacity: 1;
    /* Trigger smooth fade in via transition */

    /* Trigger color change animation */
    animation:
        gradient-dance 3s ease infinite,
        turnBlackSmooth 0.6s ease forwards;
}

/* Staggered Delays for turn black (Delay starts AFTER fade in usually, but we want overlap) */
/* We delay the animation so they enter as purple first */
.review-card.animate .star:nth-child(1) {
    animation-delay: 0s, 0.4s;
}

.review-card.animate .star:nth-child(2) {
    animation-delay: 0s, 0.5s;
}

.review-card.animate .star:nth-child(3) {
    animation-delay: 0s, 0.6s;
}

.review-card.animate .star:nth-child(4) {
    animation-delay: 0s, 0.7s;
}

.review-card.animate .star:nth-child(5) {
    animation-delay: 0s, 0.8s;
}

/* Remove .star.last specific rule so it also turns black */

.review-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.reviewer {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: var(--spacing-xl) 0;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    /* For smooth height expansion */
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
}

.faq-toggle {
    transition: transform 0.3s ease;
    opacity: 0.4;
    font-weight: 400;
    font-size: 1.2rem;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    /* Arbitrary large height */
    padding-bottom: 1.5rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #FAFAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 2rem 0;
}

.cta-dark-card {
    background: #111;
    color: white;
    border-radius: var(--radius-md);
    padding: 5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-content h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #999;
    font-size: 1.1rem;
    max-width: 400px;
}

.cta-btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.price-display {
    text-align: right;
}

.price-large {
    font-family: 'Figtree', sans-serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
}

.price-sub {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Standard Buttons for reuse */
.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid transparent;
    padding: 0.6rem 1.4rem;
    /* Matched with btn-secondary */
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    /* Matched */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-brand .logo-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.1s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem !important;
    }

    .bento-grid,
    .prop-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .nav-center {
        display: none;
        /* Hide nav links on mobile for now */
    }

    .cta-dark-card {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

    .cta-btn-group {
        align-items: center;
    }

    .price-display {
        text-align: center;
    }
}

/* Account Overlay */
.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.account-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    background: var(--bg-card);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.account-overlay.active {
    transform: translateX(0);
}

.overlay-header {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.overlay-title {
    font-size: 1.25rem;
    /* ~20px */
    font-weight: 600;
    color: var(--text-primary);
}

.overlay-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.overlay-close:hover {
    background: var(--bg-body);
    color: var(--text-primary);
}

.overlay-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.account-profile-section {
    text-align: center;
    margin-bottom: 32px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--bg-body);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.profile-email {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.settings-group {
    margin-bottom: 24px;
}

.settings-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.settings-item:hover {
    background: #F5F5F0;
    /* Slightly darker than bg-body */
}

.settings-item-icon {
    margin-right: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.settings-item-text {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
}

.settings-item-arrow {
    color: var(--text-muted);
}

.overlay-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

.logout-btn {
    width: 100%;
    padding: 12px;
    background: #FFF0F0;
    color: #D32F2F;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.logout-btn:hover {
    background: #FFEBEB;
}

/* ============================================
   ACCOUNT OVERLAY STYLES
   ============================================ */

.account-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeInOverlay 0.3s forwards;
}

@keyframes fadeInOverlay {
    to {
        opacity: 1;
    }
}

@keyframes fadeOutOverlay {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.account-panel {
    width: 400px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    animation: slideInPanel 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    display: flex;
    flex-direction: column;
}

@keyframes slideInPanel {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutPanel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* Header */
.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.close-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

/* Content */
.account-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.account-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-weight: 600;
}

.account-separator {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 24px 0;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.text-input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.text-input:focus {
    outline: none;
    border-color: var(--primary);
}

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

.btn-primary-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.02);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-outline:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.btn-danger-outline {
    background: transparent;
    color: #d32f2f;
    border: 1px solid rgba(211, 47, 47, 0.2);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger-outline:hover {
    background: rgba(211, 47, 47, 0.05);
    border-color: #d32f2f;
}

.mb-2 {
    margin-bottom: 12px;
}

/* Toggle Switch */
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.toggle-info {
    display: flex;
    flex-direction: column;
}

.toggle-label {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
}

.toggle-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e4e4e4;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}