/**
 * NEW LANDING PAGE - BOLD & PROFESSIONAL
 * Inspired by modern SaaS (Monday.com, Linear, Notion)
 * Colors: Insuffle Blue (#2B4C7E) + Insuffle Yellow (#F4D03F)
 */

/* ============================================
   HERO SECTION - BOLD & IMPACTFUL
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #1A2E4F 0%, #2B4C7E 50%, #223D66 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(244, 208, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

/* Hero Text */
.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.badge-star {
    color: var(--accent-500);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 48px 0;
    max-width: 540px;
}

/* Hero Actions */
.hero-actions {
    margin-bottom: 48px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
}

.btn-hero-primary {
    background: var(--accent-500);
    color: var(--neutral-900);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 208, 63, 0.5);
    background: var(--accent-400);
}

.btn-hero-primary:active {
    transform: translateY(0);
}

.btn-hero .btn-icon {
    width: 20px;
    height: 20px;
}

.hero-access {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.access-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.access-form {
    display: flex;
    gap: 8px;
}

.access-input {
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 15px;
    font-family: var(--font-mono);
    width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.access-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.access-input:focus {
    outline: none;
    border-color: var(--accent-500);
    background: rgba(255, 255, 255, 0.15);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    font-size: 15px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-500);
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-500);
    line-height: 1;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.hero-image-placeholder svg {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.hero-image-placeholder p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   FEATURES SECTION - COLORFUL CARDS
   ============================================ */

.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, white 100%);
}

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

.section-eyebrow {
    display: inline-block;
    background: var(--primary-50);
    color: var(--primary-600);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.section-description-large {
    font-size: 20px;
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-primary {
    color: var(--primary-600);
    border-color: var(--primary-100);
}

.feature-card-primary:hover {
    border-color: var(--primary-300);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.feature-card-accent {
    color: var(--accent-600);
    border-color: var(--accent-100);
}

.feature-card-accent:hover {
    border-color: var(--accent-300);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.feature-card-success {
    color: var(--success-600);
    border-color: var(--success-100);
}

.feature-card-success:hover {
    border-color: var(--success-300);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.feature-card-info {
    color: var(--info-600);
    border-color: var(--info-100);
}

.feature-card-info:hover {
    border-color: var(--info-300);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: currentColor;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    opacity: 0.9;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 12px 0;
}

.feature-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-600);
    margin: 0;
}

/* ============================================
   SHOWCASE SECTION - SCREENSHOT ALTERNATING
   ============================================ */

.showcase-section {
    padding: 100px 0;
    background: white;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

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

.showcase-left .showcase-content {
    order: 1;
}

.showcase-left .showcase-image {
    order: 2;
}

.showcase-right .showcase-image {
    order: 1;
}

.showcase-right .showcase-content {
    order: 2;
}

.showcase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 24px;
}

.showcase-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.showcase-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-600);
    margin: 0 0 24px 0;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--neutral-700);
    font-weight: 500;
}

.showcase-features li svg {
    flex-shrink: 0;
    color: var(--success-500);
}

.showcase-image {
    position: relative;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--neutral-200);
}

.screenshot-placeholder {
    background: var(--neutral-50);
    border: 2px dashed var(--neutral-300);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: var(--neutral-400);
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.screenshot-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-500);
    margin: 0 0 8px 0;
}

.screenshot-placeholder small {
    font-size: 14px;
    color: var(--neutral-400);
}

/* ============================================
   CTA SECTION - STRONG CALL TO ACTION
   ============================================ */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(244, 208, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
}

.cta-box {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--accent-500);
    color: var(--neutral-900);
    padding: 22px 48px;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
    font-family: var(--font-body);
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(244, 208, 63, 0.5);
    background: var(--accent-400);
}

.btn-cta-large:active {
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 52px;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-left .showcase-content,
    .showcase-right .showcase-content {
        order: 1;
    }

    .showcase-left .showcase-image,
    .showcase-right .showcase-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 24px;
    }

    .section-title-large {
        font-size: 36px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 36px;
    }

    .btn-cta-large {
        padding: 18px 32px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-access {
        flex-direction: column;
        align-items: stretch;
    }

    .access-form {
        flex-direction: column;
    }

    .access-input {
        width: 100%;
    }
}
