/* Vision Everyday - Editorial Eye Wellness Resource */
/* Main Stylesheet */

:root {
    --primary-blue: #254983;
    --secondary-blue: #2fb3c5;
    --light-blue: #e9f0fc;
    --accent-blue: #2755a6;
    --text-dark: #272727;
    --text-gray: #555;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #f7f6f4;
    --border-light: #e0e0e0;
    --border-medium: #d7e3f5;
    --footer-bg: #1a1a1a;
    --footer-text: #999;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-editorial: 'Source Serif Pro', Georgia, serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

a:hover {
    color: var(--secondary-blue);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--secondary-blue);
    font-weight: 400;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-blue);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-white) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 73, 131, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 73, 131, 0.45);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-blue);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-blue), var(--bg-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue);
}

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

.card-content {
    padding: 25px;
}

.card-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-meta {
    font-size: 13px;
    color: var(--text-light);
}

/* Topic Cards */
.topic-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.topic-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.topic-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.topic-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Article List */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.article-item:hover {
    box-shadow: var(--shadow-hover);
}

.article-thumb {
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, var(--light-blue), var(--bg-cream));
    border-radius: var(--radius);
    flex-shrink: 0;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.article-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-blue);
}

.newsletter-form .btn:hover {
    background: var(--bg-cream);
}

/* About Block */
.about-block {
    background: var(--bg-cream);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.about-block h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-block p {
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--footer-text);
    font-size: 14px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: var(--secondary-blue);
    font-weight: 400;
}

.footer-copyright {
    font-size: 13px;
}

/* Sponsored Label */
.sponsored-label {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsored-banner {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border: 1px solid #ffeaa7;
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.sponsored-banner p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-dark);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary-blue);
}

.breadcrumbs span {
    color: var(--text-dark);
}

/* Category Header */
.category-header {
    background: linear-gradient(135deg, var(--light-blue), var(--bg-white));
    padding: 60px 0;
    text-align: center;
}

.category-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.category-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Article Styles */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content blockquote {
    background: var(--light-blue);
    border-left: 4px solid var(--secondary-blue);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-dark);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Related Articles */
.related-articles {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 16px;
    flex-shrink: 0;
}

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

.legal-content h2 {
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back to Home Bar */
.back-to-home-bar {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.back-to-home-bar a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 500;
}

.back-to-home-bar a:hover {
    color: var(--secondary-blue);
}

/* Advertorial Label */
.advertorial-label {
    text-align: center;
    padding: 14px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.advertorial-label span {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Button Styles for Sponsored */
.cta-video-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white !important;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 73, 131, 0.35);
}

.cta-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 73, 131, 0.45);
    color: white;
}

/* Partner Note Panel */
.partner-note-panel {
    background: var(--light-blue);
    border-top: 1px solid var(--border-medium);
    border-bottom: 1px solid var(--border-medium);
    padding: 25px 0;
}

.partner-note-panel h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.partner-note-panel p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Support Links Bar */
.support-links-bar {
    background: var(--bg-light);
    padding: 15px 0;
    text-align: center;
}

.support-links-bar p {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Category Navigation */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-nav a {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.category-nav a:hover,
.category-nav a.active {
    background: var(--primary-blue);
    color: white;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .article-item {
        flex-direction: column;
    }

    .article-thumb {
        width: 100%;
        height: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* 404 Page */
.error-page {
    text-align: center;
    padding: 100px 20px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Modal Styles for Blog Articles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--light-blue), var(--bg-white));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-body ul, .modal-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.modal-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.article-meta-modal {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

/* Article card click cursor */
.article-item {
    cursor: pointer;
}

/* ============================================
   PREMIUM HOMEPAGE REDESIGN 2026
   Modern, Glassmorphism, Gradient Accents
   ============================================ */

/* Hero Section - Premium Redesign */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5f 50%, #254983 100%);
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(47, 179, 197, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(37, 73, 131, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 179, 197, 0.15);
    border: 1px solid rgba(47, 179, 197, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #2fb3c5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-premium h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.hero-premium h1 span {
    background: linear-gradient(135deg, #2fb3c5, #4dd0e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-premium-primary {
    background: linear-gradient(135deg, #2fb3c5, #1e9aa8);
    color: white;
    box-shadow: 0 10px 30px rgba(47, 179, 197, 0.4);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(47, 179, 197, 0.5);
    color: white;
}

.btn-premium-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-main {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

.hero-floating-card.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 4s;
}

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

.hero-floating-card i {
    font-size: 24px;
    color: #2fb3c5;
    margin-bottom: 8px;
}

.hero-floating-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 20px;
}

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

/* Premium Section Styles */
.section-premium {
    padding: 100px 0;
    position: relative;
}

.section-header-premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2fb3c5;
    margin-bottom: 16px;
}

.section-header-premium h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.section-header-premium p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

/* Topics - Glass Cards */
.topics-glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.topic-glass-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(220, 230, 245, 0.8);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.topic-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #254983, #2fb3c5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.topic-glass-card:hover::before {
    transform: scaleX(1);
}

.topic-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 73, 131, 0.12);
    border-color: rgba(47, 179, 197, 0.3);
}

.topic-icon-premium {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e9f0fc 0%, #f0f7ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #254983;
    transition: all 0.3s ease;
}

.topic-glass-card:hover .topic-icon-premium {
    background: linear-gradient(135deg, #254983 0%, #2fb3c5 100%);
    color: white;
    transform: scale(1.05);
}

.topic-glass-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.topic-glass-card h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.topic-glass-card h3 a:hover {
    color: #2fb3c5;
}

.topic-glass-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Featured Guides - Magazine Style */
.featured-premium {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
}

.featured-grid-magazine {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    height: 600px;
}

.featured-card-magazine {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.featured-card-magazine:first-child {
    grid-row: span 2;
}

.featured-card-magazine:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.featured-card-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.featured-card-magazine:first-child .featured-card-image {
    height: 70%;
}

.featured-card-magazine:not(:first-child) .featured-card-image {
    height: 60%;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card-magazine:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-card-content {
    padding: 24px 28px;
}

.featured-card-magazine:first-child .featured-card-content {
    height: 30%;
}

.featured-card-magazine:not(:first-child) .featured-card-content {
    height: 40%;
}

.featured-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2fb3c5;
    margin-bottom: 12px;
}

.featured-card-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.featured-card-content h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.featured-card-content h3 a:hover {
    color: #254983;
}

.featured-card-magazine:first-child h3 {
    font-size: 1.75rem;
}

.featured-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.featured-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-meta::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #2fb3c5;
}

/* Sponsored Section - Gradient Card */
.sponsored-premium {
    background: linear-gradient(135deg, #1a2a3a 0%, #254983 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.sponsored-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.sponsored-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sponsored-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sponsored-premium h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.sponsored-premium > .container > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.sponsored-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    margin: 40px 0;
    text-align: left;
}

.sponsored-glass-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.sponsored-glass-card strong {
    color: #2fb3c5;
}

.sponsored-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2fb3c5, #1e9aa8);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(47, 179, 197, 0.4);
}

.sponsored-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(47, 179, 197, 0.5);
    color: white;
}

/* Latest Articles - Horizontal Scroll Cards */
.articles-premium {
    background: #ffffff;
}

.articles-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-premium-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.article-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 73, 131, 0.12);
}

.article-premium-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-premium-card:hover .article-premium-image img {
    transform: scale(1.08);
}

.article-premium-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #254983;
}

.article-premium-content {
    padding: 28px;
}

.article-premium-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.article-premium-content h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.article-premium-content h3 a:hover {
    color: #2fb3c5;
}

.article-premium-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-premium-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #999;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.article-premium-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding: 14px 28px;
    border: 2px solid #254983;
    color: #254983;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #254983;
    color: white;
    transform: translateY(-2px);
}

/* Editor's Picks - Minimal Cards */
.editors-premium {
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

.editors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.editor-pick-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e8ecf2;
    transition: all 0.4s ease;
    position: relative;
}

.editor-pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #254983, #2fb3c5);
    border-radius: 16px 0 0 16px;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.editor-pick-card:hover::before {
    transform: scaleY(1);
}

.editor-pick-card:hover {
    box-shadow: 0 15px 40px rgba(37, 73, 131, 0.1);
    transform: translateX(5px);
}

.editor-pick-number {
    font-size: 48px;
    font-weight: 700;
    color: #e9f0fc;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.editor-pick-card .card-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2fb3c5;
    margin-bottom: 12px;
}

.editor-pick-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.editor-pick-card h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.editor-pick-card h3 a:hover {
    color: #254983;
}

.editor-pick-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Newsletter - Gradient Background */
.newsletter-premium {
    background: linear-gradient(135deg, #254983 0%, #1b3a5f 50%, #0d1b2a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(47, 179, 197, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-premium h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.newsletter-premium > .container > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.newsletter-form-premium {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-premium input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form-premium input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form-premium button {
    padding: 18px 36px;
    background: linear-gradient(135deg, #2fb3c5, #1e9aa8);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(47, 179, 197, 0.4);
}

.newsletter-form-premium button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(47, 179, 197, 0.5);
}

.newsletter-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

/* About Block - Split Design */
.about-premium {
    background: #ffffff;
    padding: 100px 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-box {
    background: linear-gradient(135deg, #e9f0fc 0%, #f7f6f4 100%);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.about-visual-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(47, 179, 197, 0.15) 0%, transparent 70%);
}

.about-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #254983, #2fb3c5);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: white;
    box-shadow: 0 20px 40px rgba(37, 73, 131, 0.3);
}

.about-visual-content h4 {
    font-size: 1.5rem;
    color: #254983;
    margin-bottom: 12px;
}

.about-visual-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.about-content > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

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

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #254983;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.about-stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .topics-glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid-magazine {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .featured-card-magazine:first-child {
        grid-row: span 1;
    }
    
    .articles-horizontal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .editors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section-premium {
        padding: 60px 0;
    }
    
    .topics-glass-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-horizontal-grid {
        grid-template-columns: 1fr;
    }
    
    .editors-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-premium {
        flex-direction: column;
    }
    
    .newsletter-form-premium input,
    .newsletter-form-premium button {
        width: 100%;
    }
    
    .about-stats {
        justify-content: center;
    }
}

/* ============================================
   UNIQUE NON-TEMPLATE DESIGN v2
   Asymmetric, Layered, Editorial Style
   ============================================ */

/* Hero v2 - Diagonal Split with Layers */
.hero-unique {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 40%, #254983 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-unique::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(225deg, rgba(47, 179, 197, 0.1) 0%, transparent 50%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-unique::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
}

.hero-unique-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-unique-content {
    padding: 60px 0 60px 60px;
    position: relative;
}

.hero-unique-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2fb3c5;
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.hero-unique-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: #2fb3c5;
}

.hero-unique h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.hero-unique h1 em {
    font-style: normal;
    color: #2fb3c5;
    position: relative;
}

.hero-unique h1 em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(47, 179, 197, 0.3);
    z-index: -1;
}

.hero-unique-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-unique-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-unique-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2fb3c5;
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-unique-cta:hover {
    border-color: #2fb3c5;
    color: #ffffff;
}

.hero-unique-cta:hover::before {
    left: 0;
}

.hero-unique-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.hero-unique-image-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 500px;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-unique-image-main img {
    width: 100%;
    border-radius: 4px;
}

.hero-unique-layer {
    position: absolute;
    background: rgba(47, 179, 197, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 28px;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.hero-unique-layer.layer-1 {
    top: 15%;
    left: 5%;
    z-index: 3;
}

.hero-unique-layer.layer-2 {
    bottom: 20%;
    right: 0;
    z-index: 3;
}

.hero-unique-layer.layer-3 {
    top: 60%;
    left: -5%;
    background: rgba(37, 73, 131, 0.8);
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.hero-scroll-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: #2fb3c5;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { left: 0; }
    50% { left: 40px; }
    100% { left: 0; }
}

/* Topics v2 - Horizontal Bands */
.topics-unique {
    background: #fafbfc;
    padding: 0;
}

.topic-band {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #e8ecf2;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.topic-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2fb3c5;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.topic-band:hover::before {
    transform: scaleY(1);
}

.topic-band:hover {
    background: #ffffff;
}

.topic-band-number {
    font-size: 80px;
    font-weight: 700;
    color: #e9f0fc;
    line-height: 1;
    padding: 40px 60px;
    font-family: 'Playfair Display', serif;
    transition: color 0.4s ease;
}

.topic-band:hover .topic-band-number {
    color: #2fb3c5;
}

.topic-band-content {
    padding: 40px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.topic-band-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e9f0fc, #f7f6f4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #254983;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.topic-band:hover .topic-band-icon {
    background: linear-gradient(135deg, #254983, #2fb3c5);
    color: white;
    transform: rotate(360deg);
}

.topic-band-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.topic-band-text h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.topic-band-text h3 a:hover {
    color: #2fb3c5;
}

.topic-band-text p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.topic-band-arrow {
    margin-left: auto;
    font-size: 24px;
    color: #ccc;
    transition: all 0.3s ease;
}

.topic-band:hover .topic-band-arrow {
    color: #2fb3c5;
    transform: translateX(10px);
}

/* Featured v2 - Asymmetric Overlap */
.featured-unique {
    background: linear-gradient(180deg, #1a2a3a 0%, #254983 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.featured-unique::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg, rgba(47, 179, 197, 0.05) 0%, transparent 50%);
}

.featured-unique-header {
    margin-bottom: 80px;
    position: relative;
}

.featured-unique-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.featured-unique-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 500px;
}

.featured-unique-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    position: relative;
}

.featured-unique-main {
    position: relative;
    z-index: 2;
}

.featured-unique-main .featured-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.featured-unique-main .featured-card-image {
    height: 400px;
    overflow: hidden;
}

.featured-unique-main .featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-unique-main .featured-card:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-unique-main .featured-card-content {
    padding: 40px;
}

.featured-unique-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: -60px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.featured-unique-side .featured-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr;
}

.featured-unique-side .featured-card-image {
    height: 100%;
    min-height: 120px;
}

.featured-unique-side .featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-unique-side .featured-card-content {
    padding: 24px;
}

.featured-unique-side .featured-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.featured-unique-side .featured-card-content h3 a {
    color: #1a1a1a;
}

/* Sponsored v2 - Glass Panel */
.sponsored-unique {
    background: #fafbfc;
    padding: 100px 0;
    position: relative;
}

.sponsored-unique-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(37, 73, 131, 0.95), rgba(26, 42, 58, 0.98));
    border-radius: 24px;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(37, 73, 131, 0.3);
}

.sponsored-unique-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 179, 197, 0.2) 0%, transparent 70%);
}

.sponsored-unique-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sponsored-unique-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsored-unique-container h2 {
    font-size: 36px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.sponsored-unique-container > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.sponsored-unique-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2fb3c5;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sponsored-unique-cta:hover {
    background: #1e9aa8;
    transform: translateY(-2px);
    color: white;
}

/* Articles v2 - Numbered List */
.articles-unique {
    background: #ffffff;
    padding: 100px 0;
}

.articles-unique-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px;
}

.articles-unique-header h2 {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
}

.articles-unique-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    text-align: right;
}

.articles-list-unique {
    border-top: 1px solid #e8ecf2;
}

.article-item-unique {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #e8ecf2;
    transition: all 0.3s ease;
    position: relative;
}

.article-item-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 100%;
    background: #2fb3c5;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.article-item-unique:hover::before {
    transform: scaleY(1);
}

.article-item-unique:hover {
    padding-left: 20px;
}

.article-item-number {
    font-size: 48px;
    font-weight: 700;
    color: #e9f0fc;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transition: color 0.3s ease;
}

.article-item-unique:hover .article-item-number {
    color: #2fb3c5;
}

.article-item-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.article-item-content h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.article-item-content h3 a:hover {
    color: #2fb3c5;
}

.article-item-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.article-item-meta {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #999;
}

.article-item-arrow {
    font-size: 20px;
    color: #ccc;
    transition: all 0.3s ease;
}

.article-item-unique:hover .article-item-arrow {
    color: #2fb3c5;
    transform: translateX(10px);
}

/* Editors v2 - Masonry Cards */
.editors-unique {
    background: linear-gradient(180deg, #f0f4f8 0%, #fafbfc 100%);
    padding: 100px 0;
}

.editors-unique-header {
    text-align: center;
    margin-bottom: 60px;
}

.editors-unique-header h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.editors-unique-header p {
    color: #666;
    font-size: 17px;
}

.editors-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.editor-card-unique {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.editor-card-unique:nth-child(2) {
    margin-top: 40px;
}

.editor-card-unique:nth-child(3) {
    margin-top: 80px;
}

.editor-card-unique::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #254983, #2fb3c5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.editor-card-unique:hover::after {
    transform: scaleX(1);
}

.editor-card-unique:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 73, 131, 0.1);
}

.editor-card-tag {
    display: inline-block;
    background: #e9f0fc;
    color: #254983;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.editor-card-unique h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.editor-card-unique h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.editor-card-unique h3 a:hover {
    color: #254983;
}

.editor-card-unique p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Newsletter v2 - Inline Form */
.newsletter-unique {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 179, 197, 0.05) 0%, transparent 50%);
}

.newsletter-unique-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-unique-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.newsletter-unique-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0;
}

.newsletter-unique-form {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.newsletter-unique-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 0;
    color: white;
    font-size: 18px;
    outline: none;
}

.newsletter-unique-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-unique-form button {
    background: transparent;
    border: none;
    color: #2fb3c5;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-unique-form button:hover {
    color: #ffffff;
}

/* About v2 - Overlapping Design */
.about-unique {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-unique::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(180deg, #f0f4f8 0%, #fafbfc 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.about-unique-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-unique-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-unique-content > p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-unique-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.about-stat-unique {
    position: relative;
}

.about-stat-unique::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 1px;
    height: 100%;
    background: #e8ecf2;
}

.about-stat-unique:last-child::after {
    display: none;
}

.about-stat-number-unique {
    font-size: 48px;
    font-weight: 700;
    color: #254983;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-stat-label-unique {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.about-unique-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #254983;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.about-unique-cta:hover {
    gap: 20px;
    color: #2fb3c5;
}

.about-unique-visual {
    position: relative;
}

.about-unique-card {
    background: linear-gradient(135deg, #254983, #1b3a5f);
    border-radius: 24px;
    padding: 48px;
    color: white;
    position: relative;
    box-shadow: 0 30px 60px rgba(37, 73, 131, 0.3);
}

.about-unique-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #2fb3c5;
    border-radius: 24px;
    z-index: -1;
}

.about-unique-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.about-unique-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.about-unique-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for unique design */
@media (max-width: 1024px) {
    .hero-unique-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-unique-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-unique-label {
        padding-left: 0;
    }
    
    .hero-unique-label::before {
        display: none;
    }
    
    .hero-unique h1 {
        font-size: 40px;
    }
    
    .hero-unique-visual {
        display: none;
    }
    
    .hero-scroll {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .topic-band {
        grid-template-columns: 1fr;
    }
    
    .topic-band-number {
        padding: 20px 30px;
        font-size: 48px;
    }
    
    .topic-band-content {
        padding: 20px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .topic-band-arrow {
        margin-left: 0;
    }
    
    .featured-unique-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-unique-side {
        margin-left: 0;
        margin-top: 30px;
    }
    
    .sponsored-unique-container {
        padding: 40px;
    }
    
    .articles-unique-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .articles-unique-header p {
        text-align: left;
    }
    
    .article-item-unique {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .article-item-meta,
    .article-item-arrow {
        display: none;
    }
    
    .editors-masonry {
        grid-template-columns: 1fr;
    }
    
    .editor-card-unique:nth-child(2),
    .editor-card-unique:nth-child(3) {
        margin-top: 0;
    }
    
    .newsletter-unique-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-unique-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-unique::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-unique h1 {
        font-size: 32px;
    }
    
    .hero-unique-desc {
        font-size: 16px;
    }
    
    .featured-unique-header h2 {
        font-size: 32px;
    }
    
    .sponsored-unique-container h2 {
        font-size: 28px;
    }
    
    .articles-unique-header h2,
    .editors-unique-header h2 {
        font-size: 32px;
    }
    
    .about-unique-content h2 {
        font-size: 32px;
    }
    
    .about-unique-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-stat-unique::after {
        display: none;
    }
}
