    :root {
      --primary: #0043ac;
      --primary-foreground: #FFFFFF;
      --accent: #00b162;
      --background: #F9FAFB;
      --foreground: #1F2937;
      --muted-foreground: #6B7280;
      --border: #E5E7EB;
      --secondary: #F3F4F6;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
      background: linear-gradient(180deg, var(--background), rgba(243, 244, 246, 0.2));
      color: var(--foreground);
      line-height: 1.6;
    }

    .container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* ==================== Header ==================== */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(249, 250, 251, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    header nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 5rem;
      padding: 0 1rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      font-family: 'Segoe UI', Roboto, sans-serif;
    }
    .logo img {
      height: 4rem;
    }

    .nav-links {
      display: none;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--foreground);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .cta-button {
      display: none;
      padding: 0.625rem 1.5rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border: none;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: opacity 0.3s;
      text-decoration: none;
    }

    .cta-button:hover {
      opacity: 0.9;
    }

    .menu-button {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      width: 1.5rem;
      height: 1.5rem;
      padding: 0;
    }

    .menu-button svg {
      stroke: var(--foreground);
      width: 100%;
      height: 100%;
      stroke-width: 2;
    }

    .menu-button.active svg path {
      display: none;
    }

    .menu-button.active::before {
      content: '✕';
      font-size: 1.75rem;
      color: var(--foreground);
      line-height: 0.8;
    }

    .nav-mobile {
      display: none;
      position: absolute;
      top: 5rem;
      left: 0;
      right: 0;
      background: #f0f0f0;
      border-bottom: 1px solid var(--border);
      padding: 1.5rem;
      flex-direction: column;
      gap: 1rem;
      border-bottom: 2px solid gray;
      box-shadow: 0px 10px 10px #d6d6d6;
    }

    .nav-mobile.active {
      display: flex;
    }

    .nav-mobile a {
      color: var(--foreground);
      text-decoration: none;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.3s;
    }

    .nav-mobile a:hover {
      color: var(--primary);
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }
      .cta-button {
        display: inline-block;
      }
      .menu-button {
        display: none;
      }
      .nav-mobile {
        display: none !important;
      }
    }

    /* ==================== Hero Section ==================== */
    .hero {
      padding: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .hero {
        padding: 5rem 0;
      }
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .hero-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    h1 {
      font-size: 3rem;
      line-height: 1.1;
      margin-bottom: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      h1 {
        font-size: 4rem;
      }
    }

    @media (min-width: 1024px) {
      h1 {
        font-size: 4.5rem;
      }
    }

    .text-primary {
      color: var(--primary);
    }

    .text-accent {
      color: var(--accent);
    }

    .text-foreground {
      color: var(--foreground);
    }

    h1 + p {
      font-size: 1.25rem;
      color: var(--muted-foreground);
      max-width: 32rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .button-group {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 4rem;
    }

    @media (min-width: 640px) {
      .button-group {
        flex-direction: row;
      }
    }

    .btn {
      padding: 0.75rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      border: none;
      font-size: 0.95rem;
      text-align: center;
      transition: all 0.3s;
      display: inline-block;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-foreground);
    }

    .btn-primary:hover {
      opacity: 0.9;
    }

    .btn-secondary {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }

    .btn-secondary:hover {
      background: rgba(0, 67, 172, 0.05);
    }

    .hero-image {
      position: relative;
    }

    .gradient-blur {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 67, 172, 0.1), rgba(0, 177, 98, 0.1));
      border-radius: 1.5rem;
      filter: blur(3rem);
    }

    .dashboard-card {
      position: relative;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(1rem);
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--border);
    }

    .dashboard-card img {
      width: 100%;
      border-radius: 0.75rem;
    }

    /* ==================== Section Styles ==================== */
    section {
      padding: 5rem 0;
    }

    @media (min-width: 768px) {
      section {
        padding: 8rem 0;
      }
    }

    .light-bg {
      background: rgba(255, 255, 255, 0.5);
    }

    section h2 {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
      letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
      section h2 {
        font-size: 2.25rem;
      }
    }

    section > .container > p {
      text-align: center;
      color: var(--muted-foreground);
      font-size: 1.125rem;
      max-width: 42rem;
      margin: 0 auto 4rem;
    }

    /* ==================== Services Grid ==================== */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .service-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 2rem;
      transition: all 0.3s;
      cursor: pointer;
    }

    .service-card:hover {
      border-color: rgba(0, 67, 172, 0.5);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .service-card .icon-box {
      width: 3.5rem;
      height: 3.5rem;
      background: rgba(0, 67, 172, 0.1);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.3s;
    }

    

    .service-card .icon-box svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--primary);
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service-card:hover .icon-box {
      background: rgba(0, 67, 172, 0.2);
    }

    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* ==================== Verticals Grid ==================== */
    .verticals-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .verticals-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .vertical-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 2rem;
      transition: border-color 0.3s;
      cursor: pointer;
    }

    .vertical-card:hover {
      border-color: rgba(0, 177, 98, 0.5);
    }

    .vertical-card h3 {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .vertical-card p {
      color: var(--muted-foreground);
      font-size: 0.9rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: color-mix(in oklab, var(--accent) 10%, transparent);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 9999px;
    }


    .vertical-card .icon-box {
      width: 3.5rem;
      height: 3.5rem;
      background: color-mix(in oklab, var(--accent) 10%, transparent);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.3s;
    }

    

    .vertical-card .icon-box svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--accent);
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .vertical-card:hover .icon-box {
      background: rgba(0, 172, 43, 0.2);
    }

    /* ==================== How It Works ==================== */
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
    }

    .step {
      position: relative;
    }

    .step-number {
      position: absolute;
      top: 0;
      left: 0;
      width: 3rem;
      height: 3rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 700;
    }

    .step-content {
      background: white;
      border: 1px solid var(--border);
      border-radius: 1.3rem 0.75rem 0.75rem 0.75rem;
      padding: 2rem;
      padding-top: 5rem;
    }

    .step-content h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .step-content p {
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    /* ==================== Results Section ==================== */
    .metrics-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .metric-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 2rem;
      text-align: center;
    }

    .metric-value {
      font-size: 2.75rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      min-height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .metric-value.accent {
      color: var(--accent);
    }

    .metric-value.primary {
      color: var(--primary);
    }

    .metric-label {
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    /* Testimonial Carousel */
    .testimonials-carousel {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      max-width: 40rem;
      margin: 2.5rem auto 0;
    }

    .testimonials-viewport {
      flex: 1;
      overflow: hidden;
      min-width: 0;
    }

    .testimonials-wrapper {
      display: flex;
      transition: transform 0.45s ease-in-out;
    }

    .testimonial {
      background: white;
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.75rem 1.5rem 1.5rem;
      flex: 0 0 100%;
      box-shadow: 0 8px 24px rgba(0, 67, 172, 0.08);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .testimonial-quote-icon {
      font-size: 2.5rem;
      line-height: 1;
      color: var(--primary);
      opacity: 0.25;
      font-family: Georgia, serif;
      margin-bottom: 0.25rem;
    }

    .testimonial-text {
      font-size: 0.95rem;
      font-style: italic;
      color: var(--foreground);
      line-height: 1.65;
      margin: 0 0 1.25rem;
      max-width: 28rem;
    }

    .testimonial-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.65rem;
    }

    .author-avatar {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 9999px;
      object-fit: cover;
      border: 3px solid rgba(0, 67, 172, 0.12);
      flex-shrink: 0;
    }

    .author-meta {
      text-align: center;
    }

    .author-name {
      font-weight: 600;
      color: var(--foreground);
      display: block;
      font-size: 0.95rem;
    }

    .author-title {
      font-size: 0.8rem;
      color: var(--muted-foreground);
      display: block;
      margin-top: 0.15rem;
    }

    .carousel-arrow {
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      border: 1px solid var(--border);
      background: white;
      color: var(--primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .carousel-arrow svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .carousel-arrow:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .carousel-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background: var(--border);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .carousel-dot.active {
      background: var(--primary);
      transform: scale(1.2);
    }

    @media (max-width: 640px) {
      .testimonials-carousel {
        gap: 0.5rem;
        max-width: 100%;
      }

      .carousel-arrow {
        width: 2.25rem;
        height: 2.25rem;
      }

      .testimonial {
        padding: 1.5rem 1.25rem 1.25rem;
      }
    }

    /* ==================== About Section ==================== */
    .about-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .about-content {
        grid-template-columns: 1fr;
      }
    }

    .about-text h2 {
      text-align: left;
      margin-bottom: 1.5rem;
    }

    .about-text p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .feature-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .feature-icon {
      width: 1.5rem;
      height: 1.5rem;
      background: rgba(0, 177, 98, 0.2);
      border-radius: 9999px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.25rem;
    }

    .feature-icon svg {
      width: 1rem;
      height: 1rem;
      color: var(--accent);
    }

    .feature-title {
      font-weight: 600;
      color: var(--foreground);
      display: block;
      margin-bottom: 0.25rem;
    }

    .feature-description {
      color: var(--muted-foreground);
      font-size: 0.9rem;
      display: block;
    }

    /* ==================== Contact Section ==================== */
    .contact-bg {
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), var(--background));
    }

    .contact-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: flex-start;
      margin-top: 4rem;
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-content{
        background: var(--background);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);

    }

    @media (min-width: 768px) {
      .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
      }
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.1rem;
      margin-left: 0.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border);
      border-radius: 0.5rem;
      background: white;
      color: var(--foreground);
      font-family: inherit;
      font-size: 0,8rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 67, 172, 0.1);
    }

    .form-group textarea {
      resize: none;
      min-height: 6rem;
    }

    .submit-button {
      width: 100%;
      padding: 0.75rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border: none;
      border-radius: 0.5rem;
      font-weight: 600;
      cursor: pointer;
      font-size: 1rem;
      transition: opacity 0.3s;
      margin-top: 1rem;
    }

    .submit-button:hover {
      opacity: 0.9;
    }

    .submit-button:disabled {
      opacity: 0.6;
    }

    .success-message,
    .error-message {
      margin-top: 1.5rem;
      padding: 1rem;
      border-radius: 0.5rem;
      display: none;
    }

    .success-message {
      background: #ECFDF5;
      border: 1px solid #A7F3D0;
      color: #047857;
    }

    .error-message {
      background: #FEF2F2;
      border: 1px solid #FECACA;
      color: #991B1B;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .info-section h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .info-section p {
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    .info-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .info-item {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
    }

    .info-item svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    .info-text {
      font-weight: 600;
      color: var(--foreground);
      display: block;
    }

    .info-desc {
      font-size: 0.9rem;
      color: var(--muted-foreground);
      display: block;
    }

    /* ==================== Footer ==================== */
    footer {
      background: var(--background);
      border-top: 1px solid var(--border);
      margin-top: 0rem;
    }

    footer .container {
      padding: 3rem 1rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    .footer-column h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .footer-column p {
      color: var(--muted-foreground);
      max-width: 20rem;
      line-height: 1.6;
    }

    .footer-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .footer-nav {
        grid-template-columns: 1fr 1fr;
      }
    }

    .footer-nav h4 {
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-nav a {
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.95rem;
    }

    .footer-nav a:hover {
      color: var(--primary);
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .social-links a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(0, 67, 172, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      transition: all 0.3s;
      font-size: 1.125rem;
    }

    .social-links a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .footer-bottom p {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }

    .footer-credit {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      font-size: 0.875rem;
    }

    .footer-credit a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-credit a:hover {
      color: var(--accent);
    }

    /* ==================== Animations ==================== */
    .fade-in {
      opacity: 0;
      animation: fadeIn 0.6s ease-in forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    .slide-in-left {
      animation: slideInLeft 0.8s ease-out forwards;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .slide-in-right {
      animation: slideInRight 0.8s ease-out forwards;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    section{
      background: url(../images/bg.avif);
    }

    /* ==================== New Sections ==================== */
    
    .hero-subtitle {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .models-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.875rem;
      margin: 2.5rem auto 0;
      max-width: 56rem;
    }

    .model-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 6.5rem;
      padding: 1rem 1.15rem;
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      box-shadow: 0 2px 10px rgba(0, 67, 172, 0.06);
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }

    .model-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity 0.25s;
    }

    .model-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0, 67, 172, 0.35);
      box-shadow: 0 10px 24px rgba(0, 67, 172, 0.12);
    }

    .model-card:hover::before {
      opacity: 1;
    }

    .model-acronym {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.02em;
      line-height: 1.2;
    }

    .model-desc {
      font-size: 0.7rem;
      color: var(--muted-foreground);
      margin-top: 0.35rem;
      text-align: center;
      line-height: 1.3;
      white-space: nowrap;
    }

    .model-card-wide {
      min-width: 7.5rem;
    }

    .model-card-more {
      background: linear-gradient(135deg, rgba(0, 67, 172, 0.06), rgba(0, 177, 98, 0.08));
      border-style: dashed;
      border-color: rgba(0, 67, 172, 0.35);
    }

    .model-card-more .model-acronym {
      font-size: 1.5rem;
      color: var(--accent);
    }

    #publishers .publisher-benefits {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: stretch;
      gap: 0.75rem;
      margin: 2rem auto 0;
      max-width: 56rem;
      overflow-x: auto;
      padding-bottom: 0.25rem;
      scrollbar-width: thin;
    }

    #publishers .publisher-benefits::-webkit-scrollbar {
      height: 4px;
    }

    #publishers .publisher-benefits::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 4px;
    }

    .benefit-item {
      flex: 1 1 0;
      min-width: 9rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      padding: 1rem 0.65rem;
      background: white;
      border-radius: 0.75rem;
      border: 1px solid var(--border);
      transition: all 0.3s;
      text-align: center;
    }

    .benefit-item:hover {
      border-color: var(--primary);
      box-shadow: 0 6px 16px rgba(0, 67, 172, 0.1);
    }

    .benefit-item svg {
      width: 22px;
      height: 22px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .benefit-item span {
      font-weight: 600;
      font-size: 0.8rem;
      color: var(--foreground);
      line-height: 1.3;
    }

    .service-includes-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--foreground);
      margin-top: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .service-includes {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-includes li {
      position: relative;
      padding-left: 1.25rem;
      color: var(--muted-foreground);
      font-size: 0.9rem;
      margin-bottom: 0.35rem;
    }

    .service-includes li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 0.4rem;
      height: 0.4rem;
      border-radius: 50%;
      background: var(--accent);
    }

    #about {
      position: relative;
    }

    #about .about-header {
      text-align: center;
      max-width: 40rem;
      margin: 0 auto;
    }

    #about .about-header h2 {
      margin-bottom: 0.75rem;
    }

    .section-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      background: color-mix(in oklab, var(--accent) 12%, transparent);
      padding: 0.35rem 0.85rem;
      border-radius: 9999px;
      margin-bottom: 1rem;
    }

    #about .about-subtitle {
      color: var(--muted-foreground);
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 auto;
      max-width: 36rem;
    }

    #about .about-content {
      max-width: 56rem;
      margin: 2.5rem auto 0;
    }

    .about-card {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      background: white;
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 2rem 1.5rem;
      box-shadow: 0 12px 40px rgba(0, 67, 172, 0.08);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    @media (min-width: 900px) {
      .about-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        align-items: center;
      }
    }

    #about .about-text p {
      text-align: center;
      font-size: 1.05rem;
      color: var(--muted-foreground);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    #about .about-text p:last-child {
      margin-bottom: 0;
    }

    .about-pillars {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
    }

    .about-pillar {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem 1.1rem;
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .about-pillar:hover {
      border-color: rgba(0, 67, 172, 0.35);
      box-shadow: 0 6px 16px rgba(0, 67, 172, 0.08);
    }

    .pillar-icon {
      width: 2.5rem;
      height: 2.5rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 67, 172, 0.1);
      border-radius: 0.5rem;
    }

    .pillar-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
    }

    .about-pillar h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 0.2rem;
    }

    .about-pillar p {
      font-size: 0.85rem;
      color: var(--muted-foreground);
      line-height: 1.45;
      margin: 0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-top: 3rem;
    }

    @media (min-width: 640px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .why-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .why-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 1.25rem 1.5rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .why-card:hover {
      border-color: rgba(0, 67, 172, 0.4);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .why-card .feature-icon {
      margin-top: 0;
    }

    .audience-section .audience-content {
      max-width: 62rem;
      margin: 0 auto;
      text-align: center;
    }

    .audience-section h2 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .audience-section p {
      color: var(--muted-foreground);
      font-size: 1.125rem;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    .audience-section .btn {
      margin-top: 1.5rem;
    }

    .benefits-heading {
      font-size: 1.125rem;
      font-weight: 700;
      margin: 2rem 0 1rem;
      text-align: center;
    }


    .form-heading {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .form-intro {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      margin-bottom: 1.25rem;
      line-height: 1.6;
    }

    .info-item i {
      width: 1.5rem;
      color: var(--primary);
      font-size: 1.125rem;
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    .info-link {
      text-decoration: none;
      transition: color 0.3s;
    }

    .info-link:hover {
      color: var(--primary);
    }

    .final-cta {
      background: linear-gradient(135deg, var(--primary), #003080);
      color: var(--primary-foreground);
      text-align: center;
      padding: 4rem 0;
    }

    .final-cta h2 {
      color: white;
      margin-bottom: 1rem;
    }

    .final-cta p {
      color: rgba(255, 255, 255, 0.9);
      max-width: 40rem;
      margin: 0 auto 2rem;
      font-size: 1.125rem;
    }

    .button-group-center {
      justify-content: center;
      margin-bottom: 0;
    }

    .final-cta .btn-primary {
      background: white;
      color: var(--primary);
    }

    .final-cta .btn-secondary {
      border-color: white;
      color: white;
    }

    .final-cta .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .footer-tagline {
      margin-top: 0.75rem;
    }

    .footer-motto {
      font-weight: 600;
      color: var(--primary);
      margin-top: 0.5rem;
    }

    .footer-email {
      display: inline-block;
      margin-top: 1rem;
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-email:hover {
      color: var(--primary);
    }

    #models {
      padding-bottom: 5rem;
    }

    #models .models-grid {
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 480px) {
      .model-card {
        min-width: calc(50% - 0.5rem);
        flex: 1 1 calc(50% - 0.5rem);
      }

      .model-desc {
        white-space: normal;
        font-size: 0.65rem;
      }
    }