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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(43, 76, 126, 0.2);
    color: #1a1a1a;
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

/* ===== SPLASH SCREEN ===== */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(165deg, #1a3355 0%, #2b4c7e 50%, #1e3a5f 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash.hide {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    width: 120px;
    height: auto;
    animation: splashAnim 2.6s ease-out forwards;
}

@keyframes splashAnim {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    75% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Overline */
.section-overline {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2b4c7e;
    text-align: center;
    margin-bottom: 12px;
}

.section-overline-light {
    color: #6b9fff;
    opacity: 0.7;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.hero-content {
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    margin-top: 36px;
    margin-bottom: 28px;
}

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

h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.05;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

h1 .highlight {
    font-weight: 800;
    color: #2b4c7e;
    text-decoration: none;
}

.description {
    font-size: 14px;
    line-height: 1.7;
    color: #777777;
    text-align: center;
    margin-bottom: 28px;
    padding: 0 12px;
}

/* Hero Proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-proof-number {
    font-size: 20px;
    font-weight: 800;
    color: #2b4c7e;
    letter-spacing: -0.5px;
}

.hero-proof-label {
    font-size: 11px;
    color: #999999;
    letter-spacing: 0.3px;
}

.hero-proof-divider {
    width: 1px;
    height: 32px;
    background: #e0e0e0;
}

/* ===== VSL iPhone Mockup ===== */
.iphone-mockup {
    width: 280px;
    margin: 0 auto 28px;
    background: #1a1a1e;
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 0 2px #2a2a2e,
        0 0 0 4px #1a1a1e,
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 100px;
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, #2a2a2e, #3a3a3e, #2a2a2e);
    border-radius: 0 2px 2px 0;
}

.iphone-mockup::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 85px;
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #2a2a2e, #3a3a3e, #2a2a2e);
    border-radius: 2px 0 0 2px;
    box-shadow: 0 40px 0 0 #2a2a2e;
}

.iphone-screen {
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.iphone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 20px;
    background: #1a1a1e;
    border-radius: 20px;
    z-index: 3;
}

.iphone-home-bar {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 8px auto 10px;
}

.vsl-container {
    position: relative;
    width: 100%;
    cursor: pointer;
    background: #000;
}

.vsl-video {
    display: block;
    width: 100%;
    height: auto;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vsl-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.vsl-play-btn {
    width: 56px;
    height: 56px;
    background: rgba(43, 76, 126, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.vsl-container:active .vsl-play-btn {
    transform: scale(0.92);
}

.cta-button {
    display: inline-block;
    background-color: #2b4c7e;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 44px;
    white-space: nowrap;
    border-radius: 14px;
    text-decoration: none;
    margin-bottom: 8px;
    box-shadow: 0 8px 24px rgba(43, 76, 126, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.cta-button:hover {
    background-color: #1e3a5f;
    box-shadow: 0 12px 32px rgba(43, 76, 126, 0.45);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(43, 76, 126, 0.25);
}

.cta-button:focus-visible {
    outline: 2px solid #2b4c7e;
    outline-offset: 4px;
}

.founders-photo {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    position: relative;
}

.founders-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #1a3355 0%, transparent 100%);
    pointer-events: none;
}

.founders-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== ABOUT ===== */
.about {
    background: linear-gradient(165deg, #1a3355 0%, #2b4c7e 50%, #1e3a5f 100%);
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-line {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.about h2 {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.55;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    font-style: italic;
}

.about-divider {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin: 18px auto;
}

.about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
}

.about-cta {
    background-color: #ffffff !important;
    color: #2b4c7e !important;
    margin-top: 24px;
}

/* ===== SERVICES ===== */
.services {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 56px 24px;
}

.services-content {
    max-width: 420px;
    margin: 0 auto;
}

.services-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.3px;
}

.services-highlight {
    color: #2b4c7e;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #eef0f4;
    border-top: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    border-top-color: #2b4c7e;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(43, 76, 126, 0.1);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(43, 76, 126, 0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.service-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.service-card p {
    font-size: 12.5px;
    line-height: 1.55;
    color: #777777;
}

/* ===== TARGETS ===== */
.targets {
    background: linear-gradient(165deg, #1a3355 0%, #2b4c7e 50%, #1e3a5f 100%);
    padding: 56px 24px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.targets::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.targets::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 1;
}

.targets-content {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.targets-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

.targets-highlight {
    color: #6b9fff;
    text-decoration: none;
}

/* ===== MACBOOK MOCKUP ===== */
.mac-mockup {
    width: 340px;
    margin: 0 auto;
}

.mac-lid {
    background: linear-gradient(180deg, #c0c0c4 0%, #a8a8ac 100%);
    border-radius: 14px 14px 0 0;
    padding: 8px 8px 0;
    position: relative;
}

.mac-bezel {
    background: #1a1a1e;
    border-radius: 8px 8px 0 0;
    padding: 6px 6px 0;
    position: relative;
}

.mac-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 14px;
    background: #1a1a1e;
    border-radius: 0 0 8px 8px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mac-camera-dot {
    width: 4px;
    height: 4px;
    background: #2a2a3a;
    border-radius: 50%;
    box-shadow: inset 0 0 1px rgba(100, 100, 255, 0.3);
}

.mac-display {
    background: linear-gradient(165deg, #1a3355 0%, #2b4c7e 50%, #1e3a5f 100%);
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    min-height: 200px;
}

/* macOS Menu Bar */
.mac-menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.mac-menubar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mac-menubar-left span {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.mac-menubar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mac-menubar-right span {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* MacBook Content */
.mac-content {
    padding: 16px 14px 20px;
    text-align: center;
}

.mac-hero-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 12px 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mac-hero-block .ideal-number {
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(107, 159, 255, 0.4);
}

.mac-hero-block .ideal-label {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 12px;
}

.mac-checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mac-check-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.mac-check-item .check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 9px;
    background: rgba(107, 159, 255, 0.15);
    border: 1px solid rgba(107, 159, 255, 0.25);
    color: #6b9fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.mac-check-item p {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

/* MacBook Base */
.mac-base {
    background: linear-gradient(180deg, #b8b8bc 0%, #a0a0a4 50%, #888 100%);
    height: 12px;
    border-radius: 0 0 4px 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mac-base::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: linear-gradient(180deg, #999 0%, #aaa 100%);
    border-radius: 0 0 8px 8px;
}

.mac-base-notch {
    width: 50px;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    margin-top: -2px;
}

.ideal-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(107, 159, 255, 0.3);
    text-align: center;
}

.ideal-plus {
    color: #6b9fff;
}

.ideal-label {
    font-size: 13px;
    color: #888888;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ideal-divider {
    display: none;
}

.ideal-checks {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.ideal-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eef0f4;
}

.ideal-check-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ideal-check-item:first-child {
    border-top: 1px solid #eef0f4;
}

.check-icon {
    color: #6b9fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 159, 255, 0.12);
    border: 1px solid rgba(107, 159, 255, 0.2);
    border-radius: 8px;
    margin-top: 2px;
}

.ideal-check-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

/* ===== FOUNDERS ===== */
.founders {
    background-color: #ffffff;
    width: 100%;
}

.founders-bg {
    max-width: 430px;
    margin: 0 auto;
}

.founders-bg img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(165deg, #1a3355 0%, #2b4c7e 50%, #1e3a5f 100%);
    padding: 72px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -10px;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-content {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Guarantee Card */
.guarantee-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(107, 159, 255, 0.2);
    border-radius: 20px;
    padding: 36px 24px 32px;
    margin-bottom: 32px;
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
}

.guarantee-shield {
    width: 68px;
    height: 68px;
    background: rgba(107, 159, 255, 0.1);
    border: 1.5px solid rgba(107, 159, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6b9fff;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.guarantee-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.guarantee-accent {
    color: #6b9fff;
    font-weight: 800;
}

.guarantee-divider {
    width: 40px;
    height: 2px;
    background: rgba(107, 159, 255, 0.3);
    border-radius: 2px;
    margin: 18px auto;
}

.guarantee-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

.cta-final-button {
    background: #ffffff;
    color: #2b4c7e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    padding: 18px 56px;
    margin-bottom: 0;
}

.cta-final-button::before {
    display: none;
}

.cta-final-button:hover {
    background: #f0f4f8;
    color: #2b4c7e;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ===== FAQ ===== */
.faq {
    background-color: #f8f9fb;
    padding: 64px 24px;
}

.faq-content {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.faq-highlight {
    color: #2b4c7e;
}

.faq-item {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef0f4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
    border-color: rgba(43, 76, 126, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span:first-child {
    color: #2b4c7e;
}

.faq-arrow {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2b4c7e;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
    background-color: #1e3a5f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.faq-question:focus-visible {
    outline: 2px solid #2b4c7e;
    outline-offset: 2px;
}

.faq-cta {
    margin-top: 36px;
    margin-bottom: 0;
    font-size: 18px;
    padding: 18px 48px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0f1b2d;
    padding: 48px 24px 32px;
    text-align: center;
}

.footer-content {
    max-width: 420px;
    margin: 0 auto;
}

.footer-logo {
    width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.3px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappBounce 0.6s ease-out;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappBounce {
    0% { opacity: 0; transform: scale(0) translateY(20px); }
    60% { transform: scale(1.1) translateY(0); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== POPUP APLICAÇÃO ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 40, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-card {
    background: linear-gradient(165deg, #1a3355 0%, #2b4c7e 50%, #1e3a5f 100%);
    border-radius: 28px 28px 0 0;
    width: 100%;
    max-width: 500px;
    padding: 32px 28px 40px;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.popup-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.popup-overlay.active .popup-card {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.popup-progress {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 32px;
    overflow: hidden;
}

.popup-progress-bar {
    width: 33%;
    height: 100%;
    background: #6b9fff;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-step {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: stepFadeIn 0.35s ease-out;
}

.popup-step.active {
    display: flex;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.popup-step-count {
    font-size: 11px;
    font-weight: 600;
    color: #6b9fff;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.popup-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 18px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    -webkit-appearance: none;
}

.popup-input:focus {
    border-color: #6b9fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(107, 159, 255, 0.15);
}

.popup-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.popup-textarea {
    min-height: 110px;
    resize: none;
    line-height: 1.6;
}

.popup-char-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: right;
    width: 100%;
    margin-top: -14px;
    margin-bottom: 20px;
}

.popup-input.shake {
    animation: shakeAnim 0.4s ease;
    border-color: #ff6b6b;
}

@keyframes shakeAnim {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
}

.popup-next {
    width: 100%;
    background: #ffffff;
    color: #2b4c7e;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.popup-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.popup-next:active {
    transform: translateY(0);
}

.popup-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.popup-submit {
    background: #ffffff;
    color: #2b4c7e;
}

/* Success Step */
.popup-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(107, 159, 255, 0.15);
    border: 2px solid rgba(107, 159, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b9fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    animation: popIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popIn {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.popup-success-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    line-height: 1.7;
}
