/* =========================================================
   PUBLIC HEADER
========================================================= */

.top-header {
    width: 100%;
    min-height: 72px;

    display: flex;
    align-items: center;

    padding: 12px 24px;
    gap: 20px;

    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;

    position: relative;
    z-index: 1000;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   BRAND
========================================================= */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eff6ff;
    border-radius: 12px;

    font-size: 24px;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand-text strong {
    color: #0f172a;
    font-size: 18px;
    line-height: 1.2;
}

.navbar-brand-text small {
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
}


/* =========================================================
   DESKTOP HORIZONTAL NAVIGATION
========================================================= */

.navbar-navigation {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}

.navbar-link {
    display: inline-flex;

    padding: 10px 14px;

    color: #475569;
    font-size: 14px;
    font-weight: 600;

    border-radius: 8px;
    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.navbar-link:hover {
    background: #eff6ff;
    color: #2563eb;
}


/* MOBILE AUTH LINKS - HIDDEN ON DESKTOP */

.mobile-auth-link,
.mobile-register-link {
    display: none;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.navbar-right {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-shrink: 0;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e2e8f0;
    border-radius: 8px;

    color: #475569;
}

.social-link:hover {
    background: #eff6ff;
    color: #2563eb;
}


/* =========================================================
   LOGIN / REGISTER
========================================================= */

.navbar-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-login,
.navbar-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 9px 16px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}

.navbar-login {
    color: #2563eb;
}

.navbar-login:hover {
    background: #eff6ff;
}

.navbar-register {
    background: #2563eb;
    color: #ffffff;
}

.navbar-register:hover {
    background: #1d4ed8;
}


/* =========================================================
   HAMBURGER
========================================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid #e2e8f0;
    border-radius: 10px;

    background: #ffffff;
    color: #0f172a;

    font-size: 22px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .top-header {
        min-height: 64px;
        padding: 10px 12px;
        gap: 10px;
    }


    /* SHOW HAMBURGER */

    .mobile-menu-button {
        display: flex;
        flex-shrink: 0;
    }


    /* LEFT */

    .navbar-left {
        flex: 1;
        min-width: 0;
    }


    .navbar-logo {
        width: 40px;
        height: 40px;

        font-size: 21px;
    }


    .navbar-brand-text strong {
        font-size: 16px;
    }


    .navbar-brand-text small {
        display: none;
    }


    /* RIGHT */

    .social-links {
        display: none;
    }


    .header-user-info {
        display: none;
    }


    .navbar-right {
        gap: 7px;
    }


    /* HIDE DESKTOP AUTH */

    .navbar-auth {
        display: none;
    }


    /* MOBILE MENU */

    .navbar-navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: #ffffff;
        border-bottom: 1px solid #e2e8f0;

        box-shadow:
            0 10px 25px
            rgba(15, 23, 42, 0.10);
    }


    .navbar-navigation.mobile-active {
        display: flex;
    }


    .navbar-link {
        width: 100%;

        justify-content: flex-start;

        padding: 13px 15px;

        border-radius: 8px;
    }


    /* SHOW AUTH INSIDE HAMBURGER MENU */

    .mobile-auth-link,
    .mobile-register-link {
        display: flex;

        align-items: center;

        width: 100%;

        padding: 13px 15px;

        font-size: 14px;
        font-weight: 700;

        border-radius: 8px;
    }


    .mobile-auth-link {
        margin-top: 8px;

        color: #2563eb;
        background: #eff6ff;
    }


    .mobile-register-link {
        margin-top: 8px;

        justify-content: center;

        color: #ffffff;
        background: #2563eb;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 380px) {

    .navbar-brand-text {
        display: none;
    }

    .header-icon-button {
        width: 38px;
        height: 38px;
    }

    .header-avatar {
        width: 38px;
        height: 38px;
    }

}


/* =========================================================
   ATOMSPLAY HOME
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.atomsplay-home {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px 60px;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 55px 0 45px;
    text-align: center;
}


.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 13px;

    background: #eff6ff;
    color: #2563eb;

    border: 1px solid #dbeafe;
    border-radius: 30px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
}


.home-hero h1 {
    margin: 18px 0 12px;

    color: #0f172a;

    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.05;
    font-weight: 800;

    letter-spacing: -2px;
}


.home-hero h1 span {
    color: #2563eb;
}


.hero-description {
    max-width: 590px;

    margin: 0 auto 24px;

    color: #64748b;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-bottom: 35px;
}


.home-btn {
    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 18px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: .2s ease;
}


.home-btn-primary {
    background: #2563eb;
    color: #ffffff;
}


.home-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}


.home-btn-secondary {
    background: #ffffff;
    color: #2563eb;

    border: 1px solid #dbeafe;
}


.home-btn-secondary:hover {
    background: #eff6ff;
}

/* =========================================================
   ATOMSPLAY FONT AWESOME ICON ENHANCEMENTS
========================================================= */

.hero-badge {
    gap: 7px;
}

.hero-badge i {
    font-size: 12px;
}

.preview-level {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.preview-level i,
.progress-info i {
    font-size: 11px;
}

.preview-icon,
.feature-icon,
.system-icon {
    color: #2563eb;
}

.preview-icon i,
.feature-icon i,
.system-icon i {
    line-height: 1;
}

.quiz-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.quiz-label i {
    font-size: 11px;
}

.quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: .2s ease;
}

.quiz-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.answers .correct-answer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.correct-answer i {
    font-size: 13px;
}

.final-cta > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.final-cta > span i {
    font-size: 12px;
}

/* BUTTON ICONS */

.home-btn i,
.quiz-btn i {
    font-size: 13px;
}

.home-btn-primary:hover i,
.quiz-btn:hover i {
    transform: translateX(3px);
}

.home-btn i,
.quiz-btn i {
    transition: transform .2s ease;
}


/* MOBILE */

@media (max-width: 600px) {

    .preview-level {
        font-size: 10px;
    }

    .hero-badge {
        padding: 7px 11px;
    }

}

/* =========================================
   FONT AWESOME - PUBLIC HEADER
========================================= */

.mobile-menu-button i,
.navbar-logo i,
.header-icon-button i {
    line-height: 1;
}


/* BRAND ICON */

.navbar-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo i {
    font-size: 20px;
}


/* MOBILE MENU */

.mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button i {
    font-size: 20px;
}


/* NAVIGATION ICONS */

.navbar-link,
.mobile-auth-link,
.mobile-register-link,
.navbar-login,
.navbar-register {
    align-items: center;
    gap: 7px;
}

.navbar-link i,
.mobile-auth-link i,
.mobile-register-link i,
.navbar-login i,
.navbar-register i {
    font-size: 14px;
}


/* SOCIAL ICONS */

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link i {
    line-height: 1;
    font-size: 15px;
}


/* NOTIFICATION */

.header-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-icon-button i {
    font-size: 17px;
}
/* =========================================================
   LEARNING PREVIEW
========================================================= */

.learning-preview {
    width: 100%;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    text-align: left;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .07);
}


.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.preview-label {
    display: block;

    margin-bottom: 4px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
}


.preview-top h3 {
    margin: 0;

    color: #0f172a;

    font-size: 18px;
}


.preview-level {
    padding: 6px 10px;

    background: #eff6ff;
    color: #2563eb;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   PROGRESS
========================================================= */

.progress-area {
    margin-top: 22px;
}


.progress-info {
    display: flex;
    justify-content: space-between;

    margin-bottom: 8px;

    color: #64748b;

    font-size: 12px;
}


.progress-info strong {
    color: #0f172a;
}


.progress-bar {
    width: 100%;
    height: 8px;

    overflow: hidden;

    background: #e2e8f0;

    border-radius: 20px;
}


.progress-fill {
    width: 68%;
    height: 100%;

    background: #2563eb;

    border-radius: inherit;
}


.progress-area small {
    display: block;

    margin-top: 8px;

    color: #94a3b8;

    font-size: 11px;
}


/* =========================================================
   PREVIEW STATS
========================================================= */

.preview-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 20px;
}


.preview-stat {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px;

    background: #f8fafc;

    border-radius: 10px;
}


.preview-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eff6ff;

    border-radius: 8px;

    font-size: 16px;
}


.preview-stat strong {
    display: block;

    color: #0f172a;

    font-size: 14px;
}


.preview-stat small {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 10px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.home-section {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 45px 0;
}


.section-title {
    text-align: center;

    margin-bottom: 25px;
}


.section-title > span {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.section-title h2 {
    margin: 7px 0;

    color: #0f172a;

    font-size: 27px;
}


.section-title p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}


.feature-card {
    padding: 18px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    text-align: left;

    transition: .2s ease;
}


.feature-card:hover {
    transform: translateY(-3px);

    border-color: #bfdbfe;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, .06);
}


.feature-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    background: #eff6ff;

    border-radius: 10px;

    font-size: 20px;
}


.feature-card h3 {
    margin: 0 0 6px;

    color: #0f172a;

    font-size: 15px;
}


.feature-card p {
    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   QUIZ SECTION
========================================================= */

.quiz-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    padding: 28px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 18px;
}


.quiz-label {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;
}


.quiz-left h2 {
    margin: 10px 0 8px;

    color: #0f172a;

    font-size: 25px;
}


.quiz-left p {
    margin: 0 0 18px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


.quiz-btn {
    display: inline-flex;

    padding: 10px 15px;

    background: #2563eb;
    color: #ffffff;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


.quiz-question {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;
}


.question-number {
    margin-bottom: 8px;

    color: #94a3b8;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
}


.quiz-question h3 {
    margin: 0 0 15px;

    color: #0f172a;

    font-size: 16px;
}


.answers {
    display: grid;

    gap: 7px;
}


.answers div {
    padding: 9px 11px;

    border: 1px solid #e2e8f0;

    border-radius: 7px;

    color: #475569;

    font-size: 12px;
}


.answers .correct-answer {
    background: #eff6ff;

    border-color: #93c5fd;

    color: #2563eb;

    font-weight: 700;
}


/* =========================================================
   SYSTEM STATUS
========================================================= */

.system-section {
    padding-top: 25px;
}


.system-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;
}


.system-card {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 14px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 12px;
}


.system-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eff6ff;

    border-radius: 9px;

    font-size: 17px;
}


.system-card small {
    display: block;

    color: #94a3b8;

    font-size: 10px;
}


.system-card strong {
    display: block;

    margin-top: 2px;

    color: #0f172a;

    font-size: 13px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    width: 100%;
    max-width: 650px;

    margin: 30px auto 0;

    padding: 40px 25px;

    text-align: center;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    border-radius: 18px;
}


.final-cta > span {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.final-cta h2 {
    margin: 10px 0 7px;

    color: #0f172a;

    font-size: 27px;
}


.final-cta p {
    margin: 0 auto 20px;

    color: #64748b;

    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .atomsplay-home {
        max-width: 700px;
    }


    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .system-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .atomsplay-home {
        width: 100%;

        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 35px;
    }


    .home-hero {
        padding-top: 35px;
        padding-bottom: 30px;
    }


    .home-hero h1 {
        font-size: 38px;
        letter-spacing: -1.3px;
    }


    .hero-description {
        font-size: 14px;
    }


    .hero-actions {
        flex-direction: column;

        width: 100%;

        margin-bottom: 25px;
    }


    .home-btn {
        width: 100%;
    }


    .learning-preview {
        padding: 17px;
    }


    .preview-stats {
        grid-template-columns: 1fr;
    }


    .preview-stat {
        padding: 10px;
    }


    .home-section {
        padding: 30px 0;
    }


    .section-title h2 {
        font-size: 24px;
    }


    .feature-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .feature-card {
        padding: 16px;
    }


    .quiz-box {
        grid-template-columns: 1fr;

        padding: 18px;

        gap: 18px;
    }


    .quiz-left h2 {
        font-size: 22px;
    }


    .system-grid {
        grid-template-columns: 1fr;
    }


    .final-cta {
        padding: 30px 18px;
    }


    .final-cta h2 {
        font-size: 24px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .atomsplay-home {
        padding-left: 10px;
        padding-right: 10px;
    }


    .home-hero h1 {
        font-size: 34px;
    }


    .hero-badge {
        font-size: 9px;
    }


    .learning-preview {
        padding: 14px;
    }


    .preview-top h3 {
        font-size: 16px;
    }


    .section-title h2 {
        font-size: 22px;
    }

}


/* =========================================================
   ATOMSPLAY SIMPLE PUBLIC FOOTER
========================================================= */

.site-footer {
    width: 100%;
    margin-top: 0;
    padding: 35px 20px;
    background: #0f172a;
    color: #cbd5e1;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================================
   FOOTER TITLE
========================================================= */

.footer-container h3 {
    margin: 0 0 10px;

    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
}


/* =========================================================
   FOOTER TEXT
========================================================= */

.footer-container p {
    margin: 0 0 8px;

    max-width: 500px;

    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}


/* First paragraph */

.footer-container p:first-of-type {
    color: #60a5fa;
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copy {
    width: 100%;
    margin-top: 22px;
    padding-top: 20px;

    border-top: 1px solid #1e293b;

    color: #64748b;
    font-size: 13px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 30px 15px;
    }


    .footer-container h3 {
        font-size: 20px;
    }


    .footer-container p {
        font-size: 13px;
    }


    .footer-container p:first-of-type {
        font-size: 14px;
    }


    .footer-copy {
        margin-top: 18px;
        padding-top: 18px;
        font-size: 12px;
    }

}

/* =========================================================
   ATOMSPLAY ABOUT PAGE
========================================================= */

.about-page {
    width: 100%;
    max-width: 980px;

    margin: 0 auto;

    padding: 0 20px 60px;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    width: 100%;
    max-width: 720px;

    margin: 0 auto;

    padding: 55px 0 45px;

    text-align: center;
}


.about-badge {
    display: inline-flex;

    padding: 7px 13px;

    background: #eff6ff;
    color: #2563eb;

    border: 1px solid #dbeafe;
    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
}


.about-hero h1 {
    margin: 18px 0 13px;

    color: #0f172a;

    font-size: clamp(36px, 6vw, 55px);
    line-height: 1.08;

    letter-spacing: -1.8px;
}


.about-hero h1 span {
    color: #2563eb;
}


.about-hero p {
    max-width: 600px;

    margin: 0 auto;

    color: #64748b;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   SECTION
========================================================= */

.about-section {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 40px 0;
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 30px;

    align-items: center;
}


.about-label {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.about-intro h2 {
    margin: 8px 0 15px;

    color: #0f172a;

    font-size: 28px;
    line-height: 1.2;
}


.about-intro p {
    margin: 0 0 12px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   VISUAL
========================================================= */

.about-visual {
    min-height: 210px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    background: #eff6ff;

    border: 1px solid #dbeafe;
    border-radius: 18px;

    color: #2563eb;
}


.about-visual-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    background: #ffffff;

    border-radius: 15px;

    font-size: 28px;
}


.about-visual strong {
    color: #0f172a;

    font-size: 15px;
}


.about-visual > span {
    color: #93c5fd;

    font-size: 12px;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.about-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}


.about-card {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 15px;
}


.about-card-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    background: #eff6ff;

    border-radius: 10px;

    font-size: 20px;
}


.about-card > span {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;
}


.about-card h3 {
    margin: 7px 0;

    color: #0f172a;

    font-size: 18px;
}


.about-card p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   VALUES
========================================================= */

.about-heading {
    text-align: center;

    margin-bottom: 22px;
}


.about-heading > span {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.about-heading h2 {
    margin: 7px 0 0;

    color: #0f172a;

    font-size: 27px;
}


.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}


.value-card {
    padding: 18px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;
}


.value-card > div {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    background: #eff6ff;

    border-radius: 9px;

    font-size: 19px;
}


.value-card h3 {
    margin: 0 0 6px;

    color: #0f172a;

    font-size: 15px;
}


.value-card p {
    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    max-width: 650px;

    margin: 25px auto 0;

    padding: 38px 20px;

    text-align: center;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    border-radius: 18px;
}


.about-cta > span {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.about-cta h2 {
    margin: 9px 0 7px;

    color: #0f172a;

    font-size: 26px;
}


.about-cta p {
    margin: 0 0 18px;

    color: #64748b;

    font-size: 13px;
}


.about-cta a {
    display: inline-flex;

    padding: 10px 18px;

    background: #2563eb;
    color: #ffffff;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-page {
        padding-left: 14px;
        padding-right: 14px;
    }


    .about-hero {
        padding-top: 35px;
    }


    .about-hero h1 {
        font-size: 38px;
    }


    .about-intro {
        grid-template-columns: 1fr;
    }


    .about-visual {
        min-height: 170px;
    }


    .about-cards {
        grid-template-columns: 1fr;
    }


    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 400px) {

    .about-hero h1 {
        font-size: 33px;
    }


    .values-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   ATOMSPLAY FEATURES PAGE
========================================================= */

.features-page {
    width: 100%;
    max-width: 980px;

    margin: 0 auto;

    padding: 0 20px 60px;
}


/* =========================================================
   HERO
========================================================= */

.features-hero {
    max-width: 720px;

    margin: 0 auto;

    padding: 55px 0 45px;

    text-align: center;
}


.features-badge {
    display: inline-flex;

    padding: 7px 13px;

    background: #eff6ff;
    color: #2563eb;

    border: 1px solid #dbeafe;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;
}


.features-hero h1 {
    margin: 18px 0 13px;

    color: #0f172a;

    font-size: clamp(36px, 6vw, 55px);

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.features-hero h1 span {
    color: #2563eb;
}


.features-hero p {
    max-width: 600px;

    margin: 0 auto;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   FEATURE SECTION
========================================================= */

.features-section {
    max-width: 900px;

    margin: 0 auto;

    padding: 40px 0;
}


/* =========================================================
   BIG FEATURE
========================================================= */

.big-feature {
    display: flex;
    align-items: center;

    gap: 22px;

    padding: 25px;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    border-radius: 16px;

    margin-bottom: 15px;
}


.big-feature-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #ffffff;

    border-radius: 15px;

    font-size: 30px;
}


.big-feature span {
    color: #2563eb;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.big-feature h2 {
    margin: 6px 0 7px;

    color: #0f172a;

    font-size: 23px;
}


.big-feature p {
    max-width: 600px;

    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


.feature-item {
    display: flex;

    gap: 12px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;
}


.feature-item-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eff6ff;

    border-radius: 10px;

    font-size: 19px;
}


.feature-item h3 {
    margin: 1px 0 5px;

    color: #0f172a;

    font-size: 15px;
}


.feature-item p {
    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   HEADING
========================================================= */

.features-heading {
    text-align: center;

    margin-bottom: 22px;
}


.features-heading span {
    color: #2563eb;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.features-heading h2 {
    margin: 7px 0 0;

    color: #0f172a;

    font-size: 27px;
}


/* =========================================================
   STEPS
========================================================= */

.steps-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}


.step-card {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;
}


.step-number {
    color: #2563eb;

    font-size: 11px;
    font-weight: 800;
}


.step-card h3 {
    margin: 8px 0 6px;

    color: #0f172a;

    font-size: 16px;
}


.step-card p {
    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.features-cta {
    max-width: 650px;

    margin: 25px auto 0;

    padding: 38px 20px;

    text-align: center;

    background: #0f172a;

    border-radius: 18px;
}


.features-cta h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 26px;
}


.features-cta p {
    margin: 0 0 18px;

    color: #94a3b8;

    font-size: 13px;
}


.features-cta a {
    display: inline-flex;

    padding: 10px 18px;

    background: #2563eb;

    color: #ffffff;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .features-page {
        padding-left: 14px;
        padding-right: 14px;
    }


    .features-hero {
        padding-top: 35px;
    }


    .features-hero h1 {
        font-size: 38px;
    }


    .big-feature {
        flex-direction: column;

        text-align: center;
    }


    .big-feature p {
        margin-left: auto;
        margin-right: auto;
    }


    .feature-list {
        grid-template-columns: 1fr;
    }


    .steps-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 400px) {

    .features-hero h1 {
        font-size: 33px;
    }

}

/* =========================================================
   ATOMSPLAY CONTACT PAGE
========================================================= */

.contact-page {
    width: 100%;
    max-width: 980px;

    margin: 0 auto;

    padding: 0 20px 60px;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    max-width: 720px;

    margin: 0 auto;

    padding: 55px 0 45px;

    text-align: center;
}


.contact-badge {
    display: inline-flex;

    padding: 7px 13px;

    background: #eff6ff;
    color: #2563eb;

    border: 1px solid #dbeafe;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;
}


.contact-hero h1 {
    margin: 18px 0 13px;

    color: #0f172a;

    font-size: clamp(36px, 6vw, 55px);

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.contact-hero h1 span {
    color: #2563eb;
}


.contact-hero p {
    max-width: 570px;

    margin: 0 auto;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    max-width: 900px;

    margin: 0 auto;

    padding: 40px 0;
}


.contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 18px;

    align-items: stretch;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {
    padding: 25px;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    border-radius: 16px;
}


.contact-label {
    color: #2563eb;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.contact-info h2 {
    margin: 8px 0;

    color: #0f172a;

    font-size: 25px;
}


.contact-info > p {
    margin: 0 0 22px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-items {
    display: grid;

    gap: 10px;
}


.contact-item {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px;

    background: #ffffff;

    border-radius: 10px;
}


.contact-item-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eff6ff;

    border-radius: 8px;

    font-size: 16px;
}


.contact-item small {
    display: block;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .6px;
}


.contact-item strong {
    display: block;

    margin-top: 3px;

    color: #0f172a;

    font-size: 12px;

    word-break: break-word;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    padding: 25px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .04);
}


.form-group {
    margin-bottom: 15px;
}


.form-group label {
    display: block;

    margin-bottom: 6px;

    color: #334155;

    font-size: 12px;

    font-weight: 700;
}


.form-group input,
.form-group textarea {
    width: 100%;

    display: block;

    padding: 11px 12px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    color: #0f172a;

    font-family: inherit;

    font-size: 13px;

    outline: none;

    transition: .2s ease;
}


.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;

    border-color: #93c5fd;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, .08);
}


.form-group textarea {
    resize: vertical;

    min-height: 110px;
}


.contact-submit {
    width: 100%;

    min-height: 43px;

    border: 0;

    border-radius: 8px;

    background: #2563eb;

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}


.contact-submit:hover {
    background: #1d4ed8;

    transform: translateY(-1px);
}


/* =========================================================
   HELP
========================================================= */

.contact-help {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 25px;

    align-items: center;

    padding: 22px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 15px;
}


.contact-help span {
    color: #2563eb;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.contact-help h2 {
    margin: 7px 0 0;

    color: #0f172a;

    font-size: 22px;
}


.contact-help p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-page {
        padding-left: 14px;
        padding-right: 14px;
    }


    .contact-hero {
        padding-top: 35px;
    }


    .contact-hero h1 {
        font-size: 38px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .contact-help {
        grid-template-columns: 1fr;

        gap: 12px;
    }

}


@media (max-width: 400px) {

    .contact-hero h1 {
        font-size: 33px;
    }


    .contact-info,
    .contact-form-card {
        padding: 18px;
    }

}


/* AtomsPlay Navbar Logo */
.navbar-brand-logo {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Mobile */
@media (max-width: 600px) {
    .navbar-brand-logo {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    background: #111827;
    color: #ffffff;
    padding: 35px 20px 20px;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.footer-container p {
    margin: 6px 0;
    line-height: 1.5;
}

.footer-copy {
    margin-top: 22px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 25px 15px 15px;
    }

    .footer-container h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .footer-container p {
        font-size: 14px;
        margin: 5px 0;
    }

    .footer-copy {
        margin-top: 15px;
        padding-top: 12px;
        font-size: 12px;
    }

}
