/*
 * Poetra Premium Theme - Combined Stylesheet
 * Generated from tokens.css, global.css, components.css, and style.css
 */

:root {
    --color-paper: oklch(0.15 0.02 260);
    --color-paper-2: oklch(0.22 0.02 260);
    --color-paper-3: oklch(0.28 0.02 260);
    --color-accent: oklch(0.75 0.15 80);
    --color-accent-hover: oklch(0.85 0.15 80);
    --color-text: oklch(0.95 0.01 260);
    --color-text-muted: oklch(0.65 0.01 260);
    --color-border: oklch(0.3 0 0);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --leading-tight: 1.1;
    --leading-normal: 1.5;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-pill: 9999px;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--color-paper);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: var(--leading-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 0 var(--space-4) 0;
    line-height: var(--leading-tight);
    overflow-wrap: anywhere;
    min-width: 0;
}

p {
    margin: 0 0 var(--space-4) 0;
    color: var(--color-text-muted);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

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

.floating-nav {
    position: fixed;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    background: color-mix(in oklch, var(--color-paper-2) 80%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: var(--space-2) var(--space-4);
    display: flex;
    gap: var(--space-4);
    z-index: 50;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-nav.is-hidden {
    transform: translate(-50%, 150%);
}

.floating-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-text);
    font-size: 11px;
    font-weight: 500;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.floating-nav a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.floating-nav a:hover,
.floating-nav a.current-menu-item {
    background: transparent;
    color: var(--color-accent);
}

.floating-nav a:hover svg,
.floating-nav a.current-menu-item svg {
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: var(--text-base);
    text-align: center;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.2s ease;
    border: none;
    text-decoration: none;
}

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

.btn-primary {
    background: var(--color-accent);
    color: var(--color-paper);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-paper);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-paper-2);
}

.btn-block {
    display: flex;
    width: 100%;
}

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-12) var(--space-4);
    text-align: left;
}

@media (max-width: 991px) {
    .hero {
        text-align: center;
        padding-top: var(--space-24);
    }
}

.hero-title {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-5xl));
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 0 var(--space-8);
}

@media (max-width: 991px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .btn-group {
        justify-content: center;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-8) 0;
}

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

    .bento-item-featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.bento-card {
    background: var(--color-paper-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

.bento-card:hover {
    border-color: var(--color-accent);
}

.bento-card:hover .bento-image {
    transform: scale(1.05);
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.8;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: var(--space-6);
    margin-top: auto;
    background: linear-gradient(to top, var(--color-paper-2) 20%, transparent);
}

.fleet-carousel {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-8);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fleet-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-nav {
    display: flex;
    gap: var(--space-2);
}

.btn-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-paper-2);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background: var(--color-accent);
    color: var(--color-paper);
    border-color: var(--color-accent);
}

.experience-badge {
    position: absolute;
    bottom: var(--space-8);
    left: -var(--space-8);
    background: color-mix(in oklch, var(--color-paper-2) 80%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

@media (max-width: 991px) {
    .experience-badge {
        bottom: var(--space-4);
        left: var(--space-4);
        max-width: calc(100% - var(--space-8));
    }
}

.fleet-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--color-paper-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.fleet-card-img-wrapper {
    position: relative;
    padding-top: 65%;
    background: var(--color-paper-3);
    overflow: hidden;
}

.fleet-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-img {
    transform: scale(1.05);
}

.fleet-card-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-accent);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.filter-pills {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    padding: var(--space-4) 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-paper-2);
    padding: var(--space-4);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 40;
}

.sticky-price {
    font-size: var(--text-xl);
    font-weight: 700;
    font-family: var(--font-display);
}

details.accordion-item {
    background: var(--color-paper-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: background-color 0.2s ease;
}

details.accordion-item[open] {
    background: var(--color-paper-3);
    border-color: var(--color-accent);
}

details.accordion-item summary {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-lg);
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

details.accordion-item summary::after {
    content: "+";
    font-size: var(--text-2xl);
    color: var(--color-accent);
    line-height: 1;
    transition: transform 0.2s ease;
}

details.accordion-item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

details.accordion-item .accordion-content {
    padding: 0 var(--space-6) var(--space-6) var(--space-6);
    color: var(--color-text-muted);
}

.premium-form-container {
    background: color-mix(in oklch, var(--color-paper-2) 75%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px color-mix(in oklch, var(--color-accent) 10%, transparent);
    position: relative;
    overflow: hidden;
}

.premium-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.form-label.required::after {
    content: " *";
    color: var(--color-accent);
}

.form-control,
.form-select {
    width: 100%;
    height: 48px;
    padding: var(--space-3) var(--space-4);
    background: var(--color-paper);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    line-height: normal;
    transition: all 0.2s ease;
}

.form-select option {
    background: var(--color-paper-2);
    color: var(--color-text);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-accent) 20%, transparent);
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.form-row {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.form-col {
    flex: 1;
    min-width: 140px;
}

.radio-group {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-2) 0;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    font-weight: 500;
}

.radio-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-paper);
    cursor: pointer;
    position: relative;
}

.radio-input:checked {
    border-color: var(--color-accent);
}

.radio-input:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    width: 100%;
    font-size: var(--text-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-whatsapp:disabled {
    background: var(--color-border);
    color: var(--color-text-muted);
    cursor: not-allowed;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    margin-bottom: var(--space-8);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.site-brand:hover {
    transform: scale(1.02);
}

.site-brand svg {
    color: var(--color-accent);
}

.site-brand-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1;
}

.site-brand-text span {
    color: var(--color-accent);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-paper-3), var(--color-paper));
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-accent);
    font-size: var(--text-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-quote-icon {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    color: var(--color-paper-3);
    font-size: 64px;
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
}

.testimonial-card {
    position: relative;
    background: var(--color-paper-2);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.premium-footer {
    background: var(--color-paper);
    border-top: 1px solid var(--color-border);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-24);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.footer-heading {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-4);
    font-family: var(--font-display);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-6);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-paper-2);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
}

.footer-social .social-icon.youtube:hover {
    background: #FF0000;
    color: #FFFFFF;
    border-color: #FF0000;
}

.footer-social .social-icon.facebook:hover {
    background: #1877F2;
    color: #FFFFFF;
    border-color: #1877F2;
}

.footer-social .social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFFFFF;
    border-color: transparent;
}

.testimonial-carousel {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-8);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-top: 5px;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-carousel .testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-4));
    scroll-snap-align: start;
    min-width: 300px;
}

@media (max-width: 991px) {
    .testimonial-carousel .testimonial-card {
        flex: 0 0 calc(50% - var(--space-3));
    }
}

@media (max-width: 768px) {
    .testimonial-carousel .testimonial-card {
        flex: 0 0 85%;
    }
}

.floating-wa-container {
    position: fixed;
    right: var(--space-6);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
    bottom: 60px;
}

.floating-wa-container > * {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .floating-wa-container {
        bottom: 110px;
        right: var(--space-4);
    }
}

.wa-dropdown {
    background: var(--color-paper);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 280px;
    margin-bottom: var(--space-4);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-dropdown.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-header {
    background: #25D366;
    color: #fff;
    padding: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.wa-header-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
    flex-shrink: 0;
}

.wa-body {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wa-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.2s ease;
}

.wa-item:last-child {
    border-bottom: none;
}

.wa-item:hover {
    background: var(--color-paper-2);
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-paper-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    position: relative;
    font-weight: 700;
}

.wa-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #25D366;
    border: 2px solid var(--color-paper);
    border-radius: 50%;
}

.wa-name {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.wa-role {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.floating-wa-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    border: 2px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    flex-shrink: 0;
}

.floating-wa-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.premium-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-2);
    border-radius: var(--radius-md);
    background: var(--color-paper-2);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
    font-family: var(--font-display);
    text-decoration: none;
    transition: all 0.2s ease;
}

.premium-pagination .page-numbers.current {
    background: var(--color-accent);
    color: var(--color-paper);
    border-color: var(--color-accent);
}

.premium-pagination .page-numbers:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.bento-card:hover .hover-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.hero-img-parallax {
    animation: parallaxFloat 20s infinite alternate linear;
}

@keyframes parallaxFloat {
    0% {
        transform: scale(1.02) translateY(0);
    }

    100% {
        transform: scale(1.05) translateY(-2%);
    }
}

.filter-pills .btn {
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-pills .btn.active-filter {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: color-mix(in oklch, var(--color-accent) 10%, transparent);
}

.filter-pills .btn:not(.active-filter) {
    background: var(--color-paper-2);
    border-color: var(--color-border);
}

.filter-pills .btn:not(.active-filter):hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.blog-hero {
    padding: var(--space-16) var(--space-4) var(--space-12);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, color-mix(in oklch, var(--color-accent) 15%, transparent) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.blog-hero-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.blog-hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.blog-hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

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

.blog-card {
    background: var(--color-paper-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--color-paper-3);
}

.blog-card-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    opacity: 0.2;
}

.blog-card-image-fallback svg {
    width: 48px;
    height: 48px;
}

.blog-card-badges {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    display: flex;
    gap: var(--space-2);
    z-index: 2;
    pointer-events: none;
}

.blog-badge {
    background: color-mix(in oklch, var(--color-paper-2) 80%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-text);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
}

.blog-card-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-3);
}

.blog-card-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.blog-card-excerpt {
    color: var(--color-text-muted);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.blog-card-footer {
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-4);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.2s ease;
}

.blog-read-more svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-read-more:hover {
    color: var(--color-accent);
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-12);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-4);
    border-radius: var(--radius-pill);
    background: var(--color-paper-2);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 600;
    font-family: var(--font-display);
    text-decoration: none;
    transition: all 0.2s ease;
    gap: var(--space-2);
}

.blog-pagination .page-numbers.current {
    background: var(--color-accent);
    color: var(--color-paper);
    border-color: var(--color-accent);
}

.blog-pagination .page-numbers:hover:not(.current) {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.blog-pagination .prev,
.blog-pagination .next {
    padding: 0 var(--space-4);
}

.blog-empty {
    text-align: center;
    padding: var(--space-16) 0;
    color: var(--color-text-muted);
    font-size: var(--text-lg);
}

/* --- Responsive Fixes --- */

/* Form Input Normalization */
input[type="datetime-local"].form-control {
    min-height: 48px;
}

/* Archive List Styling */
.archive-container {
    padding-top: var(--space-16);
}
.archive-main-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.bento-card-title {
    margin-bottom: var(--space-2);
    font-size: var(--text-xl);
    font-family: var(--font-display);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.bento-card-title.is-featured {
    font-size: var(--text-4xl);
}

.bento-card-price {
    color: var(--color-accent);
    font-weight: 700;
    font-size: var(--text-lg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.bento-card-price.is-featured {
    font-size: var(--text-2xl);
}

@media (max-width: 768px) {
    /* Header Fixes */
    .site-header {
        padding: var(--space-3) var(--space-4);
        margin-bottom: var(--space-4);
    }
    .site-brand img {
        height: 32px !important;
    }
    .header-btn-contact {
        padding: var(--space-2) var(--space-3) !important;
        font-size: 13px !important;
    }

    /* Archive List Mobile Enhancements */
    .archive-container {
        padding-top: var(--space-8);
    }
    .archive-main-title {
        font-size: 28px;
    }
    .bento-content {
        padding: var(--space-4);
    }
    .bento-card-title, .bento-card-title.is-featured {
        font-size: var(--text-xl); /* Reduce featured font size on mobile */
    }
    .bento-card-price, .bento-card-price.is-featured {
        font-size: var(--text-lg);
    }

    /* Floating Nav Mobile Enhancements */
    .floating-nav {
        width: 100%;
        max-width: calc(100% - 32px);
        justify-content: space-around;
        padding: var(--space-2) var(--space-2);
        gap: 0;
    }
    .floating-nav a {
        padding: var(--space-2) var(--space-1);
        font-size: 10px;
    }

    /* Filter Pills & Grid Fixes */
    .filter-pills {
        justify-content: flex-start;
        padding-bottom: var(--space-4);
        align-items: center;
    }
    .filter-pills .btn {
        font-size: 13px;
        padding: var(--space-2) var(--space-4);
        white-space: nowrap !important;
    }
    .bento-grid {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    /* Bento Card Height Fix */
    .bento-card {
        min-height: 280px;
    }

    /* Footer Mobile Alignment */
    .premium-footer, .premium-footer .footer-col {
        text-align: center;
    }
    .premium-footer .site-brand {
        justify-content: center;
        width: 100%;
    }
    .premium-footer .footer-social {
        justify-content: center !important;
    }
    .premium-footer .footer-links li {
        justify-content: center !important;
    }
    .premium-footer .footer-payment-bar {
        flex-direction: column !important;
        text-align: center;
        justify-content: center !important;
    }
    .premium-footer .footer-payment-bar > div {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center;
    }
    .premium-footer .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        justify-content: center !important;
        gap: var(--space-4) !important;
    }
    .premium-footer .footer-bottom > div {
        justify-content: center !important;
        width: 100%;
    }
}

