/* ===== CSS VARIABLES & RESET ===== */
:root {
    --primary-blue: #0660fe;
    --primary-blue-hover: #0550d5;
    --accent-yellow: #FFD100;
    --accent-yellow-hover: #E6BC00;
    --text-main: #0c1a30;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --white: #ffffff;
    
    /* Steps Colors */
    --step-blue: #3b82f6;
    --step-green: #10b981;
    --step-purple: #6366f1;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(12, 26, 48, 0.07);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .badge-new, .hero-title, .logo {
    font-family: var(--font-heading);
}

.text-blue { color: var(--primary-blue); }
.text-yellow { color: var(--accent-yellow); }
.bg-blue { background-color: var(--step-blue); color: white; }
.bg-green { background-color: var(--step-green); color: white; }
.bg-purple { background-color: var(--step-purple); color: white; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background-color: var(--bg-light);
    color: var(--text-muted);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e5e7eb;
}

/* ===== HEADER ===== */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo .tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(6, 96, 254, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 96, 254, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue) !important;
}

.btn-outline:hover {
    background-color: rgba(6, 96, 254, 0.05);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 100px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.btn i {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0 60px;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-yellow);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    animation: pulseBadge 3s infinite alternate;
}

.badge-new i {
    font-size: 1.2rem;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 209, 0, 0.4); }
    100% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 209, 0, 0); }
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-item i {
    font-size: 1.5rem;
}

/* ===== HERO VISUAL & GLASS CARDS ===== */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blurry-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background-color: rgba(6, 96, 254, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob-2 {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 209, 0, 0.3);
    bottom: 0;
    right: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 24px;
    position: relative;
    z-index: 2;
}

.main-glass-card {
    width: 380px;
    transform: rotate(-2deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-glass-card:hover {
    transform: rotate(0deg) translateY(-10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info .time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.credit-badge {
    background-color: rgba(255, 87, 87, 0.1);
    color: #ff5757;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.card-body p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.secondary-glass-card {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 220px;
    padding: 16px 20px;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-content i {
    font-size: 2.5rem;
}

.stat-text h3 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.stat-text p {
    font-size: 1.2rem;
}

/* Floating animation */
.floating-element {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.decoration-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.step-card {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.step-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.badge-blue { background-color: var(--primary-blue); color: white; }
.badge-green { background-color: var(--step-green); color: white; }
.badge-purple { background-color: var(--step-purple); color: white; }

.step-arrow {
    color: #cbd5e1;
    font-size: 2.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--primary-blue);
    padding: 100px 0 0 0;
    position: relative;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding-bottom: 60px;
}

.cta-content {
    flex: 1;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.perks-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.perk i {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.cta-qr {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: rotate(2deg);
}

.qr-wrapper span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: repeating-linear-gradient(
        45deg,
        #f3f4f6,
        #f3f4f6 10px,
        #e5e7eb 10px,
        #e5e7eb 20px
    );
    border: 4px solid var(--text-main);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
}

.qr-placeholder i {
    font-size: 4rem;
    color: var(--text-main);
}

.qr-url {
    background: var(--accent-yellow);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
}

.wave-bottom {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -10px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== ADDED STYLES ===== */
.strong-sub {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--text-main);
}

.social-proof {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 500;
}

.future-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    z-index: 3;
}

.future-badge i {
    color: var(--step-purple);
    font-size: 1.1rem;
}

.floating-element-delay {
    animation: floating 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* ===== USE CASE SECTION ===== */
.use-case {
    padding: 80px 0;
    background-color: var(--white);
}

.use-case-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.use-case-card {
    padding: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    width: 24px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 1px #e5e7eb;
    z-index: 2;
}

.timeline-dot.bg-blue {
    background: var(--step-blue);
    box-shadow: 0 0 0 1px var(--step-blue);
}

.timeline-dot.bg-green {
    background: var(--step-green);
    box-shadow: 0 0 0 1px var(--step-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.timeline-content {
    padding-top: 2px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.timeline-content strong {
    color: var(--text-main);
}

.loop-oo {
    letter-spacing: -0.22em;
    padding-right: 0.22em;
    display: inline-block;
    position: relative;
}

/* ===== ANIMATIONS UTILS ===== */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.active {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .steps-grid { flex-direction: column; gap: 30px; }
    .step-arrow { transform: rotate(90deg); margin: 10px 0; }
    .cta-content h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-features { flex-direction: column; align-items: center; }
    .cta-box { flex-direction: column; text-align: center; }
    .perks-list { flex-direction: column; align-items: center; }
    
    .main-glass-card { width: 100%; max-width: 380px; margin: 0 auto; }
}
