:root {
      --sky: #4FC3F7;
      --sky-dark: #0288D1;
      --sunshine: #FFD54F;
      --coral: #FF8A65;
      --mint: #26A69A;
      --lavender: #B39DDB;
      --cream: #FFF8E7;
      --white: #FFFFFF;
      --navy: #1A237E;
      --soft-gray: #F5F7FA;
      --text: #2D3748;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text);
      background: var(--cream);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, .logo {
      font-family: 'Fredoka', sans-serif;
    }

    /* Header / Nav */
    header {
      background: var(--white);
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--sky-dark);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .logo span {
      background: linear-gradient(135deg, var(--sunshine), var(--coral));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    nav {
      display: flex;
      gap: 1.8rem;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    nav a:hover {
      color: var(--sky-dark);
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 1.6rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.25s ease;
      border: none;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--sky), var(--sky-dark));
      color: white;
      box-shadow: 0 4px 15px rgba(2, 136, 209, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(2, 136, 209, 0.45);
    }

    .btn-secondary {
      background: var(--sunshine);
      color: var(--navy);
      box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 213, 79, 0.55);
    }

    /* Hero */
    .hero {
      background: linear-gradient(160deg, #E1F5FE 0%, #FFF8E7 50%, #FFF3E0 100%);
      padding: 4rem 1.5rem 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "➕";
      position: absolute;
      font-size: 8rem;
      opacity: 0.08;
      top: 10%;
      left: 5%;
      transform: rotate(-15deg);
    }

    .hero::after {
      content: "÷";
      position: absolute;
      font-size: 7rem;
      opacity: 0.08;
      bottom: 15%;
      right: 8%;
      transform: rotate(20deg);
    }

    .hero-content {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3rem;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      line-height: 1.2;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .hero-text h1 .highlight {
      color: var(--sky-dark);
      position: relative;
    }

    .hero-text p {
      font-size: 1.15rem;
      color: #4A5568;
      margin-bottom: 1.8rem;
      max-width: 480px;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-card {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      text-align: center;
      max-width: 320px;
      position: relative;
      border: 4px solid var(--sunshine);
    }

    .hero-card .emoji {
      font-size: 4rem;
      margin-bottom: 0.5rem;
    }

    .hero-card h3 {
      color: var(--sky-dark);
      margin-bottom: 0.5rem;
    }

    .hero-card p {
      font-size: 0.95rem;
      color: #718096;
    }

    .floating-badge {
      position: absolute;
      top: -15px;
      right: -15px;
      background: var(--coral);
      color: white;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(255, 138, 101, 0.4);
    }

    /* Trust bar */
    .trust-bar {
      background: white;
      padding: 1.5rem;
      text-align: center;
      border-bottom: 1px solid #EDF2F7;
    }

    .trust-bar p {
      font-weight: 600;
      color: #718096;
      font-size: 0.95rem;
    }

    .trust-items {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 0.8rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 700;
      color: var(--navy);
    }

    /* Services */
    .section {
      padding: 5rem 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-size: 2.2rem;
      color: var(--navy);
      margin-bottom: 0.6rem;
    }

    .section-header p {
      color: #718096;
      font-size: 1.1rem;
      max-width: 550px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }

    .service-card {
      background: white;
      border-radius: 20px;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0,0,0,0.05);
      transition: transform 0.25s, box-shadow 0.25s;
      border: 2px solid transparent;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      border-color: var(--sky);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1.2rem;
    }

    .service-card:nth-child(1) .service-icon { background: #E3F2FD; }
    .service-card:nth-child(2) .service-icon { background: #FFF8E1; }
    .service-card:nth-child(3) .service-icon { background: #E0F2F1; }

    .service-card h3 {
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 0.6rem;
    }

    .service-card p {
      font-size: 0.95rem;
      color: #718096;
    }

    /* How it works */
    .how-section {
      background: linear-gradient(180deg, #E8F5E9 0%, var(--cream) 100%);
      padding: 5rem 1.5rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 50px;
      height: 50px;
      background: var(--sky-dark);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.3rem;
      margin: 0 auto 1rem;
      box-shadow: 0 4px 12px rgba(2, 136, 209, 0.3);
    }

    .step h4 {
      color: var(--navy);
      margin-bottom: 0.4rem;
      font-size: 1.1rem;
    }

    .step p {
      font-size: 0.9rem;
      color: #718096;
    }

    /* Testimonials */
    .testimonials {
      background: white;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--soft-gray);
      border-radius: 18px;
      padding: 1.8rem;
      position: relative;
    }

    .testimonial-card::before {
      content: "";
      font-size: 4rem;
      color: var(--sunshine);
      position: absolute;
      top: 0.5rem;
      left: 1rem;
      opacity: 0.5;
      font-family: Georgia, serif;
    }

    .stars {
      color: var(--sunshine);
      margin-bottom: 0.8rem;
      font-size: 1.1rem;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      color: #4A5568;
      margin-bottom: 1.2rem;
      position: relative;
      z-index: 1;
    }

    .parent-info {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sky), var(--lavender));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .parent-info strong {
      display: block;
      color: var(--navy);
      font-size: 0.95rem;
    }

    .parent-info span {
      font-size: 0.8rem;
      color: #718096;
    }

    /* Pricing */
    .pricing-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      max-width: 420px;
      margin: 0 auto;
      text-align: center;
      box-shadow: 0 15px 50px rgba(0,0,0,0.08);
      border: 3px solid var(--sky);
      position: relative;
    }

    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--coral);
      color: white;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 0.35rem 1.2rem;
      border-radius: 50px;
    }

    .price {
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--navy);
      font-family: 'Fredoka', sans-serif;
    }

    .price span {
      font-size: 1.1rem;
      font-weight: 600;
      color: #718096;
    }

    .pricing-features {
      list-style: none;
      margin: 1.8rem 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.98rem;
    }

    .pricing-features li::before {
      content: "✓";
      color: var(--mint);
      font-weight: 800;
      font-size: 1.1rem;
    }

    /* CTA Banner */
    .cta-banner {
      background: linear-gradient(135deg, var(--sky-dark), #01579B);
      color: white;
      padding: 4rem 1.5rem;
      text-align: center;
      margin: 0 1.5rem;
      border-radius: 24px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-banner h2 {
      font-size: 2rem;
      margin-bottom: 0.8rem;
    }

    .cta-banner p {
      opacity: 0.9;
      margin-bottom: 1.8rem;
      font-size: 1.1rem;
    }

    /* Footer */
    footer {
      background: var(--navy);
      color: white;
      padding: 3rem 1.5rem 2rem;
      margin-top: 4rem;
    }

    .footer-content {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 2rem;
    }

    .footer-brand .logo {
      color: white;
      margin-bottom: 0.8rem;
    }

    .footer-brand p {
      opacity: 0.8;
      font-size: 0.95rem;
      max-width: 280px;
    }

    .footer-col h4 {
      margin-bottom: 1rem;
      font-size: 1.05rem;
    }

    .footer-col a, .footer-col p {
      display: block;
    }

    .footer-col a, .footer-col p, .footer-bottom a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    .footer-col a:hover, .footer-bottom a:hover {
      color: var(--sunshine);
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 2.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.15);
      text-align: center;
      font-size: 0.85rem;
      opacity: 0.7;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .hero-text p {
        margin-left: auto;
        margin-right: auto;
      }
      .hero-buttons {
        justify-content: center;
      }
      .services-grid, .testimonial-grid {
        grid-template-columns: 1fr;
      }
      .steps {
        grid-template-columns: 1fr 1fr;
      }
      .footer-content {
        grid-template-columns: 1fr;
      }
      nav {
        display: none;
      }
    }

    @media (max-width: 500px) {
      .hero-text h1 {
        font-size: 2.1rem;
      }
      .steps {
        grid-template-columns: 1fr;
      }
    }