/* ============================================
   ORÇAMENTO PREMIUM - SOLNER
   Versão Final com Animações Hero
============================================ */


.orcamento-premium-page {
    background: var(--white);
    overflow-x: hidden;
}


/* ============================================
   HERO COM IMAGEM DE FUNDO + FILTRO PRETO 75%
============================================ */
.hero-orcamento {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 120px;
    margin-top: 0;
}

/* Imagem de Fundo */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-orcamento.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Filtro Preto 75% Opacidade */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 182, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 88, 42, 0.12) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 3;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-cinema {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.badge-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(220, 88, 42, 0.8),
                0 0 16px rgba(220, 88, 42, 0.4);
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 88, 42, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar-ping 2s ease-out infinite;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 182, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar-ping 2s ease-out infinite 1s;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px rgba(220, 88, 42, 0.8),
                    0 0 16px rgba(220, 88, 42, 0.4);
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.9;
        box-shadow: 0 0 12px rgba(220, 88, 42, 1),
                    0 0 24px rgba(220, 88, 42, 0.6),
                    0 0 32px rgba(255, 182, 0, 0.3);
    }
}

@keyframes radar-ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    80% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-inline {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.feature-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
}

.feature-inline img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ============================================
   SCROLL INDICATOR
============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: -8px;
}

.arrow {
    opacity: 0;
    animation: arrow-float 2s ease-in-out infinite;
}

.arrow-1 {
    animation-delay: 0s;
}

.arrow-2 {
    animation-delay: 0.3s;
}

.arrow-3 {
    animation-delay: 0.6s;
}

@keyframes arrow-float {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ============================================
   FORMULÁRIO SECTION - LAYOUT VERTICAL
============================================ */
/* Seção unificada: Como Funciona + Formulário + CTA */
.orcamento-content-section {
    padding: 80px 0;
    background: var(--white);
}

/* CTA Final - agora é div interno, não section */
.timeline-cta-section {
    padding: 40px 0 0;
    background: transparent;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
}

.simulation-summary {
    width: 100%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.summary-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.summary-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0;
}

.summary-content {
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 14px;
    color: var(--gray-600);
}

.summary-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
}

.summary-divider {
    height: 2px;
    background: var(--gray-200);
    margin: 20px 0;
}

.summary-highlight {
    padding: 16px;
    background: linear-gradient(135deg, rgba(220, 88, 42, 0.08) 0%, rgba(220, 88, 42, 0.04) 100%);
    border-radius: 12px;
    margin-bottom: 12px;
}

.highlight-label {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.highlight-value {
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-orange);
}

.summary-footer-text {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 24px 0 0 0;
    text-align: left;
}

.form-card {
    width: 100%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.form-header p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1;
}

.form-field label span {
    line-height: 1;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-main);
    transition: var(--transition-base);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(220, 88, 42, 0.1);
}

.form-field input.valid {
    border-color: var(--success-green);
    padding-right: 48px;
}

.form-field input.invalid {
    border-color: var(--error-red);
    padding-right: 48px;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23737373" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.input-feedback {
    position: absolute;
    right: 20px;
    top: 48px;
    font-size: 20px;
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-field input.valid ~ .input-feedback::before {
    content: '✓';
    color: var(--success-green);
    opacity: 1;
}

.form-field input.invalid ~ .input-feedback::before {
    content: '✗';
    color: var(--error-red);
    opacity: 1;
}

.input-error {
    font-size: 12px;
    color: var(--error-red);
}

.input-hint {
    font-size: 12px;
    color: var(--gray-500);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.form-checkbox a {
    color: var(--accent-orange);
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: var(--primary-blue);
}

/* ============================================
   BOTÃO PADRÃO - EFEITO DO MENU
============================================ */
.btn-enviar,
.btn-cta,
.btn-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(220, 88, 42, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-enviar::before,
.btn-cta::before,
.btn-modal-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enviar:hover::before,
.btn-cta:hover::before,
.btn-modal-close:hover::before {
    left: 100%;
}

.btn-enviar:hover,
.btn-cta:hover,
.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 88, 42, 0.4);
}

.btn-enviar:active,
.btn-cta:active,
.btn-modal-close:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 88, 42, 0.3);
}

.btn-enviar {
    width: 100%;
    padding: 18px 40px;
    font-size: 17px;
    margin-bottom: 16px;
}

.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-enviar svg {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.btn-enviar:hover svg {
    transform: translateX(4px);
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn-enviar.loading .btn-text,
.btn-enviar.loading svg {
    display: none;
}

.btn-enviar.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.security-badge img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* ============================================
   TIMELINE MODERNA - CARDS 1,2,3 CINZA / CARD 4 COLORIDO
============================================ */
.timeline-modern-section {
    padding: 0;
    background: transparent;
    position: relative;
}

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

.timeline-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.timeline-subtitle {
    font-size: 18px;
    color: var(--gray-600);
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.timeline-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: var(--shadow-lg);
}

.timeline-card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* hover e ::before → centralizado em cards.css */

/* CARD 4 - DESTACADO COM BORDA COLORIDA ANIMADA */
.timeline-card-featured {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    padding: 40px 32px;
    transform: translateY(-8px);
    border: none;
}

.timeline-card-featured.timeline-card-visible {
    opacity: 1;
    transform: translateY(-8px);
}

.timeline-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        #001489 0%,
        #dc582a 25%,
        #FFB600 50%,
        #dc582a 75%,
        #001489 100%
    );
    background-size: 200% 100%;
    animation: border-gradient-move 3s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Gradient border animation → centralizado em cards.css */

.timeline-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(220, 88, 42, 0.1) 0%, rgba(220, 88, 42, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.icon-number {
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-orange);
}

.timeline-card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.timeline-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ============================================
   CTA - FUNDO PRETO + IMAGEM
============================================ */
.timeline-cta {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

/* Imagem de Fundo */
.timeline-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-orcamento.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Filtro Preto com Opacidade */
.timeline-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.timeline-cta-content {
    flex: 1;
    position: relative;
    z-index: 3;
}

.timeline-cta-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 8px 0;
}

.timeline-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.timeline-cta-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 3;
}

.btn-cta-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
    filter: brightness(0) invert(1);
}

.btn-cta-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-orange);
}

.btn-cta-outline:hover {
    background: var(--accent-orange);
}

/* ============================================
   MODAL
============================================ */
.modal-sucesso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal-sucesso.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-smooth);
    text-align: center;
}

.modal-sucesso.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(60%) sepia(97%) saturate(401%) hue-rotate(85deg);
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 12px;
}

.modal-header p {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.modal-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 32px;
}

.modal-info img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(76%) saturate(1447%) hue-rotate(347deg);
}

.modal-info span {
    font-size: 14px;
    color: var(--gray-700);
}

.btn-modal-close {
    width: 100%;
    padding: 16px 32px;
}

/* ============================================
   RESPONSIVO
============================================ */
@media (max-width: 1024px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .timeline-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-card-featured {
        grid-column: auto;
        grid-row: auto;
    }
    
    .timeline-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-orcamento {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .scroll-indicator {
        bottom: 24px;
    }
    
    .hero-features-inline .feature-icon-desktop {
        display: none;
    }
    
    .hero-features-inline {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        align-items: center;
        justify-items: center;
        margin-bottom: 32px;
    }
    
    .feature-inline {
        position: relative;
        padding: 0 12px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .feature-inline:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 16px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .form-card {
        padding: 32px 20px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .timeline-title {
        font-size: 37px;
        line-height: 1.15;
    }
    
    .timeline-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline-card-featured {
        transform: translateY(0);
    }
    
    .timeline-card-featured.timeline-card-visible {
        transform: translateY(0);
    }
    
    .timeline-cta {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }
    
    .timeline-cta-content h3 {
        line-height: 1.15;
    }
    
    .modal-content {
        padding: 32px 20px;
    }
}