/* Reset and Base Styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background-color: hsl(0, 0%, 100%);
      color: hsl(213, 62%, 14%);
      line-height: 1.5;
      scroll-margin-top: 80px;
    }

    /* Color Variables */
    :root {
      --background: 0 0% 100%;
      --foreground: 213 62% 14%;
      --primary: 213 62% 14%;
      --secondary: 214 25% 92%;
      --accent: 150 100% 50%;
      --border: 216 24% 92%;
      --brand-teal: #268981;
    }

    /* Utility Classes */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 12px; }
    @media (min-width: 768px) { .container { padding: 0 20px; } }
    @media (min-width: 1024px) { .container { padding: 0 12px; } }

    .text-center { text-align: center; }
    .font-bold { font-weight: 700; }
    .font-semibold { font-weight: 600; }
    .italic { font-style: italic; }

    /* Announcement Bar */
    .announcement-bar {
      width: 100%;
      height: 56px;
      background-color: hsl(213, 62%, 14%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      width: 200vw;
      animation: marquee 18s linear infinite;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-item {
      width: 100vw;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .marquee-text {
      font-size: 15px;
      font-weight: 600;
      color: white;
      white-space: nowrap;
    }

    /* Navbar */
    .navbar {
      background-color: white;
      border-bottom: 1px solid hsl(216, 24%, 92%);
      position: sticky;
      top: 0;
      z-index: 50;
      height: 72px;
    }
    .navbar-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    @media (min-width: 768px) { .navbar-content { padding: 0 20px; } }
    @media (min-width: 1024px) { .navbar-content { padding: 0 12px; } }
    .nav-logo { height: 36px; }
    .nav-links {
      display: none;
      gap: 32px;
    }
    @media (min-width: 1024px) { .nav-links { display: flex; } }
    .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: black;
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-link:hover { color: var(--brand-teal); }
    .nav-cta {
      display: none;
      background-color: var(--brand-teal);
      color: white;
      font-weight: 700;
      font-size: 14px;
      padding: 12px 24px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .nav-cta:hover { transform: translateY(-2px); }
    @media (min-width: 768px) { .nav-cta { display: block; } }

    /* Hero Section */
    .hero {
      background-color: white;
      padding: 48px 0 64px;
    }
    @media (min-width: 768px) { .hero { padding: 80px 0 64px; } }
    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 12px;
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    @media (min-width: 1024px) {
      .hero-content {
        padding: 0 12px;
        flex-direction: row;
      }
    }
    .hero-left { flex: 1; }
    @media (min-width: 1024px) { .hero-left { width: 45%; } }
    .hero-title {
      font-family: Arial, sans-serif;
      font-weight: 900;
      font-size: 36px;
      line-height: 1.1;
      color: hsl(213, 62%, 14%);
    }
    @media (min-width: 768px) { .hero-title { font-size: 48px; } }
    .hero-subtitle {
      margin-top: 16px;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.2;
    }
    @media (min-width: 768px) { .hero-subtitle { font-size: 32px; } }
    .hero-subtitle span { color: var(--brand-teal); }
    .hero-description {
      margin-top: 24px;
      font-size: 17px;
      line-height: 1.6;
      color: hsl(213, 62%, 14%, 0.7);
    }
    .hero-benefits {
      margin-top: 24px;
      list-style: none;
    }
    .hero-benefits li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }
    .hero-benefits svg {
      width: 20px;
      height: 20px;
      color: var(--brand-teal);
      margin-top: 2px;
      flex-shrink: 0;
    }
    .hero-benefits span {
      font-size: 16px;
      color: hsl(213, 62%, 14%, 0.8);
    }
    .hero-actions {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    @media (min-width: 640px) { .hero-actions { flex-direction: row; } }
    .hero-btn {
      background-color: var(--brand-teal);
      color: white;
      font-weight: 700;
      font-size: 15px;
      padding: 16px 28px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .hero-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    .hero-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: hsl(213, 62%, 14%);
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      padding: 16px 0;
      transition: gap 0.2s;
    }
    .hero-link:hover { gap: 12px; }
    .hero-right {
      display: flex;
      justify-content: center;
    }
    @media (min-width: 1024px) { .hero-right { width: 55%; justify-content: flex-end; } }
    .hero-image {
      border-radius: 18px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      object-fit: cover;
      width: 100%;
      max-width: 700px;
      height: 480px;
      filter: brightness(1.1) contrast(1.05);
    }
    @media (min-width: 768px) { .hero-image { height: 600px; } }

    /* Trust Strip */
    .trust-strip {
      background-color: white;
      border-top: 1px solid hsl(216, 24%, 92%);
      border-bottom: 1px solid hsl(216, 24%, 92%);
      padding: 32px 0;
    }
    .trust-strip p {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: hsl(213, 62%, 14%, 0.3);
      margin-bottom: 20px;
    }
    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }
    @media (min-width: 768px) { .trust-badges { gap: 64px; } }
    .trust-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .trust-badge img {
      height: 75px;
      object-fit: contain;
      transition: transform 0.2s;
      cursor: pointer;
    }
    @media (min-width: 768px) { .trust-badge img { height: 92px; } }
    .trust-badge img:hover { transform: scale(1.1); }
    .trust-badge span {
      font-size: 14px;
      font-weight: 600;
      color: hsl(213, 62%, 14%, 0.7);
      text-align: center;
    }

    /* Revenue Loss Section */
    .revenue-loss {
      background-color: hsl(214, 25%, 92%);
      padding: 48px 0;
    }
    @media (min-width: 768px) { .revenue-loss { padding: 80px 0; } }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: black;
      text-align: center;
      margin-bottom: 8px;
    }
    @media (min-width: 768px) { .section-title { font-size: 36px; } }
    .section-subtitle {
      font-size: 17px;
      color: hsl(213, 62%, 14%, 0.6);
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }
    .revenue-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    @media (min-width: 640px) { .revenue-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .revenue-grid { grid-template-columns: repeat(3, 1fr); } }
    .revenue-card {
      background-color: white;
      border: 1px solid hsl(216, 24%, 92%);
      border-radius: 14px;
      padding: 24px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .revenue-card:hover {
      border-color: var(--brand-teal);
      transform: translateY(-4px);
    }
    .revenue-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background-color: hsl(214, 25%, 92%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: background-color 0.2s;
    }
    .revenue-card:hover .revenue-icon {
      background-color: hsl(150, 100%, 50%, 0.1);
    }
    .revenue-icon svg {
      width: 20px;
      height: 20px;
      color: hsl(213, 62%, 14%, 0.7);
      transition: color 0.2s;
    }
    .revenue-card:hover .revenue-icon svg {
      color: var(--brand-teal);
    }
    .revenue-card h3 {
      font-size: 18px;
      font-weight: 600;
      color: hsl(213, 62%, 14%);
      margin-bottom: 8px;
    }
    .revenue-card p {
      font-size: 15px;
      line-height: 1.6;
      color: hsl(213, 62%, 14%, 0.6);
    }

    /* Metrics Strip */
    .metrics-strip {
      background-color: hsl(213, 62%, 14%);
      padding: 64px 0;
    }
    @media (min-width: 768px) { .metrics-strip { padding: 80px 0; } }
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    @media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .metrics-grid { grid-template-columns: repeat(5, 1fr); } }
    .metric-card {
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 24px;
      text-align: center;
    }
    .metric-value {
      font-size: 24px;
      font-weight: 700;
      color: hsl(150, 100%, 50%);
      font-family: 'Inter', sans-serif;
    }
    @media (min-width: 768px) { .metric-value { font-size: 28px; } }
    .metric-desc {
      margin-top: 8px;
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.7);
    }
    .metrics-source {
      text-align: center;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 32px;
    }

    /* Solution Section */
    .solution {
      background-color: white;
      padding: 48px 0;
    }
    @media (min-width: 768px) { .solution { padding: 80px 0; } }
    .solution-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 12px;
      display: flex;
      flex-direction: column;
      gap: 56px;
    }
    @media (min-width: 1024px) {
      .solution-content {
        padding: 0 12px;
        flex-direction: row;
      }
    }
    .solution-left { flex: 1; }
    @media (min-width: 1024px) { .solution-left { width: 35%; } }
    .solution h2 {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.3;
      color: hsl(213, 62%, 14%);
    }
    @media (min-width: 768px) { .solution h2 { font-size: 28px; } }
    .solution-highlight {
      margin-top: 12px;
      font-size: 14px;
      font-weight: 600;
      color: var(--brand-teal);
    }
    .solution p {
      margin-top: 24px;
      font-size: 14px;
      line-height: 1.6;
      color: hsl(213, 62%, 14%, 0.7);
    }
    @media (min-width: 768px) { .solution p { font-size: 14px; } }
    .solution-checks {
      margin-top: 24px;
      list-style: none;
    }
    .solution-checks li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .solution-checks svg {
      width: 20px;
      height: 20px;
      color: var(--brand-teal);
      flex-shrink: 0;
    }
    .solution-checks span {
      font-size: 15px;
      color: hsl(213, 62%, 14%, 0.8);
    }
    .solution-btn {
      margin-top: 32px;
      background-color: var(--brand-teal);
      color: white;
      font-weight: 700;
      font-size: 15px;
      padding: 16px 28px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .solution-btn:hover { transform: translateY(-2px); }
    .solution-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex: 1;
    }
    .video-container {
      width: 100%;
      background-color: white;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      aspect-ratio: 16/9;
    }
    .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Benefits Strip */
    .benefits-strip {
      background-color: hsl(214, 25%, 97%);
      border-top: 1px solid hsl(216, 24%, 92%);
      border-bottom: 1px solid hsl(216, 24%, 92%);
      padding: 56px 0;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
    .benefit-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background-color: hsl(150, 100%, 50%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .benefit-icon svg {
      width: 24px;
      height: 24px;
      color: var(--brand-teal);
    }
    .benefit-item h3 {
      font-size: 17px;
      font-weight: 700;
      color: hsl(213, 62%, 14%);
      margin-bottom: 4px;
    }
    .benefit-item p {
      font-size: 14px;
      line-height: 1.6;
      color: hsl(213, 62%, 14%, 0.6);
    }

    /* Module Grid */
    .modules {
      background-color: hsl(214, 25%, 92%);
      padding: 48px 0;
    }
    @media (min-width: 768px) { .modules { padding: 80px 0; } }
    .module-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    @media (min-width: 640px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .module-grid { grid-template-columns: repeat(4, 1fr); } }
    .module-card {
      background-color: white;
      border: 1px solid hsl(216, 24%, 92%);
      border-radius: 14px;
      padding: 24px;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .module-card:hover {
      border-color: var(--brand-teal);
      transform: translateY(-4px);
    }
    .module-card.expanded {
      border-color: var(--brand-teal);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    .module-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .module-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background-color: hsl(214, 25%, 92%);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s;
      flex-shrink: 0;
    }
    .module-card:hover .module-icon {
      background-color: hsl(150, 100%, 50%, 0.1);
    }
    .module-icon svg {
      width: 20px;
      height: 20px;
      color: hsl(213, 62%, 14%, 0.7);
      transition: color 0.2s;
    }
    .module-card:hover .module-icon svg {
      color: var(--brand-teal);
    }
    .module-card h3 {
      font-size: 15px;
      font-weight: 600;
      color: hsl(213, 62%, 14%);
      margin-bottom: 4px;
    }
    .module-card p {
      font-size: 13px;
      line-height: 1.6;
      color: hsl(213, 62%, 14%, 0.6);
    }
    .module-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }
    .module-tag {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 9999px;
    }
    .tag-gjp { background-color: hsl(214, 100%, 90%); color: hsl(214, 100%, 40%); }
    .tag-se { background-color: hsl(175, 54%, 85%); color: hsl(175, 54%, 35%); }
    .tag-pre-ets { background-color: hsl(270, 100%, 90%); color: hsl(270, 100%, 40%); }
    .tag-blue { background-color: hsl(214, 100%, 90%); color: hsl(214, 100%, 40%); }
    .tag-teal { background-color: rgba(38, 137, 129, 0.15); color: hsl(166, 43%, 32%); }
    .tag-purple { background-color: hsl(270, 100%, 90%); color: hsl(270, 100%, 40%); }
    .module-card.expanded {
      border-color: var(--brand-teal);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    .module-forms-list {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid hsl(216, 24%, 92%, 0.5);
    }
    .module-forms-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      color: hsl(213, 62%, 14%, 0.4);
      margin-bottom: 8px;
    }
    .module-forms-list ul {
      list-style: none;
    }
    .module-forms-list li {
      font-size: 12px;
      color: hsl(213, 62%, 14%, 0.7);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .module-forms-list li span {
      color: var(--brand-teal);
      flex-shrink: 0;
    }
    .module-hint {
      font-size: 11px;
      color: hsl(213, 62%, 14%, 0.4);
      margin-top: 12px;
      transition: color 0.2s;
    }
    .module-card:hover .module-hint {
      color: var(--brand-teal);
    }
    .module-forms {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid hsl(216, 24%, 92%, 0.5);
    }
    .module-forms p {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      color: hsl(213, 62%, 14%, 0.4);
      margin-bottom: 8px;
    }
    .module-forms ul {
      list-style: none;
    }
    .module-forms li {
      font-size: 12px;
      color: hsl(213, 62%, 14%, 0.7);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 6px;
    }
    .module-forms li span {
      color: var(--brand-teal);
      margin-top: 2px;
    }

    /* Testimonials */
    .testimonials {
      background-color: white;
      padding: 48px 0;
    }
    @media (min-width: 768px) { .testimonials { padding: 80px 0; } }
    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    @media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
    .testimonial-card {
      background-color: white;
      border-radius: 18px;
      padding: 32px;
      border: 2px solid hsl(216, 24%, 92%);
      transition: border-color 0.2s;
      display: flex;
      flex-direction: column;
    }
    .testimonial-card:hover {
      border-color: var(--brand-teal);
    }
    .testimonial-card svg {
      width: 32px;
      height: 32px;
      color: var(--brand-teal);
      margin-bottom: 16px;
      flex-shrink: 0;
    }
    .testimonial-card blockquote {
      font-size: 16px;
      line-height: 1.7;
      color: hsl(213, 62%, 14%, 0.8);
      font-style: italic;
      flex: 1;
    }
    .testimonial-footer {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid hsl(216, 24%, 92%);
    }
    .testimonial-result {
      font-size: 13px;
      font-weight: 700;
      color: var(--brand-teal);
    }
    .testimonial-author {
      margin-top: 4px;
      font-size: 13px;
      font-weight: 600;
      color: hsl(213, 62%, 14%, 0.4);
    }

    /* Pricing */
    .pricing {
      background-color: hsl(214, 25%, 92%);
      padding: 48px 0;
    }
    @media (min-width: 768px) { .pricing { padding: 80px 0; } }
     .pricing-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
      gap: 24px;
      margin-top: 40px;
      align-items: start;
      width: 100% !important;
      max-width: 1200px !important;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-card {
      background-color: white;
      border-radius: 18px;
      padding: 28px;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .pricing-card.standard {
      border: 1px solid hsl(216, 24%, 92%);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    .pricing-card.popular {
      border: 3px solid var(--brand-teal);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      transform: scale(1.05);
    }
    .pricing-badge {
      display: inline-block;
      background-color: var(--brand-teal);
      color: white;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 9999px;
      padding: 4px 12px;
      margin-bottom: 12px;
    }
    .pricing-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: hsl(213, 62%, 14%);
    }
    .pricing-price {
      margin-top: 4px;
      font-size: 38px;
      font-weight: 700;
      color: hsl(213, 62%, 14%);
      font-family: 'Inter', sans-serif;
    }
    .pricing-price span {
      font-size: 16px;
      font-weight: 400;
      color: hsl(213, 62%, 14%, 0.4);
    }
    .pricing-billing {
      font-size: 13px;
      color: hsl(213, 62%, 14%, 0.4);
      margin-top: 2px;
    }
    .pricing-desc {
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.6;
      color: hsl(213, 62%, 14%, 0.6);
    }
    .pricing-details {
      margin-top: 20px;
      font-size: 13px;
      color: hsl(213, 62%, 14%, 0.7);
    }
    .pricing-details p {
      margin-bottom: 8px;
    }
    .pricing-details span {
      font-weight: 600;
    }
    .pricing-systems {
      margin-top: 20px;
    }
    .pricing-systems p {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: hsl(213, 62%, 14%, 0.4);
      margin-bottom: 8px;
    }
    .pricing-systems-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .pricing-system {
      font-size: 11px;
      background-color: hsl(214, 25%, 92%);
      color: hsl(213, 62%, 14%, 0.7);
      border-radius: 9999px;
      padding: 4px 10px;
      font-weight: 500;
    }
    .pricing-btn {
      margin-top: 24px;
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      transition: transform 0.2s;
      border: none;
      cursor: pointer;
    }
    .pricing-btn.standard {
      background-color: hsl(213, 62%, 14%);
      color: white;
    }
    .pricing-btn.popular {
      background-color: var(--brand-teal);
      color: white;
    }
    .pricing-btn:hover {
      transform: translateY(-2px);
    }
    .pricing-toggle {
      margin-top: 12px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 700;
      color: hsl(213, 62%, 14%);
      background: transparent;
      border: 1px solid var(--brand-teal);
      border-radius: 8px;
      padding: 8px;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    .pricing-toggle:hover {
      background-color: hsl(150, 100%, 50%, 0.05);
    }
    .pricing-workflow {
      border-top: 1px solid hsl(216, 24%, 92%);
      padding-top: 20px;
      margin-top: 20px;
    }
    .pricing-workflow-title {
      font-size: 13px;
      font-weight: 600;
      color: hsl(213, 62%, 14%);
      margin-bottom: 12px;
    }
    .pricing-workflow-list {
      list-style: none;
    }
    .pricing-workflow-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 12px;
      color: hsl(213, 62%, 14%, 0.6);
    }
    .pricing-workflow-list li svg {
      width: 16px;
      height: 16px;
      color: var(--brand-teal);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .pricing-workflow-list li strong {
      color: hsl(213, 62%, 14%);
    }

    /* FAQ */
    .faq {
      background-color: hsl(214, 25%, 92%, 0.3);
      padding: 48px 0;
    }
    @media (min-width: 768px) { .faq { padding: 80px 0; } }
    .faq-category {
      margin-bottom: 56px;
    }
    .faq-category-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 2px solid hsl(150, 100%, 50%, 0.3);
    }
    .faq-category-icon {
      font-size: 28px;
    }
    .faq-category-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--brand-teal);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .faq-item {
      border-radius: 14px;
      border: 2px solid hsl(216, 24%, 92%);
      background-color: white;
      margin-bottom: 16px;
      transition: border-color 0.2s, box-shadow 0.2s;
      overflow: hidden;
    }
    .faq-item.open {
      border-color: var(--brand-teal);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      text-align: left;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    .faq-question span {
      font-size: 15px;
      font-weight: 600;
      color: hsl(213, 62%, 14%);
      transition: color 0.2s;
    }
    .faq-item.open .faq-question span {
      color: var(--brand-teal);
    }
    .faq-question svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .faq-item.open .faq-question svg {
      transform: rotate(180deg);
    }
    .faq-item:not(.open) .faq-question svg {
      color: hsl(213, 62%, 14%, 0.3);
    }
    .faq-item.open .faq-question svg {
      color: var(--brand-teal);
    }
    .faq-answer {
      padding: 12px 24px 20px;
      font-size: 14px;
      line-height: 1.6;
      color: hsl(213, 62%, 14%, 0.7);
      border-top: 2px solid hsl(150, 100%, 50%, 0.2);
    }

    /* Final CTA */
    .final-cta {
      background: linear-gradient(135deg, hsl(213, 62%, 14%) 0%, hsl(213, 62%, 10%) 100%);
      padding: 48px 0;
      margin-top: 8px;
    }
    @media (min-width: 768px) { .final-cta { padding: 80px 0; } }
    .final-cta-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      gap: 56px;
    }
    @media (min-width: 1024px) {
      .final-cta-content {
        padding: 0 80px;
        flex-direction: row;
      }
    }
    .final-cta-left { flex: 1; }
    @media (min-width: 1024px) { .final-cta-left { width: 50%; } }
    .final-cta h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.3;
      color: white;
    }
    @media (min-width: 768px) { .final-cta h2 { font-size: 36px; } }
    .final-cta p {
      margin-top: 16px;
      font-size: 17px;
      color: rgba(255, 255, 255, 0.6);
    }
    .final-cta-benefits {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 640px) { .final-cta-benefits { grid-template-columns: repeat(3, 1fr); } }
    .final-cta-benefit svg {
      width: 32px;
      height: 32px;
      color: var(--brand-teal);
      margin-bottom: 12px;
    }
    .final-cta-benefit h3 {
      font-size: 16px;
      font-weight: 600;
      color: white;
    }
    .final-cta-benefit p {
      margin-top: 4px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
    }
    .final-cta-box {
      background-color: white;
      border-radius: 18px;
      padding: 32px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      max-width: 448px;
      width: 100%;
    }
    .final-cta-box h3 {
      font-size: 22px;
      font-weight: 700;
      color: hsl(213, 62%, 14%);
    }
    .final-cta-box p {
      margin-top: 4px;
      font-size: 15px;
      color: hsl(213, 62%, 14%, 0.5);
    }
    .final-cta-checks {
      margin-top: 24px;
      list-style: none;
    }
    .final-cta-checks li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .final-cta-checks svg {
      width: 16px;
      height: 16px;
      color: hsl(120, 100%, 50%);
      flex-shrink: 0;
    }
    .final-cta-checks span {
      font-size: 15px;
      color: hsl(213, 62%, 14%, 0.7);
    }
    .final-cta-btn {
      margin-top: 32px;
      width: 100%;
      background-color: var(--brand-teal);
      color: white;
      font-weight: 700;
      font-size: 15px;
      padding: 16px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .final-cta-btn:hover {
      transform: translateY(-2px);
    }

    /* Footer */
    .footer {
      background-color: hsl(213, 62%, 14%);
      padding: 64px 0 24px;
      border-top: 2px solid rgba(255, 255, 255, 0.1);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
    .footer-brand p {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .footer-brand span:first-child { color: white; }
    .footer-brand span:nth-child(2) { color: var(--brand-teal); }
    .footer-brand span:nth-child(3) { color: white; }
    .footer-brand-desc {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.5);
    }
    .footer-section p:first-child {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-link {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-link:hover {
      color: white;
    }
    .footer-company p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 8px;
    }
    .footer-company p.font-medium {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 600;
    }
    .footer-company a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-company a:hover {
      color: white;
    }
    .footer-connect {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-social {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-social:hover {
      color: white;
    }
    .footer-social span {
      width: 24px;
      height: 24px;
      background-color: var(--brand-teal);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .footer-social svg {
      width: 13px;
      height: 13px;
      color: white;
    }
    .footer-bottom {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-copyright {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
      .hero-title { font-size: 32px; }
      .hero-subtitle { font-size: 20px; }
      .section-title { font-size: 24px; }
      .pricing-card.popular { transform: none; }
    }


/* === CompliFlow fixed plugin overrides === */
.module-card {
  position: relative;
}

.module-hint {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1.5px solid var(--brand-teal);
  border-radius: 10px;
  color: var(--brand-teal) !important;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.module-hint:hover {
  background: rgba(38, 137, 129, 0.08);
}

.module-card.expanded .module-hint {
  background: var(--brand-teal);
  color: #ffffff !important;
}

.module-forms-list {
  display: none;
}

.module-card.expanded .module-forms-list,
.module-forms-list.open {
  display: block !important;
}

.pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
  width: 100% !important;
}

.pricing-card {
  min-width: 0 !important;
  width: 100% !important;
}

.pricing-card.popular {
  transform: none !important;
}

.pricing-btn,
.pricing-btn.dark,
.pricing-btn.green,
button.pricing-btn {
  background: #268981 !important;
  color: #ffffff !important;
}

.workflow-details {
  display: none;
}

.workflow-details.open {
  display: block !important;
}

.contact-section {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid hsl(216, 24%, 92%);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-kicker {
  color: var(--brand-teal);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-copy h2 {
  font-size: 36px;
  line-height: 1.15;
  color: hsl(213, 62%, 14%);
  margin: 0 0 16px;
}

.contact-copy p {
  color: hsl(213, 62%, 14%, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.contact-copy ul {
  margin-top: 22px;
  padding-left: 20px;
  color: hsl(213, 62%, 14%, 0.78);
  font-weight: 600;
}

.contact-card {
  background: hsl(214, 25%, 97%);
  border: 1px solid hsl(216, 24%, 92%);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: hsl(213, 62%, 14%);
}

.contact-form label span {
  color: #268981;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid hsl(216, 24%, 84%);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: hsl(213, 62%, 14%);
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(38,137,129,0.25);
  border-color: #268981;
}

.contact-submit {
  background: #268981;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 800;
  cursor: pointer;
}

.contact-success {
  background: #ffffff;
  border: 1px solid rgba(38,137,129,0.25);
  border-radius: 12px;
  padding: 20px;
}

.contact-success h3 {
  color: #268981;
  margin: 0 0 8px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}



/* === v6 video playback fix === */
.video-container video,
.compliflow-demo-video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 320px !important;
  object-fit: cover !important;
  background: #000 !important;
  pointer-events: auto !important;
}

.video-container {
  position: relative !important;
  overflow: hidden !important;
}

.video-fallback-link {
  display: inline-block;
  margin-top: 12px;
  color: #268981 !important;
  font-weight: 700;
  text-decoration: none;
}



/* === v7 workflow coverage formatting === */
.workflow-details {
  display: none;
  margin-top: 16px !important;
  padding: 24px 22px !important;
  background: #ffffff !important;
  border: 2px solid hsl(216, 24%, 92%) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  color: hsl(213, 62%, 14%) !important;
}

.workflow-details.open {
  display: block !important;
}

.workflow-block {
  border-bottom: 1px solid hsl(216, 24%, 92%) !important;
  padding-bottom: 18px !important;
  margin-bottom: 18px !important;
}

.workflow-block:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.workflow-title {
  display: block !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  color: hsl(213, 62%, 14%) !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.01em !important;
}

.workflow-title span {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  background: #268981 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  padding: 4px 9px !important;
  border-radius: 5px !important;
  margin: 0 8px 0 0 !important;
  vertical-align: 2px !important;
  white-space: nowrap !important;
}

.workflow-details ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.workflow-details li {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  color: hsl(213, 31%, 34%) !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.workflow-details li:last-child {
  margin-bottom: 0 !important;
}

.workflow-details strong {
  font-weight: 700 !important;
  color: hsl(213, 62%, 14%) !important;
}

.workflow-details *,
.workflow-block *,
.workflow-title * {
  text-transform: none !important;
}

.workflow-toggle {
  color: hsl(213, 62%, 14%) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.workflow-toggle svg {
  color: #268981 !important;
}

@media (max-width: 900px) {
  .workflow-details {
    padding: 20px !important;
  }

  .workflow-title {
    font-size: 15px !important;
  }

  .workflow-details li {
    font-size: 13px !important;
  }
}



/* === v8 requested corrections === */

/* Keep workflow coverage buttons white on hover/focus/active/click */
.workflow-toggle,
.workflow-toggle:hover,
.workflow-toggle:focus,
.workflow-toggle:active,
.workflow-toggle:visited {
  background: #ffffff !important;
  color: hsl(213, 62%, 14%) !important;
  border-color: #268981 !important;
  box-shadow: none !important;
  outline: none !important;
}

.workflow-toggle span,
.workflow-toggle:hover span,
.workflow-toggle:focus span,
.workflow-toggle:active span {
  color: hsl(213, 62%, 14%) !important;
}

.workflow-toggle svg,
.workflow-toggle:hover svg,
.workflow-toggle:focus svg,
.workflow-toggle:active svg {
  color: #268981 !important;
  stroke: #268981 !important;
}

/* Make Included Protection Systems and tags smaller and consistent */
.pricing-tags-title {
  font-size: 10px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  color: hsl(213, 62%, 14%, 0.55) !important;
  margin-bottom: 8px !important;
}

.pricing-tag {
  font-size: 10px !important;
  line-height: 1.2 !important;
  padding: 4px 8px !important;
  color: hsl(213, 62%, 14%, 0.72) !important;
}

/* Make pricing labels black and slightly larger */
.pricing-details {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: hsl(213, 62%, 14%, 0.82) !important;
}

.pricing-details p {
  color: hsl(213, 62%, 14%, 0.82) !important;
}

.pricing-details span {
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: 14.5px !important;
}

/* Keep contact submit button size stable after click */
.contact-submit,
.contact-submit:hover,
.contact-submit:focus,
.contact-submit:active,
.contact-submit.is-loading {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  padding: 16px 22px !important;
  background: #268981 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  box-shadow: none !important;
  transform: none !important;
}

.contact-submit svg {
  display: none !important;
}



/* === v9 typography adjustments === */

/* Pricing card labels and following text all black */
.pricing-details,
.pricing-details p,
.pricing-details span,
.pricing-details p span {
  color: #000000 !important;
}

/* Included Protection Systems sizing */
.pricing-tags-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: hsl(213, 62%, 14%) !important;
  line-height: 1.5 !important;
}

.pricing-tag {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: hsl(213, 62%, 14%, 0.82) !important;
  padding: 6px 10px !important;
}

/* Footer paragraph size match */
.footer p,
.footer-description,
.footer-copy,
.footer-text {
  font-size: 14px !important;
  line-height: 1.6 !important;
}


/* === v10 contact fallback styling === */
.contact-mailto-link {
  color: #268981 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

.contact-success p {
  color: hsl(213, 62%, 14%) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}



/* === v12 contact form submit fix === */
#contactForm {
  margin: 0 !important;
}

.contact-submit,
.contact-submit.is-loading {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 56px !important;
  height: auto !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.contact-mailto-link {
  color: #268981 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}
