﻿/* ==========================================================================
   2026 Inner Pages - Common Classes & Global Styles
   Designed to match the high-end aesthetic of home-page-new-2026.css
   ========================================================================== */
:root {
    /* Type Scale & Fonts */
    --font-primary: 'Google Sans Flex', 'Inter', sans-serif;
    /* --font-heading: 'Anton', sans-serif; */
    --font-heading: 'Google Sans Flex', 'Inter', sans-serif;
    /* Base Typography Tokens */
    --base-font-size: 22px;
    --base-line-height: 1.7;
    /* Global Colors */
    --text-primary: #333333;
    --text-secondary: #555555;
    --bg-primary: #ffffff;
    --bg-secondary: #f2f2f2;
    --brand-primary: #1a5b9e;
    /* Core blue seen in homepage */
    --brand-accent: #ffb703;
    /* Vibrant accent color, update if a different one is preferred */
}

/* ==========================================================================
   Base Body Application
   ========================================================================== */
body.inner-page-new {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    /* Font Smoothing for Premium UI Feel */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Global Heading Reset */
body.inner-page-new h1,
body.inner-page-new h2,
body.inner-page-new h3,
body.inner-page-new h4,
body.inner-page-new h5,
body.inner-page-new h6,
.anton-font {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-top: 0;
    color: var(--brand-primary);
}

/* ==========================================================================
   Layout & Spacing Utilities (Fully Responsive)
   ========================================================================== */
.align-items-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.row.align-items-center::before,
.row.align-items-center::after {
    display: none;
}

.common-section {
    padding: 50px 0;
}

.common-section-bg {
    background-color: var(--bg-secondary);
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.common-heading-primary {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 40px;
    color: var(--brand-primary);
    margin-bottom: 30px;
}

.common-heading-secondary {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.common-subheading {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 40px;
}

/* Responsive Headings */
/* ==========================================================================
   Components: Buttons
   ========================================================================== */
.common-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 22px;
    padding: 15px 40px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    /* Pill shape for modern look */
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.common-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.common-btn-primary {
    background-color: var(--brand-accent);
    color: var(--text-primary);
}

.common-btn-primary:hover {
    background-color: #e5a400;
    /* slightly darker yellow/accent */
    color: var(--text-primary);
}

.common-btn-secondary {
    background-color: transparent;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.common-btn-secondary:hover {
    background-color: var(--brand-primary);
    color: var(--bg-primary);
}

/* ==========================================================================
   Components: Cards & Boxes
   ========================================================================== */
.common-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* For flex/grid layouts */
}

.common-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.common-card-title {
    font-size: 28px;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.common-card-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   How to Get Started Section
   ========================================================================== */
.howtogetstart {
    background-color: var(--bg-primary);
    padding-top: 225px;
}

.video-placeholder-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.video-img {
    max-width: 85%;
    height: auto;
    margin: 0 auto;
}

.stickers-logo-img {
    max-width: 65%;
    margin: 0 auto;
}

.get-started-caption {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 24px;
    color: #4a4a4a;
    line-height: 1.3;
    margin-top: 20px;
}

.brand-title-img {
    max-width: 50%;
    margin: 0 auto;
}

.set-img {
    max-width: 70%;
    margin: 0 auto;
}

.left-col-started,
.right-col-started {
    padding-left: 60px;
    padding-right: 60px;
}

/* ==========================================================================
   Learn Together Section
   ========================================================================== */
.learn-together-section {
    background-color: #72bf56;
    color: #ffffff;
}

.learn-together-left {
    text-align: left;
}

.learn-together-title {
    font-family: 'Anton', sans-serif !important;
    font-weight: 400;
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 0;
    color: #ffffff;
    letter-spacing: 1px;
}

.learn-together-img {
    max-width: 75%;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.learn-together-desc {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.4;
    text-align: center;
    margin-top: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Make Stickers Alive Section
   ========================================================================== */
.make-alive-section {
    background-color: #ffffff;
}

.make-alive-subtitle {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 32px;
    color: #4a4a4a;
    line-height: 1.4;
    margin-bottom: 50px;
}

.app-download-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.app-download-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.app-icon {
    max-width: 190px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-btn {
    max-width: 220px;
    height: auto;
    transition: transform 0.2s ease;
}

.store-btn:hover {
    transform: scale(1.05);
}

.devices-img {
    width: 325px;
    display: block;
    height: auto;
}

/* ==========================================================================
   Discussion Section
   ========================================================================== */
.discussion-section {
    background-color: var(--brand-primary);
    color: #ffffff;
}

.discussion-section.bg-orange {
    background-color: #e34f26;
    /* Adjusted to match the orange background in the image */
}

.discussion-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 32px;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 40px;
}

.discussion-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.row.discussion-cards-row::before,
.row.discussion-cards-row::after {
    display: none;
}

.discussion-cards-row>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.discussion-card {
    flex: 1;
    background: #ffffff;
    border-radius: 30px;
    padding: 40px 30px;
    color: #4a4a4a;
}

.discussion-card-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 28px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.discussion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discussion-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.activities-list .discussion-list-item {
    margin-bottom: 35px;
}

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

.discussion-icon {
    width: 60px;
    height: auto;
    margin-right: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.discussion-icon.large-icon {
    width: 80px;
}

.discussion-icon.map-icon {
    width: 80px;
    border-radius: 5px;
}

.discussion-text {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 22px;
    color: #4a4a4a;
    line-height: 1.4;
}

/* ==========================================================================
   Superpower Journey Section
   ========================================================================== */
.superpower-journey-section {
    background-color: #ffffff;
    overflow: hidden;
}

.superpower-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.superpower-kid-pics {
    flex: 0 0 auto;
    z-index: 2;
    position: relative;
    /* Adjust margin for exact positioning/overlap */
    margin-right: -20px;
}

.superpower-gerdy {
    flex: 0 0 auto;
    z-index: 1;
}

.superpower-kid-pics img {
    max-width: 500px;
    height: auto;
    display: block;
}

.superpower-gerdy img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Demo Section
   ========================================================================== */
.demo-section {
    padding: 60px 0;
}

.demo-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 34px;
    color: var(--brand-primary);
    margin-bottom: 50px;
    line-height: 1.4;
}

.demo-steps-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.demo-step {
    margin-bottom: 50px;
}

.demo-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.demo-step-num {
    width: 100px;
    height: auto;
    margin-right: 20px;
    flex-shrink: 0;
}

.demo-step-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 26px;
    color: #4a4a4a;
    margin: 0;
}

.demo-step-content {
    padding-left: 80px;
}

.demo-step-1-content {
    display: flex;
    align-items: center;
}

.demo-app-icon {
    width: 140px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
}

.demo-store-buttons {
    display: flex;
    gap: 15px;
}

.demo-store-btn {
    width: 160px;
    height: auto;
    transition: transform 0.2s ease;
}

.demo-store-btn:hover {
    transform: scale(1.05);
}

.demo-instruction-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.demo-instruction-num {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 22px;
    color: #4a4a4a;
    margin-right: 15px;
    flex-shrink: 0;
}

.demo-instruction-text-flex {
    display: flex;
    align-items: center;
    width: 100%;
}

.demo-instruction-text {
    font-family: var(--font-primary);
    font-size: 22px;
    color: #4a4a4a;
    line-height: 1.5;
}

.demo-instruction-text strong {
    font-weight: 800;
}

.demo-abc-icon {
    width: 130px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.demo-camera-icon {
    width: 80px;
    margin-left: 20px;
}

.demo-eraser-icon {
    width: 100px;
    margin-left: 20px;
}

.demo-instruction-item-spaced {
    margin-top: 30px;
}

.demo-scan-star-wrapper {
    margin-top: 40px;
    margin-bottom: 20px;
}

.demo-scan-star {
    max-width: 350px;
    width: 100%;
    display: inline-block;
}

.demo-buttons-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    gap: 30px;
}

.demo-buttons-arrow {
    width: 60px;
    flex-shrink: 0;
}

.demo-buttons-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-buttons-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-btn-set {
    max-width: 450px;
    height: auto;
    margin-left: 55px;
}

.demo-btn-set2 {
    max-width: 715px;
    height: auto;
}

.demo-mode-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: #4a4a4a;
    white-space: nowrap;
}

/* ==========================================================================
   Specifications Section
   ========================================================================== */
.specifications-section {}

.spec-content-row {
    margin: 30px auto;
    text-align: left;
}

.spec-subtitle {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 24px;
    color: #4a4a4a;
    margin-bottom: 15px;
    margin-top: 30px;
}

.spec-col-left .spec-subtitle:first-child,
.spec-col-right .spec-subtitle:first-child {
    margin-top: 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.spec-text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 22px;
    color: #555555;
    margin-bottom: 12px;
    line-height: 1.5;
}

.spec-note {
    margin-top: 50px;
    font-weight: 800;
    color: #4a4a4a;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1199px) {
    .superpower-kid-pics img {
        max-width: 450px;
    }

    .superpower-gerdy img {
        max-width: 550px;
    }
}



@media (max-width: 991px) {
    .common-section {
        padding: 60px 0;
    }

    .howtogetstart {
        padding-top: 150px;
    }

    .common-heading-primary {
        font-size: 34px;
    }

    .common-heading-secondary {
        font-size: 28px;
    }

    .common-subheading {
        font-size: 20px;
    }

    .howtogetstart {
        padding-top: 120px;
    }

    .video-img,
    .stickers-logo-img,
    .set-img {
        max-width: 100%;
    }

    .get-started-caption {
        font-size: 20px;
    }

    .left-col-started,
    .right-col-started {
        padding-left: 20px;
        padding-right: 20px;
    }

    .learn-together-title {
        font-size: 38px;
    }

    .learn-together-img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .devices-img {
        max-width: 70%;
        margin: 40px auto 0;
        display: block;
    }

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

    .discussion-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .discussion-card-title {
        font-size: 24px;
    }

    .discussion-text {
        font-size: 18px;
    }

    .discussion-icon {
        width: 50px;
    }

    .discussion-icon.large-icon {
        width: 65px;
    }

    .discussion-icon.map-icon {
        width: 110px;
    }

    .superpower-layout {
        flex-direction: column;
    }

    .superpower-kid-pics {
        margin-right: 0;
        margin-bottom: -60px;
        /* Overlap vertically */
    }

    .superpower-gerdy {
        margin-top: 0;
    }

    .spec-subtitle {
        font-size: 22px;
    }

    .spec-text {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .app-download-wrapper {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .demo-step-num {
        width: 60px;
    }

    .demo-btn-set {
        max-width: 320px;
        margin-left: 0;
    }

    .demo-btn-set2 {
        max-width: 460px;
    }

    .demo-mode-text {
        font-size: 18px;
    }

    .demo-abc-icon {
        width: 100px;
    }

    .demo-camera-icon {
        width: 60px;
    }

    .demo-eraser-icon {
        width: 80px;
    }

    .demo-step-content {
        padding-left: 40px;
    }

    .left-col-started,
    .right-col-started {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .common-section {
        padding: 25px 0;
    }

    body.inner-page-new {
        font-size: 16px;
    }

    .common-heading-primary {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .common-heading-secondary {
        font-size: 22px;
        line-height: 1.2;
    }

    .common-subheading {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .common-btn {
        font-size: 18px;
        padding: 12px 30px;
    }

    .common-card {
        padding: 20px;
    }

    .common-card-title {
        font-size: 24px;
    }

    .common-card-text {
        font-size: 16px;
    }

    .howtogetstart {
        padding-top: 120px;
    }

    .get-started-caption {
        font-size: 16px;
        text-align: center;
    }

    .video-placeholder-wrapper {
        text-align: center;
        display: block;
    }

    .left-col-started,
    .right-col-started {
        padding-left: 15px;
        padding-right: 15px;
    }

    .left-col-started {
        margin-bottom: 40px;
    }

    .learn-together-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .learn-together-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

    .learn-together-desc {
        font-size: 18px;
        margin-top: 20px;
    }

    .make-alive-subtitle {
        font-size: 20px;
    }

    .app-download-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .card-col-left {
        margin-bottom: 30px;
    }

    .discussion-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .discussion-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .discussion-card-title {
        font-size: 20px;
    }

    .discussion-text {
        font-size: 16px;
    }

    .discussion-icon {
        width: 35px;
        margin-right: 15px;
    }

    .discussion-icon.large-icon {
        width: 45px;
    }

    .discussion-icon.map-icon {
        width: 80px;
    }

    .superpower-kid-pics {
        margin-bottom: -40px;
    }

    .superpower-kid-pics img {
        max-width: 90%;
        margin: 0 auto;
    }

    .superpower-gerdy img {
        max-width: 95%;
        margin: 0 auto;
    }

    .demo-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .demo-steps-wrapper {
        padding-left: 0;
    }

    .demo-step-num {
        width: 45px;
        margin-right: 15px;
    }

    .demo-step-title {
        font-size: 18px;
    }

    .demo-step-content {
        padding-left: 0;
        margin-top: 20px;
    }



    .demo-app-icon {
        width: 100px;
        margin-bottom: 20px;
    }

    .demo-store-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }


    .demo-abc-icon,
    .demo-camera-icon,
    .demo-eraser-icon {
        margin-left: 0;
        margin-top: 20px;
    }

    .demo-instruction-num,
    .demo-instruction-text {
        font-size: 18px;
    }

    .demo-buttons-diagram {
        gap: 15px;
    }

    .demo-buttons-arrow {
        width: 30px;
    }

    .demo-buttons-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .demo-btn-set,
    .demo-btn-set2 {
        max-width: 100%;
        margin-left: 0;
    }

    .demo-mode-text {
        font-size: 16px;
    }

    .spec-col-right {
        margin-top: 40px;
    }

    .discussion-cards-row {
        display: block;
    }

    .learn-together-left {
        width: 100%;
    }

    .spec-note {
        margin-top: 30px;
    }
}