/* Landing Page Specific Styles */
/* This file contains styles specifically used by the Home Index view (landing page) */

/* Landing Page Wrapper */
.landing-wrapper {
    /* Container for the entire landing page content */
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--kbank-green-light), var(--kbank-green));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--kbank-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--kbank-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--kbank-green), var(--kbank-green-dark));
    color: white;
    box-shadow: var(--shadow-medium);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-large);
    }

.btn-outline {
    background: transparent;
    color: var(--kbank-green);
    border: 2px solid var(--kbank-green);
}

    .btn-outline:hover {
        background: var(--kbank-green);
        color: white;
    }

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otac-card {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: var(--shadow-large);
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--kbank-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.otac-input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.otac-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral-300);
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .otac-input:focus {
        outline: none;
        border-color: var(--kbank-green);
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    }

.card-action {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--kbank-green), var(--kbank-green-dark));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .card-action:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

.visual-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--kbank-green-light), var(--primary-blue-light));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

/* Steps Section */
.steps-section {
    padding: 4rem 2rem;
    background: white;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--neutral-50);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--kbank-green), var(--kbank-green-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--kbank-green-light), var(--kbank-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 1rem auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security Section */
.security-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--neutral-50), var(--neutral-100));
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.security-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--kbank-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.security-text p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Landing Page Specific Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .security-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Landing Page Specific Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.otac-card {
    animation: fadeInUp 0.8s ease 0.2s both, float 3s ease-in-out infinite 2s;
}

.step-card {
    animation: fadeInUp 0.8s ease both;
}

    .step-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .step-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .step-card:nth-child(3) {
        animation-delay: 0.3s;
    }