/* ============================================
   GameLicensor.com - Corporate Gradient SaaS
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #111827;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.mono, .license-ref {
    font-family: 'Source Code Pro', monospace;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 80px 24px 60px;
    position: relative;
}

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

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.shield-icon {
    width: 48px;
    height: 55px;
    flex-shrink: 0;
}

.brand-name {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.gradient-bar {
    height: 4px;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    border-radius: 2px;
    margin: 0 auto 28px;
    width: 200px;
}

.tagline {
    font-size: 20px;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.6;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    background: #f9fafb;
}

.badge-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Trust Logos */
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 48px 24px 0;
    margin-top: 48px;
    border-top: 1px solid #e5e7eb;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trust-logo-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-placeholder {
    width: 96px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 6px;
}

.logo-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
#process {
    padding: 120px 24px;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.section-title {
    font-size: 36px;
    color: #111827;
    margin-bottom: 12px;
}

.title-underline {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
}

.steps-container {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.step-content h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 12px;
}

.license-ref {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #4f46e5;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
    padding: 120px 24px;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-block {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 36px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-block.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-block h3 {
    font-size: 19px;
    color: #111827;
    margin-bottom: 10px;
}

.service-block p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION (Dark Gradient CTA)
   ============================================ */
#contact {
    padding: 120px 24px;
    background: linear-gradient(135deg, #111827 0%, #1e293b 50%, #111827 100%);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2563eb, #4f46e5);
}

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

.contact-title {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-underline {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.contact-description {
    font-size: 17px;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
}

.contact-cta {
    margin-top: 16px;
}

.cta-ref {
    font-size: 13px;
    color: #6b7280;
}

.cta-ref .mono {
    color: #2563eb;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    padding: 32px 24px;
    background: #111827;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-shield {
    width: 24px;
    height: 28px;
}

.footer-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.footer-copy {
    font-size: 13px;
    color: #6b7280;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .brand-name {
        font-size: 32px;
    }

    .tagline {
        font-size: 17px;
    }

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

    .contact-title {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        gap: 24px;
    }

    .step {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 26px;
    }

    .shield-icon {
        width: 36px;
        height: 42px;
    }

    .trust-logos {
        gap: 16px;
    }

    .logo-placeholder {
        width: 72px;
        height: 32px;
    }

    #process, #services, #contact {
        padding: 80px 20px;
    }
}
