* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f6f5;
    --bg-card: #ffffff;
    --accent: #F22F46;
    --accent-hover: #D91C3A;
    --accent-glow: rgba(242, 47, 70, 0.15);
    --accent-soft: rgba(242, 47, 70, 0.06);
    --text: #1a1a1a;
    --text-muted: #555555;
    --border: #e5e5e5;
    --success: #22c55e;
    --error: #ef4444;
    --dark-bg: #0f0f0f;
    --dark-text: #ffffff;
    --gradient-accent: linear-gradient(135deg, #F22F46 0%, #ff6b6b 50%, #F22F46 100%);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== PHONE RINGING ANIMATION ===== */

.phone-ring-icon {
    display: inline-block;
    animation: phoneRing 2s ease-in-out infinite;
    transform-origin: 50% 50%;
    font-size: 0.85em;
    margin-right: 0.15rem;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(25deg); }
    10% { transform: rotate(-20deg); }
    15% { transform: rotate(25deg); }
    20% { transform: rotate(-20deg); }
    25% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    35% { transform: rotate(0deg); }
}

.btn-postuler:hover .phone-ring-icon,
.btn-hero-cta:hover .phone-ring-icon {
    animation: phoneRingFast 0.5s ease-in-out infinite;
}

@keyframes phoneRingFast {
    0%, 100% { transform: rotate(0deg) scale(1.1); }
    25% { transform: rotate(20deg) scale(1.2); }
    50% { transform: rotate(-20deg) scale(1.2); }
    75% { transform: rotate(15deg) scale(1.1); }
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s;
}

.btn-postuler {
    background: var(--accent);
    color: #fff;
    padding: 0.55rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    animation: wiggle 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-postuler::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -60%; }
    50% { left: 120%; }
}

.btn-postuler:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 25px var(--accent-glow);
    transform: translateY(-2px) scale(1.03);
    animation: none;
}

.btn-postuler:hover::after {
    animation: none;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-3deg) scale(1.05); }
    20% { transform: rotate(3deg) scale(1.05); }
    25% { transform: rotate(-2deg) scale(1.03); }
    30% { transform: rotate(2deg) scale(1.03); }
    35% { transform: rotate(0deg) scale(1); }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 2rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F22F46;
    letter-spacing: -0.5px;
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slideshow .slide.active {
    opacity: 1;
    animation: slowZoom 12s ease-in-out forwards;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(242, 47, 70, 0.88) 0%, rgba(200, 20, 40, 0.90) 30%, rgba(140, 0, 20, 0.93) 60%, rgba(80, 0, 10, 0.96) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 80, 80, 0.15) 0%, transparent 60%);
}

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 3;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.hero-content {
    max-width: 750px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.5px;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accent {
    color: var(--accent);
}

.hero .accent {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    text-decoration-color: rgba(255,255,255,0.5);
}

.hero .btn-primary {
    background: #fff;
    color: var(--accent);
    font-size: 1.05rem;
    padding: 1rem 2.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px) scale(1.02);
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 25px var(--accent-glow);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */

.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    max-width: 100%;
    background: var(--dark-bg);
    color: var(--dark-text);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(242, 47, 70, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .timeline-content p,
.section-dark .contact-info > p {
    color: #b0b0b0;
}

.section-dark > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CARDS ===== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, var(--accent), #ff6b6b, var(--accent));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.card:hover::before {
    opacity: 1;
}

.card:hover .card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(244, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all 0.4s;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===== TIMELINE ===== */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding-left: 25px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(242, 47, 70, 0.2));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(242, 47, 70, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(242, 47, 70, 0.2);
}

.timeline-content {
    padding-top: 0.4rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== STATS ===== */

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s;
}

.stat:hover {
    background: var(--accent-soft);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    background: var(--gradient-accent);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    transition: all 0.3s;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.2rem;
    position: relative;
    transition: all 0.3s;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial:hover {
    border-color: rgba(242, 47, 70, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.testimonial p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-author {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== CONTACT ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #ccc;
}

.contact-label {
    background: rgba(244, 0, 0, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 90px;
    text-align: center;
}

.contact-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(242, 47, 70, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-cta:hover::before {
    opacity: 1;
}

.contact-cta:hover {
    border-color: rgba(242, 47, 70, 0.25);
}

.contact-cta p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
}

/* ===== FOOTER ===== */

.footer {
    text-align: center;
    padding: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    background: var(--bg-primary);
}

/* ===== FORM STYLES ===== */

.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(244, 0, 0, 0.04) 0%, transparent 60%),
        var(--bg-secondary);
}

.form-container {
    width: 100%;
    max-width: 520px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-header p {
    color: var(--text-muted);
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(244, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.file-upload-wrapper {
    position: relative;
    cursor: pointer;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 2px dashed var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.file-upload-wrapper:hover .file-upload-display,
.file-upload-wrapper.has-file .file-upload-display {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.file-upload-wrapper.has-file .file-upload-display {
    color: var(--text);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-bar-track {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 15%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 25px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.form-message {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--error);
}

/* ===== STEP INDICATOR ===== */

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.step.active .step-dot {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(242, 47, 70, 0.3);
}

.step.completed .step-dot {
    background: var(--success);
    color: #fff;
}

.step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.step.active span {
    color: var(--accent);
}

.step.completed span {
    color: var(--success);
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--border);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

.step-line-active {
    background: var(--success);
}

/* ===== VERIFY ===== */

.verify-card {
    text-align: center;
}

.verify-badge {
    margin-bottom: 2rem;
}

.badge-icon {
    display: inline-block;
    background: linear-gradient(135deg, #000091, #0055a4);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.badge-subtitle {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.qr-box {
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    display: inline-block;
    line-height: 0;
}

.qr-instruction {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 350px;
    line-height: 1.6;
}

.qr-instruction strong {
    color: #000091;
}

.verify-divider {
    position: relative;
    margin: 2rem 0;
    border-top: 1px solid var(--border);
}

.verify-divider span {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.verify-alt p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.code-input-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.code-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.code-digit:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(244, 0, 0, 0.1);
}

.code-dash {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 300;
}

.verify-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.verify-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.trust-icon {
    font-size: 1rem;
}

.verify-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.trust-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.confirm-card {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.confirm-icon {
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out 0.3s both;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.confirm-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.confirm-subtitle {
    color: var(--success);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.email-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.email-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.email-from {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.email-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.email-sender {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.email-address {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.email-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.email-body {
    padding: 1.5rem;
    font-size: 0.93rem;
    line-height: 1.8;
    color: var(--text);
}

.email-body p {
    margin-bottom: 1rem;
}

.email-body ul {
    margin: 0.5rem 0 1rem 1.2rem;
}

.email-body li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.email-body li strong {
    color: var(--text);
}

.email-signature {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== REVEAL ANIMATIONS ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.card.reveal:nth-child(1) { transition-delay: 0s; }
.card.reveal:nth-child(2) { transition-delay: 0.1s; }
.card.reveal:nth-child(3) { transition-delay: 0.2s; }
.card.reveal:nth-child(4) { transition-delay: 0.3s; }
.card.reveal:nth-child(5) { transition-delay: 0.4s; }
.card.reveal:nth-child(6) { transition-delay: 0.5s; }

.timeline-item.reveal-left:nth-child(1) { transition-delay: 0s; }
.timeline-item.reveal-left:nth-child(2) { transition-delay: 0.15s; }
.timeline-item.reveal-left:nth-child(3) { transition-delay: 0.3s; }
.timeline-item.reveal-left:nth-child(4) { transition-delay: 0.45s; }

.stat.reveal-scale:nth-child(1) { transition-delay: 0s; }
.stat.reveal-scale:nth-child(2) { transition-delay: 0.1s; }
.stat.reveal-scale:nth-child(3) { transition-delay: 0.2s; }
.stat.reveal-scale:nth-child(4) { transition-delay: 0.3s; }

.stat-number {
    transition: all 0.3s;
}

/* ===== OTP ===== */

.otp-section {
    padding: 1.5rem 0;
    transition: opacity 0.3s;
}

.otp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.otp-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(244, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.otp-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.otp-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.otp-status {
    margin-left: auto;
    flex-shrink: 0;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.otp-status.pending {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.otp-status.active {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    animation: pulse-status 2s ease-in-out infinite;
}

.otp-status.verified {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.btn-otp {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.id-choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.id-choice-btn {
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-align: left;
}

.id-choice-btn:hover {
    border-color: var(--accent);
    background: rgba(244, 0, 0, 0.03);
}

.id-choice-btn.selected {
    border-color: var(--accent);
    background: rgba(244, 0, 0, 0.06);
    color: var(--accent);
    box-shadow: 0 0 0 3px rgba(244, 0, 0, 0.1);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-brand {
        margin-left: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }
}
