@font-face {
    font-family: 'LapsusPro';
    src: url('./assets/fonts/LapsusPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

@font-face {
    font-family: 'Schoolbell';
    src: url('./assets/fonts/Schoolbell.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Complete Mobile Navigation and Responsive Styles */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none !important;
    }
    
    .nav-links.mobile-active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #667eea;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
        z-index: 1000;
        border: 1px solid #e0e0e0;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0; /* Light gray border instead of white */
        display: block;
        text-align: center;
        color: #667eea; /* Purple text - this should be visible on white */
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .nav-links a:hover {
        color: #4f46e5; /* Darker purple on hover */
        }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu:hover {
        color: rgba(255, 255, 255, 0.8); /* Slightly transparent white on hover */
        background: rgba(255, 255, 255, 0.1); /* Subtle background */
    }
    
    .cta-nav {
        display: none;
    }
    
    .nav-container {
        position: relative;
    }
    
    /* Hero Section Mobile Adjustments */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-top: 33px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content, .hero-visual {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-mockup {
       width: 90%;
    max-width: 400px; /* optional */
    height: auto;
    transform: none;
    margin: 0 auto;
    }
    
    /* Features Mobile Adjustments */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Logo Mobile Adjustments */
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        display: none;
    }
    .trust-badge {
        font-size: medium
    }
}
/* Hide mobile menu on desktop and show nav links */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        width: auto;
    }
}

/* Hide logo text on very small screens */
@media (max-width: 480px) {
    .logo img {
        height: 32px;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
    
    .nav-links {
        display: flex !important;
        gap: 2rem;
        list-style: none;
    }
}


/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* Hide logo text on very small screens if needed */
@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    .logo img {
        height: 32px;
    }
}

body {
    font-family: 'Schoolbell', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 1.3rem;
    overflow-x: hidden;
}


.nav-container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 12px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%); 
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 56px;
    width: auto;
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4f46e5;
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        gap: 2rem;
        list-style: none;
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.nav-links a:hover {
    color: #f5e129;
}

.cta-nav {
    background: #667eea;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
    margin-top: 1.4rem;
    line-height: 1.2;
    font-family: 'LapsusPro', Arial, sans-serif;
}

.hero-content p {
    font-size: 1.3rem !important;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-primary {
    background: #F39C12;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0.9;
}

.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: url("/assets/game-candy-platformer-background.webp") no-repeat center 40%;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
    width: 100%;
    margin: 0 auto;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.mockup-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }

.mockup-content {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.child-card-demo {
  background: rgba(253, 253, 253, 0.57);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 5px solid #db34db;
  max-width: 350px;
  margin: 0 auto 20px;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif, system-ui;
}

.child-header-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
}

.child-avatar-demo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  object-fit: cover;
}

.child-info-demo h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.child-points-demo {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.progress-bar-demo {
  background: #f0f0f0;
  border-radius: 10px;
  height: 14px;
  margin: 10px 0;
  overflow: hidden;
}

.progress-fill-demo {
  background: linear-gradient(90deg, #faf610, #13f810);
  height: 100%;
  border-radius: 10px;
}

.required-behaviours-demo {
  text-align: left;
  background: #57C3D0;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.8rem;
  margin: 10px 0;
  border-left: 3px solid #3498db;
}

.pocket-money-demo {
  margin-top: 10px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  border-radius: 10px;
  padding: 10px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(243,156,18,0.3);
}

.pocket-amount-demo {
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 12px;
  margin-top: 5px;
  display: inline-block;
  font-size: 1.1rem;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.mockup-footer {
  color: white;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 10px;
}


.features {
    padding: 6rem 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
    font-family: 'LapsusPro', Arial, sans-serif;
}

.pricing .section-title {
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem !important;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing .section-subtitle {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.pricing-badge {
    background: linear-gradient(135deg, #667eea, #74B9FF);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 500;
    font-family: 'LapsusPro', Arial, sans-serif;
    color: #783fc7;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
  
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: left !important;
    padding-left: 49px;
    text-align:left !important;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.pricing-cta {
    background: #F39C12;
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-content {
    font-family: Arial, sans-serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #57C3D0 0%, #74B9FF 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'LapsusPro', Arial, sans-serif;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
}
.footer-section p {
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #ccc;
}
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}



.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Hero Section Fixes */
@media (max-width: 768px) {

    /* Hero container switches to single column, centered */
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-top: 9px;
        justify-items: center; /* centers grid items */
    }
    

    /* Hero content */
    .hero-content {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2rem; /* smaller font on mobile */
        line-height: 1.2;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    /* Dashboard / mockup image */
    .hero-visual {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .dashboard-mockup {
        width: 90%;
        max-width: 400px; /* limits size on larger phones */
        height: auto; /* preserves aspect ratio */
        padding: 1rem; /* reduced padding for small screens */
        transform: none; /* removes skew/rotation */
        margin: 0 auto;
        box-sizing: border-box;
    }

    .mockup-content {
        font-size: 0.9rem; /* smaller text inside dashboard */
    }

    /* Optional: shrink hero background image slightly */
    .hero::before {
        background-size: cover;
        background-position: center top;
    }
    .pricing-features li {
        justify-content: left;
        text-align: center!important;
        font-size: 1.1rem;
        padding-left: 68px !important;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .dashboard-mockup {
        width: 95%;
        max-width: 320px;
        padding: 0.5rem;
    }

    .cta-container {
        gap: 0.3rem;
    }
    .pricing-features li {
        justify-content: left;
        text-align: center!important;
        font-size: 1rem;
        padding-left: 3px !important;
        padding-top: 14px;
        padding-bottom: 10px;
    }
    .pricing-card {
    background: white;
    border-radius: 25px;
    padding: 1rem;
    }
    .features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.8rem;
    }
    .testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.8rem;
    }
    .section-title {
    font-size: 2rem;
}
