/* ===== Base Styles (shared with digital_nomad) ===== */
:root {
    --ivory: #f8f7f1;
    --mint: #d9ede4;
    --lavender: #e6e0f0;
    --peach: #fbe6d4;
    --dark: #333333;
    --primary: #6e57b2;
    --secondary: #7fc9aa;
    --accent: #f8c05a;
    --rejection: #e57373;
    --white: #ffffff;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--ivory);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (min-width: 768px) {
    .container { padding: 0 1.5rem; }
}

.hidden { display: none !important; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.header.scrolled {
    padding: 0.75rem 0;
}

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

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 2rem;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-guide {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.btn-guide:hover {
    background: #5b4696;
}

.burger-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .burger-btn { display: none; }
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 100;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-primary-full {
    background: var(--primary);
    color: white;
    padding: 0.875rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.btn-telegram-full {
    background: #e8f4fd;
    color: #0088cc;
    padding: 0.875rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    padding: 6rem 0 0.5rem;
    font-size: 0.875rem;
    color: #999;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 0.25rem;
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 2rem 0 4rem;
    background: var(--ivory);
}

.hero-section h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.hero-section .hero-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-box-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-box-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .stats-row { grid-template-columns: repeat(4, 1fr); }
    .hero-section h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .hero-section h1 { font-size: 2.75rem; }
}

/* ===== Buttons ===== */
.btn-primary-lg {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.2s ease;
}

.btn-primary-lg:hover {
    background: #5b4696;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(110, 87, 178, 0.3);
}

.btn-white-lg {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.2s ease;
}

.btn-white-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-telegram-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f4fd;
    color: #0088cc;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-telegram-contact:hover {
    background: #d4ecfa;
}

.btn-phone-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f0f0;
    color: var(--dark);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-phone-contact:hover {
    background: #e5e5e5;
}

/* ===== Section Shared ===== */
.section-white {
    background: white;
    padding: 4rem 0 5rem;
}

.section-ivory {
    background: var(--ivory);
    padding: 4rem 0 5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 2.5rem; }
}

/* ===== Identity Section (Who We Are) ===== */
.identity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

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

.identity-text h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.identity-text p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.checklist li span:last-child {
    flex: 1;
}

.check-icon {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.proof-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.2s ease;
}

.proof-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.proof-card img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    display: block;
}

.proof-card .proof-caption {
    padding: 0.625rem;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* ===== Founder Photo ===== */
.founder-photo-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-photo-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.founder-photo-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-photo-wrap .proof-caption {
    padding: 0.75rem;
    font-size: 0.875rem;
    background: white;
    text-align: center;
}

/* ===== Services Grid (What's Included) ===== */
.services-heading {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 3rem 0 1.25rem;
    color: var(--dark);
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

@media (min-width: 640px) {
    .services-heading { font-size: 1.625rem; }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
    background: white;
    border: 1px solid #eeebf5;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.service-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.service-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin: 0;
}

.service-card-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
}

.service-extra-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #a07c30;
    background: #fef3d0;
    border: 1px solid #f8c05a;
    border-radius: 0.375rem;
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.35rem;
}

.service-proof-placeholder {
    margin-top: 0.75rem;
    border: 2px dashed #c9bfe8;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #f9f7fd;
    flex: 1;
}

.placeholder-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--lavender);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-proof-placeholder p {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.service-card-open {
    border-color: #c9bfe8;
    background: linear-gradient(135deg, #fff 0%, #f9f7fd 100%);
}

.service-card-cta {
    display: block;
    margin-top: 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.service-card-cta:hover {
    background: #5b4696;
}

.service-proof-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.service-proof-pair .service-proof {
    margin-top: 0;
}

.service-proof {
    margin-top: 0.75rem;
    border-radius: 0.625rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #eeebf5;
    transition: box-shadow 0.2s ease;
}

.service-proof:hover {
    box-shadow: 0 4px 16px rgba(110, 87, 178, 0.15);
}

.service-proof img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.service-proof:hover img {
    transform: scale(1.02);
}

.service-proof-caption {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    padding: 0.375rem;
    background: #fafafa;
}

/* ===== Approvals Gallery ===== */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid #ddd;
    background: white;
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.approvals-counter {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.approvals-counter strong {
    color: var(--primary);
}

.approvals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .approvals-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .approvals-grid { grid-template-columns: repeat(4, 1fr); }
}

.approval-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.approval-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.approval-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.approval-item .badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
}

.approval-item .client-name {
    padding: 0.5rem 0.625rem;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
    text-align: center;
}

.show-more-btn {
    display: block;
    margin: 2rem auto 0;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-more-btn:hover {
    background: var(--primary);
    color: white;
}

/* ===== Messages / Masonry ===== */
.masonry-grid {
    column-count: 1;
    column-gap: 1rem;
}

@media (min-width: 640px) {
    .masonry-grid { column-count: 2; }
}

@media (min-width: 1024px) {
    .masonry-grid { column-count: 3; }
}

.message-card {
    break-inside: avoid;
    margin-bottom: 1rem;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.2s ease;
}

.message-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.message-card img {
    width: 100%;
    display: block;
}

.message-card .msg-name {
    padding: 0.5rem 0.625rem;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
    text-align: center;
}

.messages-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 2.75rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.375rem;
    top: 0.1rem;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid var(--ivory);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-dot-final {
    background: var(--secondary);
    box-shadow: 0 0 0 2px var(--secondary);
    font-size: 0.85rem;
}

.timeline-content {
    flex: 1;
}

.timeline-step-final .timeline-content h4 {
    color: var(--secondary);
}

.timeline-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.timeline-step p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.55;
}

.timeline-step .timeline-time {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.35rem;
    background: var(--lavender);
    padding: 0.15rem 0.5rem;
    border-radius: 0.375rem;
}

.timeline-step-final .timeline-time {
    color: var(--secondary);
    background: var(--mint);
}

.timeline-optional {
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
}

/* ===== Verification Cards ===== */
.verify-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .verify-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .verify-grid { grid-template-columns: repeat(3, 1fr); }
}

.verify-card {
    background: var(--ivory);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.verify-card:hover {
    border-color: rgba(110, 87, 178, 0.2);
    box-shadow: var(--shadow-medium);
}

.verify-card .verify-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.verify-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verify-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.verify-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.verify-card a:hover {
    text-decoration: underline;
}

/* ===== FAQ Accordion ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-arrow {
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #4a3580 100%);
    padding: 4rem 0 5rem;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

.cta-section .cta-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-trust-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .cta-section h2 { font-size: 2.25rem; }
}

/* ===== Footer ===== */
.footer {
    background: white;
    padding: 2rem 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 1.5rem;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #666;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #999;
}

.footer-bottom .privacy-link {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.footer-bottom .privacy-link:hover {
    text-decoration: underline;
}

/* ===== Image Popup ===== */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.image-popup img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 0.5rem;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 201;
}

/* ===== Privacy Modal ===== */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 200;
    overflow-y: auto;
    padding: 2rem;
}

.privacy-content {
    max-width: 700px;
    margin: 0 auto;
}

.privacy-close {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.privacy-content h1 { font-size: 1.5rem; margin-bottom: 1rem; }
.privacy-content h2 { font-size: 1.125rem; margin: 1.5rem 0 0.5rem; }
.privacy-content p, .privacy-content li { font-size: 0.9rem; line-height: 1.6; color: #555; }
.privacy-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.privacy-content a { color: var(--primary); }

/* ===== Cookie Consent ===== */
.cookie-consent {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 150;
    max-width: 360px;
}

.cookie-content {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cookie-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #999;
}

.cookie-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

.cookie-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.375rem;
}

.cookie-text p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.cookie-text p button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-decline {
    background: #f0f0f0;
    color: var(--dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.8rem;
}

/* ===== Animations ===== */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
