.manifesto-section {
    background-color: #ffffff;
    padding: 128px 24px 80px;
}

@media (min-width: 768px) {
    .manifesto-section {
        padding: 160px 24px 112px;
    }
}

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

.manifesto-header {
    max-width: 896px;
    margin: 0 auto 96px;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manifesto-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.manifesto-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: #333333;
    margin: 0;
}

@media (min-width: 768px) {
    .manifesto-title {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    .manifesto-title {
        font-size: 80px;
    }
}

.manifesto-content {
    max-width: 700px;
    margin: 0 auto;
}

.manifesto-block {
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.manifesto-block:nth-child(1) {
    animation-delay: 0.2s;
}

.manifesto-block:nth-child(2) {
    animation-delay: 0.3s;
}

.manifesto-block:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manifesto-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .manifesto-subtitle {
        font-size: 20px;
    }
}

.manifesto-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .manifesto-text {
        font-size: 17px;
    }
}

.manifesto-closing {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin: 48px 0 32px 0;
    line-height: 1.3;
    letter-spacing: -0.4px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@media (min-width: 768px) {
    .manifesto-closing {
        font-size: 24px;
    }
}

.manifesto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px solid #e5e5e5;
    background-color: #f8f9fa;
    border-radius: 24px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.manifesto-badge svg {
    color: #333333;
    flex-shrink: 0;
}

.manifesto-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #333333;
}

.manifesto-email-form {
    display: flex;
    gap: 8px;
    padding: 8px;
    background-color: #ffffff;
    border: 1.5px solid #e5e5e5;
    border-radius: 32px;
    max-width: 460px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    transition: all 0.3s ease;
}

.manifesto-email-form:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 16px rgba(54, 44, 114, 0.08);
}

.manifesto-email-form:focus-within {
    border-color: #362C72;
    box-shadow: 0 4px 16px rgba(54, 44, 114, 0.12);
}

.email-input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333333;
    min-width: 0;
}

.email-input::placeholder {
    color: #999999;
}

.email-button {
    flex-shrink: 0;
    padding: 12px 24px;
    background-color: #362C72;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.email-button:hover {
    background-color: #2a2259;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 44, 114, 0.2);
}

.email-button:active {
    transform: translateY(0);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .manifesto-section {
        padding: 80px 16px 64px;
    }

    .manifesto-header {
        margin-bottom: 64px;
    }

    .manifesto-title {
        font-size: 36px;
        line-height: 1;
    }

    .manifesto-block {
        margin-bottom: 40px;
    }

    .manifesto-subtitle {
        font-size: 16px;
    }

    .manifesto-text {
        font-size: 15px;
    }

    .manifesto-closing {
        font-size: 18px;
        margin: 32px 0 24px 0;
    }

    .manifesto-email-form {
        flex-wrap: wrap;
    }

    .email-input {
        flex-basis: 100%;
    }

    .email-button {
        flex-basis: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .manifesto-section {
        padding: 60px 16px 48px;
    }

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

    .manifesto-closing {
        font-size: 16px;
    }
}


.shift-section {
    background-color: #1a1a2e;
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .shift-section {
        padding: 112px 24px;
    }
}

.shift-container {
    max-width: 1280px;
    margin: 0 auto;
}

.shift-header {
    text-align: center;
    margin-bottom: 96px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shift-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.shift-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin: 0 0 24px 0;
}

@media (min-width: 768px) {
    .shift-title {
        font-size: 48px;
        line-height: 1.15;
    }
}

.shift-emphasis {
    font-style: italic;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shift-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    max-width: 768px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .shift-description {
        font-size: 18px;
    }
}

.shift-description strong {
    color: #ffffff;
    font-weight: 700;
}

.shift-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .shift-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.shift-card {
    background: linear-gradient(135deg, rgba(54, 44, 114, 0.15) 0%, rgba(54, 44, 114, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.shift-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.shift-card:nth-child(1) {
    animation-delay: 0.2s;
}

.shift-card:nth-child(2) {
    animation-delay: 0.3s;
}

.shift-card:nth-child(3) {
    animation-delay: 0.4s;
}

.shift-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(54, 44, 114, 0.25) 0%, rgba(54, 44, 114, 0.1) 100%);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(54, 44, 114, 0.2);
}

.shift-card:hover::before {
    opacity: 1;
}

.shift-stat {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .shift-stat {
        font-size: 64px;
    }
}

.shift-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .shift-card-text {
        font-size: 15px;
    }
}

.shift-source {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.shift-quote {
    max-width: 768px;
    margin: 0 auto;
    padding: 48px 32px;
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    position: relative;
}

.shift-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-family: 'Inter', sans-serif;
    color: rgba(54, 44, 114, 0.3);
    line-height: 1;
}

.shift-quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px 0;
    font-weight: 600;
    font-style: italic;
}

@media (min-width: 768px) {
    .shift-quote-text {
        font-size: 24px;
    }
}

.shift-quote-footer {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .shift-section {
        padding: 60px 16px;
    }

    .shift-header {
        margin-bottom: 64px;
    }

    .shift-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .shift-description {
        font-size: 15px;
    }

    .shift-grid {
        margin-bottom: 60px;
        gap: 16px;
    }

    .shift-card {
        padding: 32px 20px;
    }

    .shift-stat {
        font-size: 44px;
    }

    .shift-quote {
        padding: 32px 20px;
    }

    .shift-quote-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .shift-section {
        padding: 48px 16px;
    }

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

    .shift-stat {
        font-size: 36px;
    }

    .shift-card-text {
        font-size: 14px;
    }
}


.timeline-section {
    background-color: #fbfafe;
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .timeline-section {
        padding: 112px 24px;
    }
}

.timeline-container {
    max-width: 1024px;
    margin: 0 auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 96px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999999;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.timeline-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
}

@media (min-width: 768px) {
    .timeline-title {
        font-size: 48px;
        line-height: 1.15;
    }
}

.timeline-emphasis {
    font-style: italic;
    color: #1a1a2e;
    font-weight: 800;
}

.timeline-wrapper {
    position: relative;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .timeline-wrapper {
        padding: 0;
    }
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #d0d0d0;
    opacity: 1;
    transform: translateX(-50%);
    display: none;
}

@media (min-width: 768px) {
    .timeline-line {
        display: block;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 56px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(7) {
    animation-delay: 0.6s;
}

@media (min-width: 768px) {
    .timeline-item {
        gap: 0;
    }
}

/* LADO ESQUERDO */
.timeline-item-left {
    flex-direction: row;
}

@media (min-width: 768px) {
    .timeline-item-left {
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
}

/* LADO DIREITO */
.timeline-item-right {
    flex-direction: row;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .timeline-item-right {
        flex-direction: row;
        justify-content: flex-end;
    }
}

.timeline-dot {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    box-shadow: 0 0 0 4px #fbfafe;
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px #fbfafe, 0 8px 24px rgba(26, 26, 46, 0.2);
}

.timeline-dot-left {
    margin-right: 0;
}

@media (min-width: 768px) {
    .timeline-dot-left {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 32px;
    }

    .timeline-dot-left:hover {
        transform: translateX(-50%) scale(1.1);
    }
}

.timeline-dot-right {
    margin-left: 0;
}

@media (min-width: 768px) {
    .timeline-dot-right {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 32px;
    }

    .timeline-dot-right:hover {
        transform: translateX(-50%) scale(1.1);
    }
}

.timeline-year {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.5px;
}

.timeline-content {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .timeline-content {
        padding: 28px 32px;
        width: calc(50% - 40px);
    }
}

.timeline-content-left {
    text-align: left;
}

@media (min-width: 768px) {
    .timeline-content-left {
        margin-right: auto;
        text-align: right;
    }
}

.timeline-content-right {
    text-align: left;
}

@media (min-width: 768px) {
    .timeline-content-right {
        margin-left: auto;
        text-align: left;
    }
}

.timeline-item:hover .timeline-content {
    border-color: #1a1a2e;
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12);
    transform: translateY(-4px);
}

.timeline-content-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .timeline-content-title {
        font-size: 19px;
    }
}

.timeline-content-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0 0 12px 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .timeline-content-text {
        font-size: 15px;
    }
}

.timeline-source {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 16px;
    }

    .timeline-header {
        margin-bottom: 64px;
    }

    .timeline-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .timeline-wrapper {
        padding: 0;
    }

    .timeline-item {
        margin-bottom: 40px;
        gap: 16px;
    }

    .timeline-item-left,
    .timeline-item-right {
        flex-direction: row;
    }

    .timeline-dot {
        width: 56px;
        height: 56px;
        margin-right: 0;
        margin-left: 0;
    }

    .timeline-year {
        font-size: 12px;
    }

    .timeline-content {
        padding: 20px;
        flex: 1;
    }

    .timeline-content-left,
    .timeline-content-right {
        text-align: left;
    }

    .timeline-content-title {
        font-size: 16px;
    }

    .timeline-content-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 48px 16px;
    }

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

    .timeline-dot {
        width: 48px;
        height: 48px;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-content-title {
        font-size: 15px;
    }
}


.opportunity-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .opportunity-section {
        padding: 112px 24px;
    }
}

.opportunity-container {
    max-width: 1080px;
    margin: 0 auto;
}

.opportunity-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.opportunity-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.opportunity-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
}

@media (min-width: 768px) {
    .opportunity-title {
        font-size: 48px;
        line-height: 1.15;
    }
}

.opportunity-emphasis {
    font-style: normal;
    color: #1a1a2e;
    font-weight: 800;
    background: linear-gradient(135deg, #362C72 0%, #1a1a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.opportunity-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 24px auto 0;
    max-width: 768px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .opportunity-description {
        font-size: 18px;
    }
}

.opportunity-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.opportunity-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.opportunity-card:nth-child(1) {
    animation-delay: 0.1s;
}

.opportunity-card:nth-child(2) {
    animation-delay: 0.2s;
}

.opportunity-card:nth-child(3) {
    animation-delay: 0.3s;
}

.opportunity-card:nth-child(4) {
    animation-delay: 0.4s;
}

.opportunity-card:nth-child(5) {
    animation-delay: 0.5s;
}

@media (min-width: 768px) {
    .opportunity-card {
        padding: 24px;
    }
}

.opportunity-card:hover {
    border-color: #362C72;
    box-shadow: 0 8px 24px rgba(54, 44, 114, 0.12);
    transform: translateY(-4px);
}

.opportunity-card-total {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2ff 100%);
    border: 2px solid #362C72;
}

.opportunity-card-total:hover {
    box-shadow: 0 12px 32px rgba(54, 44, 114, 0.18);
}

.opportunity-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .opportunity-card-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
}

.opportunity-card-text {
    flex: 1;
}

.opportunity-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .opportunity-card-title {
        font-size: 17px;
    }
}

.opportunity-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .opportunity-card-description {
        font-size: 15px;
    }
}

.opportunity-card-amount {
    flex-shrink: 0;
}

.opportunity-amount {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
    display: block;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .opportunity-amount {
        font-size: 40px;
    }
}

.opportunity-amount-total {
    color: #e74c3c;
}

.opportunity-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2259 100%);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.opportunity-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .opportunity-cta {
        padding: 64px 48px;
    }
}

.opportunity-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .opportunity-cta-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

.opportunity-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 16px;
    max-width: 768px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .opportunity-cta-text {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

.opportunity-cta-highlight {
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #62d4f4 0%, #70d8f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.opportunity-cta-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 0.03em;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .opportunity-section {
        padding: 60px 16px;
    }

    .opportunity-header {
        margin-bottom: 60px;
    }

    .opportunity-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .opportunity-description {
        font-size: 15px;
    }

    .opportunity-cards {
        gap: 12px;
        margin-bottom: 48px;
    }

    .opportunity-card {
        padding: 20px;
    }

    .opportunity-card-content {
        gap: 16px;
    }

    .opportunity-card-title {
        font-size: 15px;
    }

    .opportunity-card-description {
        font-size: 13px;
    }

    .opportunity-amount {
        font-size: 28px;
    }

    .opportunity-cta {
        padding: 36px 24px;
    }

    .opportunity-cta-title {
        font-size: 20px;
    }

    .opportunity-cta-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .opportunity-section {
        padding: 48px 16px;
    }

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

    .opportunity-cta-title {
        font-size: 18px;
    }
}



.pillars-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .pillars-section {
        padding: 112px 24px;
    }
}

.pillars-container {
    max-width: 1280px;
    margin: 0 auto;
}

.pillars-header {
    text-align: center;
    margin-bottom: 96px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pillars-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.pillars-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
}

@media (min-width: 768px) {
    .pillars-title {
        font-size: 48px;
        line-height: 1.15;
    }
}

.pillars-emphasis {
    font-style: italic;
    color: #1a1a2e;
    font-weight: 800;
}

.pillars-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 24px auto 0;
    max-width: 768px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .pillars-description {
        font-size: 18px;
    }
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    background-color: #ffffff;
    border: 1.5px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pillar-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pillar-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pillar-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pillar-card:nth-child(4) {
    animation-delay: 0.4s;
}

.pillar-card:nth-child(5) {
    animation-delay: 0.5s;
}

@media (min-width: 768px) {
    .pillar-card {
        padding: 36px;
    }
}

.pillar-card:hover {
    border-color: #362C72;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow: 0 12px 32px rgba(54, 44, 114, 0.15);
    transform: translateY(-8px);
}

.pillar-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.pillar-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .pillar-title {
        font-size: 21px;
    }
}

.pillar-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    margin: 0 0 24px 0;
    font-weight: 400;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .pillar-description {
        font-size: 15px;
    }
}

.pillar-stat {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2ff 100%);
    border: 1px solid #e8e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-stat {
    border-color: #362C72;
    background: linear-gradient(135deg, #f0f2ff 0%, #e8dfff 100%);
    box-shadow: 0 4px 12px rgba(54, 44, 114, 0.08);
}

.pillar-stat-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .pillar-stat-text {
        font-size: 15px;
    }
}

.pillar-stat-source {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .pillars-section {
        padding: 60px 16px;
    }

    .pillars-header {
        margin-bottom: 64px;
    }

    .pillars-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .pillars-description {
        font-size: 15px;
    }

    .pillars-grid {
        gap: 16px;
    }

    .pillar-card {
        padding: 24px;
    }

    .pillar-icon {
        font-size: 36px;
    }

    .pillar-title {
        font-size: 18px;
    }

    .pillar-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .pillar-stat {
        padding: 12px;
    }

    .pillar-stat-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pillars-section {
        padding: 48px 16px;
    }

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

    .pillar-card {
        padding: 20px;
    }

    .pillar-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .pillar-title {
        font-size: 16px;
    }

    .pillar-stat-text {
        font-size: 13px;
    }
}


.paths-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .paths-section {
        padding: 112px 24px;
    }
}

.paths-container {
    max-width: 1280px;
    margin: 0 auto;
}

.paths-header {
    text-align: center;
    margin-bottom: 96px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paths-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.paths-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
}

@media (min-width: 768px) {
    .paths-title {
        font-size: 48px;
        line-height: 1.15;
    }
}

.paths-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 24px auto 0;
    max-width: 768px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .paths-description {
        font-size: 18px;
    }
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .paths-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.path-card {
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.path-card:nth-child(1) {
    animation-delay: 0.1s;
}

.path-card:nth-child(2) {
    animation-delay: 0.2s;
}

.path-card:nth-child(3) {
    animation-delay: 0.3s;
}

@media (min-width: 768px) {
    .path-card {
        padding: 40px;
    }
}

/* WORKER - Red */
.path-card-worker {
    background-color: #fef2f2;
    border-color: #fecaca;
}

.path-card-worker:hover {
    background-color: #fee2e2;
    border-color: #dc2626;
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.15);
    transform: translateY(-8px);
}

.path-card-worker::before {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
}

.path-card-worker:hover::before {
    opacity: 1;
}

.path-title-worker {
    color: #7f1d1d;
}

.path-card-worker .path-text {
    color: rgba(127, 29, 29, 0.8);
}

.path-card-worker .path-footer {
    border-color: #fca5a5;
}

.path-footer-worker {
    color: #7f1d1d;
}

/* BORROWER - Amber */
.path-card-borrower {
    background-color: #fffbeb;
    border-color: #fde047;
}

.path-card-borrower:hover {
    background-color: #fef3c7;
    border-color: #ca8a04;
    box-shadow: 0 12px 32px rgba(202, 138, 4, 0.15);
    transform: translateY(-8px);
}

.path-card-borrower::before {
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.05) 0%, transparent 100%);
}

.path-card-borrower:hover::before {
    opacity: 1;
}

.path-title-borrower {
    color: #78350f;
}

.path-card-borrower .path-text {
    color: rgba(120, 53, 15, 0.8);
}

.path-card-borrower .path-footer {
    border-color: #fcd34d;
}

.path-footer-borrower {
    color: #78350f;
}

/* OWNER - Dark */
.path-card-owner {
    background: linear-gradient(135deg, #f5f5f5 0%, #f0f2ff 100%);
    border-color: #1a1a2e;
}

.path-card-owner:hover {
    background: linear-gradient(135deg, #e8e8f0 0%, #e0d5ff 100%);
    border-color: #362C72;
    box-shadow: 0 12px 32px rgba(54, 44, 114, 0.2);
    transform: translateY(-8px);
}

.path-card-owner::before {
    background: linear-gradient(135deg, rgba(54, 44, 114, 0.08) 0%, transparent 100%);
}

.path-card-owner:hover::before {
    opacity: 1;
}

.path-title-owner {
    color: #1a1a2e;
}

.path-card-owner .path-text {
    color: rgba(26, 26, 46, 0.8);
}

.path-card-owner .path-footer {
    border-color: #d0d0d0;
}

.path-footer-owner {
    color: #1a1a2e;
}

.path-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

@media (min-width: 768px) {
    .path-icon {
        font-size: 56px;
    }
}

.path-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .path-title {
        font-size: 24px;
    }
}

.path-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 24px 0;
    font-weight: 400;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .path-text {
        font-size: 15px;
    }
}

.path-footer {
    border-top: 1px solid;
    padding-top: 20px;
    margin-top: auto;
}

.path-footer-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
    margin: 0 0 8px 0;
    font-weight: 600;
    opacity: 0.6;
}

.path-footer-amount {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.4px;
}

@media (min-width: 768px) {
    .path-footer-amount {
        font-size: 28px;
    }
}

.paths-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .paths-section {
        padding: 60px 16px;
    }

    .paths-header {
        margin-bottom: 64px;
    }

    .paths-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .paths-description {
        font-size: 15px;
    }

    .paths-grid {
        gap: 16px;
    }

    .path-card {
        padding: 28px;
    }

    .path-icon {
        font-size: 40px;
    }

    .path-title {
        font-size: 18px;
    }

    .path-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .path-footer-label {
        font-size: 10px;
    }

    .path-footer-amount {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .paths-section {
        padding: 48px 16px;
    }

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

    .path-card {
        padding: 20px;
    }

    .path-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .path-title {
        font-size: 16px;
    }

    .path-footer-amount {
        font-size: 18px;
    }

    .paths-disclaimer {
        font-size: 11px;
    }
}


/* ═══════════════════════════════════════════════════════════
   The Window Section
═══════════════════════════════════════════════════════════ */
.window-section {
    background-color: var(--color-bg-dark, #1A1A2E);
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .window-section {
        padding: 112px 24px;
    }
}

.window-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

/* ─── Header ────────────────────────────────────────────── */
.window-header {
    margin-bottom: 48px;
}

.window-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-white, #ffffff);
    margin-bottom: 16px;
}

.window-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-white, #ffffff);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.window-title em {
    font-style: normal;
    color: var(--color-text-white, #ffffff);
}

/* ─── Cards grid ────────────────────────────────────────── */
.window-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .window-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.window-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 28px;
    transition: border-color 0.2s ease;
}

.window-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.window-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-white, #ffffff);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.window-card-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ─── Callout ───────────────────────────────────────────── */
.window-callout {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
}

@media (max-width: 480px) {
    .window-callout {
        padding: 32px 20px;
    }
}

.window-callout-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text-white, #ffffff);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.window-callout-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 32px;
}

.window-callout-body strong {
    color: var(--color-text-white, #ffffff);
    font-weight: 600;
}

/* ─── Form ──────────────────────────────────────────────── */
.window-form-wrap {
    display: flex;
    justify-content: center;
}

.window-form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 460px;
    background: var(--color-bg-white, #ffffff);
    border: 1px solid rgba(30, 30, 50, 0.15);
    border-radius: 100px;
    padding: 6px;
}

.window-input {
    flex: 1;
    min-width: 0;
    padding: 10px 20px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-text-primary, #333333);
}

.window-input::placeholder {
    color: var(--color-text-secondary, #666666);
}

.window-submit {
    flex-shrink: 0;
    padding: 10px 22px;
    background: var(--color-bg-dark, #1A1A2E);
    color: var(--color-text-white, #ffffff);
    border: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.window-submit:hover {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .window-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
        gap: 10px;
    }

    .window-input {
        width: 100%;
        padding: 10px 12px;
    }

    .window-submit {
        width: 100%;
        border-radius: 10px;
        padding: 12px;
        text-align: center;
    }
}


/* ═══════════════════════════════════════════════════════════
   The Advantage Section
═══════════════════════════════════════════════════════════ */
.advantage-section {
    background-color: var(--color-bg-white, #ffffff);
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .advantage-section {
        padding: 112px 24px;
    }
}

.advantage-inner {
    max-width: 960px;
    margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────── */
.advantage-header {
    text-align: center;
    margin-bottom: 64px;
}

.advantage-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 16px;
}

.advantage-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary, #333333);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.advantage-title em {
    font-style: normal;
    color: var(--color-text-primary, #333333);
}

/* ─── Two-col grid ──────────────────────────────────────── */
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .advantage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* ─── Steps ─────────────────────────────────────────────── */
.advantage-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.advantage-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.advantage-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-dark, #1A1A2E);
    color: var(--color-text-white, #ffffff);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.advantage-step-body {
    padding-top: 6px;
}

.advantage-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary, #333333);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.advantage-step-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.7;
}

/* ─── Quote card ────────────────────────────────────────── */
.advantage-quote-card {
    background-color: #1A1A2E;;
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .advantage-quote-card {
        padding: 40px;
    }
}

.advantage-quote {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-text-white, #ffffff);
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.advantage-quote em {
    font-style: normal;
    color: #a3e635;
}

.advantage-quote-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.75;
}

/* ─── Stats grid ────────────────────────────────────────── */
.advantage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.advantage-stat {
    background-color: var(--color-bg-dark, #1A1A2E);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.advantage-stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-white, #ffffff);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.advantage-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 1 — Future-Proof
═══════════════════════════════════════════════════════════ */
.futureproof-section {
    background-color: var(--color-bg-white, #ffffff);
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .futureproof-section {
        padding: 112px 24px;
    }
}

.futureproof-inner {
    max-width: 860px;
    margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────── */
.futureproof-header {
    text-align: center;
    margin-bottom: 56px;
}

.futureproof-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 16px;
}

.futureproof-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary, #333333);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.futureproof-title em {
    font-style: normal;
    color: var(--color-text-primary, #333333);
}

.futureproof-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* ─── Cards ─────────────────────────────────────────────── */
.futureproof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .futureproof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.futureproof-card {
    border: 1px solid rgba(30, 30, 50, 0.08);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.futureproof-card:hover {
    border-color: rgba(30, 30, 50, 0.18);
}

.futureproof-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1;
}

.futureproof-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary, #333333);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.futureproof-card-body {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.7;
}

/* ─── Callout ───────────────────────────────────────────── */
.futureproof-callout {
    border: 1px solid rgba(30, 30, 50, 0.08);
    border-radius: 18px;
    padding: 40px;
    text-align: center;
}

@media (max-width: 480px) {
    .futureproof-callout {
        padding: 28px 20px;
    }
}

.futureproof-callout-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-text-primary, #333333);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.futureproof-callout-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.futureproof-callout-body strong {
    color: var(--color-text-primary, #333333);
    font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 2 — Final CTA
═══════════════════════════════════════════════════════════ */
.owners-section {
    background-color: #1A1A2E;;
    padding: 80px 24px;
}

@media (min-width: 768px) {
    .owners-section {
        padding: 112px 24px;
    }
}

.owners-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.owners-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-white, #ffffff);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.owners-title em {
    font-style: normal;
    color: var(--color-text-white, #ffffff);
}

.owners-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ─── Form ──────────────────────────────────────────────── */
.owners-form-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.owners-form {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 6px;
}

.owners-input {
    flex: 1;
    min-width: 0;
    padding: 10px 20px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-text-white, #ffffff);
}

.owners-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.owners-submit {
    flex-shrink: 0;
    padding: 10px 22px;
    background: var(--color-text-white, #ffffff);
    color: #1A1A2E;;
    border: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.owners-submit:hover {
    opacity: 0.88;
}

.owners-compare-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.owners-compare-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
    .owners-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
        gap: 10px;
    }

    .owners-input {
        width: 100%;
        padding: 10px 12px;
    }

    .owners-submit {
        width: 100%;
        border-radius: 10px;
        padding: 12px;
    }
}

/* ─── Badge ─────────────────────────────────────────────── */
.owners-badge-row {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-badge--dark {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

.hero-badge--dark svg {
    stroke: rgba(255, 255, 255, 0.55);
}

/* ─── Nav links ─────────────────────────────────────────── */
.owners-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.owners-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.owners-nav-link:hover {
    color: rgba(255, 255, 255, 0.65);
}

.owners-nav-sep {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
}