/* ========================================
   HIGH-CONVERSION LANDING PAGE STYLES
   Target: 20%+ Conversion Rate
   ======================================== */

/* === VARIABLES === */
:root {
    /* Colors */
    --navy: #1E3A5F;
    --turquoise: #5DBECD;
    --gold: #F4D03F;
    --white: #FFFFFF;
    --red: #FF4444;
    --green: #28a745;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* === URGENCY BAR === */
.urgency-bar {
    background: linear-gradient(135deg, var(--red) 0%, #CC0000 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 24px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.urgency-text {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 8px;
}

.time-unit {
    min-width: 45px;
    text-align: center;
}

.urgency-spots {
    font-size: 14px;
}

.urgency-spots strong {
    font-size: 18px;
    color: var(--gold);
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2C5F8D 100%);
    color: var(--white);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(93, 190, 205, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.social-proof-badge {
    background: rgba(244, 208, 63, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(244, 208, 63, 0.3); }
    50% { box-shadow: 0 0 20px rgba(244, 208, 63, 0.6); }
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 15px;
    font-weight: 600;
}

.hero-headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-yellow {
    color: var(--gold);
    position: relative;
}

.subheadline {
    display: block;
    font-size: 32px;
    color: var(--turquoise);
    margin-top: 10px;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.check-icon {
    color: var(--green);
    font-size: 20px;
    font-weight: bold;
}

/* === CTA BUTTONS === */
.btn-primary-mega {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--gold) 0%, #E6C200 100%);
    color: var(--navy);
    padding: 24px 48px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.btn-primary-mega:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(244, 208, 63, 0.6);
}

.btn-primary-mega.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.btn-text {
    font-size: 24px;
    line-height: 1.2;
}

.btn-subtext {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.8;
}

.btn-secondary {
    background: var(--turquoise);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4AA8B7;
    transform: translateY(-2px);
}

.cta-container-hero {
    margin: 40px 0;
}

.cta-container {
    text-align: center;
    margin: 40px 0;
}

.cta-disclaimer {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    color: rgba(255,255,255,0.8);
}

.lock-icon, .star-icon {
    margin: 0 5px;
}

/* === PRICE ANCHOR === */
.price-anchor {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.price-label {
    font-size: 18px;
}

.price-old {
    text-decoration: line-through;
    color: var(--red);
    font-size: 24px;
    font-weight: 700;
}

.price-current {
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
}

.price-discount {
    background: var(--red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
}

/* === VSL CONTAINER === */
.vsl-container {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--gray-light);
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb img {
    max-width: 60%;
    height: auto;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-play 2s infinite;
}

@keyframes pulse-play {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(255, 68, 68, 0); }
}

.play-button:hover {
    transform: scale(1.2);
}

.video-instruction {
    text-align: center;
    padding: 15px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

/* === LIVE PROOF SECTION === */
.live-proof-section {
    background: var(--gray-light);
    padding: 20px;
    border-bottom: 3px solid var(--turquoise);
}

.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.counter-text strong {
    color: var(--red);
    font-size: 24px;
}

/* === NOTIFICATION POPUP === */
.notification-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    display: none;
    z-index: 999;
    animation: slideIn 0.5s ease;
    max-width: 320px;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification-popup.show {
    display: flex;
}

.notification-content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.notification-avatar {
    font-size: 32px;
    background: var(--turquoise);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-text strong {
    color: var(--navy);
    font-size: 16px;
}

.notification-text p {
    font-size: 14px;
    color: var(--gray-medium);
    margin: 0;
}

/* === CALCULATOR SECTION === */
.calculator-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.section-title-center {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--navy);
}

.section-title-center.white {
    color: var(--white);
}

.highlight-red {
    color: var(--red);
}

.highlight {
    color: var(--turquoise);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 50px;
}

.calculator-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: border 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--turquoise);
}

.btn-calculate {
    background: var(--turquoise);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: end;
}

.btn-calculate:hover {
    background: #4AA8B7;
    transform: translateY(-2px);
}

.calculator-result {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.result-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.result-card.loss {
    border: 3px solid var(--red);
}

.result-card.gain {
    border: 3px solid var(--green);
    background: rgba(40, 167, 69, 0.1);
}

.result-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--navy);
}

.result-value {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.result-card.loss .result-value {
    color: var(--red);
}

.result-card.gain .result-value {
    color: var(--green);
}

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

.result-arrow {
    font-size: 48px;
    color: var(--turquoise);
}

.calculator-loss {
    background: linear-gradient(135deg, var(--red) 0%, #CC0000 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.loss-text {
    font-size: 24px;
    font-weight: 700;
}

.loss-text strong {
    font-size: 32px;
    color: var(--gold);
}

/* === VIDEO TESTIMONIALS === */
.video-testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-testimonial-card {
    background: var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
}

.video-container-small {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--navy);
}

.video-placeholder-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-small {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button-small:hover {
    transform: scale(1.2);
}

.testimonial-info {
    padding: 20px;
}

.testimonial-info h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark);
    font-style: italic;
}

/* === TRANSFORMATION TIMELINE === */
.transformation-section-new {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy) 0%, #2C5F8D 100%);
    color: var(--white);
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.timeline-item {
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--turquoise);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
}

.timeline-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--gold);
}

.timeline-item p {
    font-size: 14px;
    line-height: 1.4;
}

.timeline-arrow {
    font-size: 36px;
    color: var(--turquoise);
}

/* === OFFER STACK === */
.offer-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.offer-stack {
    max-width: 800px;
    margin: 50px auto;
}

.stack-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stack-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.stack-item.bonus {
    border: 2px solid var(--turquoise);
    background: rgba(93, 190, 205, 0.05);
}

.stack-item.urgent-bonus {
    border: 3px solid var(--red);
    background: rgba(255, 68, 68, 0.05);
    position: relative;
    overflow: hidden;
}

.urgent-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgent-icon {
    font-size: 16px;
}

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

.stack-content h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 5px;
}

.stack-content p {
    font-size: 14px;
    color: var(--gray-medium);
}

.stack-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.stack-value.urgent {
    color: var(--red);
    font-size: 28px;
}

.stack-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--turquoise), transparent);
    margin: 30px 0;
}

.stack-total {
    background: linear-gradient(135deg, var(--navy) 0%, #2C5F8D 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
}

.total-label {
    font-size: 18px;
    margin-bottom: 15px;
}

.total-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.total-old {
    font-size: 32px;
    text-decoration: line-through;
    color: var(--red);
}

.total-arrow {
    font-size: 32px;
    color: var(--turquoise);
}

.total-new {
    font-size: 64px;
    font-weight: 900;
    color: var(--gold);
}

.total-discount {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

/* === GUARANTEE BOX === */
.guarantee-box {
    background: linear-gradient(135deg, var(--green) 0%, #1E7E34 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 800px;
    margin: 40px auto 0;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
}

.guarantee-icon {
    font-size: 64px;
}

.guarantee-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.guarantee-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* === ABOUT SECTION === */
.about-section-new {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content-new {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.credentials {
    margin-top: 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.credential-icon {
    color: var(--green);
    font-weight: bold;
    font-size: 18px;
}

.about-right h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-title {
    font-size: 18px;
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.about-cta-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

/* === FAQ SECTION === */
.faq-section-new {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item-video {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-question-video h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 20px;
}

.video-container-faq {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-placeholder-faq {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
}

.video-placeholder-faq p {
    margin-top: 10px;
    font-size: 14px;
}

.faq-text-summary {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* === FINAL CTA SECTION === */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy) 0%, #2C5F8D 100%);
    color: var(--white);
}

.comparison-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.comparison-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    min-width: 250px;
}

.comparison-item.highlight-box {
    background: rgba(244, 208, 63, 0.2);
    border: 3px solid var(--gold);
}

.comparison-label {
    font-size: 18px;
    margin-bottom: 10px;
}

.comparison-value {
    font-size: 24px;
    font-weight: 700;
}

.comparison-or {
    font-size: 24px;
    font-weight: 700;
    color: var(--turquoise);
}

.final-offer-box {
    background: rgba(255,255,255,0.1);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.offer-badge {
    background: var(--red);
    color: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}

.final-offer-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.final-checklist {
    list-style: none;
    margin-bottom: 30px;
}

.final-checklist li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.final-price {
    text-align: center;
    margin: 30px 0;
}

.final-price-label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.final-price-value {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.final-price-installment {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.btn-final-mega {
    background: linear-gradient(135deg, var(--gold) 0%, #E6C200 100%);
    color: var(--navy);
    padding: 30px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-final-mega:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(244, 208, 63, 0.6);
}

.trust-badges-final {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.urgency-final {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    color: var(--gold);
}

.urgency-final strong {
    font-size: 24px;
}

/* === FOOTER === */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

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

.footer-links a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .subheadline {
        font-size: 24px;
    }
    
    .btn-primary-mega {
        font-size: 20px;
        padding: 20px 30px;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .calculator-result {
        grid-template-columns: 1fr;
    }
    
    .result-arrow {
        transform: rotate(90deg);
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .about-content-new {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stack-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .notification-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .urgency-bar .container {
        font-size: 12px;
    }
    
    .countdown-timer {
        font-size: 16px;
    }
}
