@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
    /* ===========================
       CSS CUSTOM PROPERTIES
       =========================== */
    :root {
      --red:        #E63329;
      --blue:       #1A56C4;
      --green:      #1A9E4A;
      --dark:       #111827;
      --mid:        #374151;
      --muted:      #6B7280;
      --light:      #F3F4F6;
      --white:      #FFFFFF;
      --border:     #E5E7EB;
      --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
      --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
      --radius-sm:  8px;
      --radius-md:  14px;
      --radius-lg:  20px;
      --font:       'Inter', system-ui, -apple-system, sans-serif;
      --max-width:  1120px;
      --section-pad: 80px 20px;
    }

    /* ===========================
       RESET & BASE
       =========================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      color: var(--mid);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }

    a { color: inherit; text-decoration: none; }

    h1, h2, h3, h4 {
      color: var(--dark);
      line-height: 1.25;
      font-weight: 700;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    .btn {
      display: inline-block;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
      border: none;
      text-align: center;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn:active { transform: translateY(0); }

    .btn-primary {
      background: var(--red);
      color: var(--white);
    }

    .btn-secondary {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
    }

    .btn-secondary:hover { background: var(--blue); color: var(--white); }

    .btn-green {
      background: var(--green);
      color: var(--white);
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
    }

    /* ===========================
       NAVIGATION
       =========================== */
    #nav-toggle { display: none; }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--dark);
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: -0.02em;
      box-shadow: 4px 4px 8px rgba(0,0,0,0.25), -2px -2px 6px rgba(255,255,255,0.05);
    }

    .logo-s { color: var(--red); }
    .logo-2 { color: var(--blue); }
    .logo-l { color: var(--green); }

    .nav-brand-text {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
    }

    .nav-brand-sub {
      font-size: 0.72rem;
      font-weight: 400;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--mid);
      transition: color 0.15s;
    }

    .nav-links a:hover { color: var(--red); }

    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 8px 20px;
      border-radius: var(--radius-sm);
      font-weight: 600 !important;
    }

    .nav-cta:hover { opacity: 0.9; color: var(--white) !important; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      label { cursor: pointer; }
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .nav-mobile {
      display: none;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 16px 20px 24px;
    }

    .nav-mobile ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .nav-mobile a {
      display: block;
      padding: 10px 0;
      font-size: 1rem;
      font-weight: 500;
      color: var(--mid);
      border-bottom: 1px solid var(--border);
    }

    .nav-mobile a:last-child { border-bottom: none; }

    #nav-toggle:checked ~ .nav-mobile { display: block; }

    #nav-toggle:checked ~ .nav-inner .nav-hamburger span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    #nav-toggle:checked ~ .nav-inner .nav-hamburger span:nth-child(2) {
      opacity: 0;
    }
    #nav-toggle:checked ~ .nav-inner .nav-hamburger span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ===========================
       HERO
       =========================== */
    .hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2d1a 100%);
      color: var(--white);
      padding: 80px 20px 90px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(230,51,41,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,86,196,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26,158,74,0.2);
      border: 1px solid rgba(26,158,74,0.4);
      color: #4ade80;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
      letter-spacing: 0.04em;
    }

    .hero-label::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #4ade80;
    }

    .hero h1 {
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero h1 span { color: #4ade80; }

    .hero-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-actions .btn {
      font-size: 1rem;
      padding: 15px 30px;
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .hero-stat-value {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--white);
    }

    .hero-stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      margin-top: 2px;
    }

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

    .hero-phone-mockup {
      width: 260px;
      background: #1e293b;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 32px;
      padding: 16px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    }

    .phone-screen {
      background: #0f172a;
      border-radius: 20px;
      padding: 20px 16px;
      height: 480px;
      overflow: hidden;
    }

    .phone-course-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 10px;
    }

    .phone-course-tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .tag-free { background: rgba(26,158,74,0.25); color: #4ade80; }
    .tag-paid { background: rgba(230,51,41,0.25); color: #f87171; }

    .phone-course-title {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }

    .phone-course-meta {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.45);
    }

    .phone-progress {
      height: 3px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
      margin-top: 8px;
      overflow: hidden;
    }

    .phone-progress-fill {
      height: 100%;
      border-radius: 2px;
      background: var(--green);
    }

    .phone-screen-header {
      font-size: 0.7rem;
      font-weight: 700;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    /* ===========================
       WHAT IS S2L
       =========================== */
    .what-is {
      padding: var(--section-pad);
      background: var(--white);
    }

    .what-is-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .what-is h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 20px;
    }

    .what-is p {
      color: var(--mid);
      margin-bottom: 16px;
      font-size: 1.05rem;
      line-height: 1.75;
    }

    .what-is-points {
      list-style: none;
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .what-is-points li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
    }

    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--green);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.7rem;
      margin-top: 2px;
    }

    .what-is-visual {
      background: var(--light);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
    }

    .mission-statement {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .mission-statement span { color: var(--red); }

    .audience-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .audience-tag {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--mid);
    }

    /* ===========================
       COURSES
       =========================== */
    .courses {
      padding: var(--section-pad);
      background: var(--light);
    }

    .courses-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    .courses-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 14px;
    }

    .courses-header p {
      color: var(--muted);
      font-size: 1.05rem;
    }

    .language-tabs {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .lang-tab {
      padding: 10px 28px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      border: 2px solid var(--border);
      background: var(--white);
      color: var(--mid);
      transition: all 0.2s;
    }

    .lang-tab.active {
      background: var(--blue);
      border-color: var(--blue);
      color: var(--white);
    }

    .courses-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }

    .course-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      padding: 20px;
    }

    .course-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .course-card-top {
      height: 8px;
    }

    .course-card-top.free { background: var(--green); }
    .course-card-top.paid { background: var(--red); }

    .course-card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .course-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 14px;
    }

    .badge-free { color: var(--green); }
    .badge-paid { color: var(--red); }

    .course-card h3 {
      font-size: 1.05rem;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .course-outcome {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 20px;
    }

    .course-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .course-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .course-card .btn {
      width: 100%;
      padding: 12px;
      font-size: 0.9rem;
    }

    .courses-cta {
      text-align: center;
      margin-top: 48px;
    }

    .courses-cta p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    /* ===========================
       HOW IT WORKS
       =========================== */
    .how-it-works {
      padding: var(--section-pad);
      background: var(--white);
    }

    .how-it-works-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .how-it-works-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 60px;
    }

    .how-it-works-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 14px;
    }

    .how-it-works-header p { color: var(--muted); font-size: 1.05rem; }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(16.67% + 20px);
      right: calc(16.67% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      z-index: 0;
    }

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

    .step-number {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 800;
      margin: 0 auto 20px;
      color: var(--white);
      position: relative;
    }

    .step:nth-child(1) .step-number { background: var(--red); }
    .step:nth-child(2) .step-number { background: var(--blue); }
    .step:nth-child(3) .step-number { background: var(--green); }

    .step h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .step p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ===========================
       LANGUAGE SECTION
       =========================== */
    .languages {
      padding: var(--section-pad);
      background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
      color: var(--white);
    }

    .languages-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      text-align: center;
    }

    .languages h2 {
      color: var(--white);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 16px;
    }

    .languages-sub {
      color: rgba(255,255,255,0.7);
      font-size: 1.05rem;
      max-width: 560px;
      margin: 0 auto 48px;
    }

    .language-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: var(--max-width);
      margin: 0 auto 48px;
    }

    .language-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-md);
      padding: 36px 28px;
      transition: background 0.2s, transform 0.2s;
    }

    .language-card:hover {
      background: rgba(255,255,255,0.13);
      transform: translateY(-3px);
    }

    .language-flag {
      font-size: 2.5rem;
      margin-bottom: 14px;
    }

    .language-card h3 {
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .language-card p {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    .language-card .btn {
      width: 100%;
    }

    .btn-outline-white {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.4);
      color: var(--white);
    }

    .btn-outline-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.7);
    }

    .languages-note {
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
    }

    /* ===========================
       TESTIMONIALS
       =========================== */
    .testimonials {
      padding: var(--section-pad);
      background: var(--light);
    }

    .testimonials-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .testimonials-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 48px;
    }

    .testimonials-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 14px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--shadow-sm);
    }

    .testimonial-stars {
      color: #F59E0B;
      font-size: 1rem;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .testimonial-quote {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--mid);
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--light);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: var(--muted);
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--dark);
    }

    .testimonial-detail {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .testimonials-placeholder {
      text-align: center;
      padding: 48px;
      background: var(--white);
      border-radius: var(--radius-md);
      border: 2px dashed var(--border);
    }

    .testimonials-placeholder p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    /* ===========================
       NEWSLETTER
       =========================== */
    .newsletter {
      padding: var(--section-pad);
      background: var(--white);
    }

    .newsletter-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 14px;
    }

    .newsletter p {
      color: var(--muted);
      font-size: 1.05rem;
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .newsletter-benefits {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }

    .newsletter-benefit {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.85rem;
      color: var(--mid);
      background: var(--light);
      padding: 7px 14px;
      border-radius: 100px;
    }

    .newsletter-benefit::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
    }

    /* EP Newsletter shortcode placeholder */
    .ep-placeholder {
      background: var(--light);
      border: 2px dashed var(--border);
      border-radius: var(--radius-sm);
      padding: 32px;
      color: var(--muted);
      font-size: 0.9rem;
      text-align: center;
    }

    /* ===========================
       CONTACT
       =========================== */
    .contact {
      padding: var(--section-pad);
      background: var(--light);
    }

    .contact-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .contact-info h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 16px;
    }

    .contact-info p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 0.95rem;
    }

    .contact-detail-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .icon-email { background: rgba(230,51,41,0.1); }
    .icon-response { background: rgba(26,86,196,0.1); }

    .contact-detail-label {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
    }

    .contact-detail-value {
      font-weight: 500;
      color: var(--dark);
    }

    .contact-form-wrap {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }

    .contact-form-wrap h3 {
      font-size: 1.2rem;
      margin-bottom: 24px;
    }

    /* Simple form styles for preview */
    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font);
      font-size: 0.95rem;
      color: var(--dark);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--blue);
    }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }

    .form-submit:hover { opacity: 0.9; transform: translateY(-1px); }

    .form-note {
      font-size: 0.8rem;
      color: var(--muted);
      text-align: center;
      margin-top: 12px;
    }

    /* ===========================
       FOOTER
       =========================== */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 60px 20px 32px;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }

    .footer-brand .logo-badge {
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 300px;
      color: rgba(255,255,255,0.55);
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      transition: color 0.15s;
    }

    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 0.85rem;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: rgba(255,255,255,0.45);
      font-size: 0.8rem;
      transition: color 0.15s;
    }

    .footer-legal a:hover { color: rgba(255,255,255,0.8); }

    /* ===========================
       RESPONSIVE
       =========================== */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { order: -1; }
      .hero-phone-mockup { width: 220px; }
      .what-is-inner { grid-template-columns: 1fr; gap: 40px; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .steps { grid-template-columns: 1fr; gap: 32px; }
      .steps::before { display: none; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .language-cards { grid-template-columns: 1fr; max-width: 380px; }
    }

    @media (max-width: 640px) {
      :root { --section-pad: 56px 20px; }
      .nav-links li,
      .nav-links li:nth-child(1),
      .nav-links li:nth-child(5) { display: none; }
      .nav-links li:last-child { display: block; }
      .nav-links { gap: 0; }
      .nav-hamburger { display: none; }
      .nav-cta { padding: 8px 14px; font-size: 0.8rem; white-space: nowrap; }
      .hero { padding: 56px 20px 64px; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .courses-grid {
      padding: 20px; grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; text-align: center; }
    }

/* ─── Phone Carousel ─── */
#phone-carousel {
  transition: opacity 0.4s ease;
}

.phone-lang-indicator {
  text-align: center;
  padding: 10px 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ─── Subpage Styles ─── */

.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2d1a 100%);
  color: #fff;
  padding: 50px 20px 50px;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 20px;
}
.page-content .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Hide author and date on pages */
.page-author, .page-date { display: none; }

/* Back link */
.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green, #22c55e);
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* Legal pages */
.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--dark, #111827);
}
.legal-content p {
  margin-bottom: 12px;
}
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content .last-updated {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #E5E7EB);
  font-size: 0.9rem;
  color: var(--muted, #6B7280);
}

/* About page */
.about-section {
  margin-bottom: 48px;
}
.about-section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--dark, #111827);
}
.about-section p {
  margin-bottom: 14px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.who-card {
  background: var(--light, #F3F4F6);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.who-card .emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}
.who-card strong {
  display: block;
  margin-bottom: 4px;
}
.who-card span {
  font-size: 0.85rem;
  color: var(--muted, #6B7280);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.impact-stat {
  text-align: center;
  padding: 20px;
  background: var(--light, #F3F4F6);
  border-radius: 12px;
}
.impact-stat .number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue, #1A56C4);
}
.impact-stat .label {
  font-size: 0.85rem;
  color: var(--muted, #6B7280);
}

/* Forms (register, login) */
.form-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white, #fff);
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.form-card .field {
  margin-bottom: 16px;
}
.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--mid, #374151);
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="password"],
.form-card input[type="tel"],
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border, #E5E7EB);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color 0.2s;
}
.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--blue, #1A56C4);
}
.form-card .btn {
  width: 100%;
  margin-top: 8px;
}
.form-card .form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--muted, #6B7280);
}
.form-card .form-note a {
  color: var(--blue, #1A56C4);
  font-weight: 600;
}
.form-card .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
.form-card .checkbox-field input {
  width: auto;
  margin-top: 3px;
}
.form-card .checkbox-field label {
  font-size: 0.85rem;
  font-weight: 400;
}

/* Coming soon (blog) */
.coming-soon {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 0;
}
.coming-soon h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.coming-soon p {
  color: var(--muted, #6B7280);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* Language course page note */
.lang-note {
  text-align: center;
  background: rgba(26,158,74,0.08);
  border: 1px solid rgba(26,158,74,0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: var(--mid, #374151);
}
.lang-note strong {
  color: var(--green, #1A9E4A);
}

/* Course badge on subpages */
.course-badge.free, .course-badge.paid {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.course-badge.free {
  background: rgba(26,158,74,0.15);
  color: var(--green, #1A9E4A);
}
.course-badge.paid {
  background: rgba(230,51,41,0.15);
  color: var(--red, #E63329);
}

/* Course button on subpages */
.course-btn {
  display: inline-block;
  margin-top: 12px;
  color: var(--green, #1A9E4A);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.course-btn:hover { text-decoration: underline; }

/* Filter buttons on /courses */
.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border: 2px solid var(--border, #E5E7EB);
  border-radius: 100px;
  background: var(--white, #fff);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue, #1A56C4);
  border-color: var(--blue, #1A56C4);
  color: #fff;
}

/* Xhosa notice badges */
.xhosa-notice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.xhosa-badge {
  display: inline-block;
  background: var(--green, #22c55e);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.xhosa-badge:hover { opacity: 0.9; }

@media (max-width: 768px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
}

/* ─── Neutralise PageMotor page wrappers ─── */

/* The page-container adds no value, make it transparent */
.page-container.page-text {
  padding: 0;
  margin: 0;
}





/* Inner page-content div should be transparent */
.page-container .page-content {
  padding: 0;
  margin: 0;
}

/* Page title as full-width hero banner */
.page-content h1.page-title {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2d1a 100%);
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  padding: 32px 20px;
  margin-left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin-top: -60px;
  margin-bottom: 32px;
}

/* ─── Subpage content width ─── */

/* Constrain page content to readable width */
.page-container.page-text {
  max-width: 720px;
  margin: 0 auto;
}

/* Forms get narrower */
.page-container.page-text .auth-form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white, #fff);
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Course grids should be wider */
.page-container.page-text .courses-grid {
  max-width: none;
}

/* About page impact grid wider */
.page-container.page-text .impact-grid,
.page-container.page-text .who-grid {
  max-width: none;
}

/* Let course grids and language badges break out of the narrow page width */
.page-container.page-text .courses-grid,
.page-container.page-text .xhosa-notice {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1120px;
  padding: 0 20px;
}

/* Hide page title and author in the home shortcodes section */
.home-shortcodes .page-title,
.home-shortcodes .page-author,
.home-shortcodes .page-date {
  display: none;
}
.home-shortcodes {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hide nav links on medium screens, show Courses + Contact + CTA */
@media (max-width: 900px) {
  .nav-links li { display: none; }
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(5),
  .nav-links li:last-child { display: block; }
  .nav-links { gap: 16px; }
}

@media (max-width: 640px) {
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(5) {
    display: none;
  }
}
