* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background: #fff;
    overflow-x: hidden;
}

/* ================= HEADER ================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo h2 {
    color: #0E7375;
    font-size: 32px;
    font-weight: 800;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #173A3B;
    font-weight: 700;
    transition: .3s;
}

nav ul li a:hover {
    color: #0E7375;
}

.header-btn {
    padding: 14px 28px;
    background: #FF7A30;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}

/* ================= HERO ================= */
/* Desktop Banner */
.hero {
    min-height: 100vh;
    background: url('img/background-desktop.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 130px 8% 80px;
    position: relative;
    overflow: hidden;
}

/* Mobile Banner */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        background: url('img/background-mobile.png') center center/cover no-repeat;
        padding: 100px 5% 60px;
    }
}
/* Image ke upar color overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14,115,117,0.88) 0%,
        rgba(31,155,157,0.80) 50%,
        rgba(68,200,197,0.70) 100%
    );
    z-index: 1;
}

/* Decorative circle */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 1;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-content span {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 22px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 40px;
    max-width: 750px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FF7A30;
    color: #fff;
    padding: 18px 40px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.btn-secondary {
    background: #fff;
    color: #0E7375;
    padding: 18px 40px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.hero-image {
    width: 45%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.dashboard-card {
    width: 520px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .2);
}

.card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.small-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 48%;
    text-align: center;
}

.small-box h2 {
    color: #0E7375;
    font-size: 35px;
}

.small-box p {
    color: #666;
}

.progress-card {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    margin-top: 20px;
}

.progress-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #173A3B;
}

.progress-bar {
    height: 14px;
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    width: 78%;
    height: 100%;
    background: #FF7A30;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stats div {
    text-align: center;
}

.stats h3 {
    color: #0E7375;
    font-size: 28px;
}

.stats p {
    color: #666;
}

/* Floating Cards */

.float-card {
    position: absolute;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    animation: float 4s infinite ease-in-out;
}

.card1 {
    top: 40px;
    left: -50px;
}

.card2 {
    bottom: 80px;
    right: -40px;
}

.card3 {
    top: 220px;
    right: -80px;
}

@keyframes float {
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */

@media(max-width:991px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 45px;
        line-height: 55px;
    }


    .dashboard-card {
        width: 100%;
    }

}

/* ================= TRUST BAR ================= */

.trust-bar {
    padding: 35px 8%;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .03);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    color: #173A3B;
}

.trust-item i {
    color: #0E7375;
    font-size: 22px;
}

/* ================= PILLARS ================= */

.pillars-section {
    padding: 100px 8%;
    background: #f7f9fa;
}

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.mini-title {
    display: inline-block;
    padding: 10px 20px;
    background: #dff8f7;
    color: #0E7375;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 55px;
    color: #173A3B;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 20px;
    line-height: 34px;
    color: #666;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: #e8fbfb;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.pillar-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #173A3B;
}

.pillar-card p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.life-card {
    grid-column: span 2;
    background: linear-gradient(135deg,
            #0E7375,
            #44C8C5);
}

.life-card h3,
.life-card p {
    color: #fff;
}

.life-card .pillar-icon {
    background: #ffffff;
}

@media(max-width:1200px) {

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .life-card {
        grid-column: span 2;
    }

}

@media(max-width:768px) {

    .trust-container {
        justify-content: center;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .life-card {
        grid-column: auto;
    }

}

/* ================= AGE ZONES ================= */

.age-zones {
    padding: 120px 8%;
    background: #fff;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 280px;
    width: 4px;
    height: 75%;
    background: linear-gradient(to bottom,
            #0E7375,
            #44C8C5);
    transform: translateX(-50%);
    border-radius: 20px;
    opacity: .15;
}

.zone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
}

.zone-row.reverse {
    flex-direction: row-reverse;
}

.zone-content {
    flex: 1;
}

.zone-content h3 {
    font-size: 42px;
    font-weight: 900;
    color: #173A3B;
    margin-bottom: 20px;
}

.zone-content p {
    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin-bottom: 20px;
}

.zone-content ul {
    padding-left: 20px;
}

.zone-content ul li {
    margin-bottom: 12px;
    font-weight: 700;
    color: #173A3B;
}

.zone-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 20px;
}

.green {
    background: #dff8ea;
    color: #20a35d;
}

.orange {
    background: #fff0df;
    color: #ff7a30;
}

.blue {
    background: #eaf4ff;
    color: #2476ff;
}

.purple {
    background: #efe7ff;
    color: #7646ff;
}

/* Cards */

.zone-card {
    flex: 1;
    padding: 50px;
    border-radius: 35px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.playground-card {
    background: linear-gradient(135deg,
            #20b486,
            #66e2ba);
}

.adventure-card {
    background: linear-gradient(135deg,
            #ff7a30,
            #ffb366);
}

.explorer-card {
    background: linear-gradient(135deg,
            #2476ff,
            #63a4ff);
}

.future-card {
    background: linear-gradient(135deg,
            #7646ff,
            #b088ff);
}

.emoji-large {
    font-size: 90px;
    margin-bottom: 20px;
}

.zone-card h4 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.zone-card p {
    font-size: 18px;
    line-height: 30px;
}

/* Responsive */

@media(max-width:991px) {

    .timeline-line {
        display: none;
    }

    .zone-row,
    .zone-row.reverse {
        flex-direction: column;
    }

    .zone-content h3 {
        font-size: 32px;
    }

    .zone-card {
        width: 100%;
    }

}

/* ================= SPROUTA ================= */



/* ================= SPROUTA ================= */

.sprouta-section{
    padding:100px 5%;
    background:linear-gradient(
        135deg,
        #0E7375,
        #44C8C5
    );
    text-align:center;
    overflow:hidden;
}

.sprouta-section .section-heading{
    max-width:900px;
    margin:auto auto 60px;
}

.sprouta-section .section-heading h2{
    color:#fff;
    font-size:52px;
    font-weight:900;
    margin:20px 0;
}

.sprouta-section .section-heading p{
    color:rgba(255,255,255,.9);
    font-size:20px;
    line-height:34px;
}

.sprouta-growth{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.growth-stage{

    width:190px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border-radius:28px;

    padding:25px 20px;

    border:1px solid rgba(255,255,255,.15);

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
}

.growth-stage:hover{
    transform:translateY(-10px);
}

.growth-icon{

    width:120px;
    height:120px;

    margin:auto;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.2);

    margin-bottom:18px;
}

.growth-icon img{
    width:85px;
    height:85px;
    object-fit:contain;
    transition:.3s;
}

.growth-stage:hover img{
    transform:scale(1.08);
}

.growth-stage h4{
    color:#fff;
    font-size:22px;
    font-weight:800;
}

.growth-arrow{
    font-size:34px;
    color:#fff;
    opacity:.8;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .growth-stage{
        width:160px;
    }

    .growth-icon{
        width:100px;
        height:100px;
    }

    .growth-icon img{
        width:70px;
        height:70px;
    }

}

@media(max-width:768px){

    .sprouta-section{
        padding:70px 15px;
    }

    .sprouta-section .section-heading h2{
        font-size:34px;
        line-height:45px;
    }

    .sprouta-section .section-heading p{
        font-size:16px;
        line-height:28px;
    }

    .sprouta-growth{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .growth-arrow{
        display:none;
    }

    .growth-stage{
        width:100%;
        padding:18px 10px;
    }

    .growth-icon{
        width:80px;
        height:80px;
    }

    .growth-icon img{
        width:55px;
        height:55px;
    }

    .growth-stage h4{
        font-size:15px;
    }

}

@media(max-width:480px){

    .sprouta-growth{
        grid-template-columns:1fr;
    }

}




.sprouta-section {
    padding: 120px 8%;
    background: linear-gradient(
        135deg,
        #0E7375,
        #44C8C5
    );
    text-align: center;
}

.sprouta-section .section-heading h2{
    color:#fff;
}

.sprouta-section .section-heading p{
    color:rgba(255,255,255,.9);
}

.sprouta-growth{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap;
    gap:10px;
    margin-top:60px;
}

.growth-stage{
    text-align:center;
}

.growth-icon{
    width:95px;
    height:95px;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;
    margin-bottom:12px;

    border:1px solid rgba(255,255,255,.25);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.4s;
}

.growth-icon img{
    width:65px;
    height:65px;
    object-fit:contain;
}

.growth-stage h4{
    color:#fff;
    font-size:15px;
    font-weight:800;
    white-space:nowrap;
}

.growth-arrow{
    font-size:28px;
    color:#fff;
    opacity:.8;
    margin-top:-20px;
}

/* Mobile */

@media(max-width:768px){

    .sprouta-growth{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .growth-arrow{
        display:none;
    }

    .growth-icon{
        width:75px;
        height:75px;
    }

    .growth-icon img{
        width:50px;
        height:50px;
    }

    .growth-stage h4{
        font-size:13px;
    }

}

/* ================= GAMIFICATION ================= */

.gamification {
    padding: 120px 8%;
    background: #f7fafb;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.game-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transition: .4s;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #173A3B;
}

.game-card p {
    font-size: 17px;
    line-height: 30px;
    color: #666;
    margin-bottom: 25px;
}

.xp-bar {
    height: 15px;
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 15px;
}

.xp-fill {
    height: 100%;
    width: 78%;
    background: #FF7A30;
}

.streak-count {
    font-size: 40px;
    font-weight: 900;
    color: #FF7A30;
}

.badge-row {
    display: flex;
    gap: 15px;
    font-size: 35px;
}

.goal-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #0E7375;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
}

.full-card {
    grid-column: span 2;
    background: linear-gradient(135deg,
            #173A3B,
            #0E7375);
    color: #fff;
}

.full-card h3,
.full-card p {
    color: #fff;
}

.leaderboard {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.rank-item {
    padding: 15px 25px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50px;
    font-weight: 700;
}

/* Responsive */

@media(max-width:991px) {

    .game-grid {
        grid-template-columns: 1fr;
    }

    .full-card {
        grid-column: auto;
    }

    .growth-arrow {
        display: none;
    }

}

/* ================= CORE EXPERIENCE ================= */

.core-experience {
    padding: 120px 8%;
    background: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.experience-card {
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .4s;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.large-card {
    grid-column: span 3;
    background: linear-gradient(135deg,
            #0E7375,
            #44C8C5);
    color: #fff;
}

.large-card h3,
.large-card p {
    color: #fff;
}

.experience-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: #173A3B;
    margin-bottom: 15px;
}

.experience-card p {
    color: #070707;
    line-height: 28px;
}

.map-preview {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    font-size: 32px;
}

.mood-row {
    display: flex;
    gap: 12px;
    font-size: 35px;
    margin-top: 20px;
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.interest-tags span {
    padding: 10px 18px;
    background: #f2f7f8;
    border-radius: 50px;
    font-weight: 700;
}

.video-box {
    margin-top: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 20px;
    font-weight: 800;
    text-align: center;
}

.repeat-status {
    margin-top: 20px;
    color: #0E7375;
    font-weight: 800;
}

.match-demo {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 30px;
    align-items: center;
}

/* ================= AI FEATURES ================= */

.ai-features {
    padding: 120px 8%;
    background: #f7fafb;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.ai-box {
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transition: .4s;
}

.ai-box:hover {
    transform: translateY(-10px);
}

.ai-number {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #0E7375;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.ai-box h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #173A3B;
}

.ai-box p {
    color: #666;
    line-height: 28px;
}

/* Responsive */

@media(max-width:991px) {

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        grid-column: auto;
    }

    .ai-grid {
        grid-template-columns: 1fr;
    }

}

.parents-section,
.school-section,
.security-section,
.pricing-section,
.testimonial-section {
    padding: 120px 8%;
}

.parents-grid,
.school-grid,
.security-grid,
.pricing-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.parent-card,
.school-card,
.security-card,
.testimonial-card,
.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .4s;
}

.parent-card:hover,
.school-card:hover,
.security-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
}

.parent-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.reports-section {
    padding: 120px 8%;
    background: #f7fafb;
}

.report-box {
    display: flex;
    gap: 80px;
    align-items: center;
}

.report-left,
.report-right {
    flex: 1;
}

.report-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.report-progress {
    height: 15px;
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 20px;
}

.report-fill {
    height: 100%;
    width: 85%;
    background: #44C8C5;
}

.featured {
    background: linear-gradient(135deg,
            #0E7375,
            #44C8C5);
    color: #fff;
}

.featured button {
    background: #fff;
    color: #0E7375;
}

.pricing-card button {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 700;
}

.cta-section {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(135deg,
            #0E7375,
            #44C8C5);
    color: #fff;
}

.cta-section h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background: #FF7A30;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
}

footer {
    background: #173A3B;
    color: #fff;
    padding: 80px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-grid ul {
    list-style: none;
    margin-top: 20px;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.copyright {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
}

@media(max-width:991px) {

    .parents-grid,
    .school-grid,
    .security-grid,
    .pricing-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .report-box {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 38px;
    }

}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-grid ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* =====================================
   MOBILE OPTIMIZATION
===================================== */

@media screen and (max-width:768px) {

    /* Header */

    header {
        padding: 15px 20px;
    }

    .logo h2 {
        font-size: 24px;
    }

    .header-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Hero */

    .hero {
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px !important;
        line-height: 46px !important;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    /* Dashboard */

    .dashboard-card {
        width: 100%;
        padding: 20px;
    }

    .card-top {
        flex-direction: column;
        gap: 15px;
    }

    .small-box {
        width: 100%;
    }

    /* Floating Cards Hide */

    .float-card {
        display: none;
    }

    /* Common Section */

    section {
        overflow: hidden;
    }

    .section-heading h2 {
        font-size: 32px !important;
        line-height: 42px;
    }

    .section-heading p {
        font-size: 16px;
        line-height: 28px;
    }

    /* Trust Bar */

    .trust-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .trust-item {
        font-size: 14px;
    }

    /* Pillars */

    .pillars-grid {
        grid-template-columns: 1fr !important;
    }

    .pillar-card {
        padding: 25px;
    }

    /* Age Zones */

    .zone-row,
    .zone-row.reverse {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }

    .zone-content {
        text-align: center;
    }

    .zone-content ul {
        padding-left: 0;
        list-style: none;
    }

    .zone-content h3 {
        font-size: 28px;
    }

    .zone-card {
        padding: 30px;
    }

    .emoji-large {
        font-size: 60px;
    }

    /* Sprouta */

    .sprouta-growth {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .growth-icon {
        width: 90px;
        height: 90px;
        font-size: 35px;
    }

    .growth-arrow {
        display: none;
    }

    /* Gamification */

    .game-grid {
        grid-template-columns: 1fr !important;
    }

    .game-card {
        padding: 25px;
    }

    .full-card {
        grid-column: auto;
    }

    .goal-circle {
        width: 90px;
        height: 90px;
        font-size: 22px;
    }

    /* Experience */

    .experience-grid {
        grid-template-columns: 1fr !important;
    }

    .large-card {
        grid-column: auto;
    }

    .map-preview {
        flex-wrap: wrap;
        font-size: 22px;
    }

    .mood-row {
        justify-content: center;
    }

    .match-demo {
        justify-content: center;
    }

    /* AI */

    .ai-grid {
        grid-template-columns: 1fr !important;
    }

    /* Parents */

    .parents-grid {
        grid-template-columns: 1fr !important;
    }

    /* Reports */

    .report-box {
        flex-direction: column;
        gap: 40px;
    }

    /* School */

    .school-grid {
        grid-template-columns: 1fr !important;
    }

    /* Security */

    .security-grid {
        grid-template-columns: 1fr !important;
    }

    /* Pricing */

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials */

    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }

    /* CTA */

    .cta-section {
        padding: 70px 20px;
    }

    .cta-section h2 {
        font-size: 30px !important;
        line-height: 40px;
    }

    .cta-section p {
        font-size: 16px;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    footer {
        padding: 60px 20px 20px;
    }

}

/* ================= MOBILE MENU ================= */

/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0E7375;
    z-index: 1001;
}

.close-menu {
    display: none;
}

#menuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

#menuOverlay.active {
    opacity: 1;
    visibility: visible;
}

@media(max-width:991px) {

    .desktop-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    #mobileMenu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        pointer-events: auto;
        background: #fff;
        z-index: 10000;
        transition: .4s ease;
        padding-top: 80px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .15);
    }

    #mobileMenu.active {
        right: 0;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        cursor: pointer;
        color: #0E7375;
        z-index: 10001;
        padding: 10px;
        background: #fff;
    }

    #mobileMenu ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 30px;
        list-style: none;
    }

    #mobileMenu ul li a {
        font-size: 18px;
        font-weight: 700;
        color: #173A3B;
        text-decoration: none;
    }

}

.mobile-cta {
    display: none;
}

@media(max-width:768px) {

    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 500;
    }

    .mobile-cta a {
        flex: 1;
        text-align: center;
        padding: 16px;
        background: #0E7375;
        color: #fff;
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-cta a:last-child {
        background: #FF7A30;
    }

}

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    z-index: 500;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}

@media(max-width:768px) {

    .whatsapp-btn {
        right: 15px;
        bottom: 75px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

}

html {
    scroll-behavior: smooth;
}

.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 34px !important;
        line-height: 42px !important;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .dashboard-card {
        margin-top: 20px;
    }

}


/* ===================================
PRIVACY HERO
=================================== */

.privacy-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg,
            #0E7375,
            #44C8C5);
    text-align: center;
    color: #fff;
}

.privacy-hero h1 {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 20px;
}

.privacy-hero p {
    font-size: 22px;
}

.policy-badge {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    font-size: 15px;
}

/* ===================================
BODY
=================================== */

.privacy-page {
    padding: 80px 20px;
    background: #F5F8F9;
}

.privacy-container {
    max-width: 1000px;
    margin: auto;
}

.privacy-card {
    background: #fff;
    padding: 45px;
    margin-bottom: 30px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.privacy-card h2 {
    color: #0E7375;
    font-size: 34px;
    margin-bottom: 25px;
}

.privacy-card p,
.privacy-card li {
    font-size: 18px;
    line-height: 34px;
    color: #444;
}

.privacy-card ul {
    padding-left: 25px;
}

.intro-text {
    font-size: 20px;
    line-height: 38px;
}

/* ===================================
HIGHLIGHT
=================================== */

.highlight-box {
    background: #FFF7E8;
    border: 1px solid #FFD48A;
    padding: 25px;
    border-radius: 18px;
    margin-top: 25px;
}

.highlight-box strong {
    display: block;
    margin-bottom: 15px;
    font-size: 22px;
}

/* ===================================
FEATURE BOX
=================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.feature-box {
    background: #F8FAFB;
    padding: 25px;
    border-radius: 18px;
}

.feature-box h4 {
    color: #0E7375;
    margin-bottom: 10px;
}

/* ===================================
TABLE
=================================== */

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.privacy-table th {
    background: #0E7375;
    color: #fff;
    padding: 15px;
}

.privacy-table td {
    padding: 15px;
    border: 1px solid #ddd;
}

/* ===================================
MOBILE
=================================== */

@media(max-width:768px) {

    .privacy-hero h1 {
        font-size: 42px;
    }

    .policy-meta {
        flex-direction: column;
        gap: 10px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .privacy-card {
        padding: 25px;
    }

    .privacy-card h2 {
        font-size: 26px;
    }

    .privacy-card p,
    .privacy-card li {
        font-size: 16px;
        line-height: 30px;
    }

}

/* =========================
RIGHTS SECTION
========================= */

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.rights-card {
    background: #F8FAFB;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    transition: .3s;
}

.rights-card h4 {
    font-size: 18px;
    margin-top: 10px;
    color: #0E7375;
}

.rights-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* =========================
CONTACT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.contact-box {
    background: #F8FAFB;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
}

.contact-box h4 {
    color: #0E7375;
    margin-bottom: 10px;
}

/* =========================
CTA
========================= */

.privacy-cta {
    background: linear-gradient(135deg,
            #0E7375,
            #44C8C5);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}

.privacy-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.privacy-cta p {
    font-size: 18px;
    line-height: 32px;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

.privacy-btn {
    display: inline-block;
    padding: 16px 35px;
    background: #FF7A30;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px) {

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .privacy-cta {
        padding: 35px 25px;
    }

    .privacy-cta h2 {
        font-size: 30px;
    }

}


/* =========================
FOR KIDS PAGE
========================= */

.page-hero{
    min-height:80vh !important;

    background:url('img/background-desktop.png')
    center center/cover no-repeat !important;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:150px 8% 100px !important;

    position:relative;
    overflow:hidden;
}

.page-hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(14,115,117,.85),
        rgba(31,155,157,.75),
        rgba(68,200,197,.65)
    );

    z-index:1;
}

.page-hero > *{
    position:relative;
    z-index:2;
}

@media(max-width:768px){

    .page-hero{
        background:url('img/background-mobile.png')
        center center/cover no-repeat !important;

        min-height:65vh;
        padding:120px 20px 70px !important;
    }

}

.hero-btns{
    margin-top:35px;
}

.hero-btns a{
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    margin:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-primary{
    background:#fff;
    color:#6c63ff;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.kids-age-groups,
.kids-pillars,
.kids-game,
.adventure-map,
.kids-ai,
.kids-cta{
    padding:90px 8%;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-heading p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.mini-title{
    display:inline-block;
    padding:10px 20px;
    background:#eef4ff;
    color:#6c63ff;
    border-radius:50px;
    margin-bottom:15px;
    font-weight:700;
}

/* AGE CARDS */

.age-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.age-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.age-card:hover{
    transform:translateY(-10px);
}

.age-icon{
    font-size:60px;
    margin-bottom:15px;
}

/* PILLARS */

.pillar-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.pillar-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.pillar-card span{
    font-size:50px;
    display:block;
    margin-bottom:15px;
}

/* GAMIFICATION */

.game-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.game-card{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* MAP */

.adventure-map{
    text-align:center;
    background:#f7f9fc;
}

.map-path{
    font-size:60px;
    margin-top:30px;
}

/* AI */

.ai-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.ai-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* SPROUTA */
/* ================= JOURNEY SECTION ================= */

.journey-section{
    padding:100px 5%;
    background:#fff;
    text-align:center;
}

.journey-heading{
    margin-bottom:50px;
}

.journey-badge{
    display:inline-block;
    padding:10px 20px;
    background:#EAF8F8;
    color:#0E7375;
    border-radius:50px;
    font-weight:700;
    margin-bottom:15px;
}

.journey-heading h2{
    font-size:48px;
    color:#173A3B;
    font-weight:800;
    max-width:700px;
    margin:auto;
    line-height:1.3;
}

.journey-cards{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.journey-card{
    background:linear-gradient(
        135deg,
        #608068,
        #76987e
    );

    border-radius:25px;
    padding:25px 15px;

    transition:.3s;

    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.journey-card:hover{
    transform:translateY(-8px);
}

.journey-img{
    width:120px;
    height:120px;

    margin:auto auto 15px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.20);
}

.journey-img img{
    width:80px;
    height:80px;
    object-fit:contain;
}

.journey-card h4{
    color:#fff;
    font-size:20px;
    font-weight:800;
}

/* Tablet */

@media(max-width:992px){

    .journey-cards{
        grid-template-columns:repeat(3,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .journey-section{
        padding:70px 15px;
    }

    .journey-heading h2{
        font-size:30px;
        line-height:40px;
    }

    .journey-cards{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .journey-card{
        padding:18px 10px;
    }

    .journey-img{
        width:80px;
        height:80px;
    }

    .journey-img img{
        width:55px;
        height:55px;
    }

    .journey-card h4{
        font-size:15px;
    }

}

/* Small Mobile */

@media(max-width:480px){

    .journey-cards{
        grid-template-columns:1fr;
    }

}

/* CTA */

.kids-cta{
    background:
linear-gradient(
135deg,
#0E7375 0%,
#1F9B9D 50%,
#44C8C5 100%
);
    text-align:center;
    color:#fff;
}

.kids-cta h2{
    font-size:50px;
    margin-bottom:20px;
}

.kids-cta p{
    font-size:18px;
    margin-bottom:30px;
}

.kids-cta .btn-primary{
    background:#fff;
    color:#6c63ff;
    display:inline-block;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
}

/* MOBILE */

@media(max-width:992px){

    .age-grid,
    .pillar-grid,
    .game-grid,
    .ai-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .page-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .age-grid,
    .pillar-grid,
    .game-grid,
    .ai-grid{
        grid-template-columns:1fr;
    }

    .page-hero{
        padding:90px 20px;
    }

    .page-hero h1{
        font-size:34px;
    }

    .map-path{
        font-size:35px;
    }

    .kids-cta h2{
        font-size:32px;
    }

}


/* =========================
FOR PARENTS PAGE
========================= */

.parent-hero{
    padding:120px 8%;
    text-align:center;
    background:linear-gradient(135deg,#0E7375 0%,#1F9B9D 50%,#44C8C5 100%);

    color:#fff;
}

.parent-badge{
    display:inline-block;
    background:rgba(255,255,255,.2);
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:20px;
}

.parent-hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.parent-hero p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.parent-btns{
    margin-top:35px;
}

.parent-btn,
.parent-btn-outline{
    display:inline-block;
    padding:14px 30px;
    margin:8px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.parent-btn{
    background:#fff;
    color:#4f46e5;
}

.parent-btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.parent-features,
.reports-area,
.screen-control,
.parent-benefits{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:10px;
}

.parent-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.parent-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.parent-card .icon{
    font-size:50px;
    margin-bottom:15px;
}

.report-wrapper{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:50px;
    align-items:center;
}

.report-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.progress-bar{
    height:12px;
    background:#ddd;
    border-radius:50px;
    overflow:hidden;
    margin:20px 0;
}

.progress-fill{
    width:92%;
    height:100%;
    background:#4f46e5;
}

.control-grid,
.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.control-card,
.benefit-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.parent-cta{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(135deg,#0E7375 0%,#1F9B9D 50%,#44C8C5 100%);
    color:#fff;
}

.parent-cta h2{
    font-size:45px;
    margin-bottom:20px;
}

.parent-cta a{
    display:inline-block;
    margin-top:25px;
    background:#fff;
    color:#4f46e5;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

@media(max-width:992px){

    .parent-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .control-grid,
    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .report-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .parent-grid,
    .control-grid,
    .benefit-grid{
        grid-template-columns:1fr;
    }

    .parent-hero h1{
        font-size:35px;
    }

    .section-title h2{
        font-size:30px;
    }

    .parent-cta h2{
        font-size:30px;
    }
}


/* =========================
FOR SCHOOLS PAGE
========================= */

.school-hero{
    padding:120px 8%;
    text-align:center;
    background:linear-gradient(135deg,#0f766e,#06b6d4);
    color:#fff;
}

.school-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,255,255,.2);
    border-radius:30px;
    margin-bottom:20px;
}

.school-hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.school-hero p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
}

.school-btns{
    margin-top:35px;
}

.school-btn,
.school-btn-outline{
    display:inline-block;
    padding:14px 30px;
    margin:8px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.school-btn{
    background:#fff;
    color:#0f766e;
}

.school-btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.school-features,
.teacher-section,
.analytics-section,
.parent-connect{
    padding:90px 8%;
}

.school-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.school-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.school-icon{
    font-size:50px;
    margin-bottom:15px;
}

.teacher-wrapper{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:50px;
    align-items:center;
}

.teacher-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.teacher-stat{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
}

.analytics-grid,
.connect-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.analytics-card,
.connect-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.school-cta{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(135deg,#0f766e,#06b6d4);
    color:#fff;
}

.school-cta h2{
    font-size:45px;
    margin-bottom:20px;
}

.school-cta a{
    display:inline-block;
    margin-top:25px;
    background:#fff;
    color:#0f766e;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

@media(max-width:992px){

    .school-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .analytics-grid,
    .connect-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .teacher-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .school-grid,
    .analytics-grid,
    .connect-grid{
        grid-template-columns:1fr;
    }

    .school-hero h1{
        font-size:35px;
    }

}



/* =========================
PRICING PAGE
========================= */

.pricing-hero{
    padding:120px 8%;
    text-align:center;
    background:
linear-gradient(
135deg,
#0E7375 0%,
#1F9B9D 50%,
#44C8C5 100%
);
    color:#fff;
}

.pricing-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,255,255,.2);
    border-radius:30px;
}

.pricing-hero h1{
    font-size:60px;
    margin:20px 0;
}

.pricing-hero p{
    max-width:800px;
    margin:auto;
}

.pricing-plans{
    padding:100px 8%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.pricing-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    text-align:center;
}

.featured-plan{
    transform:scale(1.05);
    border:3px solid #7c3aed;
}

.popular-tag{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:
linear-gradient(
135deg,
#0E7375 0%,
#1F9B9D 50%,
#44C8C5 100%
);
    color:#fff;
    padding:8px 20px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
}

.plan-icon{
    font-size:55px;
    margin-bottom:20px;
}

.price{
    font-size:48px;
    font-weight:800;
    margin:25px 0;
}

.price span{
    font-size:16px;
    color:#777;
}

.pricing-card ul{
    list-style:none;
    padding:0;
}

.pricing-card ul li{
    padding:10px 0;
}

.pricing-card a{
    display:inline-block;
    margin-top:25px;
    padding:14px 30px;
    background:
linear-gradient(
135deg,
#0E7375 0%,
#1F9B9D 50%,
#44C8C5 100%
);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

.comparison-section,
.pricing-faq{
    padding:80px 8%;
}

.comparison-table{
    overflow:auto;
}

.comparison-table table{
    width:100%;
    border-collapse:collapse;
}

.comparison-table th,
.comparison-table td{
    padding:18px;
    border:1px solid #eee;
    text-align:center;
}

.comparison-table th{
    background:
linear-gradient(
135deg,
#0E7375 0%,
#1F9B9D 50%,
#44C8C5 100%
);
    color:#fff;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.faq-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.pricing-cta{
    padding:100px 8%;
    text-align:center;
    background:
linear-gradient(
135deg,
#0E7375 0%,
#1F9B9D 50%,
#44C8C5 100%
);
    color:#fff;
}

.pricing-cta h2{
    font-size:48px;
}

.pricing-cta a{
    display:inline-block;
    margin-top:25px;
    padding:15px 35px;
    background:#fff;
    color:#7c3aed;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
}

@media(max-width:992px){

    .pricing-plans{
        grid-template-columns:repeat(2,1fr);
    }

    .faq-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .pricing-plans{
        grid-template-columns:1fr;
    }

    .pricing-hero h1{
        font-size:38px;
    }

    .featured-plan{
        transform:none;
    }

}




/* ================= CONTACT PAGE ================= */

.contact-hero{
    padding:160px 8% 100px;
    background:linear-gradient(
        135deg,
        #0E7375 0%,
        #1F9B9D 50%,
        #44C8C5 100%
    );
    text-align:center;
    color:#fff;
}

.contact-hero span{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    margin-bottom:20px;
    font-weight:700;
}

.contact-hero h1{
    font-size:65px;
    margin-bottom:20px;
}

.contact-hero p{
    max-width:800px;
    margin:auto;
    font-size:22px;
    line-height:35px;
}

/* ================= CONTACT MAIN ================= */

.contact-main{
    padding:100px 8%;
    background:#F7FCFC;
}

.contact-container{
    display:grid;
    grid-template-columns:1.6fr .9fr;
    gap:40px;
}

/* FORM */

.contact-form-card{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form-card h2{
    font-size:40px;
    color:#173A3B;
    margin-bottom:10px;
}

.contact-form-card p{
    color:#666;
    margin-bottom:35px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#173A3B;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 18px;
    border:2px solid #E8F0F0;
    border-radius:15px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#1F9B9D;
}

.form-group textarea{
    min-height:180px;
    resize:none;
}

.send-btn{
    border:none;
    background:#FF7A30;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

/* INFO */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.info-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(
        135deg,
        #0E7375,
        #44C8C5
    );
    color:#fff;
    font-size:25px;
    margin-bottom:15px;
}

.info-card h3{
    margin-bottom:10px;
    color:#173A3B;
}

.info-card p{
    color:#666;
    line-height:28px;
}

/* SUPPORT */

.support-section{
    padding:100px 8%;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:42px;
    color:#173A3B;
    margin-bottom:15px;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.support-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.support-icon{
    font-size:55px;
    margin-bottom:20px;
}

/* CTA */

.contact-cta{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(
        135deg,
        #0E7375 0%,
        #1F9B9D 50%,
        #44C8C5 100%
    );
}

.contact-cta h2{
    color:#fff;
    font-size:50px;
    margin-bottom:20px;
}

.contact-cta p{
    color:#fff;
    margin-bottom:30px;
}

.contact-cta a{
    display:inline-block;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    background:#FF7A30;
    color:#fff;
    font-weight:800;
}

/* MOBILE */

@media(max-width:992px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .support-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-card{
        padding:30px;
    }

    .contact-hero h1{
        font-size:38px;
    }

    .contact-hero p{
        font-size:18px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .contact-cta h2{
        font-size:34px;
    }
}



/* ================= ABOUT HERO ================= */

.about-hero{
    padding:160px 8% 100px;
    background:linear-gradient(
    135deg,
    #0E7375 0%,
    #1F9B9D 50%,
    #44C8C5 100%);
    text-align:center;
    color:#fff;
}

.about-hero span{
    display:inline-block;
    padding:12px 22px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    margin-bottom:20px;
    font-weight:700;
}

.about-hero h1{
    font-size:68px;
    margin-bottom:20px;
}

.about-hero p{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:38px;
}

/* ================= STORY ================= */

.about-story{
    padding:100px 8%;
}

.story-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.story-content h2{
    font-size:48px;
    color:#173A3B;
    margin-bottom:20px;
}

.story-content p{
    color:#666;
    line-height:32px;
    margin-bottom:20px;
}

.story-card{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.story-card h3{
    color:#0E7375;
    font-size:50px;
    margin-bottom:10px;
}

/* ================= MISSION ================= */

.mission-section{
    padding:100px 8%;
    background:#F7FCFC;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mission-icon{
    font-size:55px;
    margin-bottom:20px;
}

/* ================= VALUES ================= */

.values-section{
    padding:100px 8%;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.value-card h3{
    margin:15px 0;
    color:#173A3B;
}

/* ================= STATS ================= */

.stats-section{
    padding:100px 8%;
    background:#173A3B;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h2{
    font-size:55px;
    color:#44C8C5;
    margin-bottom:10px;
}

/* ================= CTA ================= */

.about-cta{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(
    135deg,
    #0E7375 0%,
    #1F9B9D 50%,
    #44C8C5 100%);
}

.about-cta h2{
    color:#fff;
    font-size:50px;
    margin-bottom:20px;
}

.about-cta p{
    color:#fff;
    margin-bottom:30px;
}

.about-btn{
    display:inline-block;
    background:#FF7A30;
    color:#fff;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .story-wrapper,
    .mission-grid,
    .values-grid,
    .stats-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .story-wrapper,
    .mission-grid,
    .values-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:42px;
    }

    .about-hero p{
        font-size:18px;
        line-height:30px;
    }

    .story-content h2{
        font-size:34px;
    }

    .about-cta h2{
        font-size:34px;
    }
}




/* ================= FAQ HERO ================= */

.faq-hero{
    padding:160px 8% 100px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #0E7375 0%,
        #1F9B9D 50%,
        #44C8C5 100%
    );
    color:#fff;
}

.faq-hero span{
    display:inline-block;
    padding:12px 22px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    margin-bottom:20px;
    font-weight:700;
}

.faq-hero h1{
    font-size:65px;
    margin-bottom:20px;
}

.faq-hero p{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:38px;
}

/* ================= FAQ SECTION ================= */

.faq-section{
    padding:100px 8%;
    background:#F7FCFC;
}

.faq-container{
    max-width:1000px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-question{
    padding:25px 30px;
    font-size:20px;
    font-weight:700;
    color:#173A3B;
    cursor:pointer;
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#0E7375;
}

.faq-answer{
    padding:0 30px 25px;
    color:#666;
    line-height:30px;
}

/* ================= HELP BOX ================= */

.help-box{
    padding:100px 8%;
}

.help-card{
    background:#fff;
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:60px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.help-card h2{
    color:#173A3B;
    margin-bottom:15px;
}

.help-card p{
    color:#666;
    margin-bottom:25px;
}

.help-btn{
    display:inline-block;
    background:#FF7A30;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:800;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .faq-hero h1{
        font-size:42px;
    }

    .faq-hero p{
        font-size:18px;
        line-height:30px;
    }

    .faq-question{
        font-size:18px;
        padding:20px;
    }

    .faq-answer{
        padding:0 20px 20px;
    }

    .help-card{
        padding:35px 25px;
    }

}


/* ================= TERMS HERO ================= */

.terms-hero{
    padding:160px 8% 100px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #0E7375 0%,
        #1F9B9D 50%,
        #44C8C5 100%
    );
    color:#fff;
}

.terms-hero span{
    display:inline-block;
    padding:12px 22px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    margin-bottom:20px;
    font-weight:700;
}

.terms-hero h1{
    font-size:65px;
    margin-bottom:20px;
}

.terms-hero p{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:35px;
}

/* ================= CONTENT ================= */

.terms-section{
    padding:100px 8%;
    background:#F7FCFC;
}

.terms-container{
    max-width:1100px;
    margin:auto;
}

.terms-card{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.terms-block{
    margin-bottom:50px;
}

.terms-block:last-child{
    margin-bottom:0;
}

.terms-block h2{
    color:#173A3B;
    margin-bottom:15px;
    font-size:30px;
}

.terms-block p{
    color:#666;
    line-height:32px;
    margin-bottom:15px;
}

.terms-block ul{
    padding-left:20px;
}

.terms-block ul li{
    margin-bottom:10px;
    color:#666;
    line-height:30px;
}

/* ================= CTA ================= */

.terms-cta{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(
        135deg,
        #0E7375 0%,
        #1F9B9D 50%,
        #44C8C5 100%
    );
}

.terms-cta h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.terms-cta p{
    color:#fff;
    margin-bottom:25px;
}

.terms-btn{
    display:inline-block;
    padding:16px 35px;
    background:#FF7A30;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:800;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .terms-hero h1{
        font-size:42px;
    }

    .terms-card{
        padding:30px;
    }

    .terms-block h2{
        font-size:24px;
    }

    .terms-cta h2{
        font-size:34px;
    }

}


/* ================= HERO ================= */

.help-hero{
    padding:160px 8% 100px;
    text-align:center;
    background:linear-gradient(
    135deg,
    #0E7375 0%,
    #1F9B9D 50%,
    #44C8C5 100%);
    color:#fff;
}

.help-hero span{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    margin-bottom:20px;
    font-weight:700;
}

.help-hero h1{
    font-size:68px;
    margin-bottom:20px;
}

.help-hero p{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:38px;
}

/* ================= SEARCH ================= */

.help-search{
    padding:80px 8%;
    background:#F7FCFC;
}

.search-box{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:20px;
    border-radius:80px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.search-box input{
    width:100%;
    border:none;
    outline:none;
    font-size:18px;
    padding:10px 20px;
}

/* ================= CATEGORIES ================= */

.help-categories{
    padding:100px 8%;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.category-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-icon{
    font-size:55px;
    margin-bottom:20px;
}

.category-card h3{
    color:#173A3B;
    margin-bottom:10px;
}

/* ================= POPULAR ARTICLES ================= */

.help-articles{
    padding:100px 8%;
    background:#F7FCFC;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:45px;
    color:#173A3B;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.article-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.article-card h3{
    color:#173A3B;
    margin-bottom:15px;
}

.article-card a{
    color:#0E7375;
    font-weight:700;
    text-decoration:none;
}

/* ================= CONTACT SUPPORT ================= */

.support-contact{
    padding:100px 8%;
}

.support-box{
    max-width:1000px;
    margin:auto;
    background:#fff;
    border-radius:30px;
    padding:60px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.support-box h2{
    color:#173A3B;
    margin-bottom:20px;
    font-size:42px;
}

.support-box p{
    color:#666;
    margin-bottom:30px;
}

.support-btn{
    display:inline-block;
    background:#FF7A30;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:800;
}

/* ================= FAQ ================= */

.help-faq{
    padding:100px 8%;
    background:#F7FCFC;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.faq-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-card h3{
    margin-bottom:12px;
    color:#173A3B;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .article-grid{
        grid-template-columns:1fr;
    }

    .faq-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .help-hero h1{
        font-size:42px;
    }

    .help-hero p{
        font-size:18px;
        line-height:30px;
    }

    .category-grid{
        grid-template-columns:1fr;
    }

    .support-box{
        padding:35px 25px;
    }

    .support-box h2{
        font-size:32px;
    }

}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:linear-gradient(
        135deg,
        #0E7375,
        #44C8C5
    );
    color:#fff !important;
    font-size:20px;
    transition:.4s;
    box-shadow:0 8px 20px rgba(14,115,117,.25);
}

.footer-social a:hover{
    transform:translateY(-6px) rotate(8deg);
    background:linear-gradient(
        135deg,
        #FF7A30,
        #ff9f68
    );
    box-shadow:0 12px 25px rgba(255,122,48,.35);
}

/* ====================================
SECURITY PAGE
==================================== */

.security-hero{
    padding:160px 8% 100px;
    background:
    linear-gradient(
    135deg,
    #0E7375 0%,
    #1F9B9D 50%,
    #44C8C5 100%);
    text-align:center;
    color:#fff;
}

.security-hero-content{
    max-width:900px;
    margin:auto;
}

.security-hero span{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:12px 25px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
}

.security-hero h1{
    font-size:65px;
    line-height:75px;
    margin-bottom:25px;
}

.security-hero p{
    font-size:22px;
    line-height:38px;
}

.security-features,
.data-protection,
.parent-safety,
.security-faq{
    padding:100px 8%;
}

.security-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.security-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.security-card:hover{
    transform:translateY(-10px);
}

.security-icon{
    font-size:55px;
    margin-bottom:20px;
}

.security-card h3{
    color:#173A3B;
    margin-bottom:15px;
}

.security-card p{
    color:#666;
    line-height:28px;
}

.data-protection{
    background:#F7FCFC;
}

.protection-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.protection-box{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.protection-box h3{
    color:#173A3B;
    margin-bottom:15px;
}

.parent-safety-content{
    display:grid;
    grid-template-columns:1fr 350px;
    gap:50px;
    align-items:center;
}

.left h2{
    font-size:42px;
    margin:20px 0;
    color:#173A3B;
}

.left ul{
    list-style:none;
}

.left ul li{
    padding:12px 0;
    font-size:18px;
}

.parent-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.parent-card h3{
    font-size:45px;
    color:#0E7375;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.faq-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-card h3{
    margin-bottom:12px;
    color:#173A3B;
}

.security-cta{
    padding:100px 8%;
    text-align:center;
    background:
    linear-gradient(
    135deg,
    #0E7375 0%,
    #1F9B9D 50%,
    #44C8C5 100%);
}

.security-cta h2{
    color:#fff;
    font-size:50px;
    margin-bottom:20px;
}

.security-cta p{
    color:#fff;
    font-size:18px;
    margin-bottom:30px;
}

.security-cta a{
    display:inline-block;
    background:#FF7A30;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:800;
}

@media(max-width:992px){

    .security-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .parent-safety-content{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .security-grid,
    .protection-grid,
    .faq-grid{
        grid-template-columns:1fr;
    }

    .security-hero h1{
        font-size:40px;
        line-height:50px;
    }

    .security-hero p{
        font-size:18px;
        line-height:30px;
    }

    .left h2{
        font-size:32px;
    }


    .security-cta h2{
        font-size:34px;
    }

