/* CorralonLink Landing Page Premium Stylesheet */

/* Main layout wrapper */
.landing-main {
    background-color: #0b1329; /* Deep space navy */
    color: #f8fafc;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section-premium {
    position: relative;
    padding: 100px 0 80px 0;
    min-height: calc(90vh - 64px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 30%, #1c2a4a 0%, #0b1329 80%);
    overflow: hidden;
}

/* Ambient glow blobs */
.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
    z-index: 0;
    filter: blur(40px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0) 70%);
    z-index: 0;
    filter: blur(50px);
}

.relative-content {
    position: relative;
    z-index: 10;
}

.badge-premium {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 24px auto;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: #94a3b8; /* Slate 400 */
    max-width: 780px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* Call to action buttons */
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0b1329;
    border: none;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
    color: #0b1329;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Floating Showcase Card */
.showcase-container {
    max-width: 680px;
    margin: 0 auto;
    perspective: 1000px;
}

.showcase-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: translateY(0) rotateX(2deg);
    transition: transform 0.5s ease;
}

.showcase-card:hover {
    transform: translateY(-5px) rotateX(0deg);
}

.showcase-header {
    background: rgba(2, 6, 23, 0.8);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.showcase-title {
    margin-left: 20px;
    font-size: 0.8rem;
    font-family: monospace;
    color: #64748b;
}

.showcase-body {
    padding: 24px;
}

.showcase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.item-icon {
    font-size: 1.5rem;
    margin-right: 14px;
}

.item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.item-qty {
    font-size: 0.8rem;
    color: #64748b;
}

.item-price {
    font-weight: 700;
    color: #f8fafc;
    font-size: 0.95rem;
}

.showcase-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

.showcase-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.discount-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
}

.showcase-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.showcase-total-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #f59e0b;
}

.showcase-action {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Features Section */
.section-features {
    padding: 100px 0;
    background-color: #0d162d;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 64px auto;
}

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

.feature-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(30, 41, 59, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(30, 41, 59, 0.5);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.section-how-it-works {
    padding: 100px 0;
    background-color: #0b1329;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 24px;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.15);
    user-select: none;
}

/* CTA Form Section */
.section-cta-form {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0b1329 0%, #070b18 100%);
}

.cta-form-card {
    padding: 48px;
    border-radius: 28px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-form-card p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.cta-form-card label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.cta-form-card input {
    border-radius: 10px;
    padding: 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.cta-form-card input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
    background: rgba(30, 41, 59, 0.9) !important;
}

/* Responsiveness */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .cta-form-card {
        padding: 24px;
    }
}
