:root {
      --primary: #1e3a5f;
      --primary-light: #2d4a6f;
      --primary-dark: #152a47;
      --primary-foreground: #ffffff;
      --secondary: #f1f5f9;
      --secondary-foreground: #1e3a5f;
      --accent: #f59e0b;
      --accent-hover: #d97706;
      --accent-foreground: #1e3a5f;
      --background: #ffffff;
      --foreground: #1e293b;
      --muted: #f1f5f9;
      --muted-foreground: #64748b;
      --border: #e2e8f0;
      --success: #22c55e;
      --success-foreground: #ffffff;
      --card: #ffffff;
      --card-foreground: #1e293b;
      --gradient-hero: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 50%, #1e3a5f 100%);
      --gradient-premium-mobile: linear-gradient(135deg, #1e3a5f 0%, #3d5a80 25%, #2d4a6f 50%, #1e3a5f 75%, #152a47 100%);
      --gradient-premium: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.92) 0%,
        rgba(61, 90, 128, 0.88) 25%,
        rgba(45, 74, 111, 0.85) 50%,
        rgba(30, 58, 95, 0.90) 75%,
        rgba(21, 42, 71, 0.95) 100%
        );
      --shadow-card: 0 4px 20px rgba(30, 58, 95, 0.08);
      --shadow-cta: 0 4px 20px rgba(245, 158, 11, 0.4);
      --shadow-elevated: 0 20px 60px rgba(30, 58, 95, 0.15);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }

    /* ========== HEADER ========== */
    .site-header {
      /* position: sticky; */
      top: 0;
      z-index: 1000;
      background-color: var(--background);
      border-bottom: 1px solid var(--border);
    }

    .site-header .logo {
      height: 40px;
      width: auto;
    }

    .site-header a {
      color: var(--muted-foreground);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .site-header a:hover {
      color: var(--foreground);
    }

    .header-nav {
      display: none;
    }

    .header-contact-info {
      display: none;
    }

    /* ========== HERO SECTION ========== */
    .hero-section {
    background: var(--gradient-premium-mobile);
      color: var(--primary-foreground);
      padding: 3rem 1rem;
      min-height: 85vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      pointer-events: none;
    }

    .hero-badge {
      display: inline-block;
      background-color: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1rem;
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .hero-stats {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent);
    }

    .hero-stat-label {
      font-size: 0.75rem;
      opacity: 0.8;
    }

    /* Mobile: Hide form in hero */
    .hero-form-wrapper {
      display: none;
    }

    /* Mobile hero buttons */
    .hero-buttons-mobile {
      display: block;
    }

    /* ========== BUTTONS ========== */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 1rem 1.5rem;
      background-color: var(--accent);
      color: var(--accent-foreground);
      border: none;
      border-radius: 0.75rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: var(--shadow-cta);
      text-decoration: none;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      background-color: var(--accent-hover);
      color: var(--accent-foreground);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 0.875rem 1.5rem;
      background-color: var(--accent-foreground);
      color: var(--primary-foreground);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 0.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--primary-foreground);
    }

    /* ========== LEAD FORM SECTION ========== */
    .lead-form-section {
      padding: 2.5rem 1rem;
      background-color: var(--secondary);
    }

    .lead-form-section.secondary {
      background: var(--gradient-hero);
      color: var(--primary-foreground);
      position: relative;
      overflow: hidden;
    }

    .lead-form-section.secondary::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
      pointer-events: none;
    }

    .lead-form-card {
      background-color: var(--card);
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
      position: relative;
      z-index: 1;
    }

    .lead-form-section.secondary .lead-form-card {
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
    }

    .form-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--foreground);
    }

    .lead-form-section.secondary .form-title {
      color: var(--primary-foreground);
    }

    .form-subtitle {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .lead-form-section.secondary .form-subtitle {
      color: rgba(255, 255, 255, 0.8);
    }

    .form-control-custom {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      font-size: 1rem;
      font-family: inherit;
      transition: border-color 0.2s, box-shadow 0.2s;
      background-color: var(--background);
    }

    .form-control-custom:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: none;
    }

    .lead-form-section.secondary .form-control-custom {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      color: var(--primary-foreground);
    }

    .lead-form-section.secondary .form-control-custom::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .lead-form-section.secondary .form-control-custom:focus {
      border-color: var(--accent);
      box-shadow: none;
    }

    /* ========== TRUST SIGNALS ========== */
    .trust-section {
      padding: 2rem 1rem;
      background-color: var(--secondary);
    }

    .trust-card {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem;
      background-color: var(--card);
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .trust-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-card);
    }

    .trust-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(30, 58, 95, 0.1);
      border-radius: 0.5rem;
      color: var(--primary);
      flex-shrink: 0;
    }

    .trust-label {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
    }

    /* ========== ABOUT SECTION ========== */
    .about-section {
      padding: 2.5rem 1rem;
      background-color: var(--background);
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .about-text {
      color: var(--muted-foreground);
      line-height: 1.7;
    }

    .read-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      margin-top: 1rem;
    }

    .read-more-content {
      display: none;
      margin-top: 1rem;
    }

    .read-more-content.show {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ========== PROGRAMS SECTION ========== */
    .programs-section {
      padding: 2.5rem 1rem;
      background-color: var(--secondary);
    }

    .program-card {
      background-color: var(--card);
      border-radius: 1rem;
      padding: 1.5rem;
      margin-bottom: 1rem;
      box-shadow: var(--shadow-card);
      transition: transform 0.2s, box-shadow 0.2s;
    }

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

    .program-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(30, 58, 95, 0.1);
      border-radius: 0.75rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .program-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }

    .program-desc {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-bottom: 1rem;
    }

    .btn-program {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1rem;
      background-color: var(--primary);
      color: var(--primary-foreground);
      border: none;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s;
      text-decoration: none;
    }

    .btn-program:hover {
      background-color: var(--primary-light);
      color: var(--primary-foreground);
    }

    /* ========== WHY CHOOSE SECTION ========== */
    .why-section {
      padding: 2.5rem 1rem;
      background-color: var(--background);
    }

    .why-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem;
      background-color: rgba(34, 197, 94, 0.1);
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      transition: transform 0.2s;
    }

    .why-item:hover {
      transform: translateX(4px);
    }

    .why-check {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--success);
      border-radius: 50%;
      color: var(--success-foreground);
      flex-shrink: 0;
    }

    .why-text {
      font-weight: 500;
      color: var(--foreground);
    }

    /* ========== PLACEMENTS SECTION ========== */
    .placements-section {
      padding: 2.5rem 1rem;
      background-color: var(--secondary);
    }

    .placement-card {
      background-color: var(--card);
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
    }

    .placement-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .placement-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(30, 58, 95, 0.1);
      border-radius: 0.5rem;
      color: var(--primary);
      flex-shrink: 0;
    }

    .placement-title {
      font-weight: 600;
      color: var(--foreground);
      font-size: 0.875rem;
    }

    .placement-desc {
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    /* ========== ADMISSION PROCESS ========== */
    .admission-section {
      padding: 2.5rem 1rem;
      background-color: var(--background);
    }

    .admission-steps {
      position: relative;
    }

    .admission-steps::before {
      content: '';
      position: absolute;
      left: 23px;
      top: 2rem;
      bottom: 2rem;
      width: 2px;
      background-color: var(--border);
    }

    .admission-step {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .step-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary);
      border-radius: 50%;
      color: var(--primary-foreground);
      flex-shrink: 0;
      z-index: 1;
    }

    .step-label {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--muted-foreground);
    }

    .step-title {
      font-weight: 600;
      color: var(--foreground);
    }

    /* ========== FAQ SECTION ========== */
    .faq-section {
      padding: 2.5rem 1rem;
      background-color: var(--secondary);
    }

    .faq-item {
      background-color: var(--card);
      border-radius: 0.75rem;
      margin-bottom: 0.75rem;
      overflow: hidden;
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 1rem;
      background: none;
      border: none;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
      cursor: pointer;
      text-align: left;
      font-family: inherit;
    }

    /* .faq-question:hover {
      background-color: var(--muted);
    } */

    .faq-answer {
      display: none;
      padding: 0 1rem 1rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    .faq-answer.show {
      display: block;
      animation: fadeIn 0.2s ease;
    }

    .faq-icon {
      transition: transform 0.2s;
    }

    .faq-question.active .faq-icon {
      transform: rotate(180deg);
    }

    /* ========== FOOTER ========== */
    .site-footer {
      padding: 2rem 1rem 6rem;
      background-color: var(--primary);
      color: var(--primary-foreground);
      text-align: center;
    }

    .footer-logo {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      font-size: 1.25rem;
      font-weight: 700;
    }

    .footer-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .footer-location {
      font-size: 0.875rem;
      opacity: 0.7;
      margin-bottom: 1.5rem;
    }

    .footer-disclaimer {
      font-size: 0.75rem;
      opacity: 0.5;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .footer-copyright {
      font-size: 0.75rem;
      opacity: 0.4;
    }

    /* ========== WHATSAPP BUTTON ========== */
    .whatsapp-btn {
      position: fixed;
      bottom: 5rem;
      right: 1rem;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #25d366;
      border-radius: 50%;
      color: white;
      font-size: 1.75rem;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: transform 0.2s;
      z-index: 999;
      text-decoration: none;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      color: white;
    }

    /* ========== STICKY BOTTOM CTA ========== */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0.75rem 1rem;
      background-color: var(--background);
      border-top: 1px solid var(--border);
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .sticky-cta .btn-cta {
      margin: 0;
    }

    /* Container max width for mobile */
    .container-mobile {
      max-width: 512px;
      margin: 0 auto;
    }

    /* ========================================
       DESKTOP STYLES (992px and above)
       ======================================== */
    @media (min-width: 992px) {
      /* Header Desktop */
      .site-header {
        background-color: var(--background);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .site-header .container-fluid {
        max-width: 1400px;
        margin: 0 auto;
      }

      .site-header .logo {
        height: 50px;
      }

      .header-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
      }

      .header-nav a {
        color: var(--foreground);
        font-weight: 500;
        font-size: 0.9rem;
        transition: color 0.2s;
      }

      .header-nav a:hover {
        color: var(--primary);
      }

      .header-contact-info {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .header-contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--muted-foreground);
        font-size: 0.875rem;
      }

      .header-contact-item i {
        color: var(--primary);
      }

      .header-cta-btn {
        padding: 0.625rem 1.5rem;
        background-color: var(--accent);
        color: var(--accent-foreground) !important;
        border-radius: 0.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
      }

      .header-cta-btn:hover {
         background-color: var(--accent);
        color: var(--accent-foreground) !important;
        transform: translateY(-1px);
      }

      /* Hero Desktop */
      .hero-section {
        min-height: 90vh;
        padding: 4rem 2rem;
        background: var(--gradient-premium), 
            url('../img/campus-hero.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
      }

      /* .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 55%;
        height: 100%;
        background: 
          linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
          url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="white" stroke-opacity="0.05" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23grid)"/></svg>');
        pointer-events: none;
      } */

      .hero-container-desktop {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
        position: relative;
        z-index: 1;
      }

      .hero-content-desktop {
        flex: 1;
        max-width: 850px;
        text-align: left;
      }

      .hero-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
      }

      .hero-title {
        font-size: 3rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
      }

      .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
      }

      .hero-buttons-mobile {
        display: none;
      }

      .hero-buttons-desktop {
        display: flex;
        gap: 1rem;
        margin-bottom: 2.5rem;
      }

      .hero-buttons-desktop .btn-cta,
      .hero-buttons-desktop .btn-secondary {
        width: auto;
        padding: 1rem 2rem;
      }

      .hero-stats {
        justify-content: flex-start;
        gap: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 2.5rem;
        margin-top: 2.5rem;
      }

      .hero-stat {
        text-align: left;
      }

      .hero-stat-value {
        font-size: 2.5rem;
      }

      .hero-stat-label {
        font-size: 0.875rem;
      }

      /* Hero Form Desktop */
      .hero-form-wrapper {
        display: block;
        flex: 0 0 420px;
        position: relative;
      }

      .hero-form-card {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 1.5rem;
        padding: 2.5rem;
        box-shadow: var(--shadow-elevated);
        position: relative;
        overflow: hidden;
      }

      .hero-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--primary));
      }

      .hero-form-card .form-title {
        color: var(--foreground);
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }

      .hero-form-card .form-subtitle {
        color: var(--muted-foreground);
        margin-bottom: 2rem;
      }

      .hero-form-card .form-control-custom {
        background-color: var(--muted);
        border-color: var(--border);
        color: var(--foreground);
      }

      .hero-form-card .form-control-custom::placeholder {
        color: var(--muted-foreground);
      }

      .hero-form-card .form-control-custom:focus {
        background-color: var(--background);
        border-color: var(--primary);
      }

      /* Hide mobile lead form on desktop */
      .lead-form-section.mobile-only {
        display: none;
      }

      /* Container Desktop */
      .container-mobile {
        max-width: 1200px;
      }

      /* Trust Section Desktop */
      .trust-section {
        padding: 4rem 2rem;
      }

      .trust-section .container-mobile {
        max-width: 1200px;
      }

      .trust-grid-desktop {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
      }

      .trust-grid-desktop .trust-card {
        margin-bottom: 0;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }

      .trust-grid-desktop .trust-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
      }

      /* About Section Desktop */
      .about-section {
        padding: 5rem 2rem;
      }

      .about-section .container-mobile {
        max-width: 800px;
        text-align: center;
      }

      .about-section .section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
      }

      .about-section .about-text {
        font-size: 1.1rem;
      }

      .about-section .btn-cta {
        width: auto;
        padding: 1rem 3rem;
      }

      /* Programs Section Desktop */
      .programs-section {
        padding: 5rem 2rem;
      }

      .programs-section .container-mobile {
        max-width: 1200px;
      }

      .programs-section .section-title {
        font-size: 2.25rem;
        text-align: center;
        margin-bottom: 3rem;
      }

      .programs-grid-desktop {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .programs-grid-desktop .program-card {
        margin-bottom: 0;
        padding: 2rem;
      }

      .programs-grid-desktop .program-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
      }

      .programs-grid-desktop .program-title {
        font-size: 1.25rem;
      }

      /* Why Section Desktop */
      .why-section {
        padding: 5rem 2rem;
      }

      .why-section .container-mobile {
        max-width: 1200px;
      }

      .why-section .section-title {
        font-size: 2.25rem;
        text-align: center;
        margin-bottom: 3rem;
      }

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

      .why-grid-desktop .why-item {
        margin-bottom: 0;
      }

      /* Placements Section Desktop */
      .placements-section {
        padding: 5rem 2rem;
      }

      .placements-section .container-mobile {
        max-width: 1000px;
      }

      .placements-section .section-title {
        font-size: 2.25rem;
        text-align: center;
        margin-bottom: 3rem;
      }

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

      .placements-grid-desktop .placement-card {
        padding: 2rem;
        text-align: center;
      }

      .placements-grid-desktop .placement-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 0;
      }

      .placements-grid-desktop .placement-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
      }

      .placements-section .btn-cta {
        width: auto;
        padding: 1rem 3rem;
        margin: 3rem auto 0;
        display: flex;
      }

      /* Admission Section Desktop */
      .admission-section {
        padding: 5rem 2rem;
      }

      .admission-section .container-mobile {
        max-width: 1000px;
      }

      .admission-section .section-title {
        font-size: 2.25rem;
        text-align: center;
        margin-bottom: 3rem;
      }

      .admission-steps-desktop {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        position: relative;
      }

      .admission-steps-desktop::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
      }

      .admission-steps-desktop .admission-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
        gap: 1rem;
      }

      .admission-steps-desktop .step-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
      }

      /* Second Lead Form Desktop */
      .lead-form-section.secondary {
        padding: 5rem 2rem;
      }

      .lead-form-section.secondary .container-mobile {
        max-width: 600px;
      }

      .lead-form-section.secondary .lead-form-card {
        padding: 3rem;
      }

      .lead-form-section.secondary .form-title {
        font-size: 2rem;
        text-align: center;
      }

      .lead-form-section.secondary .form-subtitle {
        text-align: center;
        margin-bottom: 2rem;
      }

      /* FAQ Section Desktop */
      .faq-section {
        padding: 5rem 2rem;
      }

      .faq-section .container-mobile {
        max-width: 800px;
      }

      .faq-section .section-title {
        font-size: 2.25rem;
        text-align: center;
        margin-bottom: 3rem;
      }

      /* Footer Desktop */
      .site-footer {
        padding: 4rem 2rem 3rem;
      }

      .site-footer .container-mobile {
        max-width: 800px;
      }

      /* WhatsApp Desktop */
      .whatsapp-btn {
        bottom: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
      }

      /* Hide sticky CTA on desktop */
      .sticky-cta {
        display: none;
      }
    }

    /* Large Desktop */
    @media (min-width: 1200px) {
      .hero-title {
        font-size: 3.5rem;
      }

      .hero-form-wrapper {
        flex: 0 0 460px;
      }

      .programs-grid-desktop {
        grid-template-columns: repeat(4, 1fr);
      }

      .why-grid-desktop {
        grid-template-columns: repeat(6, 1fr);
      }
    }