/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #C41E3A;
    --color-primary-dark: #9B1730;
    --color-dark: #1a1a2e;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f7f7f9;
    --color-bg-dark: #1a1a2e;
    --color-border: #e8e8e8;
    --gradient-accent: linear-gradient(135deg, #C41E3A 0%, #e85d04 50%, #f9a825 100%);
    --gradient-hero: linear-gradient(135deg, #C41E3A 0%, #d4374e 100%);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --section-padding: 80px 0;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--color-bg-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo img {
    height: 40px;
    width: auto;
}

.site-header .logo-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-header .back-link {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-header .back-link:hover {
    color: #fff;
}

.site-header .back-link svg {
    width: 16px;
    height: 16px;
}

/* ===== GRADIENT BAR ===== */
.gradient-bar {
    height: 4px;
    background: var(--gradient-accent);
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 40px;
    background: var(--color-bg-white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.hero-content .lead {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background: var(--color-bg-gray);
}

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

.hero-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-gray) 0%, #eee 100%);
}

.hero-image.placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

/* ===== SEPARATOR ===== */
.separator {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
}

.separator span {
    display: block;
    width: 32px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: var(--section-padding);
}

.content-section.bg-gray {
    background: var(--color-bg-gray);
}

.content-section.bg-white {
    background: var(--color-bg-white);
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-primary);
    margin-top: 12px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.content-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.content-section p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(196,30,58,0.06) 0%, rgba(232,93,4,0.04) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin: 28px 0;
}

.highlight-box p {
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 0;
}

/* ===== BENEFITS LIST ===== */
.benefits-list {
    list-style: none;
    margin: 24px 0;
    display: grid;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--color-bg-white);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.bg-gray .benefits-list li {
    background: var(--color-bg-white);
}

.bg-white .benefits-list li {
    background: var(--color-bg-gray);
}

.benefits-list li:hover {
    box-shadow: var(--shadow);
}

.benefits-list .check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.benefits-list .check-icon svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.benefits-list .benefit-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
}

/* ===== WOW SECTION ===== */
.wow-section {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
}

.wow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C41E3A 0%, #d4374e 30%, #e85d04 70%, #f9a825 100%);
    z-index: 0;
}

.wow-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.wow-section .container {
    position: relative;
    z-index: 1;
}

.wow-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.wow-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: background 0.2s;
}

.wow-item:hover {
    background: rgba(255,255,255,0.22);
}

.wow-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.wow-check svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.wow-item p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-heading);
}

@media (max-width: 640px) {
    .wow-section {
        padding: 48px 0;
    }

    .wow-item {
        padding: 16px 18px;
        gap: 12px;
    }

    .wow-item p {
        font-size: 14px;
    }

    .wow-check {
        width: 28px;
        height: 28px;
    }

    .wow-check svg {
        width: 15px;
        height: 15px;
    }
}

/* ===== ICON CARDS ===== */
.icon-cards-section {
    padding: 48px 0;
    background: var(--color-bg-white);
}

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

.icon-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: var(--color-bg-gray);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.icon-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(196,30,58,0.08), rgba(232,93,4,0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.icon-card h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
}

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

@media (max-width: 640px) {
    .icon-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .icon-card {
        padding: 20px 12px;
    }

    .icon-card h3 {
        font-size: 13px;
    }
}

/* ===== IMAGE BREAK ===== */
.image-break {
    padding: 0;
    overflow: hidden;
}

.image-break-inner {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.image-break-inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-break-deco .image-break-inner {
    height: 200px;
    background: linear-gradient(135deg, var(--color-bg-gray) 0%, #eee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.deco-pattern {
    display: flex;
    gap: 48px;
    align-items: center;
    opacity: 0.12;
}

.deco-pattern svg {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
}

@media (max-width: 640px) {
    .image-break-inner,
    .image-break-inner img {
        height: 250px;
        max-height: 250px;
    }

    .image-break-deco .image-break-inner {
        height: 140px;
    }

    .deco-pattern svg {
        width: 40px;
        height: 40px;
    }

    .deco-pattern {
        gap: 32px;
    }
}

/* ===== TWO COLUMN SECTION ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.two-col-image img {
    width: 100%;
    height: auto;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background: var(--color-bg-white);
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 8px;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-primary);
    margin: 12px auto 32px;
    border-radius: 2px;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 48px 20px 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-light);
    transition: transform 0.3s, color 0.2s;
}

.faq-item.active .faq-question::after {
    content: '-';
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    background: var(--color-bg-gray);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.cta-section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-primary);
    margin: 12px auto 20px;
    border-radius: 2px;
}

.cta-section p {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 16px;
}

.btn-cta {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 16px 48px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(196,30,58,0.3);
}

.btn-cta:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196,30,58,0.4);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-bg-dark);
    padding: 24px 0;
    text-align: center;
}

.site-footer p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* ===== HUB PAGE ===== */
.hub-header {
    padding: 60px 0 20px;
    text-align: center;
    background: var(--color-bg-white);
}

.hub-header h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.hub-header .subtitle {
    color: var(--color-text-light);
    font-size: 16px;
}

.hub-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(232,93,4,0.08));
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.article-card {
    background: var(--color-bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
}

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

.article-card .card-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin: 16px 0 16px 20px;
}

.article-card .card-body {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.article-card .card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    flex: 1;
}

.article-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.article-card .card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.article-card:hover .card-link svg {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image {
        max-height: 350px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .two-col.reverse {
        direction: ltr;
    }

}

@media (max-width: 640px) {
    :root {
        --section-padding: 48px 0;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .hub-header h1 {
        font-size: 26px;
    }

    .article-card .card-number {
        width: 40px;
        height: 40px;
        font-size: 15px;
        margin-left: 14px;
    }

    .article-card .card-body {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .btn-cta {
        padding: 14px 36px;
        font-size: 15px;
    }
}
