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

:root {
    --bg-light: #f5f2ec;
    --bg-white: #fffefc;
    --text-dark: #000000;
    --text-gray: #666666;
    --accent-pink: #ff6b9d;
    --category-business: #d4a574;
    --category-lifestyle: #a8c090;
    --category-technology: #000000;
    --category-entertainment: #000000;
    --category-social: #000000;
    --transition: all 0.3s ease;
    --hero-cta: #5b4bb5;
    --hero-cta-hover: #4a3d9a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.footer-brand {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.footer-logo-link:hover {
    opacity: 0.85;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.footer-logo-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header {
    background-color: var(--bg-light);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.header-email-link {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.header-email-link:hover {
    color: var(--text-dark);
}

.header-email-link .header-email {
    border-bottom: 1px solid transparent;
}

.header-email-link:hover .header-email {
    border-bottom-color: var(--text-dark);
}

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

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.01em;
}

@media (max-width: 380px) {
    .logo-tagline {
        display: none;
    }
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    .logo-name {
        font-size: 18px;
    }
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    opacity: 0.7;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    transition: var(--transition);
}

.cart-btn:hover {
    opacity: 0.7;
}

.contact-btn {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.contact-btn:hover {
    background-color: #333333;
    transform: translateX(2px);
}

.arrow {
    font-size: 16px;
}

.newsletter-banner {
    background-color: #ebe8e4;
    padding: 12px 0;
    text-align: center;
}

.newsletter-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.newsletter-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
}

.newsletter-icon {
    width: 20px;
    height: 20px;
    background-color: var(--accent-pink);
    display: inline-block;
    border-radius: 2px;
    background-image: none;
}

.main-content {
    padding: 0 0 60px;
    min-height: calc(100vh - 400px);
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ec 50%, #f5f0e8 100%);
    padding: 80px 0 70px;
    text-align: center;
}

.hero-container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title-line1 {
    display: block;
    font-family: inherit;
    letter-spacing: -0.02em;
}

.hero-title-line2 {
    display: block;
    font-size: 1.35em;
    font-weight: 600;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.01em;
    margin-top: 0.15em;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
    row-gap: 16px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--hero-cta);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 20px 14px 24px;
    border-radius: 999px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(91, 75, 181, 0.35);
}

.hero-btn:hover {
    background: var(--hero-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(91, 75, 181, 0.4);
}

.hero-btn-text {
    margin-right: 4px;
}

.hero-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.hero-btn-arrow svg {
    width: 16px;
    height: 16px;
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-avatars {
    display: flex;
    margin-right: -6px;
}

.hero-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b8e8, #9b8bc9);
    border: 2px solid var(--bg-white);
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar:nth-child(1) { z-index: 4; }
.hero-avatar:nth-child(2) { z-index: 3; }
.hero-avatar:nth-child(3) { z-index: 2; }
.hero-avatar:nth-child(4) { z-index: 1; }

.hero-stars {
    color: #eab308;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero-trusted {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

/* Problems / challenges section (milky) */
.problems-section {
    background: linear-gradient(180deg, #faf8f5 0%, #f5f2ec 100%);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    max-width: 900px;
    height: 340px;
    background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.problems-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1240px;
}

.problems-title {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 700;
    color: #1f1d24;
    line-height: 1.25;
    margin-bottom: 28px;
}

.problems-title-highlight {
    color: #6d5a9e;
}

.problems-desc {
    font-size: 1.125rem;
    color: #4a4656;
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto 56px;
}

.problems-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.problems-card {
    background: #fffefc;
    border-radius: 14px;
    padding: 32px;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.problems-card:hover {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.problems-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(109, 90, 158, 0.12);
    color: #5b4b8a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.problems-card-icon svg {
    width: 28px;
    height: 28px;
}

.problems-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f1d24;
    margin-bottom: 14px;
    line-height: 1.35;
}

.problems-card-desc {
    font-size: 1rem;
    color: #55525e;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .problems-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .problems-section {
        padding: 72px 0 64px;
    }

    .problems-title {
        margin-bottom: 22px;
    }

    .problems-desc {
        margin-bottom: 40px;
    }

    .problems-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problems-card {
        padding: 26px;
    }

    .problems-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .problems-card-icon svg {
        width: 26px;
        height: 26px;
    }
}

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

.welcome-title {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-dark);
}

.articles-section {
    margin: 80px 0 0;
    position: relative;
    height: 820px;
    min-height: 820px;
}

.articles-grid {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
}

.article-card {
    position: absolute;
    width: 320px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    cursor: pointer;
    transform-origin: center;
}

.article-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 10;
}

.card-1 {
    left: calc(50% - 160px + 398px);
    top: calc(10% + 360px);
    transform: rotate(-30deg);
    z-index: 5;
}

.card-2 {
    left: calc(50% - 160px + 444px);
    top: calc(+ 198px);
    transform: rotate(-15deg);
    z-index: 6;
}

.card-3 {
    left: calc(50% - 160px);
    top: calc(+ 460px);
    transform: rotate(0deg);
    z-index: 3;
}

.card-4 {
    left: calc(50% - 160px - 444px);
    top: calc(+ 198px);
    transform: rotate(15deg);
    z-index: 2;
}

.card-5 {
    left: calc(50% - 160px - 398px);
    top: calc(10% + 360px);
    transform: rotate(30deg);
    z-index: 1;
}

.article-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.article-category {
    position: absolute;
    top: 10px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-white);
    z-index: 2;
}

.category-business {
    background-color: var(--category-business);
    left: 10px;
}

.category-lifestyle {
    background-color: var(--category-lifestyle);
    right: 10px;
}

.category-technology,
.category-entertainment,
.category-social {
    background-color: var(--category-technology);
    color: var(--bg-white);
    left: 10px;
}

.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.article-separator {
    color: var(--text-gray);
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.article-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--text-gray);
}

/* FAQ section */
.faq-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    z-index: 2;
}

.faq-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 40px;
}

.faq-title-main {
    display: block;
}

.faq-title-sub {
    font-weight: 500;
    font-style: italic;
    color: var(--text-gray);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(0,0,0,0.03);
}

.faq-chevron {
    flex-shrink: 0;
    margin-left: 12px;
    color: var(--text-gray);
    transition: transform 0.25s ease;
}

.faq-item[data-open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    transition: height 0.25s ease;
}

.faq-answer p {
    margin: 0;
    padding: 14px 20px 18px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-section {
    text-align: center;
    margin-top: 48px;
    padding: 40px 0;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.featured-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 36px auto 0;
    text-align: left;
}

.featured-article-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.featured-article-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.featured-article-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.featured-article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background-color: var(--category-business);
    color: var(--bg-white);
}

.featured-article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-article-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.35;
    color: var(--text-dark);
}

.featured-article-card:hover .featured-article-title {
    color: var(--text-gray);
}

.featured-article-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.55;
    margin: 0 0 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-article-meta {
    font-size: 12px;
    color: var(--text-gray);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-info {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-disclaimer {
    max-width: 900px;
    margin-bottom: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-disclaimer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-disclaimer p {
    margin-bottom: 14px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer-warning {
    padding-left: 12px;
}

.footer-disclaimer-trademarks {
    font-size: 12px;
    opacity: 0.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 14px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background-color: #333333;
}

.cookie-btn.reject {
    background-color: #e8e4dc;
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background-color: #ddd8d0;
}

@media (max-width: 1024px) {
    .articles-section {
        height: auto;
        min-height: 500px;
    }

    .card-1, .card-2, .card-3, .card-4, .card-5 {
        position: relative;
        left: auto;
        top: auto;
        transform: rotate(0deg) !important;
        margin: 60px auto;
        width: 90%;
        max-width: 400px;
    }

    .articles-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 44px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 20px;
    }

    .faq-section {
        margin-top: 48px;
    }

    .faq-title {
        margin-bottom: 28px;
    }

    .cta-section {
        margin-top: 0px;
    }

    .featured-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        justify-content: center;
        gap: 15px;
    }

    .welcome-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .featured-articles {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
    }

    .article-card {
        width: 100%;
        max-width: 350px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 36px 0 40px;
    }

    .hero-title-line2 {
        font-size: 1.15em;
    }

    .nav-list {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .welcome-title {
        font-size: 20px;
    }

    .cta-title {
        font-size: 24px;
    }
}

