/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #ff6b35;
    --primary-dark: #e55a28;
    --primary-light: #ff8c61;
    --secondary-color: #004e92;
    --accent-blue: #0066cc;
    --accent-coral: #ff6b35;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #444;

    /* Dark theme colors */
    --dark-bg: #050b1f;
    --dark-surface: #0f172a;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --normal-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --header-height: 4rem;
    --section-padding: 5rem 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--normal-size);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: var(--header-height);
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section__title--white {
    color: var(--white);
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: var(--normal-size);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.button--primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.button--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button--secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.button--outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.button--outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.button--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.nav__logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    color: var(--secondary-color);
}

.logo-pro {
    color: var(--primary-color);
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 999px;
    background-color: var(--gray-light);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.theme-toggle__option {
    border: none;
    background: transparent;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle__option.is-active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.theme-toggle__option:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: var(--h1-size);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__illustration {
    position: relative;
    width: 100%;
    height: 620px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    animation: none;
}

.floating-card:nth-child(1) {
    top: 4%;
    left: 6%;
}

.floating-card:nth-child(2) {
    top: 22%;
    right: 8%;
}

.floating-card:nth-child(3) {
    top: 45%;
    left: 8%;
}

.floating-card:nth-child(4) {
    top: 34%;
    right: 40%;
}

.floating-card:nth-child(5) {
    top: 62%;
    right: 10%;
}

.floating-card:nth-child(6) {
    bottom: 14%;
    left: 8%;
}

.card-icon {
    font-size: 1.75rem;
}

.card-text {
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    font-size: 0.8rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--white);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about__paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.about__founder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 16px;
    color: var(--white);
}

.founder__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder__title {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.founder__description {
    line-height: 1.6;
    opacity: 0.95;
}

.governance__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.governance__item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.governance__item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.governance__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.governance__text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.governance__text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== NUMBERS SECTION ===== */
.numbers {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    color: var(--white);
}

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.number__card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.number__card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.number__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.number__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.number__label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ===== PRESS SECTION ===== */
.press {
    background-color: var(--white);
    padding: 4rem 0;
}

.press__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: center;
}

.press__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--gray-light);
    transition: var(--transition);
    min-height: 120px;
}

.press__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.press__logo {
    max-width: 180px;
    max-height: 60px;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: var(--transition);
}

.press__item:hover .press__logo {
    opacity: 1;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions {
    background-color: var(--gray-light);
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution__card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.solution__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.solution__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.solution__description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Solutions Banner */
.solutions__banner {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background-color: var(--white);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit__card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 16px;
    transition: var(--transition);
}

.benefit__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit__icon {
    font-size: 2.5rem;
}

.benefit__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.benefit__list {
    list-style: none;
}

.benefit__list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.benefit__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: var(--gray-light);
}

.faq__content {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq__question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--primary-color);
}

.faq__icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p,
.faq__answer ul {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq__answer ul {
    list-style-position: inside;
}

.faq__answer li {
    margin: 0.5rem 0;
}

.faq__answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.faq__answer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--white);
}

.cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta__description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}


.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__buttons--contact {
    flex-direction: column;
    align-items: center;
}

.cta__phones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 640px;
}

.cta__phones .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta .button--primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .button--primary:hover {
    background-color: var(--gray-light);
}

.cta .button--secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta .button--secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem 0;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer__logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.footer__logo-img:hover {
    transform: scale(1.05);
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.75rem;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer__list a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--small-size);
}

/* ===== THEME OVERRIDES ===== */
body[data-theme="dark"] {
    background-color: #050b1f;
    color: #e2e8f0;
}

body[data-theme="dark"] .theme-toggle {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .theme-toggle__option {
    color: #e2e8f0;
}

body[data-theme="dark"] .theme-toggle__option.is-active {
    background: var(--primary-light);
    color: #0b1120;
}

body[data-theme="dark"] .header {
    background-color: rgba(5, 12, 28, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

body[data-theme="dark"] .nav__link {
    color: #e2e8f0;
}

body[data-theme="dark"] .nav__link:hover,
body[data-theme="dark"] .nav__link.active-link {
    color: var(--primary-light);
}

body[data-theme="dark"] .nav__link::after {
    background-color: var(--primary-light);
}

body[data-theme="dark"] .nav__menu {
    background-color: rgba(5, 11, 23, 0.98);
}

body[data-theme="dark"] .nav__toggle,
body[data-theme="dark"] .nav__close {
    color: #e2e8f0;
}

body[data-theme="dark"] .hero {
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.25), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(0, 78, 146, 0.35), transparent 50%),
                #050b1f;
}

body[data-theme="dark"] .hero__title,
body[data-theme="dark"] .section__title,
body[data-theme="dark"] .section__title--white,
body[data-theme="dark"] .governance__title,
body[data-theme="dark"] .benefit__title,
body[data-theme="dark"] .solution__title {
    color: #f8fafc;
}

body[data-theme="dark"] .hero__description,
body[data-theme="dark"] .section__description,
body[data-theme="dark"] .about__paragraph,
body[data-theme="dark"] .governance__text p,
body[data-theme="dark"] .solution__description,
body[data-theme="dark"] .benefit__list li,
body[data-theme="dark"] .faq__answer p,
body[data-theme="dark"] .faq__answer ul,
body[data-theme="dark"] .cta__description {
    color: #cbd5f5;
}

body[data-theme="dark"] .about,
body[data-theme="dark"] .solutions,
body[data-theme="dark"] .benefits,
body[data-theme="dark"] .faq {
    background-color: #050b1f;
}

body[data-theme="dark"] .numbers {
    background: radial-gradient(circle at top, #122243 0%, #050814 100%);
}

body[data-theme="dark"] .cta {
    background: linear-gradient(135deg, #09132b 0%, #040912 100%);
}

body[data-theme="dark"] .solution__card,
body[data-theme="dark"] .benefit__card,
body[data-theme="dark"] .faq__item,
body[data-theme="dark"] .governance__item,
body[data-theme="dark"] .floating-card,
body[data-theme="dark"] .number__card {
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    color: #e2e8f0;
}

body[data-theme="dark"] .card-text {
    color: #f8fafc;
}

body[data-theme="dark"] .about__founder {
    background: linear-gradient(135deg, rgba(0, 78, 146, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
}

body[data-theme="dark"] .faq__question {
    color: #e2e8f0;
}

body[data-theme="dark"] .faq__icon {
    color: var(--primary-light);
}

body[data-theme="dark"] .button--secondary {
    color: #e2e8f0;
    border-color: rgba(226, 232, 240, 0.5);
}

body[data-theme="dark"] .button--secondary:hover {
    background-color: #e2e8f0;
    color: #0b1120;
}

body[data-theme="dark"] .numbers__grid .number__value {
    color: var(--primary-light);
}

body[data-theme="dark"] .numbers__label {
    color: #d5ddff;
}

body[data-theme="dark"] .press {
    background-color: var(--dark-surface);
}

body[data-theme="dark"] .press__item {
    background-color: var(--dark-bg);
}

body[data-theme="dark"] .press__item:hover {
    background-color: var(--dark-surface);
}

body[data-theme="dark"] .footer {
    background-color: #02060f;
}

/* ===== INFOGRAPHICS ===== */
.infographic {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 4rem 0;
}

.infographic__container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Economia Infographic */
.economy-infographic {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.economy-infographic__visual {
    position: relative;
}

.economy-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.economy-infographic__stats {
    display: grid;
    gap: 1.5rem;
}

.stat-bar {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stat-bar__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 12px;
    opacity: 0.15;
}

.stat-bar__fill--orange {
    background: var(--primary-color);
    width: 40%;
}

.stat-bar__fill--blue {
    background: var(--secondary-color);
    width: 100%;
}

.stat-bar__content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-bar__label {
    font-weight: 600;
    color: var(--text-color);
}

.stat-bar__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-bar__value--blue {
    color: var(--secondary-color);
}

/* Process Infographic */
.process-infographic {
    margin-top: 3rem;
}

.process-infographic__title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
    border-radius: 2px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step__icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover .process-step__icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.process-step__number {
    position: absolute;
    top: -10px;
    right: calc(50% - 50px);
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.process-step__desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Timeline Infographic */
.timeline-infographic {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a5c 100%);
    border-radius: 24px;
    color: var(--white);
}

.timeline-infographic__title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.timeline {
    display: flex;
    justify-content: space-around;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-item__year {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.timeline-item__content {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 150px;
}

.timeline-item__icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-item__text {
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Dark mode for infographics */
body[data-theme="dark"] .infographic {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

body[data-theme="dark"] .economy-infographic {
    background: var(--dark-surface);
}

body[data-theme="dark"] .stat-bar {
    background: var(--dark-bg);
}

body[data-theme="dark"] .stat-bar__label {
    color: #e2e8f0;
}

body[data-theme="dark"] .process-step__icon {
    background: var(--dark-surface);
    border-color: var(--primary-light);
}

body[data-theme="dark"] .process-step:hover .process-step__icon {
    background: var(--primary-color);
}

body[data-theme="dark"] .process-step__title {
    color: #f8fafc;
}

body[data-theme="dark"] .process-step__desc {
    color: #cbd5e1;
}

body[data-theme="dark"] .process-infographic__title {
    color: #f8fafc;
}

/* Responsive infographics */
@media screen and (max-width: 968px) {
    .economy-infographic {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-steps::before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 4px;
        height: auto;
    }

    .process-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }

    .process-step__icon {
        margin: 0;
        flex-shrink: 0;
    }

    .process-step__number {
        top: 50%;
        right: auto;
        left: -14px;
        transform: translateY(-50%);
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .timeline-item__content {
        max-width: 100%;
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background-color: var(--white);
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__close,
    .nav__toggle {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .nav__btns {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .nav__btns .button--primary {
        display: none;
    }
    .theme-toggle {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
    }
    
    .hero__illustration {
        height: 480px;
    }
    
    .about__content {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --h1-size: 2rem;
        --h2-size: 1.75rem;
        --section-padding: 3rem 0;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__illustration {
        height: 360px;
    }
    
    .floating-card {
        padding: 1.15rem;
        min-width: 200px;
        gap: 0.9rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .button--large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
}
