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

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-on-surface);
}

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

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, select {
    text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
    border: none;
}

ul, ol {
    list-style: none;
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
}

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #FF6B6B;
    --color-secondary: #4ECDC4;
    --color-tertiary: #FFE66D;
    --color-accent: #6C5CE7;
    --color-background: #F7F9FC;
    --color-card-bg: #FFFFFF;
    --color-neon-green: #2ECC71;
    --color-pastel-blue: #E0F2FE;
    --color-pastel-purple: #F3E8FF;
    --color-pastel-pink: #FCE7F3;
    --color-on-surface: #2D3436;
    
    /* Fonts */
    --font-headline: 'Fredoka', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Fredoka', sans-serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
::selection {
    background-color: var(--color-accent);
    color: #fff;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

/* ==========================================================================
   Custom Utilities (From old styles.css)
   ========================================================================== */
.glass-morphism {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.gamified-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gamified-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.neon-shadow-primary {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.neon-shadow-accent {
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-headline { font-family: var(--font-headline); }
.font-body { font-family: var(--font-body); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.text-white { color: #fff; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-neon-green { color: var(--color-neon-green); }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }

/* ==========================================================================
   Layout & Grid
   ========================================================================== */
.container {
    width: 100%;
    max-width: 80rem; /* 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.skip-link:focus {
    position: absolute;
    z-index: 50;
    padding: 1rem;
    background-color: var(--color-card-bg);
    color: var(--color-accent);
}

.navbar-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 1.5rem 1rem 0.5rem;
}

.navbar {
    max-width: 90rem;
    margin: 0 auto;
    border-radius: 9999px;
    padding: 0.5rem 0.5rem 0.5rem 6rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .navbar {
        padding-left: 5.5rem;
        padding-right: 1rem;
    }
}

@media (min-width: 1280px) {
    .navbar {
        justify-content: space-between;
    }
}

.navbar-logo-link {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-logo-link:hover {
    transform: translateY(-50%) scale(1.05);
}

.navbar-logo {
    height: 4rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
    .navbar-logo {
        height: 6rem;
    }
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    margin-left: auto;
    margin-right: 2rem;
}

@media (min-width: 1024px) {
    .navbar-menu {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .navbar-menu {
        gap: 2.5rem;
        margin-right: 3rem;
    }
}

.navbar-link {
    color: rgba(45, 52, 54, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.navbar-link.active {
    color: var(--color-accent);
    font-weight: 700;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link.active:hover {
    transform: scale(1.1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: var(--color-pastel-blue);
    transition: background-color 0.3s ease;
}

.lang-dropdown-btn:hover {
    background-color: #DBEAFE;
}

.lang-flag {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: cover;
    border-radius: 9999px;
}

.lang-dropdown-icon {
    font-size: 0.875rem;
    display: none;
}

@media (min-width: 768px) {
    .lang-dropdown-icon {
        display: inline;
    }
}

.lang-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 12rem;
    background-color: var(--color-card-bg);
    border: 1px solid #F3F4F6;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 50;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    display: block;
}

.lang-dropdown-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

.lang-dropdown-item:hover {
    background-color: #F9FAFB;
}

.lang-dropdown-item.active {
    background-color: var(--color-pastel-blue);
    color: var(--color-accent);
    font-weight: 700;
}

.lang-item-flag {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    object-fit: cover;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #F3F4F6;
}

.navbar-cta {
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-cta:hover {
    transform: scale(1.05);
}

.navbar-cta:active {
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .navbar-cta {
        font-size: 1rem;
    }
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-on-surface);
    color: #fff;
    width: 100%;
    padding: 5rem 0;
    margin-top: 3rem;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    position: relative;
    overflow: hidden;
}

.footer-blob {
    width: 24rem;
    height: 24rem;
    background-color: var(--color-accent);
    top: -12rem;
    right: -12rem;
    opacity: 0.2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 90rem;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-col-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-col-1 {
        align-items: flex-start;
    }
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    line-height: 2;
}

.footer-link {
    transition: color 0.3s ease;
}

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

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn.instagram:hover {
    background-color: #E1306C;
}

.social-btn.telegram:hover {
    background-color: #0088cc;
}

.social-btn.youtube:hover {
    background-color: #FF0000;
}


/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 9999px;
    font-weight: 900;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn:active {
    transform: scale(0.95);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.btn-outline {
    background-color: #fff;
    color: var(--color-on-surface);
    border: 4px solid var(--color-pastel-blue);
}

.btn-outline:hover {
    background-color: var(--color-pastel-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.main-content {
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-blob-1 {
    width: 24rem;
    height: 24rem;
    background-color: var(--color-pastel-pink);
    top: -5rem;
    left: -5rem;
}

.hero-blob-2 {
    width: 20rem;
    height: 20rem;
    background-color: var(--color-pastel-blue);
    top: 50%;
    right: -5rem;
}

.hero-section {
    position: relative;
    padding: 3rem 1.5rem;
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        flex-direction: row;
    }
}

.hero-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-text-col {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-accent);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-badge {
        margin: 0;
    }
}

.hero-badge-icon {
    color: var(--color-primary);
    font-size: 1rem;
}

.hero-headline {
    font-size: 3rem;
    line-height: 0.95;
    font-weight: 900;
    font-family: var(--font-headline);
    color: var(--color-on-surface);
    letter-spacing: -0.025em;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 6rem;
    }
}

.hero-headline-rotate {
    transition: color 0.3s ease;
}

.hero-headline-underline {
    display: block;
    font-size: clamp(1.75rem, 4.8vw, 3.5rem);
    line-height: 1.1;
    margin-top: 0.2em;
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-color: var(--color-tertiary);
    text-decoration-thickness: 6px;
    text-underline-offset: 4px;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(45, 52, 54, 0.7);
    max-width: 36rem;
    font-weight: 500;
    line-height: 1.625;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-ph {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

@media (min-width: 1024px) {
    .hero-ph {
        justify-content: flex-start;
    }
}

.hero-image-col {
    flex: 1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.hero-floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 20;
}

.hero-icon-tr {
    top: -2.5rem;
    right: -2.5rem;
    width: 6rem;
    height: 6rem;
    background-color: var(--color-tertiary);
    border-radius: 9999px;
    animation: bounce 2s infinite;
}

.hero-icon-bl {
    bottom: 2.5rem;
    left: -2.5rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--color-secondary);
    border-radius: 0.75rem;
    transform: rotate(12deg);
}

.hero-floating-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.hero-image-frame {
    position: relative;
    padding: 1rem;
    border-radius: 3rem;
    transform: rotate(2deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-bubble {
    position: absolute;
    padding: 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    gap: 0.75rem;
    z-index: 30;
}

@media (min-width: 1280px) {
    .hero-bubble {
        display: flex;
    }
}

.hero-bubble-left {
    left: -5rem;
    top: 25%;
}

.hero-bubble-right {
    right: -3rem;
    bottom: 5rem;
}

.bubble-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bubble-icon.bg-accent { background-color: var(--color-accent); }
.bubble-icon.bg-primary { background-color: var(--color-primary); }

.bubble-title {
    font-weight: 900;
    font-size: 0.75rem;
}

.bubble-title.text-accent { color: var(--color-accent); }
.bubble-title.text-muted { color: rgba(45, 52, 54, 0.5); }

.bubble-text {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-on-surface);
}


/* ==========================================================================
   Sections & General
   ========================================================================== */
.section {
    padding: 3rem 1.5rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    font-family: var(--font-headline);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(45, 52, 54, 0.6);
    font-weight: 500;
    max-width: 42rem;
    margin: 0 auto;
}

.badge {
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    display: inline-block;
}

.badge-tertiary { background-color: var(--color-tertiary); color: var(--color-on-surface); }
.badge-secondary { background-color: var(--color-secondary); color: #fff; }
.badge-primary { background-color: var(--color-primary); color: #fff; }

/* ==========================================================================
   Features Grid (Gamified)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.feature-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    border-width: 4px;
    border-style: solid;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-large {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .feature-card-large {
        grid-column: span 8;
        padding: 3rem;
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
    }
}

.feature-card-medium {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .feature-card-medium {
        grid-column: span 4;
    }
}

.feature-card-wide {
    grid-column: span 1;
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    box-shadow: 0 30px 60px -15px rgba(108, 92, 231, 0.5);
    flex-direction: column;
}

@media (min-width: 768px) {
    .feature-card-wide {
        grid-column: span 8;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

.feature-card.border-blue { border-color: var(--color-pastel-blue); background-color: #fff; }
.feature-card.border-purple { border-color: var(--color-pastel-purple); background-color: rgba(243, 232, 255, 0.4); }
.feature-card.border-pink { border-color: var(--color-pastel-pink); background-color: rgba(252, 231, 243, 0.4); }
.feature-card.border-yellow { border-color: var(--color-tertiary); background-color: #fff; }

.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper.bg-secondary { background-color: var(--color-secondary); color: #fff; }
.feature-icon-wrapper.bg-accent { background-color: var(--color-accent); color: #fff; }
.feature-icon-wrapper.bg-primary { background-color: var(--color-primary); color: #fff; }

.feature-title {
    font-size: 1.875rem;
    font-weight: 900;
    font-family: var(--font-headline);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 1.125rem;
    color: rgba(45, 52, 54, 0.7);
    line-height: 1.625;
    font-weight: 500;
}

.feature-card-wide .feature-title {
    font-size: 2.25rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .feature-card-wide .feature-title {
        font-size: 2.5rem;
    }
}

.feature-card-wide .feature-desc {
    color: rgba(255, 255, 255, 0.8);
}

.feature-chat-demo {
    flex: 1;
    width: 100%;
    background-color: rgba(224, 242, 254, 0.3);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 2px dashed rgba(78, 205, 196, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    padding: 1rem;
    border-radius: 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    max-width: 80%;
}

.chat-bubble.right {
    background-color: var(--color-accent);
    color: #fff;
    border-bottom-right-radius: 0;
    margin-left: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.chat-bubble.left {
    background-color: #fff;
    color: var(--color-on-surface);
    border-bottom-left-radius: 0;
    margin-right: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-pastel-blue);
}

.feature-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .feature-stats-grid {
        width: auto;
    }
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-val {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.stat-lbl {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* ==========================================================================
   Expats Section
   ========================================================================== */
.expats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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


/* ==========================================================================
   Demo Section
   ========================================================================== */
.demo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .demo-block {
        flex-direction: row;
        gap: 5rem;
    }
}

.demo-img-col {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.demo-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 2.5rem;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.demo-img:hover {
    transform: translateY(-8px);
}

.demo-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .demo-text-col.text-left { text-align: left; }
    .demo-text-col.text-right { text-align: right; }
    
    .demo-block .order-1 { order: 1; }
    .demo-block .order-2 { order: 2; }
}

.demo-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .demo-text-col.text-left .demo-icon-wrapper { margin-left: 0; margin-right: auto; }
    .demo-text-col.text-right .demo-icon-wrapper { margin-left: auto; margin-right: 0; }
}

.demo-title {
    font-size: 1.875rem;
    font-weight: 900;
    font-family: var(--font-headline);
    color: var(--color-on-surface);
}

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

.demo-desc {
    font-size: 1.25rem;
    color: rgba(45, 52, 54, 0.7);
    font-weight: 500;
    line-height: 1.625;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

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

.pricing-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.pricing-free {
    border: 4px solid var(--color-pastel-blue);
    transition: all 0.3s ease;
}

.pricing-free:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-premium {
    border: 6px solid var(--color-primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 20;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pricing-premium {
        transform: scale(1.1);
        margin-top: 0;
    }
}

.pricing-popular-badge {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.pricing-premium .pricing-icon {
    margin-top: -1rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-headline);
    color: var(--color-on-surface);
    margin-bottom: 1rem;
}

.pricing-price {
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.pricing-price .amount {
    font-size: 3rem;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

.pricing-price .period {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(45, 52, 54, 0.5);
    letter-spacing: normal;
    margin-left: 0.5rem;
}

.pricing-free .pricing-price { color: var(--color-accent); }
.pricing-premium .pricing-price { color: var(--color-primary); }

.pricing-meta {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(45, 52, 54, 0.5);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 700;
}

.pricing-premium .pricing-feature {
    font-weight: 900;
    color: var(--color-on-surface);
}

.pricing-feature-icon {
    font-size: 1.5rem;
}

.pricing-free .pricing-feature-icon { color: var(--color-neon-green); }
.pricing-premium .pricing-feature-icon { color: var(--color-primary); }

.pricing-btn-free {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 4px solid var(--color-accent);
    color: var(--color-accent);
    background-color: #fff;
    border-radius: 9999px;
    font-weight: 900;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.pricing-btn-free:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.pricing-btn-premium {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 9999px;
    font-weight: 900;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.pricing-btn-premium:hover {
    transform: scale(1.05);
}

.pricing-toggle {
    display: inline-flex;
    background-color: rgba(252, 231, 243, 0.2);
    border-radius: 9999px;
    padding: 0.25rem;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(252, 231, 243, 0.3);
}

.pricing-toggle-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.pricing-toggle-btn.active {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.pricing-toggle-btn.inactive {
    color: rgba(45, 52, 54, 0.6);
}

.pricing-toggle-btn.inactive:hover {
    color: var(--color-on-surface);
}

.save-badge {
    font-size: 0.75rem;
    color: var(--color-neon-green);
    font-weight: 900;
    margin-left: 0.5rem;
}


/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    border-width: 4px;
    border-style: solid;
}

.faq-item.border-blue { border-color: var(--color-pastel-blue); }
.faq-item.border-purple { border-color: var(--color-pastel-purple); }
.faq-item.border-pink { border-color: var(--color-pastel-pink); }
.faq-item.border-yellow { border-color: var(--color-tertiary); }
.faq-item.border-green { border-color: var(--color-secondary); }

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    font-weight: 900;
    font-size: 1.25rem;
    list-style: none;
    transition: background-color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-item.border-blue .faq-summary:hover { background-color: rgba(162, 210, 255, 0.2); }
.faq-item.border-purple .faq-summary:hover { background-color: rgba(243, 232, 255, 0.2); }
.faq-item.border-pink .faq-summary:hover { background-color: rgba(252, 231, 243, 0.2); }
.faq-item.border-yellow .faq-summary:hover { background-color: rgba(253, 203, 110, 0.2); }
.faq-item.border-green .faq-summary:hover { background-color: rgba(0, 184, 148, 0.2); }

.faq-icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 2rem 2rem 2rem;
    color: rgba(45, 52, 54, 0.7);
    font-weight: 500;
    line-height: 1.625;
}

/* ==========================================================================
   Bottom CTA Section
   ========================================================================== */
.cta-bottom-wrapper {
    background-color: var(--color-primary);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 40px 100px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-bottom-wrapper {
        padding: 5rem;
    }
}

.cta-bottom-title {
    font-size: 2.25rem;
    font-weight: 900;
    font-family: var(--font-headline);
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .cta-bottom-title {
        font-size: 4.5rem;
    }
}

.cta-bottom-action {
    padding-top: 2.5rem;
    position: relative;
    z-index: 10;
}

.btn-cta-bottom {
    display: inline-flex;
    background-color: #fff;
    color: var(--color-primary);
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}

.btn-cta-bottom:hover {
    transform: scale(1.1);
}

.btn-cta-bottom:active {
    transform: scale(0.95);
}

.btn-cta-bottom-icon {
    font-size: 2.25rem;
    flex: 0 0 auto;
}

/* Mobile refinements for the feature cards and bottom CTA. */
@media (max-width: 767px) {
    #features,
    .cta-bottom-section {
        padding-left: 0;
        padding-right: 0;
    }

    #features .section-header {
        margin-bottom: 2.5rem;
    }

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

    #features .section-subtitle {
        font-size: 1.0625rem;
        line-height: 1.5;
    }

    #features .features-grid {
        gap: 1rem;
        min-width: 0;
    }

    #features .feature-card {
        min-width: 0;
        padding: 1.5rem;
        border-width: 3px;
        border-radius: 1.25rem;
        gap: 1.25rem;
    }

    #features .feature-card:hover {
        transform: none;
    }

    #features .feature-card > * {
        min-width: 0;
    }

    #features .feature-title,
    #features .feature-card-wide .feature-title {
        font-size: 1.5rem;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    #features .feature-desc {
        font-size: 1rem;
        line-height: 1.55;
    }

    #features .feature-chat-demo {
        min-width: 0;
        padding: 1rem;
        border-radius: 1.25rem;
    }

    #features .chat-bubble {
        max-width: 92%;
        padding: 0.875rem;
        overflow-wrap: anywhere;
    }

    #features .feature-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        min-width: 0;
    }

    #features .stat-box {
        min-width: 0;
        padding: 1rem 0.625rem;
        border-radius: 1rem;
    }

    #features .stat-val {
        font-size: 1.75rem;
    }

    #features .stat-lbl {
        font-size: 0.6875rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .cta-bottom-wrapper {
        padding: 2.25rem 1.25rem;
        border-radius: 1.25rem;
    }

    .cta-bottom-title {
        font-size: 2rem;
    }

    .cta-bottom-action {
        display: flex;
        justify-content: center;
        padding-top: 1.75rem;
    }

    .btn-cta-bottom {
        width: 100%;
        max-width: 20rem;
        padding: 1rem 1.25rem;
        gap: 0.625rem;
        font-size: 1.125rem;
        line-height: 1.2;
        white-space: normal;
    }

    .btn-cta-bottom:hover {
        transform: none;
    }

    .btn-cta-bottom-icon {
        font-size: 1.5rem;
    }
}


/* ==========================================================================
   Contacts & Legal Pages
   ========================================================================== */
.page-container {
    padding: 8rem 1.5rem 6rem 1.5rem;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-content-wrapper {
    width: 100%;
    max-width: 56rem;
    position: relative;
    z-index: 10;
}

.page-card {
    background-color: #fff;
    border: 4px solid var(--color-pastel-blue);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .page-card {
        padding: 3.5rem;
    }
}

.page-title {
    font-size: 2.25rem;
    font-weight: 900;
    font-family: var(--font-headline);
    color: var(--color-on-surface);
    margin-bottom: 1.5rem;
}

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

.page-divider {
    height: 0.25rem;
    background-color: var(--color-pastel-blue);
    width: 100%;
    margin: 2rem 0;
    border-radius: 9999px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-row {
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
    }
}

.contact-label {
    color: rgba(45, 52, 54, 0.6);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding-top: 0.25rem;
}

.contact-value {
    font-weight: 700;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .contact-value {
        font-size: 1.25rem;
    }
}

.contact-value a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--color-accent);
}

.contact-value.email a {
    color: var(--color-accent);
    font-family: monospace;
}

.contact-value.email a:hover {
    color: var(--color-primary);
}

.contact-value ul {
    list-style-type: disc;
    list-style-position: inside;
    color: rgba(45, 52, 54, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bots-section {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px dashed var(--color-pastel-pink);
    margin-top: 3rem;
}

.bots-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-headline);
    color: var(--color-on-surface);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bots-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.bot-badge {
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bot-link {
    font-weight: 700;
    color: var(--color-primary);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bot-link:hover {
    color: var(--color-accent);
}

.bots-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(45, 52, 54, 0.6);
    font-weight: 500;
    font-style: italic;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}


/* ==========================================================================
   Legal Render
   ========================================================================== */
.legal-updated {
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(45, 52, 54, 0.5);
    margin-bottom: 0.5rem;
}

.legal-govnote {
    font-size: 0.875rem;
    color: rgba(45, 52, 54, 0.6);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.legal-content-wrapper {
    max-width: 90rem;
    margin: 0 auto;
}


/* ==========================================================================
   Blog Pages
   ========================================================================== */
.blog-index-container {
    padding: 8rem 1.5rem 6rem 1.5rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.blog-index-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-index-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-headline);
    color: var(--color-on-surface);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .blog-index-title { font-size: 4.5rem; }
}

.blog-empty-state {
    background-color: #fff;
    border: 4px solid var(--color-pastel-blue);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-empty-icon {
    font-size: 3.75rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}

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

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

.blog-card {
    background-color: #fff;
    border: 4px solid var(--color-pastel-blue);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: scale(1.02);
}

.blog-card-img-wrapper {
    display: block;
    aspect-ratio: 16 / 9;
    background-color: rgba(162, 210, 255, 0.3);
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.blog-meta-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    color: rgba(45, 52, 54, 0.5);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-headline);
    color: var(--color-on-surface);
}

.blog-card-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--color-accent);
}

.blog-card-desc {
    color: rgba(45, 52, 54, 0.7);
    font-weight: 500;
    line-height: 1.625;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    color: var(--color-accent);
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-post-card {
    max-width: 90rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background-color: #fff;
    border: 4px solid var(--color-pastel-blue);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .blog-post-card { padding: 3.5rem; }
}

.blog-breadcrumb {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: rgba(45, 52, 54, 0.6);
}

.blog-breadcrumb a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--color-accent);
}

.blog-breadcrumb span {
    margin: 0 0.5rem;
}

.blog-post-header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-post-title {
    font-size: 2.25rem;
    font-weight: 900;
    font-family: var(--font-headline);
    letter-spacing: -0.025em;
    color: var(--color-on-surface);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .blog-post-title { font-size: 3.75rem; }
}

.blog-post-desc {
    font-size: 1.25rem;
    color: rgba(45, 52, 54, 0.7);
    font-weight: 500;
    line-height: 1.625;
}

.blog-post-cover {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.prose {
    color: rgba(45, 52, 54, 0.8);
    font-weight: 500;
    line-height: 1.625;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    font-family: var(--font-headline);
    font-weight: 900;
    color: var(--color-on-surface);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h2 { font-size: 1.875rem; }
.prose h3 { font-size: 1.5rem; }
.prose p { margin-bottom: 1.25rem; }
.prose a { color: var(--color-primary); font-weight: 700; text-decoration: underline; }
.prose a:hover { color: var(--color-accent); }
.prose ul { list-style-type: disc; margin-left: 1.25rem; margin-bottom: 1.25rem; }
.prose ol { list-style-type: decimal; margin-left: 1.25rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }

.blog-related {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--color-pastel-blue);
}

.blog-related h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--color-on-surface);
}

.blog-related ul { margin: 0; padding-left: 1.25rem; }
.blog-related li + li { margin-top: 0.5rem; }
.blog-related a { color: var(--color-primary); font-weight: 700; }

.blog-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-pastel-blue);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--color-pastel-blue);
    color: var(--color-accent);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-back {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-pastel-blue);
    color: var(--color-accent);
    border-radius: 9999px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.btn-blog-back:hover {
    transform: scale(1.05);
}

.legal-content h2 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--color-on-surface);
    margin: 2.5rem 0 1rem;
}
.legal-content h3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-on-surface);
    margin: 1.75rem 0 0.75rem;
}
.legal-content p { margin: 0 0 1rem; line-height: 1.7; color: rgba(45, 52, 54, 0.8); }
.legal-content ul, .legal-content ol { margin: 0 0 1rem 1.25rem; line-height: 1.7; color: rgba(45, 52, 54, 0.8); }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin: 0 0 0.5rem; padding-left: 0.25rem; }
.legal-content li::marker { color: var(--color-accent); }
.legal-content a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.legal-content a:hover { color: var(--color-accent); }
.legal-content strong { color: var(--color-on-surface); font-weight: 700; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.25rem; font-size: 0.95rem; }
.legal-content th, .legal-content td { border: 1px solid #e2e8f0; padding: 0.6rem 0.75rem; text-align: left; }
.legal-content th { background: rgba(162, 210, 255, 0.1); font-weight: 700; color: var(--color-on-surface); }
.legal-content .legal-block {
    background: rgba(162, 210, 255, 0.1);
    border: 2px dashed var(--color-pastel-pink);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 0 0 1.5rem;
}
.legal-content .legal-block p:last-child { margin-bottom: 0; }

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.7;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}
