      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --navy: #333092;
        --cyan: #06b6ed;
        --navy-dark: #1e1a6e;
        --navy-light: #eeeeff;
        --cyan-light: #e0f7ff;
        --white: #ffffff;
        --text: #1a1a2e;
        --text-mid: #555577;
        --text-light: #8888aa;
        --border: #e5e5f0;
        --surface: #f8f8fc;
      }
      body {
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: var(--text);
        background: var(--white);
      }

      /* NAV — white background */
      .navbar {
        background: #ffffff;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(51, 48, 146, 0.07);
      }
      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
      }
      .nav-logo img {
        display: block;
      }
      .nav-links {
        display: flex;
        list-style: none;
        gap: 4px;
        align-items: center;
      }
      .nav-links a {
        color: var(--text-mid);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
      }
      .nav-links a:hover {
        color: var(--navy);
        background: var(--navy-light);
      }
      .btn-nav {
        background: var(--navy) !important;
        color: #fff !important;
        font-weight: 700 !important;
        padding: 9px 20px !important;
        border-radius: 20px !important;
      }
      .btn-nav:hover {
        background: var(--cyan) !important;
        color: #fff !important;
      }
      .nav-toggle {
        display: none;
      }
      .nav-hamburger {
        display: none;
        color: var(--navy);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
      }
      @media (max-width: 768px) {
        .nav-hamburger {
          display: block;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 68px;
          left: 0;
          right: 0;
          background: #fff;
          padding: 16px;
          gap: 4px;
          border-top: 1px solid var(--border);
          box-shadow: 0 8px 24px rgba(51, 48, 146, 0.1);
        }
        .nav-toggle:checked ~ .nav-links {
          display: flex;
        }
      }

      /* FOOTER — white background */
      .footer {
        background: #ffffff;
        border-top: 1px solid var(--border);
        padding: 60px 24px 0;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid var(--border);
      }
      .footer-brand p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-mid);
        max-width: 300px;
      }
      .footer-links h4 {
        color: var(--navy);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .footer-links ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-links a {
        color: var(--text-mid);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--cyan);
      }
      .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        padding: 24px 0;
        font-size: 13px;
        color: var(--text-light);
      }
      @media (max-width: 768px) {
        .footer-container {
          grid-template-columns: 1fr;
          gap: 32px;
        }
      }

      .page-hero {
        background: linear-gradient(
          135deg,
          var(--navy-dark) 0%,
          var(--navy) 100%
        );
        color: white;
        padding: 64px 24px;
      }
      .page-hero-inner {
        max-width: 800px;
        margin: 0 auto;
      }
      .page-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 12px;
      }
      .page-hero p {
        opacity: 0.8;
        font-size: 1rem;
        line-height: 1.6;
      }
      .contact-section {
        max-width: 1100px;
        margin: 0 auto;
        padding: 72px 24px;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 64px;
        align-items: start;
      }
      @media (max-width: 900px) {
        .contact-section {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }
      .contact-info h2 {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 16px;
      }
      .contact-info > p {
        color: var(--text-mid);
        line-height: 1.7;
        margin-bottom: 32px;
      }
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
      }
      .contact-item-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: var(--navy-light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
      }
      .contact-item h4 {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 4px;
      }
      .contact-item p {
        color: var(--text-mid);
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
      }
      .contact-item a {
        color: var(--cyan);
        text-decoration: none;
        font-size: 0.95rem;
      }
      .contact-form-wrap {
        background: white;
        border-radius: 24px;
        padding: 40px;
        border: 1px solid var(--border);
        box-shadow: 0 8px 40px rgba(51, 48, 146, 0.08);
      }
      .contact-form-wrap h3 {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .subtitle {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: 28px;
      }
      .form-group {
        margin-bottom: 20px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 20px;
      }
      @media (max-width: 600px) {
        .form-row {
          grid-template-columns: 1fr;
        }
      }
      label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 6px;
      }
      input,
      select,
      textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--border);
        border-radius: 12px;
        font-size: 15px;
        color: var(--text);
        background: var(--surface);
        transition: border-color 0.2s;
        outline: none;
        font-family: inherit;
      }
      input:focus,
      select:focus,
      textarea:focus {
        border-color: var(--cyan);
        background: white;
      }
      textarea {
        resize: vertical;
        min-height: 130px;
      }
      .btn-submit {
        width: 100%;
        background: linear-gradient(135deg, var(--navy), var(--cyan));
        color: white;
        border: none;
        padding: 15px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
      }
      .btn-submit:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        box-shadow: 0 6px 24px rgba(51, 48, 146, 0.3);
      }
      .success-msg {
        display: none;
        background: #dcfce7;
        border: 1px solid #86efac;
        color: #166534;
        padding: 14px 20px;
        border-radius: 12px;
        margin-top: 16px;
        font-size: 0.95rem;
        font-weight: 600;
      }
      
      
     
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --navy: #333092;
        --cyan: #06b6ed;
        --navy-dark: #1e1a6e;
        --navy-light: #eeeeff;
        --cyan-light: #e0f7ff;
        --white: #ffffff;
        --text: #1a1a2e;
        --text-mid: #555577;
        --text-light: #8888aa;
        --border: #e5e5f0;
        --surface: #f8f8fc;
      }
      body {
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: var(--text);
        background: var(--white);
      }

      /* NAV — white background */
      .navbar {
        background: #ffffff;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(51, 48, 146, 0.07);
      }
      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
      }
      .nav-logo img {
        display: block;
      }
      .nav-links {
        display: flex;
        list-style: none;
        gap: 4px;
        align-items: center;
      }
      .nav-links a {
        color: var(--text-mid);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
      }
      .nav-links a:hover {
        color: var(--navy);
        background: var(--navy-light);
      }
      .btn-nav {
        background: var(--navy) !important;
        color: #fff !important;
        font-weight: 700 !important;
        padding: 9px 20px !important;
        border-radius: 20px !important;
      }
      .btn-nav:hover {
        background: var(--cyan) !important;
        color: #fff !important;
      }
      .nav-toggle {
        display: none;
      }
      .nav-hamburger {
        display: none;
        color: var(--navy);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
      }
      @media (max-width: 768px) {
        .nav-hamburger {
          display: block;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 68px;
          left: 0;
          right: 0;
          background: #fff;
          padding: 16px;
          gap: 4px;
          border-top: 1px solid var(--border);
          box-shadow: 0 8px 24px rgba(51, 48, 146, 0.1);
        }
        .nav-toggle:checked ~ .nav-links {
          display: flex;
        }
      }

      /* FOOTER — white background */
      .footer {
        background: #ffffff;
        border-top: 1px solid var(--border);
        padding: 60px 24px 0;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid var(--border);
      }
      .footer-brand p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-mid);
        max-width: 300px;
      }
      .footer-links h4 {
        color: var(--navy);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .footer-links ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-links a {
        color: var(--text-mid);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--cyan);
      }
      .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        padding: 24px 0;
        font-size: 13px;
        color: var(--text-light);
      }
      @media (max-width: 768px) {
        .footer-container {
          grid-template-columns: 1fr;
          gap: 32px;
        }
      }

      .page-hero {
        background: linear-gradient(
          135deg,
          var(--navy-dark) 0%,
          var(--navy) 100%
        );
        color: white;
        padding: 64px 24px;
      }
      .page-hero-inner {
        max-width: 800px;
        margin: 0 auto;
      }
      .page-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 12px;
      }
      .page-hero p {
        opacity: 0.8;
        font-size: 1rem;
        line-height: 1.6;
      }
      .page-content {
        max-width: 820px;
        margin: 0 auto;
        padding: 64px 24px;
      }
      .page-content h2 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--navy);
        margin: 40px 0 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--cyan);
      }
      .page-content h2:first-of-type {
        margin-top: 0;
      }
      .page-content p,
      .page-content li {
        font-size: 1rem;
        color: var(--text-mid);
        line-height: 1.8;
        margin-bottom: 12px;
      }
      .page-content ul {
        padding-left: 24px;
        margin-bottom: 16px;
      }
      .page-content li {
        margin-bottom: 8px;
      }
      .last-updated {
        display: inline-block;
        background: var(--navy-light);
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 32px;
      }
    
    
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --navy: #333092;
        --cyan: #06b6ed;
        --navy-dark: #1e1a6e;
        --navy-light: #eeeeff;
        --cyan-light: #e0f7ff;
        --white: #ffffff;
        --text: #1a1a2e;
        --text-mid: #555577;
        --text-light: #8888aa;
        --border: #e5e5f0;
        --surface: #f8f8fc;
      }
      body {
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: var(--text);
        background: var(--white);
      }

      /* NAV — white background */
      .navbar {
        background: #ffffff;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(51, 48, 146, 0.07);
      }
      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
      }
      .nav-logo img {
        display: block;
      }
      .nav-links {
        display: flex;
        list-style: none;
        gap: 4px;
        align-items: center;
      }
      .nav-links a {
        color: var(--text-mid);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
      }
      .nav-links a:hover {
        color: var(--navy);
        background: var(--navy-light);
      }
      .btn-nav {
        background: var(--navy) !important;
        color: #fff !important;
        font-weight: 700 !important;
        padding: 9px 20px !important;
        border-radius: 20px !important;
      }
      .btn-nav:hover {
        background: var(--cyan) !important;
        color: #fff !important;
      }
      .nav-toggle {
        display: none;
      }
      .nav-hamburger {
        display: none;
        color: var(--navy);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
      }
      @media (max-width: 768px) {
        .nav-hamburger {
          display: block;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 68px;
          left: 0;
          right: 0;
          background: #fff;
          padding: 16px;
          gap: 4px;
          border-top: 1px solid var(--border);
          box-shadow: 0 8px 24px rgba(51, 48, 146, 0.1);
        }
        .nav-toggle:checked ~ .nav-links {
          display: flex;
        }
      }

      /* FOOTER — white background */
      .footer {
        background: #ffffff;
        border-top: 1px solid var(--border);
        padding: 60px 24px 0;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid var(--border);
      }
      .footer-brand p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-mid);
        max-width: 300px;
      }
      .footer-links h4 {
        color: var(--navy);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .footer-links ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-links a {
        color: var(--text-mid);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--cyan);
      }
      .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        padding: 24px 0;
        font-size: 13px;
        color: var(--text-light);
      }
      @media (max-width: 768px) {
        .footer-container {
          grid-template-columns: 1fr;
          gap: 32px;
        }
      }

      .page-hero {
        background: linear-gradient(
          135deg,
          var(--navy-dark) 0%,
          var(--navy) 100%
        );
        color: white;
        padding: 64px 24px;
      }
      .page-hero-inner {
        max-width: 800px;
        margin: 0 auto;
      }
      .page-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 12px;
      }
      .page-hero p {
        opacity: 0.8;
        font-size: 1rem;
        line-height: 1.6;
      }
      .page-content {
        max-width: 820px;
        margin: 0 auto;
        padding: 64px 24px;
      }
      .page-content h2 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--navy);
        margin: 40px 0 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--cyan);
      }
      .page-content h2:first-of-type {
        margin-top: 0;
      }
      .page-content p,
      .page-content li {
        font-size: 1rem;
        color: var(--text-mid);
        line-height: 1.8;
        margin-bottom: 12px;
      }
      .page-content ul {
        padding-left: 24px;
        margin-bottom: 16px;
      }
      .page-content li {
        margin-bottom: 8px;
      }
      .last-updated {
        display: inline-block;
        background: var(--navy-light);
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 32px;
      }
      
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --navy: #333092;
        --cyan: #06b6ed;
        --navy-dark: #1e1a6e;
        --navy-light: #eeeeff;
        --cyan-light: #e0f7ff;
        --white: #ffffff;
        --text: #1a1a2e;
        --text-mid: #555577;
        --text-light: #8888aa;
        --border: #e5e5f0;
        --surface: #f8f8fc;
      }
      body {
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: var(--text);
        background: var(--white);
      }

      /* NAV — white background */
      .navbar {
        background: #ffffff;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(51, 48, 146, 0.07);
      }
      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
      }
      .nav-logo img {
        display: block;
      }
      .nav-links {
        display: flex;
        list-style: none;
        gap: 4px;
        align-items: center;
      }
      .nav-links a {
        color: var(--text-mid);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
      }
      .nav-links a:hover {
        color: var(--navy);
        background: var(--navy-light);
      }
      .btn-nav {
        background: var(--navy) !important;
        color: #fff !important;
        font-weight: 700 !important;
        padding: 9px 20px !important;
        border-radius: 20px !important;
      }
      .btn-nav:hover {
        background: var(--cyan) !important;
        color: #fff !important;
      }
      .nav-toggle {
        display: none;
      }
      .nav-hamburger {
        display: none;
        color: var(--navy);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
      }
      @media (max-width: 768px) {
        .nav-hamburger {
          display: block;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 68px;
          left: 0;
          right: 0;
          background: #fff;
          padding: 16px;
          gap: 4px;
          border-top: 1px solid var(--border);
          box-shadow: 0 8px 24px rgba(51, 48, 146, 0.1);
        }
        .nav-toggle:checked ~ .nav-links {
          display: flex;
        }
      }

      /* FOOTER — white background */
      .footer {
        background: #ffffff;
        border-top: 1px solid var(--border);
        padding: 60px 24px 0;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid var(--border);
      }
      .footer-brand p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-mid);
        max-width: 300px;
      }
      .footer-links h4 {
        color: var(--navy);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .footer-links ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-links a {
        color: var(--text-mid);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--cyan);
      }
      .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        padding: 24px 0;
        font-size: 13px;
        color: var(--text-light);
      }
      @media (max-width: 768px) {
        .footer-container {
          grid-template-columns: 1fr;
          gap: 32px;
        }
      }

      /* HERO */
      .hero {
        background: linear-gradient(
          135deg,
          var(--navy-dark) 0%,
          var(--navy) 60%,
          #1a6fa8 100%
        );
        color: white;
        padding: 100px 24px 120px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(6, 182, 237, 0.25) 0%,
          transparent 70%
        );
        border-radius: 50%;
      }
      .hero::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 300px;
        height: 300px;
        background: radial-gradient(
          circle,
          rgba(6, 182, 237, 0.15) 0%,
          transparent 70%
        );
        border-radius: 50%;
      }
      .hero-content {
        max-width: 760px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .hero-badge {
        display: inline-block;
        background: rgba(6, 182, 237, 0.2);
        border: 1px solid rgba(6, 182, 237, 0.4);
        color: var(--cyan);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 24px;
      }
      .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
      }
      .hero h1 span {
        color: var(--cyan);
      }
      .hero p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        opacity: 0.85;
        line-height: 1.7;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
      .hero-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 60px;
      }
      .btn-primary {
        background: var(--cyan);
        color: white;
        padding: 15px 32px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.2s;
        box-shadow: 0 4px 20px rgba(6, 182, 237, 0.4);
      }
      .btn-primary:hover {
        background: #05a3d6;
        transform: translateY(-2px);
        box-shadow: 0 6px 28px rgba(6, 182, 237, 0.5);
      }
      .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 15px 32px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.2s;
        border: 2px solid rgba(255, 255, 255, 0.3);
      }
      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
      }
      .hero-stats {
        display: flex;
        gap: 48px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .stat {
        text-align: center;
      }
      .stat-num {
        font-size: 2rem;
        font-weight: 800;
        color: var(--cyan);
      }
      .stat-label {
        font-size: 13px;
        opacity: 0.7;
        margin-top: 4px;
      }
      .section {
        padding: 80px 24px;
      }
      .section-alt {
        background: var(--surface);
      }
      .section-header {
        text-align: center;
        margin-bottom: 56px;
      }
      .section-tag {
        display: inline-block;
        color: var(--cyan);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 12px;
      }
      .section-header h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 16px;
      }
      .section-header p {
        font-size: 1.05rem;
        color: var(--text-mid);
        max-width: 540px;
        margin: 0 auto;
        line-height: 1.7;
      }
      .inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
      }
      .card {
        background: white;
        border-radius: 20px;
        padding: 36px 28px;
        border: 1px solid var(--border);
        transition: all 0.3s;
      }
      .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(51, 48, 146, 0.12);
        border-color: var(--cyan);
      }
      .card-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 20px;
      }
      .card-icon.blue {
        background: var(--navy-light);
      }
      .card-icon.cyan {
        background: var(--cyan-light);
      }
      .card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
      }
      .card p {
        font-size: 0.95rem;
        color: var(--text-mid);
        line-height: 1.7;
      }
      .audience {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .audience-card {
        border-radius: 24px;
        padding: 48px 40px;
        color: white;
      }
      .audience-card.for-users {
        background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
      }
      .audience-card.for-pros {
        background: linear-gradient(135deg, #0a8a70 0%, #0369a1 100%);
      }
      .audience-card .tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        opacity: 0.7;
        margin-bottom: 12px;
      }
      .audience-card h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 16px;
      }
      .audience-card p {
        opacity: 0.85;
        line-height: 1.7;
        margin-bottom: 24px;
      }
      .audience-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .audience-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.9rem;
        opacity: 0.9;
      }
      .audience-features li::before {
        content: '✓';
        background: rgba(255, 255, 255, 0.2);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 1px;
      }
      @media (max-width: 768px) {
        .audience {
          grid-template-columns: 1fr;
        }
        .audience-card {
          padding: 32px 24px;
        }
      }
      .steps {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .step {
        display: flex;
        gap: 28px;
        align-items: flex-start;
        padding: 28px 0;
        border-bottom: 1px solid var(--border);
      }
      .step:last-child {
        border-bottom: none;
      }
      .step-num {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--cyan));
        color: white;
        font-size: 18px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .step-body h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .step-body p {
        font-size: 0.92rem;
        color: var(--text-mid);
        line-height: 1.65;
      }
      .cta-banner {
        background: linear-gradient(135deg, var(--navy) 0%, #1a5fa8 100%);
        color: white;
        text-align: center;
        padding: 80px 24px;
      }
      .cta-banner h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        margin-bottom: 16px;
      }
      .cta-banner p {
        opacity: 0.85;
        max-width: 500px;
        margin: 0 auto 36px;
        line-height: 1.7;
      }
      .testimonials {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
      }
      .testimonial {
        background: white;
        border-radius: 20px;
        padding: 32px;
        border: 1px solid var(--border);
      }
      .testimonial-stars {
        color: #f59e0b;
        font-size: 18px;
        margin-bottom: 14px;
      }
      .testimonial p {
        font-size: 0.95rem;
        color: var(--text-mid);
        line-height: 1.7;
        margin-bottom: 20px;
        font-style: italic;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .testimonial-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--cyan));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 15px;
      }
      .testimonial-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text);
      }
      .testimonial-role {
        font-size: 0.8rem;
        color: var(--text-light);
      }