/* ============================================
   ONLIFE.BG LEGAL/INFO PAGES
   Aesthetic: "Editorial Serenity"
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --color-green: #8bcd51;
    --color-green-dark: #6fb03a;
    --color-green-light: #a8dc7a;
    --color-purple: #9f5dd5;
    --color-purple-dark: #8344b8;
    --color-purple-light: #b87fe3;

    /* Neutrals */
    --color-white: #ffffff;
    --color-cream: #FDFBF8;
    --color-gray-50: #f9f9f9;
    --color-gray-100: #f3f3f3;
    --color-gray-200: #e5e5e5;
    --color-gray-400: #a3a3a3;
    --color-gray-600: #525252;
    --color-gray-800: #262626;
    --color-gray-900: #171717;

    /* Typography */
    --font-display: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 900px;
    --container-padding: 1.5rem;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 150ms;
    --duration-medium: 300ms;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-gray-800);
    background: var(--color-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: var(--color-purple);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
    color: var(--color-purple-dark);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
    max-width: 1100px;
}

.logo-link {
    display: block;
    transition: opacity var(--duration-fast) var(--ease-out);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 44px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: var(--space-xl);
}

.header-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    text-decoration: none;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-purple);
    transition: width var(--duration-medium) var(--ease-out);
}

.header-nav a:hover {
    color: var(--color-purple);
}

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

/* ============================================
   MAIN CONTENT
   ============================================ */
.page-content {
    flex: 1;
    padding: var(--space-3xl) 0;
}

/* Article */
.page-article {
    animation: fadeIn var(--duration-medium) var(--ease-out);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-gray-200);
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.article-meta {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* Legal Content */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content .lead {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--color-gray-50);
    border-left: 3px solid var(--color-purple);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-content section {
    margin-bottom: var(--space-2xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-md);
    padding-top: var(--space-lg);
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--color-gray-600);
}

.legal-content ul, .legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
    color: var(--color-gray-600);
}

.legal-content li {
    margin-bottom: var(--space-sm);
}

.legal-content a {
    color: var(--color-purple);
    text-decoration: underline;
    text-decoration-color: rgba(159, 93, 213, 0.3);
    text-underline-offset: 3px;
}

.legal-content a:hover {
    text-decoration-color: var(--color-purple);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-about .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 700px) {
    .page-about .about-content {
        grid-template-columns: 280px 1fr;
        gap: var(--space-3xl);
    }
}

.about-image {
    text-align: center;
}

.author-photo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--color-gray-800);
    margin-bottom: var(--space-lg);
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--color-gray-600);
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.about-text em {
    color: var(--color-purple);
    font-style: italic;
}

.about-text a {
    color: var(--color-purple);
    text-decoration: underline;
    text-decoration-color: rgba(159, 93, 213, 0.3);
    text-underline-offset: 3px;
}

.about-text a:hover {
    text-decoration-color: var(--color-purple);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
    padding: var(--space-2xl) 0 var(--space-xl);
    margin-top: auto;
}

.site-footer .container {
    max-width: 1100px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-gray-100);
}

@media (min-width: 640px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.logo-img--small {
    height: 36px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-gray-400);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-gray-400);
}

.footer-contact a {
    color: var(--color-gray-600);
}

.footer-contact a:hover {
    color: var(--color-purple);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 639px) {
    :root {
        --container-padding: 1.25rem;
    }

    .site-header .container {
        flex-direction: column;
        gap: var(--space-md);
    }

    .header-nav {
        gap: var(--space-lg);
    }

    .page-content {
        padding: var(--space-2xl) 0;
    }

    .article-header {
        margin-bottom: var(--space-2xl);
        padding-bottom: var(--space-lg);
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   ABOUT PAGE REDESIGN - "Purple Joy"
   ============================================ */

/* About page specific fonts */
.page-about-redesign {
    --font-display-about: 'Playfair Display', Georgia, serif;
    --font-body-about: 'Nunito', system-ui, sans-serif;

    /* Purple palette */
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;

    /* Brand purple from logo */
    --brand-purple: #9f5dd5;
    --brand-purple-light: #b87fe3;
    --brand-purple-dark: #8344b8;
    --brand-green: #8bcd51;

    /* Warm accents */
    --warm-pink: #fce7f3;
    --warm-rose: #fda4af;
    --warm-peach: #fed7aa;

    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        var(--purple-50) 0%,
        #fff 30%,
        var(--purple-50) 70%,
        var(--warm-pink) 100%
    );
    min-height: 100vh;
    padding-bottom: var(--space-4xl);
}

/* ============================================
   FLOATING DECORATIONS
   ============================================ */
.about-decorations {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.deco-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--purple-300), var(--brand-purple-light));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.deco-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--warm-pink), var(--purple-200));
    bottom: 20%;
    left: -80px;
    animation-delay: -7s;
}

.deco-blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--brand-purple), var(--purple-400));
    top: 50%;
    right: -50px;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Sparkles */
.deco-sparkle, .deco-heart {
    position: absolute;
    font-size: 1.5rem;
    color: var(--brand-purple);
    opacity: 0.6;
    animation: sparkleFloat 8s ease-in-out infinite;
}

.deco-sparkle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.deco-sparkle-2 {
    top: 40%;
    right: 15%;
    font-size: 1rem;
    animation-delay: -2s;
}

.deco-sparkle-3 {
    bottom: 30%;
    left: 20%;
    font-size: 2rem;
    animation-delay: -4s;
}

.deco-heart {
    top: 25%;
    right: 8%;
    font-size: 2rem;
    color: var(--warm-rose);
    animation-delay: -3s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.about-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.about-hero-content {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-greeting {
    display: inline-block;
    font-family: var(--font-body-about);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-purple);
    background: linear-gradient(135deg, var(--purple-100), var(--warm-pink));
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.about-title {
    font-family: var(--font-display-about);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.name-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-purple), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -5%;
    width: 110%;
    height: 0.15em;
    background: linear-gradient(90deg, var(--purple-300), var(--brand-purple-light), var(--purple-300));
    border-radius: 0.1em;
    z-index: -1;
}

.about-tagline {
    font-family: var(--font-body-about);
    font-size: 1.25rem;
    color: var(--color-gray-600);
    font-weight: 500;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

/* ============================================
   INTRO SECTION (Photo + Text)
   ============================================ */
.about-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .about-intro {
        grid-template-columns: 320px 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
}

/* Photo Wrapper */
.about-photo-wrapper {
    position: relative;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.photo-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(159, 93, 213, 0.1),
        0 10px 30px -5px rgba(159, 93, 213, 0.2),
        0 25px 50px -12px rgba(159, 93, 213, 0.25);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.photo-frame:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow:
        0 10px 15px -3px rgba(159, 93, 213, 0.15),
        0 20px 40px -10px rgba(159, 93, 213, 0.3),
        0 35px 60px -15px rgba(159, 93, 213, 0.35);
}

.photo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--purple-300), var(--brand-purple), var(--warm-rose)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.photo-frame:hover .about-photo {
    transform: scale(1.03);
}

.photo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(159, 93, 213, 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Photo Badge */
.photo-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow:
        0 4px 15px rgba(159, 93, 213, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    animation: badgeBounce 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-family: var(--font-body-about);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-purple);
}

/* Intro Text */
.about-intro-text {
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.intro-lead {
    font-family: var(--font-body-about);
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--color-gray-800);
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.intro-lead em {
    font-style: italic;
    color: var(--brand-purple);
    font-weight: 600;
}

.about-intro-text p {
    font-family: var(--font-body-about);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: var(--space-md);
}

.about-intro-text strong {
    color: var(--brand-purple-dark);
    font-weight: 700;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.about-philosophy {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.philosophy-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(159, 93, 213, 0.08) 0%,
        rgba(184, 127, 227, 0.05) 50%,
        rgba(252, 231, 243, 0.1) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 93, 213, 0.15);
    border-radius: 32px;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(159, 93, 213, 0.1) 0%,
        transparent 50%
    );
    animation: shimmer 10s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.philosophy-title {
    font-family: var(--font-display-about);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brand-purple-dark);
    margin-bottom: var(--space-lg);
}

.philosophy-quote {
    font-family: var(--font-display-about);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-style: italic;
    font-weight: 500;
    color: var(--color-gray-900);
    line-height: 1.4;
    margin: 0 0 var(--space-xl);
    padding: 0 var(--space-md);
    position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
    font-size: 4rem;
    color: var(--purple-200);
    position: absolute;
    line-height: 1;
}

.philosophy-quote::before {
    content: '"';
    top: -0.5rem;
    left: -0.5rem;
}

.philosophy-quote::after {
    content: '"';
    bottom: -1.5rem;
    right: -0.5rem;
}

.philosophy-text {
    font-family: var(--font-body-about);
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.philosophy-emphasis {
    font-family: var(--font-body-about);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.about-contact {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: var(--space-2xl);
    text-align: center;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 30px -5px rgba(159, 93, 213, 0.15);
    border: 1px solid rgba(159, 93, 213, 0.1);
}

.contact-title {
    font-family: var(--font-display-about);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-sm);
}

.contact-text {
    font-family: var(--font-body-about);
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--brand-purple), var(--purple-600));
    color: white;
    font-family: var(--font-body-about);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    box-shadow:
        0 4px 15px rgba(159, 93, 213, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(159, 93, 213, 0.45),
        0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

.contact-button:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.5rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.btn-text {
    letter-spacing: -0.01em;
}

/* ============================================
   MOBILE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    .about-hero {
        padding: var(--space-2xl) var(--space-md) var(--space-xl);
    }

    .about-intro {
        gap: var(--space-xl);
        padding: 0 var(--space-md);
    }

    .about-photo-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .philosophy-card {
        padding: var(--space-xl) var(--space-lg);
        border-radius: 24px;
    }

    .philosophy-quote::before,
    .philosophy-quote::after {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: var(--space-xl);
    }

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

    /* Hide some decorations on mobile */
    .deco-blob-3,
    .deco-sparkle-2 {
        display: none;
    }

    .deco-blob-1 {
        width: 200px;
        height: 200px;
    }

    .deco-blob-2 {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.page-contact {
    text-align: center;
}

.page-contact .page-header {
    margin-bottom: var(--space-3xl);
}

.page-contact .page-header h1 {
    color: var(--color-purple);
    margin-bottom: var(--space-md);
}

.page-contact .page-intro {
    font-size: 1.15rem;
    color: var(--color-gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--color-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-400);
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-purple);
}

.contact-email:hover {
    border-color: var(--color-purple);
}

.contact-instagram:hover {
    border-color: #E1306C;
}

.contact-instagram:hover .contact-value {
    color: #E1306C;
}

.contact-linkedin:hover {
    border-color: #0077B5;
}

.contact-linkedin:hover .contact-value {
    color: #0077B5;
}

.contact-facebook:hover {
    border-color: #1877F2;
}

.contact-facebook:hover .contact-value {
    color: #1877F2;
}

.contact-note {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin: 0;
}

@media (max-width: 500px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE REDESIGN - "Warm Welcome"
   ============================================ */

.page-contact-redesign {
    --font-display-contact: 'Playfair Display', Georgia, serif;
    --font-body-contact: 'Nunito', system-ui, sans-serif;

    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #faf5ff 0%,
        #fff 40%,
        #fce7f3 100%
    );
    min-height: 100vh;
    padding-bottom: var(--space-4xl);
}

/* Floating Decorations */
.contact-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    animation: contactBlobFloat 18s ease-in-out infinite;
}

.contact-blob-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #d8b4fe, #9f5dd5);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.contact-blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
    bottom: 10%;
    right: -100px;
    animation-delay: -6s;
}

.contact-blob-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #c084fc, #8b5cf6);
    top: 40%;
    left: -80px;
    animation-delay: -12s;
}

@keyframes contactBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

.contact-deco {
    position: absolute;
    opacity: 0.5;
    animation: contactDecoFloat 6s ease-in-out infinite;
}

.contact-deco-heart-1 {
    top: 18%;
    right: 12%;
    font-size: 2rem;
    color: #f472b6;
    animation-delay: 0s;
}

.contact-deco-heart-2 {
    bottom: 25%;
    left: 8%;
    font-size: 1.5rem;
    color: #a78bfa;
    animation-delay: -2s;
}

.contact-deco-sparkle-1 {
    top: 35%;
    left: 5%;
    font-size: 1.25rem;
    color: #9f5dd5;
    animation-delay: -1s;
}

.contact-deco-sparkle-2 {
    bottom: 40%;
    right: 6%;
    font-size: 1.5rem;
    color: #8bcd51;
    animation-delay: -3s;
}

@keyframes contactDecoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 0.7; }
}

/* Hero Section */
.contact-hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
    gap: var(--space-xl);
}

.contact-hero-content {
    flex: 1;
    max-width: 500px;
    animation: contactFadeInLeft 0.8s ease-out both;
}

@keyframes contactFadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    border-radius: 50px;
    font-family: var(--font-body-contact);
    font-size: 0.9rem;
    font-weight: 600;
    color: #9f5dd5;
    margin-bottom: var(--space-lg);
    animation: contactFadeInLeft 0.8s ease-out 0.1s both;
}

.badge-wave {
    display: inline-block;
    animation: waveHand 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes waveHand {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60%, 100% { transform: rotate(0deg); }
}

.contact-title {
    font-family: var(--font-display-contact);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    color: #1f2937;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    animation: contactFadeInLeft 0.8s ease-out 0.2s both;
}

.contact-subtitle {
    font-family: var(--font-body-contact);
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    animation: contactFadeInLeft 0.8s ease-out 0.3s both;
}

/* Hero Image */
.contact-hero-image {
    flex-shrink: 0;
    animation: contactFadeInRight 0.8s ease-out 0.4s both;
}

@keyframes contactFadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.savina-photo-wrapper {
    position: relative;
}

.savina-welcome-photo {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(159, 93, 213, 0.25));
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.savina-photo-wrapper:hover .savina-welcome-photo {
    transform: scale(1.03) translateY(-5px);
    filter: drop-shadow(0 30px 50px rgba(159, 93, 213, 0.35));
}

/* Contact Methods Section */
.contact-methods-section {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-3xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(159, 93, 213, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: contactCardIn 0.6s ease-out both;
    box-shadow: 0 4px 20px rgba(159, 93, 213, 0.08);
}

.contact-method-card:nth-child(1) { animation-delay: 0.5s; }
.contact-method-card:nth-child(2) { animation-delay: 0.6s; }
.contact-method-card:nth-child(3) { animation-delay: 0.7s; }
.contact-method-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes contactCardIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-method-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 35px rgba(159, 93, 213, 0.18);
}

.method-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    border-radius: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-method-card:hover .method-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
}

.method-icon {
    font-size: 1.5rem;
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-label {
    font-family: var(--font-body-contact);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.method-value {
    font-family: var(--font-body-contact);
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    transition: color 0.3s ease;
}

.method-arrow {
    font-size: 1.25rem;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-arrow {
    transform: translateX(5px);
}

/* Card hover colors */
.contact-method-email:hover {
    border-color: #9f5dd5;
}
.contact-method-email:hover .method-value {
    color: #9f5dd5;
}
.contact-method-email:hover .method-arrow {
    color: #9f5dd5;
}
.contact-method-email:hover .method-icon-wrapper {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.contact-method-instagram:hover {
    border-color: #E1306C;
}
.contact-method-instagram:hover .method-value {
    color: #E1306C;
}
.contact-method-instagram:hover .method-arrow {
    color: #E1306C;
}
.contact-method-instagram:hover .method-icon-wrapper {
    background: linear-gradient(135deg, #fce7f3, #fda4af);
}

.contact-method-linkedin:hover {
    border-color: #0077B5;
}
.contact-method-linkedin:hover .method-value {
    color: #0077B5;
}
.contact-method-linkedin:hover .method-arrow {
    color: #0077B5;
}
.contact-method-linkedin:hover .method-icon-wrapper {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.contact-method-facebook:hover {
    border-color: #1877F2;
}
.contact-method-facebook:hover .method-value {
    color: #1877F2;
}
.contact-method-facebook:hover .method-arrow {
    color: #1877F2;
}
.contact-method-facebook:hover .method-icon-wrapper {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

/* Promise Section */
.contact-promise {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    animation: contactCardIn 0.6s ease-out 0.9s both;
}

.promise-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(159, 93, 213, 0.08), rgba(252, 231, 243, 0.3));
    border: 1px solid rgba(159, 93, 213, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.promise-icon {
    font-size: 1.75rem;
    animation: promisePulse 2s ease-in-out infinite;
}

@keyframes promisePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.promise-text {
    font-family: var(--font-body-contact);
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.promise-text strong {
    color: #9f5dd5;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl) var(--space-lg);
        gap: var(--space-xl);
    }

    .contact-hero-content {
        order: 2;
        max-width: 100%;
    }

    .contact-hero-image {
        order: 1;
    }

    .savina-welcome-photo {
        width: 260px;
    }

    .contact-badge {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-method-card {
        padding: var(--space-md) var(--space-lg);
    }

    .contact-blob-1 {
        width: 250px;
        height: 250px;
    }

    .contact-blob-2 {
        width: 200px;
        height: 200px;
    }

    .contact-blob-3 {
        display: none;
    }

    .contact-deco-sparkle-1,
    .contact-deco-heart-2 {
        display: none;
    }
}

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

    .savina-welcome-photo {
        width: 220px;
    }

    .promise-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

/* ============================================
   NEWSLETTER MODAL - "Joyful Celebration" Style
   High-converting, cheerful, professional
   ============================================ */

.newsletter-modal-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(88, 28, 135, 0.85) 0%,
        rgba(124, 58, 237, 0.75) 50%,
        rgba(219, 39, 119, 0.65) 100%
    );
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Confetti Animation on Overlay */
.newsletter-modal-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 2%),
        radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.4) 0%, transparent 2%),
        radial-gradient(circle at 40% 70%, rgba(147, 112, 219, 0.3) 0%, transparent 1.5%),
        radial-gradient(circle at 65% 85%, rgba(255, 223, 186, 0.35) 0%, transparent 2%),
        radial-gradient(circle at 10% 60%, rgba(255, 105, 180, 0.25) 0%, transparent 1%),
        radial-gradient(circle at 90% 50%, rgba(144, 238, 144, 0.3) 0%, transparent 1.5%);
    animation: confettiDrift 20s linear infinite;
    pointer-events: none;
}

@keyframes confettiDrift {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

.newsletter-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 251, 250, 0.98) 100%);
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 30px 100px -20px rgba(124, 58, 237, 0.5),
        0 20px 60px -15px rgba(219, 39, 119, 0.25),
        0 10px 30px -10px rgba(0, 0, 0, 0.2);
    transform: scale(0.85) translateY(40px) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    perspective: 1000px;
}

.newsletter-modal-overlay.is-active .newsletter-modal {
    transform: scale(1) translateY(0) rotateX(0deg);
}

/* Top Celebration Banner */
.newsletter-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        #f472b6 0%,
        #c084fc 25%,
        #60a5fa 50%,
        #34d399 75%,
        #fbbf24 100%
    );
    background-size: 200% 100%;
    animation: rainbowSlide 3s linear infinite;
}

@keyframes rainbowSlide {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Modal Decorations Container */
.modal-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Warm Gradient Blobs */
.modal-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: multiply;
}

.modal-blob-1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 50%, #f472b6 100%);
    top: -100px;
    right: -80px;
    opacity: 0.6;
    animation: blobFloat1 12s ease-in-out infinite;
}

.modal-blob-2 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    bottom: -60px;
    left: -60px;
    opacity: 0.5;
    animation: blobFloat2 10s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 15px) scale(1.05); }
    66% { transform: translate(10px, -10px) scale(0.95); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -20px) scale(1.08); }
}

/* Floating Celebration Elements */
.modal-sparkle {
    position: absolute;
    font-size: 1.4rem;
    opacity: 0;
    animation: celebrationPop 4s ease-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.modal-sparkle-1 {
    top: 60px;
    left: 30px;
    animation-delay: 0s;
}

.modal-sparkle-2 {
    top: 40px;
    right: 60px;
    animation-delay: 0.8s;
}

.modal-sparkle-3 {
    bottom: 100px;
    left: 40px;
    animation-delay: 1.6s;
}

.modal-sparkle-4 {
    bottom: 80px;
    right: 35px;
    animation-delay: 2.4s;
}

.modal-sparkle-5 {
    top: 50%;
    left: 15px;
    animation-delay: 3.2s;
}

@keyframes celebrationPop {
    0% { opacity: 0; transform: scale(0) rotate(-20deg); }
    15% { opacity: 1; transform: scale(1.2) rotate(10deg); }
    30% { transform: scale(1) rotate(0deg); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: scale(0.8) translateY(-20px); }
}

/* Close Button - Elegant Circle */
.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(159, 93, 213, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    color: #9f5dd5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(159, 93, 213, 0.15);
}

.newsletter-close:hover {
    background: linear-gradient(135deg, #9f5dd5 0%, #ec4899 100%);
    border-color: transparent;
    color: white;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(159, 93, 213, 0.35);
}

/* Modal Content */
.newsletter-content {
    position: relative;
    z-index: 1;
    padding: 50px 40px 44px;
    text-align: center;
}

/* Animated Icon Badge */
.newsletter-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    background: linear-gradient(
        135deg,
        #9f5dd5 0%,
        #c084fc 40%,
        #f472b6 100%
    );
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    box-shadow:
        0 12px 35px -8px rgba(159, 93, 213, 0.5),
        0 6px 15px -4px rgba(244, 114, 182, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: iconBounce 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

.newsletter-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fbbf24, #f472b6, #c084fc, #60a5fa);
    z-index: -1;
    opacity: 0.5;
    filter: blur(12px);
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes iconGlow {
    0% { opacity: 0.3; transform: scale(0.95); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

/* Social Proof Badge */
.newsletter-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50px;
    margin-bottom: 20px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #92400e;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
    animation: proofPulse 2s ease-in-out infinite;
}

.newsletter-social-proof::before {
    content: '✨';
    font-size: 1rem;
}

@keyframes proofPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Title with Gradient */
.newsletter-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937 0%, #581c87 50%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Subtitle */
.newsletter-subtitle {
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits - Visual Cards */
.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.benefit-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 245, 255, 0.8) 100%);
    border: 1px solid rgba(159, 93, 213, 0.15);
    border-radius: 16px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #581c87;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(159, 93, 213, 0.08);
}

.benefit-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(159, 93, 213, 0.15);
    border-color: rgba(159, 93, 213, 0.3);
}

.benefit-tag span:first-child {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

/* Form Styling */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter-input-wrapper {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 18px 22px 18px 54px;
    border: 2px solid rgba(159, 93, 213, 0.2);
    border-radius: 16px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 1.05rem;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.newsletter-input::placeholder {
    color: #a1a1aa;
}

.newsletter-input:focus {
    border-color: #c084fc;
    box-shadow:
        0 0 0 4px rgba(192, 132, 252, 0.15),
        0 4px 20px rgba(159, 93, 213, 0.1);
    background: white;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #c084fc;
    pointer-events: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus ~ .input-icon,
.newsletter-input:focus + .input-icon {
    color: #9f5dd5;
    transform: translateY(-50%) scale(1.1);
}

/* CTA Button - High Impact */
.newsletter-submit {
    position: relative;
    width: 100%;
    padding: 18px 28px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #9f5dd5 0%, #7c3aed 50%, #6d28d9 100%);
    color: white;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 30px -6px rgba(124, 58, 237, 0.5),
        0 4px 12px -2px rgba(159, 93, 213, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    text-transform: uppercase;
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.newsletter-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px -8px rgba(124, 58, 237, 0.55),
        0 8px 20px -4px rgba(159, 93, 213, 0.35),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.newsletter-submit:hover::before {
    left: 100%;
}

.newsletter-submit:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-submit:hover .btn-arrow {
    transform: translateX(6px);
}

/* Loading State */
.newsletter-submit.is-loading {
    pointer-events: none;
}

.newsletter-submit.is-loading .btn-content {
    opacity: 0;
}

.newsletter-submit.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: white;
    border-radius: 50%;
    animation: buttonSpin 0.7s linear infinite;
}

@keyframes buttonSpin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.newsletter-error {
    display: none;
    padding: 14px 18px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc2626;
    text-align: center;
}

.newsletter-error.is-visible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: errorSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-error::before {
    content: '⚠️';
    font-size: 1rem;
}

@keyframes errorSlide {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Privacy Note */
.newsletter-privacy {
    margin-top: 20px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.6;
}

.newsletter-privacy a {
    color: #9f5dd5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.newsletter-privacy a:hover {
    color: #7c3aed;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Mobile Responsive */
@media (max-width: 520px) {
    .newsletter-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .newsletter-modal {
        max-width: 100%;
        border-radius: 28px 28px 0 0;
        max-height: 92vh;
        overflow-y: auto;
        transform: translateY(100%);
    }

    .newsletter-modal-overlay.is-active .newsletter-modal {
        transform: translateY(0);
    }

    .newsletter-content {
        padding: 44px 24px 36px;
    }

    .newsletter-icon {
        width: 72px;
        height: 72px;
        font-size: 2rem;
        border-radius: 20px;
    }

    .newsletter-title {
        font-size: 1.65rem;
    }

    .newsletter-subtitle {
        font-size: 0.95rem;
    }

    .newsletter-benefits {
        gap: 8px;
    }

    .benefit-tag {
        padding: 12px 8px;
        font-size: 0.7rem;
    }

    .benefit-tag span:first-child {
        font-size: 1.3rem;
    }

    .newsletter-input {
        padding: 16px 18px 16px 48px;
        font-size: 1rem;
    }

    .newsletter-submit {
        padding: 16px 24px;
        font-size: 1.05rem;
    }

    .modal-blob-1,
    .modal-blob-2 {
        opacity: 0.35;
    }

    .modal-sparkle-3,
    .modal-sparkle-4,
    .modal-sparkle-5 {
        display: none;
    }

    .newsletter-social-proof {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* ============================================
   NEWSLETTER SUCCESS PAGE
   ============================================ */

.page-newsletter-success {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #faf5ff 0%,
        #fff 40%,
        #ecfdf5 70%,
        #fce7f3 100%
    );
    min-height: 100vh;
    padding-bottom: var(--space-4xl);
}

/* Success Decorations */
.success-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.success-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.4;
    animation: successBlobFloat 15s ease-in-out infinite;
}

.success-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #86efac, #8bcd51);
    top: -120px;
    right: -100px;
    animation-delay: 0s;
}

.success-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #d8b4fe, #9f5dd5);
    bottom: 10%;
    left: -80px;
    animation-delay: -5s;
}

.success-blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
    top: 50%;
    right: -60px;
    animation-delay: -10s;
}

@keyframes successBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.success-confetti {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: confettiFall 4s ease-out infinite;
}

.success-confetti:nth-child(1) { left: 10%; animation-delay: 0s; }
.success-confetti:nth-child(2) { left: 25%; animation-delay: 0.5s; }
.success-confetti:nth-child(3) { left: 40%; animation-delay: 1s; }
.success-confetti:nth-child(4) { left: 55%; animation-delay: 1.5s; }
.success-confetti:nth-child(5) { left: 70%; animation-delay: 2s; }
.success-confetti:nth-child(6) { left: 85%; animation-delay: 2.5s; }

@keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Success Hero */
.success-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
}

.success-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8bcd51, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow:
        0 15px 40px -10px rgba(139, 205, 81, 0.5),
        0 5px 15px -5px rgba(0, 0, 0, 0.1);
    animation: successIconPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes successIconPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon-ring {
    position: absolute;
    inset: -10px;
    border: 3px solid rgba(139, 205, 81, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 600;
    color: #1f2937;
    margin-bottom: var(--space-md);
    animation: successFadeIn 0.8s ease-out 0.3s both;
}

.success-message {
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.7;
    animation: successFadeIn 0.8s ease-out 0.4s both;
}

.success-message strong {
    color: #9f5dd5;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social Section */
.success-social {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--space-xl);
    animation: successFadeIn 0.8s ease-out 0.5s both;
}

.social-card {
    background: white;
    border-radius: 24px;
    padding: var(--space-2xl);
    box-shadow:
        0 4px 20px rgba(159, 93, 213, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(159, 93, 213, 0.1);
}

.social-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.social-subtitle {
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--space-lg);
    background: #f9fafb;
    border: 2px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-link-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-link-icon {
    transform: scale(1.15);
}

.social-link-name {
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.social-link-instagram:hover {
    border-color: #E1306C;
    background: linear-gradient(135deg, #fce7f3, #fff);
}

.social-link-facebook:hover {
    border-color: #1877F2;
    background: linear-gradient(135deg, #dbeafe, #fff);
}

.social-link-linkedin:hover {
    border-color: #0077B5;
    background: linear-gradient(135deg, #e0f2fe, #fff);
}

/* Product CTA */
.success-product {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    animation: successFadeIn 0.8s ease-out 0.6s both;
}

.product-cta-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(159, 93, 213, 0.08) 0%,
        rgba(252, 231, 243, 0.15) 100%
    );
    border: 1px solid rgba(159, 93, 213, 0.15);
    border-radius: 24px;
    padding: var(--space-xl);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.product-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(159, 93, 213, 0.2);
    border-color: rgba(159, 93, 213, 0.3);
}

.product-image-wrapper {
    position: relative;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(159, 93, 213, 0.2);
    transition: transform 0.4s ease;
}

.product-cta-card:hover .product-image {
    transform: rotate(-3deg) scale(1.05);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 50px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #92400e;
    width: fit-content;
}

.product-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.product-description {
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

.product-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #9f5dd5, #7c3aed);
    color: white;
    border-radius: 50px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: var(--space-sm);
    width: fit-content;
    transition: all 0.3s ease;
}

.product-cta-card:hover .product-cta-button {
    background: linear-gradient(135deg, #b87fe3, #9f5dd5);
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .success-hero {
        padding: var(--space-2xl) var(--space-lg);
    }

    .success-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .success-icon {
        font-size: 2.5rem;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-link {
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--space-md);
        padding: var(--space-md) var(--space-lg);
    }

    .product-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-image-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }

    .product-badge,
    .product-cta-button {
        margin-left: auto;
        margin-right: auto;
    }

    .success-blob-1 {
        width: 250px;
        height: 250px;
    }

    .success-blob-2,
    .success-blob-3 {
        display: none;
    }

    .success-confetti {
        display: none;
    }
}

/* ============================================
   EVENTS PAGE
   ============================================ */

.page-events .article-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-purple-light);
}

.event-card > picture {
    flex-shrink: 0;
}

.event-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
}

.event-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    gap: var(--space-sm);
}

.event-date {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-purple));
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    width: fit-content;
}

.event-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: var(--space-sm) 0;
    line-height: 1.3;
}

.event-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin: 0;
}

.event-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-md);
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--color-purple), var(--color-purple-dark));
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 15px rgba(159, 93, 213, 0.3);
}

.event-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 93, 213, 0.4);
    color: var(--color-white);
}

/* Events Page - Mobile */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }

    .event-image {
        width: 100%;
        height: 250px;
    }

    .event-content {
        padding: var(--space-lg);
    }

    .event-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .event-image {
        height: 200px;
    }

    .event-content {
        padding: var(--space-md);
    }

    .event-cta {
        width: 100%;
    }
}

/* Event Buttons Container */
.event-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.event-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--color-purple);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--color-purple);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.event-info-btn:hover {
    background: var(--color-purple);
    color: var(--color-white);
}

/* Event Modal */
.event-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
}

.event-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.event-modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-modal-overlay.is-active .event-modal {
    transform: scale(1) translateY(0);
}

.event-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gray-600);
    transition: all 0.2s var(--ease-out);
    z-index: 10;
}

.event-modal-close:hover {
    background: var(--color-purple);
    color: var(--color-white);
}

.event-modal-content {
    padding: var(--space-2xl);
    overflow-y: auto;
    max-height: 90vh;
}

.event-modal-content .event-date {
    margin-bottom: var(--space-sm);
}

.event-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: var(--space-sm) 0 var(--space-lg);
    line-height: 1.3;
}

.event-modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: var(--space-xl) 0 var(--space-md);
}

.event-modal-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.event-program {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
}

.event-program li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray-700);
}

.event-program li:last-child {
    border-bottom: none;
}

.event-program li strong {
    color: var(--color-purple);
    font-weight: 700;
    margin-right: var(--space-sm);
}

.event-modal-content .event-cta {
    margin-top: var(--space-lg);
    width: 100%;
    text-align: center;
}

/* Modal Mobile */
@media (max-width: 640px) {
    .event-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .event-modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
    }

    .event-modal-overlay.is-active .event-modal {
        transform: translateY(0);
    }

    .event-modal-content {
        padding: var(--space-xl) var(--space-lg) var(--space-2xl);
    }

    .event-modal-content h2 {
        font-size: 1.5rem;
        padding-right: var(--space-xl);
    }

    .event-buttons {
        flex-direction: column;
    }

    .event-info-btn {
        width: 100%;
    }
}
