:root {
    --primary: #D4856A;
    --primary-dark: #C06D50;
    --secondary: #E6B89C;
    --accent: #6B8E76;
    --bg-light: #FAF9F6;
    --text-dark: #2C2A29;
    --text-muted: #595554;
    --white: #FFFFFF;
    --border: #E8E6E0;
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-lg: rgba(44, 42, 41, 0.08);
    --red: #BF6159;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.app-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
}

/* Top Header Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    height: 48px;
    cursor: pointer;
    border-radius: 8px;
}

.user-nav-badge {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px var(--shadow);
}

.user-nav-badge img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.logout-link {
    color: var(--text-muted);
    text-decoration: underline;
    font-size: 11px;
    cursor: pointer;
    font-weight: 400;
}

.logout-link:hover {
    color: var(--red);
}

/* Main panels */
.auth-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    max-width: 480px;
    margin: auto;
    gap: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.card {
    background-color: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px var(--shadow);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Button configurations */
.btn {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 133, 106, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-light);
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(212, 133, 106, 0.05);
}

.btn-google {
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-google:hover {
    background-color: var(--bg-light);
    transform: translateY(-1px);
}

.btn-google img {
    height: 20px;
}

.btn-danger {
    background-color: var(--red);
    color: var(--white);
}

.btn-danger:hover {
    background-color: #A34841;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Main Workspace: Columns for Dashboard */
.dashboard-layout {
    display: none;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
}

.dashboard-layout.active {
    display: flex;
}

/* Sidebar lists of frames */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-title {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.frame-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frame-item-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 6px var(--shadow);
}

.frame-item-btn:hover {
    border-color: var(--primary);
    background-color: rgba(212, 133, 106, 0.02);
}

.frame-item-btn.selected {
    border-color: var(--primary);
    background-color: rgba(212, 133, 106, 0.05);
    box-shadow: 0 4px 12px rgba(212, 133, 106, 0.1);
}

.frame-item-name {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.frame-item-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* Main Workspace Control Panel */
.workspace {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.workspace-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 576px) {
    .workspace-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.workspace-title-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.online-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}

.online-status-badge.online {
    background-color: rgba(107, 142, 118, 0.15);
    color: var(--accent);
}

.online-status-badge.offline {
    background-color: rgba(89, 85, 84, 0.1);
    color: var(--text-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 4px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
}

.tab-panel {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: flex;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Photo Grid Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}

.gallery-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    position: relative;
    aspect-ratio: 0.85;
    display: flex;
    flex-direction: column;
}

.gallery-img-container {
    width: 100%;
    flex-grow: 1;
    overflow: hidden;
    background-color: #000;
    position: relative;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-actions {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-top: 1px solid var(--border);
    align-items: center;
}

.gallery-card-caption {
    font-size: 11px;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 75px;
    font-weight: 500;
}

.action-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.action-icon-btn:hover {
    color: var(--primary);
    background-color: var(--bg-light);
}

.action-icon-btn.delete:hover {
    color: var(--red);
}

.action-icon-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Settings Forms */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .settings-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-row-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-row-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-row-checkbox span {
    font-size: 14px;
    font-weight: 500;
}

select {
    width: 100%;
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}

/* Active Sessions Live list */
.session-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.session-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px var(--shadow);
}

.session-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.session-device {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.session-geo {
    font-size: 12px;
    color: var(--text-muted);
}

.session-status {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

/* Invite Box styles */
.invite-box {
    background-color: rgba(212, 133, 106, 0.05);
    border: 1.5px dashed var(--primary);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.invite-link-input-group {
    display: flex;
    width: 100%;
    gap: 8px;
}

.invite-link-input {
    flex-grow: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 12px;
    background-color: var(--white);
    color: var(--text-muted);
    outline: none;
}

/* Upload Area inside gallery tab */
.gallery-uploader {
    border: 2px dashed var(--primary);
    background-color: rgba(212, 133, 106, 0.02);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gallery-uploader:hover {
    background-color: rgba(212, 133, 106, 0.04);
}

/* Modal popup dialogs */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 42, 41, 0.6);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-card {
    background-color: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: bounceIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Keyframes for modal animation */
@keyframes bounceIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    70% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Form styling */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"] {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background-color: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus {
    border-color: var(--primary);
}

/* Upload Progress styling */
.progress-container {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
}

.progress-bar-bg {
    background-color: var(--border);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
}

.progress-bar-fill {
    background-color: var(--primary);
    height: 100%;
    width: 0%;
    transition: width 0.2s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

/* Frames Grid */
.frames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.frame-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow);
    position: relative;
    aspect-ratio: 1.0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.frame-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(44, 42, 41, 0.12);
    border-color: var(--primary);
}

.frame-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2C2A29; /* Warm dark gray fallback */
    transition: transform 0.5s ease;
}

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

.frame-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.frame-card-badge-left {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.frame-card-badge-right {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.frame-card-badge-right.online {
    background-color: rgba(107, 142, 118, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.frame-card-badge-right.offline {
    background-color: rgba(44, 42, 41, 0.6);
}

.frame-card-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--white);
}

.frame-card-name {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.frame-card-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.back-btn:hover {
    transform: translateX(-2px);
}

/* Landing Page Styles */
.landing-page-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    margin-top: 10px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, rgba(212, 133, 106, 0.05) 100%);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--border);
}

@media (min-width: 992px) {
    .hero-section {
        grid-template-columns: 1.2fr 1fr;
        padding: 60px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-content .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    text-align: left;
}

@media (min-width: 768px) {
    .hero-content .hero-title {
        font-size: 52px;
    }
}

.hero-content .hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: left;
}

.secure-login-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
    justify-content: center;
}

/* Hero visual column: try-it pill, device, feature pills */
.hero-visual-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.try-it-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.try-it-pill .try-it-link {
    color: var(--primary);
    text-decoration: underline;
}

.try-it-pill .try-it-arrow {
    color: var(--primary);
    font-size: 12px;
}

.hero-pill {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px var(--shadow);
    color: var(--text-dark);
}

.pill-icon {
    font-size: 14px;
}

/* Hero Visual - Tablet & Phone Mocks */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1.5;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-visual {
        max-width: 500px;
    }
}

.tablet-mock {
    background-color: #000;
    border-radius: 24px;
    padding: 16px;
    width: 90%;
    height: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid #1a1a1a;
    position: relative;
}

.tablet-screen {
    background-color: #1a1a1a;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 2;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #fff;
    width: 20px;
    border-radius: 4px;
}

/* Phone Mock */
.phone-mock {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 75px;
    height: 120px;
    background-color: #000;
    border-radius: 10px;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.55);
    border: 3px solid #333333;
    z-index: 5;
}

.phone-screen {
    background-color: #1a1a1a;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.phone-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    z-index: 6;
}

/* Features Section */
.features-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--white);
    border-radius: 32px;
    padding: 40px 24px;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .features-section {
        padding: 60px 40px;
    }
}

.features-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card-landing {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 4px solid var(--primary);
}

.card-landing-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-landing-title {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-landing-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Highlight Card */
.highlight-card-landing {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 24px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 24px rgba(212, 133, 106, 0.2);
    margin-top: 10px;
}

@media (min-width: 768px) {
    .highlight-card-landing {
        flex-direction: row;
        align-items: center;
        padding: 32px;
    }
}

.highlight-landing-icon {
    font-size: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .highlight-landing-icon {
        margin: 0;
    }
}

.highlight-landing-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

@media (min-width: 768px) {
    .highlight-landing-content {
        text-align: left;
        flex-grow: 1;
    }
}

.highlight-landing-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.highlight-landing-content p {
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.highlight-landing-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .highlight-landing-stats {
        border-top: none;
        border-left: 1px solid rgba(255,255,255,0.2);
        padding-top: 0;
        padding-left: 24px;
        margin-top: 0;
        flex-shrink: 0;
    }
}

.stat-landing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-landing-val {
    font-size: 24px;
    font-weight: 800;
}

.stat-landing-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
}

/* Pricing Section */
.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--white);
    border-radius: 32px;
    padding: 40px 24px;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .pricing-section {
        padding: 60px 40px;
    }
}

.pricing-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card-landing {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow);
}

.pricing-card-landing.highlight {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(212, 133, 106, 0.15);
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.plan-title {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.plan-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
}

.plan-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.plan-price-orig {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 1.5px;
}

.plan-subtitle {
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
    margin-top: -8px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
    padding: 0;
}

.plan-features li {
    font-size: 13.5px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
}

.pricing-card-landing.highlight .plan-features li::before {
    color: var(--primary);
}

.plan-btn {
    margin-top: auto;
    width: 100%;
    padding: 14px 20px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
}