@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
    --v-gold: #FFA500;
    --v-gold-vibrant: #FFA500;
    --v-white: #ffffff;
    --v-glass-border: rgba(255, 165, 0, 0.5);
    --v-glass-bg: rgba(255, 255, 255, 0.1);
    --bg-dark: #02050e;
}

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

body {
    min-height: 100vh;
    color: var(--v-white);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.bg_layer {
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    /* Fallback color moved here */
    background-image: url('assets/bg-new.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 1;
}

.bg_layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 27, 65, 0.2) 0%, rgba(2, 5, 14, 0.8) 85%);
}

.container {
    max-width: 1640px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px 0;
    text-align: center;
}

/* Header & Logo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(2, 5, 14, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Burger Menu Styles */
.burger-toggle {
    position: relative;
}

#burger-check {
    display: none;
}

.burger-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 35px;
    height: 25px;
    z-index: 1001;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--v-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

#burger-check:checked~.burger-btn span:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}

#burger-check:checked~.burger-btn span:nth-child(2) {
    opacity: 0;
}

#burger-check:checked~.burger-btn span:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(5, 5, 5, 0.98));
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 100px 40px;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(100%);
    border-left: 1px solid var(--v-glass-border);
}

#burger-check:checked~.side-menu {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--v-gold);
    cursor: pointer;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-nav a {
    color: var(--v-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
    line-height: 1.4;
}

.side-nav a:hover {
    color: var(--v-gold);
}

.vbalance_small {
    font-size: 1rem;
    letter-spacing: 6px;
    margin-bottom: 20px;
    color: var(--v-gold) !important;
    text-transform: uppercase;
    font-weight: 600;
}

.hero_title {
    font-size: 100px !important;
    line-height: 1.0 !important;
    margin: 0 auto 30px;
    /* Reduced margin */
    color: var(--v-white);
    font-weight: 900 !important;
    max-width: 1400px;
}

.hero_title .v-gold-text {
    color: var(--v-gold);
}

@media (max-width: 1024px) {
    .hero_title {
        font-size: 3.8rem !important;
    }
}

.hero_desc {
    font-size: 48px !important;
    max-width: 1600px;
    margin: 0 auto 40px;
    /* Reduced margin */
    line-height: 1.2;
    color: var(--v-white) !important;
    font-weight: 700 !important;
}

.tags {
    font-size: 2.2rem !important;
    color: var(--v-gold-vibrant) !important;
    margin-bottom: 70px;
    letter-spacing: 6px;
    font-weight: 800 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-rendering: optimizeLegibility;
}

.tags span {
    padding: 0;
    color: var(--v-gold-vibrant) !important;
}

@media (max-width: 1024px) {
    .tags {
        font-size: 1.5rem !important;
        gap: 20px;
    }
}

.major_pillars {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* Reduced gap from 80px */
    margin: 40px 0 20px;
    flex-wrap: nowrap;
}

.pillar_button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    max-width: 493px;
    width: 32%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.pillar_button span {
    font-size: 48px;
    font-weight: 700;
    color: var(--v-gold);
}

/* Consolidated auxiliary text styles (under pillars, projects, etc.) */
.hero_subtext,
.pillars_extra_desc,
.bottom_synergy,
.bottom_architecture,
.bottom_info,
.bottom_scenario {
    font-size: 24px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.35;
    text-align: center !important;
    width: 100% !important;
    max-width: none !important;
    margin: 15px 0 !important;
    display: block !important;
}

.pillar_button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--v-gold);
    transform: translateY(-5px);
}

.hero_btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pillar_button {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero_btns {
        flex-direction: column;
        align-items: center;
    }
}

.nav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 77px;
    padding: 0 48px !important;
    font-size: 24px !important;
    border: 2px solid var(--v-gold) !important;
    color: var(--v-white) !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    text-decoration: none;
    cursor: pointer;
    min-width: 288px;
}

.start_btn {
    background: #FFA500 !important;
    color: #000 !important;
    border-color: #FFA500 !important;
}

.start_btn:hover {
    background: #FFA500 !important;
    border-color: #FFA500 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.outline_btn {
    border-color: var(--v-gold) !important;
    color: var(--v-gold) !important;
}

.outline_btn:hover {
    background: rgba(255, 165, 0, 0.1) !important;
    transform: translateY(-3px);
}

.author_badge {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.autor_img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(to bottom, var(--v-gold), transparent);
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.4);
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    from {
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
        transform: scale(1);
    }

    to {
        box-shadow: 0 0 60px rgba(255, 165, 0, 0.6);
        transform: scale(1.02);
    }
}

.autor_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
}

.section {
    padding: 100px 0;
    text-align: center;
}

.section_title {
    font-size: 4rem !important;
    margin-bottom: 40px;
    color: var(--v-white) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
}

@media (max-width: 1024px) {
    .section_title {
        font-size: 3rem !important;
    }
}

.section_title_gold {
    font-size: 64px !important;
    color: var(--v-gold);
    margin-bottom: 36px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .section_title_gold {
        font-size: 3rem !important;
    }
}

.section_desc {
    font-size: 48px !important;
    color: var(--v-white) !important;
    margin-bottom: 60px;
    line-height: 1.2;
    font-weight: 700;
}

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

@media (max-width: 1024px) {
    .cards_grid {
        grid-template-columns: 1fr;
    }
}

.glass_card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.glass_card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--v-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card_icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.card_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.3));
}

.card_title {
    margin-bottom: 35px;
    color: var(--v-white) !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
}

.card_title_gold {
    margin-bottom: 25px;
    color: var(--v-gold) !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
}

/* FAQ Accordion */
.faq_accordion {
    width: 100%;
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq_item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_toggle {
    display: none;
}

.faq_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    cursor: pointer;
    transition: background 0.3s;
    gap: 30px;
    /* Added gap to prevent text overlap */
}

.faq_header:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq_question {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.0;
    color: var(--v-gold);
    text-align: left;
}

.faq_icon {
    width: 32px;
    height: 32px;
    position: relative;
    transition: transform 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq_icon::before {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--v-gold);
    border-bottom: 2px solid var(--v-gold);
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-top: -6px;
}

.faq_icon::after {
    display: none;
}

.faq_toggle:checked+.faq_header .faq_icon::before {
    transform: rotate(-135deg);
    margin-top: 6px;
}

.faq_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 40px;
}

.faq_toggle:checked~.faq_content {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    padding-top: 15px;
    /* Added top padding */
    padding-bottom: 30px;
}

.faq_answer {
    line-height: 1.4;
    /* Improved from 1.0 */
    color: var(--v-white);
    font-size: 20px;
    font-weight: 400;
    padding: 0 0 10px 0;
    text-align: left;
}

/* Compact Glass Cards (Values & Principles) */
.glass_card_compact {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass_card_compact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--v-gold);
}

.compact_title {
    color: var(--v-gold);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.0;
    text-align: center;
    margin-bottom: 15px;
}

.compact_text {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.0;
    text-align: center;
}

/* Steps Section */
.steps_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.step_card {
    position: relative;
    padding-top: 0;
    /* Remove padding to allow icon to overlap the card itself */
    margin-top: 80px;
    /* Increased to avoid overlap with section title */
}

.mobile_step_num {
    display: none;
    /* Hidden on desktop */
}

.step_icon {
    position: absolute;
    top: -50px;
    /* Half of icon height */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--v-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 950;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(255, 165, 0, 0.5);
    z-index: 2;
}

.glass_card_step {
    background: rgba(2, 5, 14, 0.6);
    /* Slightly darker/denser as in Screenshot 1 */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    /* Reduced from 32px to match Screenshot 1 */
    padding: 70px 30px 40px;
    /* More top padding to clear the icon */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.glass_card_step .compact_title {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered on desktop */
    margin-bottom: 20px;
    width: 100%;
}

.glass_card_step .compact_text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* Centered on desktop */
    margin-bottom: 25px;
    width: 100%;
    padding-left: 0;
    /* No padding on desktop */
}

.glass_card_step .step_link {
    margin-top: auto;
    width: 100%;
}

.step_link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    min-height: 60px;
    border: 1px solid var(--v-gold);
    border-radius: 12px;
    color: var(--v-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    background: transparent;
}

.step_link:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

.card_text {
    line-height: 1.2;
    color: var(--v-white) !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    text-align: center;
}

.project_card {
    padding: 40px 30px;
    align-items: flex-start;
    text-align: left;
}

.project_card .card_title_gold {
    text-align: left;
    margin-bottom: 20px;
    font-size: 40px !important;
    white-space: normal;
    word-break: break-word;
}

.project_info {
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.95rem !important;
}

.project_divider {
    width: 100%;
    height: 2px;
    background: var(--v-gold);
    margin-bottom: 30px;
}

.col_list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
}

.col_list li {
    font-size: 1rem !important;
    color: var(--v-gold) !important;
    font-weight: 400;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.col_list li::before {
    content: '•';
    color: var(--v-gold);
    font-size: 1.2rem;
}

.transparency_text {
    max-width: 1000px;
    margin: 0 auto 60px;
    font-size: 1.4rem !important;
    line-height: 1.5;
    color: var(--v-white) !important;
    font-weight: 500 !important;
}

.transparency_btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.doc_btn {
    padding: 12px 40px !important;
    font-size: 18px !important;
    min-width: 400px;
    color: var(--v-gold) !important;
    border-color: var(--v-gold) !important;
    background: transparent !important;
    text-transform: none !important;
}

.doc_btn:hover {
    background: rgba(255, 165, 0, 0.1) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .doc_btn {
        min-width: 100%;
    }
}

.faq_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1150px;
    margin: 0 auto;
}

.faq_card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--v-glass-border);
    border-radius: 20px;
    padding: 60px 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.faq_card:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: var(--v-gold);
    box-shadow: 0 0 60px rgba(255, 165, 0, 0.3);
}

.faq_question {
    color: var(--v-gold) !important;
    margin-bottom: 15px;
    font-size: 40px !important;
    font-weight: 900 !important;
}

.faq_answer {
    color: var(--v-white) !important;
    line-height: 1.4;
    font-size: 20px !important;
    font-weight: 500 !important;
}

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

@media (max-width: 1024px) {

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

@media (max-width: 768px) {

    .values_grid,
    .principles_grid,
    .steps_grid {
        grid-template-columns: 1fr;
    }
}

.glass_card_value {
    background: var(--v-glass-bg);
    backdrop-filter: blur(50px);
    border: 2px solid var(--v-glass-border);
    border-radius: 20px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass_card_value:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--v-gold);
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.principles_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1250px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .principles_grid {
        grid-template-columns: 1fr;
    }
}

.glass_card_principle {
    background: var(--v-glass-bg);
    backdrop-filter: blur(50px);
    border: 2px solid var(--v-glass-border);
    border-radius: 20px;
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass_card_principle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--v-gold);
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* Removed duplicate .glass_card_step */

.step_num {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--v-gold);
    color: var(--bg-dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 3rem;
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.8);
}

.step_btn {
    margin-top: 80px;
    width: 100%;
}

.reg_card {
    background: rgba(2, 5, 14, 0.6);
    backdrop-filter: blur(50px);
    border: 2px solid var(--v-glass-border);
    border-radius: 20px;
    padding: 80px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reg_card:hover {
    background: rgba(2, 5, 14, 0.8);
    border-color: var(--v-gold);
}

.reg_form_container {
    width: 100%;
    margin-top: 50px;
}

.reg_form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reg_input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--v-glass-border);
    border-radius: 8px;
    padding: 20px 25px;
    color: #ffffff;
    font-size: 1.3rem;
    outline: none;
    transition: all 0.3s;
}

.reg_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.reg_input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--v-gold);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

.submit_btn {
    margin-top: 20px;
    background: var(--v-gold) !important;
    color: var(--bg-dark) !important;
    border: none !important;
}

.submit_btn:hover {
    background: var(--v-white) !important;
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4);
}

/* Registration New Design */
.reg_card_new {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 30px;
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
}

.reg_title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--v-white);
    margin-bottom: 60px;
}

.reg_form_new {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.input_group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 22px 40px;
    color: var(--v-white);
    font-size: 1.2rem;
    outline: none;
    transition: all 0.3s;
}

.input_group input:focus {
    border-color: var(--v-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

.reg_submit_btn {
    margin-top: 20px;
    align-self: center;
    min-width: 300px;
}

.footer_portrait_new {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

.autor_img_footer {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(to bottom, var(--v-gold), transparent);
    box-shadow: 0 0 80px rgba(255, 165, 0, 0.5);
    animation: glow-pulse-footer 4s infinite alternate;
}

@keyframes glow-pulse-footer {
    from {
        box-shadow: 0 0 40px rgba(255, 165, 0, 0.4);
    }

    to {
        box-shadow: 0 0 100px rgba(255, 165, 0, 0.8);
    }
}

.autor_img_footer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
}

/* Start Your Path Section */
.start_path_desc {
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    text-align: center;
    margin: 30px auto 50px;
    max-width: 1200px;
}

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

.path_text_card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    min-height: 140px;
}

.path_orange_text {
    color: var(--v-gold) !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
}

.path_btn_wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.path_cta_btn {
    width: 350px;
    height: 60px;
    background: var(--v-gold) !important;
    color: var(--bg-dark) !important;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.path_cta_btn:hover {
    background: var(--v-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4);
}

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

.path_step_block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.path_img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 25px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.path_step_title {
    color: var(--v-gold);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.path_step_text {
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WOW Hover Effects */
.glass_card:hover,
.glass_card_compact:hover,
.glass_card_step:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--v-gold);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.15);
}

.pillar_button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--v-gold);
    transform: translateY(-5px);
}

/* Mobile Adjustments Refinement */
@media (max-width: 768px) {
    .reg_card_new {
        padding: 60px 20px;
    }

    .reg_title {
        font-size: 2rem;
    }

    .input_group input {
        padding: 18px 30px;
        font-size: 1rem;
    }

    .hero_title {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }

    .tags {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .hero_desc {
        font-size: 24px !important;
        font-weight: 700 !important;
        line-height: 1.0 !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    .section_title_gold {
        font-size: 32px !important;
        margin-bottom: 20px !important;
        font-weight: 900 !important;
        line-height: 1.0 !important;
        text-align: center !important;
    }

    .section_desc {
        font-size: 24px !important;
        font-weight: 700 !important;
        line-height: 1.0 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }

    .cards_grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .steps_grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        /* Reduced gap between step cards */
    }

    .major_pillars {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        margin: 30px 0 !important;
    }

    .pillar_button {
        height: 56px !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 12px;
    }

    .pillar_button span {
        font-size: 22px !important;
    }

    .nav_btn {
        height: 56px;
        min-width: 100%;
        font-size: 18px !important;
        border-radius: 12px !important;
    }

    /* How it works Centering (per latest Screenshot 1) */
    .glass_card {
        align-items: center !important;
        text-align: center !important;
        padding: 25px 20px !important;
    }

    /* Projects Alignment - Keep Left (established previously) */
    .project_card {
        align-items: flex-start !important;
        text-align: left !important;
        padding: 30px 20px !important;
    }

    .cards_grid {
        gap: 20px !important;
    }

    .card_icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 15px !important;
    }

    .card_title_gold {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }

    .synergy_title {
        max-width: 280px !important;
        /* Increased to allow 2 lines instead of 3 */
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.1 !important;
    }

    .synergy_title .desktop_br {
        display: none !important;
        /* Hide desktop breaks on mobile */
    }

    .card_text {
        text-align: center !important;
        font-size: 16px !important;
        margin-bottom: 5px !important;
        /* Tighten up description bottom margin */
    }

    .project_card .card_text {
        text-align: left !important;
    }

    .project_divider {
        margin: 20px 0 !important;
        width: 100% !important;
    }

    .col_list {
        align-self: flex-start !important;
        padding-left: 0 !important;
    }

    /* Steps Section Internal Numbers (Screenshot 2) */
    .step_card {
        padding-top: 0 !important;
        margin-top: 0 !important;
        /* Reset desktop margin */
        margin-bottom: 10px !important;
    }

    .step_icon {
        display: none !important;
        /* Explicitly hidden on mobile */
    }

    .mobile_step_num {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: var(--v-gold);
        color: #000;
        border-radius: 12px;
        font-weight: 700;
        font-size: 24px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .glass_card_step {
        text-align: left !important;
        align-items: flex-start !important;
        padding: 12px !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: none !important;
    }

    .glass_card_step .compact_title {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        text-align: left !important;
        margin-bottom: 2px !important;
        /* Even smaller gap */
        color: #FFA500 !important;
        font-family: 'Lato', sans-serif !important;
        white-space: normal !important;
    }

    .glass_card_step .compact_title .title_text {
        flex: 1;
        padding-right: 100px !important;
        /* Increased to force wrap all titles */
        display: block !important;
    }

    .glass_card_step .compact_text {
        justify-content: flex-start !important;
        text-align: left !important;
        font-size: 16px !important;
        margin-bottom: 12px !important;
        padding-left: 63px !important;
        padding-right: 53px !important;
        /* Added right padding for description */
        font-family: 'Lato', sans-serif !important;
    }

    .step_link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        /* Changed from 353px */
        max-width: 353px !important;
        /* Maintain the desired size */
        height: 50px !important;
        min-height: 0 !important;
        /* Override 60px min-height from global */
        max-width: 100% !important;
        margin: 10px auto 5px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
        border: 1px solid var(--v-gold) !important;
        color: var(--v-gold) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    /* FAQ Figma Style */
    .faq_item {
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 16px !important;
        padding: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        border: none !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .faq_header {
        padding: 0 !important;
        height: auto !important;
        min-height: 48px !important;
        gap: 24px !important;
        background: transparent !important;
    }

    .faq_question {
        font-family: 'Lato', sans-serif !important;
        font-weight: 700 !important;
        font-size: 20px !important;
        line-height: 1.2 !important;
        color: #FFA500 !important;
        text-align: left !important;
        margin: 0 !important;
    }

    .faq_icon {
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        transition: transform 0.3s !important;
        position: relative !important;
        transform: none !important;
    }

    .faq_icon::before {
        content: '' !important;
        width: 10px !important;
        height: 10px !important;
        border-right: 2px solid #FFA500 !important;
        border-bottom: 2px solid #FFA500 !important;
        transform: rotate(45deg) !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        margin-left: -5px !important;
        margin-top: -8px !important;
        background: transparent !important;
        transition: all 0.3s !important;
    }

    .faq_icon::after {
        display: none !important;
    }

    .faq_toggle:checked+.faq_header .faq_icon::before {
        transform: rotate(-135deg) !important;
        margin-top: -2px !important;
    }

    .faq_content {
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
    }

    .faq_toggle:checked~.faq_content {
        padding: 0 !important;
        max-height: 1000px;
    }

    .faq_answer {
        font-family: 'Lato', sans-serif !important;
        font-weight: 400 !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
        color: #FFFFFF !important;
        padding: 0 !important;
        width: 100% !important;
        text-align: left !important;
        display: block !important;
    }

    .hero_subtext,
    .pillars_extra_desc {
        font-size: 16px !important;
    }

    /* Start Your Path Section Mobile overrides */
    .start_path_desc {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }

    .path_cards_grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .path_steps_grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .path_img {
        margin-bottom: 15px !important;
    }

    .path_cta_btn {
        width: 100% !important;
        max-width: 353px !important;
    }
}