
  .accessibility-testing-section {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background:
      radial-gradient(circle at top left, rgba(7, 97, 126, 0.10), transparent 34%),
      radial-gradient(circle at top right, rgba(251, 110, 41, 0.12), transparent 30%),
      linear-gradient(135deg, #f8fcfd 0%, #ffffff 52%, #f4fafb 100%);
  }

  .accessibility-testing-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(7, 97, 126, 0.07);
    filter: blur(40px);
    border-radius: 50%;
    animation: atsFloat 7s ease-in-out infinite;
    pointer-events: none;
  }

  .accessibility-testing-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: rgba(251, 110, 41, 0.10);
    filter: blur(40px);
    border-radius: 50%;
    animation: atsFloat 9s ease-in-out infinite;
    pointer-events: none;
  }

  .ats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .ats-content {
    max-width: 900px;
  }

  .ats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #07617e;
    background: rgba(7, 97, 126, 0.08);
    border: 1px solid rgba(7, 97, 126, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .ats-badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fb6e29;
    box-shadow: 0 0 0 8px rgba(251, 110, 41, 0.12);
    animation: atsPulse 2s infinite;
  }

  .ats-title {
    margin: 0 0 28px;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #0d2330;
    letter-spacing: -0.02em;
  }

  .ats-title span {
    color: #07617e;
    position: relative;
    display: inline-block;
  }

  .ats-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 12px;
    background: rgba(251, 110, 41, 0.22);
    z-index: -1;
    border-radius: 20px;
    transform: scaleX(0.6);
    transform-origin: left;
    animation: atsUnderline 2.2s ease-in-out infinite;
  }

  .ats-text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.9;
    color: #526b78;
  }

  .ats-text strong {
    color: #07617e;
    font-weight: 700;
  }

  .ats-list-wrap {
    margin: 36px 0 34px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(7, 97, 126, 0.10);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(7, 97, 126, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .ats-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
  }

  .ats-list li {
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    line-height: 1.7;
    color: #294652;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .ats-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #07617e);
    border-radius: 50%;

  }

  .ats-list li:hover {
    transform: translateX(6px);
    color: #07617e;
  }

  .ats-highlight {
    margin: 0 0 20px;
    padding-left: 18px;
    border-left: 4px solid #fb6e29;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    color: #07617e;
  }

  .ats-last {
    margin-bottom: 0;
  }

  /* Scroll animation */
  .reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .delay-1 { transition-delay: 0.10s; }
  .delay-2 { transition-delay: 0.18s; }
  .delay-3 { transition-delay: 0.26s; }
  .delay-4 { transition-delay: 0.34s; }
  .delay-5 { transition-delay: 0.42s; }
  .delay-6 { transition-delay: 0.50s; }
  .delay-7 { transition-delay: 0.58s; }

  @keyframes atsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
  }

  @keyframes atsPulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0.35); }
    70% { box-shadow: 0 0 0 10px rgba(251, 110, 41, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0); }
  }

  @keyframes atsUnderline {
    0%, 100% { transform: scaleX(0.6); opacity: 0.7; }
    50% { transform: scaleX(1); opacity: 1; }
  }

  @media (max-width: 991px) {
    .accessibility-testing-section {
      padding: 90px 20px;
    }

    .ats-title {
      font-size: 44px;
    }

    .ats-text {
      font-size: 18px;
      line-height: 1.8;
    }

    .ats-highlight {
      font-size: 24px;
    }
  }

  @media (max-width: 767px) {
    .accessibility-testing-section {
      padding: 75px 16px;
    }

    .ats-title {
      font-size: 34px;
    }

    .ats-badge {
      font-size: 13px;
      padding: 9px 14px;
    }

    .ats-text {
      font-size: 16px;
      line-height: 1.75;
    }

    .ats-list-wrap {
      padding: 22px 18px;
      border-radius: 18px;
    }

    .ats-list li {
      font-size: 16px;
      padding-left: 28px;
    }

    .ats-highlight {
      font-size: 20px;
      line-height: 1.6;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.active,
    .accessibility-testing-section::before,
    .accessibility-testing-section::after,
    .ats-badge::before,
    .ats-title span::after {
      animation: none !important;
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
  }
.who-needs-accessibility-section {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background:
      radial-gradient(circle at left top, rgba(7, 97, 126, 0.06), transparent 28%),
      radial-gradient(circle at right bottom, rgba(251, 110, 41, 0.08), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  }

  .who-needs-accessibility-section::before {
    content: "";
    position: absolute;
    top: -90px;
    left: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(7, 97, 126, 0.08);
    filter: blur(35px);
    animation: wnaFloat 8s ease-in-out infinite;
    pointer-events: none;
  }

  .who-needs-accessibility-section::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(251, 110, 41, 0.10);
    filter: blur(35px);
    animation: wnaFloat 10s ease-in-out infinite;
    pointer-events: none;
  }

  .wna-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .wna-heading {
    max-width: 860px;
    margin-bottom: 55px;
  }

  .wna-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(7, 97, 126, 0.08);
    border: 1px solid rgba(7, 97, 126, 0.14);
    color: #07617e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .wna-badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fb6e29;
    box-shadow: 0 0 0 7px rgba(251, 110, 41, 0.12);
    animation: wnaPulse 2s infinite;
  }

  .wna-title {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2330;
    letter-spacing: -0.02em;
  }

  .wna-title span {
    color: #07617e;
    position: relative;
    display: inline;
  }

  .wna-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    border-radius: 20px;
    background: rgba(251, 110, 41, 0.20);
    z-index: -1;
  }

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

  .wna-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(7, 97, 126, 0.10);
    box-shadow: 0 18px 45px rgba(7, 97, 126, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .wna-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 64px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #07617e, #fb6e29);
  }

  .wna-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(7, 97, 126, 0.14);
    border-color: rgba(251, 110, 41, 0.25);
  }

  .wna-card h3 {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #0d2330;
  }

  .wna-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #5b7180;
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s ease, transform 0.85s ease;
    will-change: opacity, transform;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .delay-1 { transition-delay: 0.10s; }
  .delay-2 { transition-delay: 0.18s; }
  .delay-3 { transition-delay: 0.26s; }
  .delay-4 { transition-delay: 0.34s; }
  .delay-5 { transition-delay: 0.42s; }
  .delay-6 { transition-delay: 0.50s; }

  @keyframes wnaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
  }

  @keyframes wnaPulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0.35); }
    70% { box-shadow: 0 0 0 10px rgba(251, 110, 41, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0); }
  }

  @media (max-width: 991px) {
    .who-needs-accessibility-section {
      padding: 90px 20px;
    }

    .wna-title {
      font-size: 38px;
    }

    .wna-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .who-needs-accessibility-section {
      padding: 75px 16px;
    }

    .wna-heading {
      margin-bottom: 36px;
    }

    .wna-title {
      font-size: 30px;
      line-height: 1.3;
    }

    .wna-badge {
      font-size: 13px;
      padding: 9px 14px;
    }

    .wna-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .wna-card {
      padding: 26px 20px;
      border-radius: 18px;
    }

    .wna-card h3 {
      font-size: 21px;
    }

    .wna-card p {
      font-size: 16px;
      line-height: 1.7;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.active,
    .who-needs-accessibility-section::before,
    .who-needs-accessibility-section::after,
    .wna-badge::before {
      animation: none !important;
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
  }
  .accessibility-risk-section {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background:
      radial-gradient(circle at top right, rgba(251, 110, 41, 0.08), transparent 28%),
      radial-gradient(circle at bottom left, rgba(7, 97, 126, 0.07), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  }

  .accessibility-risk-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(251, 110, 41, 0.10);
    filter: blur(40px);
    animation: arsFloat 9s ease-in-out infinite;
    pointer-events: none;
  }

  .accessibility-risk-section::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(7, 97, 126, 0.08);
    filter: blur(42px);
    animation: arsFloat 11s ease-in-out infinite;
    pointer-events: none;
  }

  .ars-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .ars-heading {
    max-width: 860px;
    margin-bottom: 55px;
  }

  .ars-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(251, 110, 41, 0.08);
    border: 1px solid rgba(251, 110, 41, 0.16);
    color: #fb6e29;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .ars-badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #07617e;
    box-shadow: 0 0 0 7px rgba(7, 97, 126, 0.12);
    animation: arsPulse 2s infinite;
  }

  .ars-title {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2330;
    letter-spacing: -0.02em;
  }

  .ars-title span {
    color: #07617e;
    position: relative;
    display: inline;
  }

  .ars-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    border-radius: 20px;
    background: rgba(251, 110, 41, 0.20);
    z-index: -1;
  }

  .ars-intro {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #5b7180;
  }

  .ars-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 34px;
  }

  .ars-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(7, 97, 126, 0.10);
    box-shadow: 0 18px 45px rgba(7, 97, 126, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .ars-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 70px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #fb6e29, #07617e);
  }

  .ars-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(7, 97, 126, 0.14);
    border-color: rgba(251, 110, 41, 0.24);
  }

  .ars-card h3 {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
    color: #0d2330;
  }

  .ars-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #5b7180;
  }

  .ars-highlight {
    padding: 34px 30px;
    border-radius: 26px;
    background: linear-gradient(135deg, #07617e 0%, #0b748c 100%);
    box-shadow: 0 22px 55px rgba(7, 97, 126, 0.22);
    position: relative;
    overflow: hidden;
  }

  .ars-highlight::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .ars-highlight-title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 2;
  }

  .ars-highlight-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    z-index: 2;
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s ease, transform 0.85s ease;
    will-change: opacity, transform;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .delay-1 { transition-delay: 0.10s; }
  .delay-2 { transition-delay: 0.18s; }
  .delay-3 { transition-delay: 0.26s; }
  .delay-4 { transition-delay: 0.34s; }
  .delay-5 { transition-delay: 0.42s; }
  .delay-6 { transition-delay: 0.50s; }

  @keyframes arsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
  }

  @keyframes arsPulse {
    0% { box-shadow: 0 0 0 0 rgba(7, 97, 126, 0.35); }
    70% { box-shadow: 0 0 0 10px rgba(7, 97, 126, 0); }
    100% { box-shadow: 0 0 0 0 rgba(7, 97, 126, 0); }
  }

  @media (max-width: 991px) {
    .accessibility-risk-section {
      padding: 90px 20px;
    }

    .ars-title {
      font-size: 38px;
    }

    .ars-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 767px) {
    .accessibility-risk-section {
      padding: 75px 16px;
    }

    .ars-heading {
      margin-bottom: 36px;
    }

    .ars-title {
      font-size: 30px;
      line-height: 1.3;
    }

    .ars-badge {
      font-size: 13px;
      padding: 9px 14px;
    }

    .ars-intro {
      font-size: 16px;
      line-height: 1.75;
    }

    .ars-card {
      padding: 26px 20px;
      border-radius: 18px;
    }

    .ars-card h3 {
      font-size: 21px;
    }

    .ars-card p {
      font-size: 16px;
      line-height: 1.7;
    }

    .ars-highlight {
      padding: 26px 20px;
      border-radius: 20px;
    }

    .ars-highlight-title {
      font-size: 24px;
    }

    .ars-highlight-text {
      font-size: 16px;
      line-height: 1.7;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.active,
    .accessibility-risk-section::before,
    .accessibility-risk-section::after,
    .ars-badge::before {
      animation: none !important;
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
  }
  .accessibility-cta-advanced {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background:
      radial-gradient(circle at 15% 20%, rgba(251, 110, 41, 0.16), transparent 22%),
      radial-gradient(circle at 85% 80%, rgba(7, 97, 126, 0.22), transparent 26%),
      linear-gradient(135deg, #041f25 0%, #07617e 52%, #0a2c35 100%);
  }

  .accessibility-cta-advanced::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
    pointer-events: none;
  }

  .cta-advanced-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .cta-advanced-box {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255,255,255,0.15);
  }

  .cta-advanced-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.04), rgba(251,110,41,0.28));
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }

  .cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
  }

  .cta-orb-1 {
    width: 220px;
    height: 220px;
    top: -70px;
    left: -60px;
    background: rgba(251, 110, 41, 0.28);
    animation: ctaFloat 8s ease-in-out infinite;
  }

  .cta-orb-2 {
    width: 240px;
    height: 240px;
    bottom: -90px;
    right: -70px;
    background: rgba(255, 255, 255, 0.12);
    animation: ctaFloat 10s ease-in-out infinite;
  }

  .cta-top-line {
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
  }

  .cta-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  .cta-mini-badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fb6e29;
    box-shadow: 0 0 0 7px rgba(251,110,41,0.12);
    animation: ctaPulse 2s infinite;
  }

  .cta-advanced-title {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
  }

  .cta-advanced-title span {
    color: #fb6e29;
    position: relative;
    display: inline-block;
  }

  .cta-advanced-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 14px;
    border-radius: 20px;
    background: rgba(251, 110, 41, 0.18);
    z-index: -1;
  }

  .cta-advanced-text {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
  }

  .cta-action-wrap {
    position: relative;
    z-index: 2;
    margin-top: 34px;
  }

  .cta-main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 30px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #fb6e29 0%, #ff8c4d 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    box-shadow:
      0 18px 40px rgba(251, 110, 41, 0.28),
      inset 0 1px 0 rgba(255,255,255,0.18);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .cta-main-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s ease;
  }

  .cta-main-btn:hover {
    transform: translateY(-5px);
    box-shadow:
      0 24px 55px rgba(251, 110, 41, 0.38),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }

  .cta-main-btn:hover::before {
    left: 135%;
  }

  .btn-text,
  .btn-icon {
    position: relative;
    z-index: 2;
  }

  .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .cta-main-btn:hover .btn-icon {
    transform: translateX(4px) rotate(8deg);
    background: rgba(255,255,255,0.22);
  }

  .reveal {
    opacity: 0;
    transform: translateY(45px) scale(0.98);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  @keyframes ctaFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(16px) translateX(8px); }
  }

  @keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(251,110,41,0.35); }
    70% { box-shadow: 0 0 0 10px rgba(251,110,41,0); }
    100% { box-shadow: 0 0 0 0 rgba(251,110,41,0); }
  }

  @media (max-width: 991px) {
    .accessibility-cta-advanced {
      padding: 100px 20px;
    }

    .cta-advanced-box {
      padding: 64px 28px;
    }

    .cta-advanced-title {
      font-size: 42px;
    }

    .cta-advanced-text {
      font-size: 17px;
      line-height: 1.8;
    }
  }

  @media (max-width: 767px) {
    .accessibility-cta-advanced {
      padding: 80px 16px;
    }

    .cta-advanced-box {
      padding: 48px 20px;
      border-radius: 22px;
    }

    .cta-advanced-title {
      font-size: 32px;
      line-height: 1.25;
    }

    .cta-advanced-text {
      font-size: 16px;
      line-height: 1.75;
    }

    .cta-main-btn {
      width: 100%;
      justify-content: center;
      padding: 16px 22px;
      font-size: 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.active,
    .cta-orb,
    .cta-mini-badge::before,
    .cta-main-btn,
    .btn-icon {
      animation: none !important;
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
  }
  .dawn-ats-services-section {
  padding: 100px 20px;
  position: relative;
  background:
    radial-gradient(circle at 20% 10%, rgba(7,97,126,0.08), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(251,110,41,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.dawn-ats-container {
  max-width: 1150px;
  margin: auto;
}

/* HEADER */
.dawn-ats-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 50px;
}

.dawn-ats-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(7,97,126,0.08);
  color: #07617e;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
}

.dawn-ats-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0d2330;
}

.dawn-ats-header h2 span {
  color: #fb6e29;
  position: relative;
}

.dawn-ats-header h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 10px;
  background: rgba(251,110,41,0.2);
  border-radius: 10px;
  z-index: -1;
}

.dawn-ats-header p {
  margin-top: 12px;
  font-size: 17px;
  color: #5b7180;
}

/* GRID */
.dawn-ats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.dawn-ats-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(7,97,126,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 45px rgba(7,97,126,0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

.dawn-ats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #07617e, #fb6e29);
  border-radius: 10px;
}

.dawn-ats-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(251,110,41,0.08), transparent);
  opacity: 0;
  transition: 0.4s;
}

.dawn-ats-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(7,97,126,0.15);
}

.dawn-ats-card:hover::after {
  opacity: 1;
}

.dawn-ats-card h3 {
  font-size: 20px;
  color: #0d2330;
  margin-bottom: 10px;
}

.dawn-ats-card p {
  font-size: 15px;
  color: #5b7180;
  line-height: 1.6;
}

/* SCROLL ANIMATION */
.dawn-ats-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.dawn-ats-reveal.dawn-ats-active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .dawn-ats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dawn-ats-grid {
    grid-template-columns: 1fr;
  }

  .dawn-ats-header h2 {
    font-size: 28px;
  }
}
.dawn-ats-packages-section {
  padding: 100px 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(7,97,126,0.06), transparent 30%),
    radial-gradient(circle at 80% 100%, rgba(251,110,41,0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.dawn-ats-packages-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.dawn-ats-packages-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 50px;
}

.dawn-ats-packages-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(7,97,126,0.08);
  color: #07617e;
  font-size: 13px;
  margin-bottom: 12px;
}

.dawn-ats-packages-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.dawn-ats-packages-header span {
  color: #fb6e29;
}

.dawn-ats-packages-header p {
  font-size: 16px;
  color: #5b7180;
}

/* GRID */
.dawn-ats-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.dawn-ats-package-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(7,97,126,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 45px rgba(7,97,126,0.08);
  transition: 0.3s;
}

.dawn-ats-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(7,97,126,0.12);
}

.dawn-ats-package-card.featured {
  border: 2px solid #fb6e29;
  transform: scale(1.02);
}

.dawn-ats-package-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #07617e;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #5b7180;
  margin-bottom: 15px;
}

.dawn-ats-package-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.dawn-ats-package-card li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #3d5660;
}

.ideal {
  font-size: 13px;
  color: #fb6e29;
  font-weight: 600;
}

/* CTA */
.dawn-ats-packages-cta {
  text-align: center;
  margin-top: 40px;
}

.dawn-ats-packages-cta a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background: #fb6e29;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* ANIMATION */
.dawn-ats-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.dawn-ats-reveal.dawn-ats-active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .dawn-ats-packages-grid {
    grid-template-columns: 1fr;
  }
}
.dawn-ats-why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 18% 12%, rgba(7, 97, 126, 0.08), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(251, 110, 41, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.dawn-ats-why-choose-section::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(7, 97, 126, 0.08);
  filter: blur(38px);
  animation: dawnAtsWhyFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.dawn-ats-why-choose-section::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(251, 110, 41, 0.10);
  filter: blur(42px);
  animation: dawnAtsWhyFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.dawn-ats-why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dawn-ats-why-choose-header {
  max-width: 860px;
  margin: 0 auto 55px;
  text-align: center;
}

.dawn-ats-why-choose-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(7, 97, 126, 0.08);
  border: 1px solid rgba(7, 97, 126, 0.14);
  color: #07617e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.dawn-ats-why-choose-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fb6e29;
  box-shadow: 0 0 0 7px rgba(251, 110, 41, 0.12);
  animation: dawnAtsWhyPulse 2s infinite;
}

.dawn-ats-why-choose-title {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d2330;
  letter-spacing: -0.02em;
}

.dawn-ats-why-choose-title span {
  color: #07617e;
  position: relative;
  display: inline;
}

.dawn-ats-why-choose-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  border-radius: 20px;
  background: rgba(251, 110, 41, 0.20);
  z-index: -1;
}

.dawn-ats-why-choose-intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5b7180;
}

.dawn-ats-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dawn-ats-why-card {
  position: relative;
  padding: 30px 28px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 97, 126, 0.10);
  box-shadow: 0 18px 45px rgba(7, 97, 126, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.dawn-ats-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 72px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, #07617e, #fb6e29);
}

.dawn-ats-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(251, 110, 41, 0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.dawn-ats-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(7, 97, 126, 0.14);
  border-color: rgba(251, 110, 41, 0.24);
}

.dawn-ats-why-card:hover::after {
  opacity: 1;
}

.dawn-ats-why-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7, 97, 126, 0.10), rgba(251, 110, 41, 0.12));
  color: #07617e;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dawn-ats-why-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #0d2330;
}

.dawn-ats-why-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5b7180;
}

.dawn-ats-why-card-wide {
  grid-column: span 1;
}

.dawn-ats-why-highlight {
  position: relative;
  padding: 34px 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #07617e 0%, #0b748c 100%);
  box-shadow: 0 22px 55px rgba(7, 97, 126, 0.22);
  overflow: hidden;
}

.dawn-ats-why-highlight::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -38px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dawn-ats-why-highlight-title {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

.dawn-ats-why-highlight-text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.dawn-ats-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.dawn-ats-reveal.dawn-ats-active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dawnAtsWhyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}

@keyframes dawnAtsWhyPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(251, 110, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0); }
}

@media (max-width: 991px) {
  .dawn-ats-why-choose-section {
    padding: 90px 20px;
  }

  .dawn-ats-why-choose-title {
    font-size: 38px;
  }

  .dawn-ats-why-choose-grid {
    grid-template-columns: 1fr;
  }

  .dawn-ats-why-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .dawn-ats-why-choose-section {
    padding: 75px 16px;
  }

  .dawn-ats-why-choose-header {
    margin-bottom: 36px;
  }

  .dawn-ats-why-choose-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .dawn-ats-why-choose-badge {
    font-size: 13px;
    padding: 9px 14px;
  }

  .dawn-ats-why-choose-intro {
    font-size: 16px;
    line-height: 1.75;
  }

  .dawn-ats-why-card {
    padding: 24px 20px 22px;
    border-radius: 18px;
  }

  .dawn-ats-why-card-number {
    min-width: 42px;
    height: 42px;
    font-size: 14px;
    border-radius: 12px;
  }

  .dawn-ats-why-card h3 {
    font-size: 21px;
  }

  .dawn-ats-why-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .dawn-ats-why-highlight {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .dawn-ats-why-highlight-title {
    font-size: 24px;
  }

  .dawn-ats-why-highlight-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dawn-ats-reveal,
  .dawn-ats-reveal.dawn-ats-active,
  .dawn-ats-why-choose-section::before,
  .dawn-ats-why-choose-section::after,
  .dawn-ats-why-choose-badge::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.dawn-ats-faqs-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 14% 10%, rgba(7, 97, 126, 0.08), transparent 28%),
    radial-gradient(circle at 88% 90%, rgba(251, 110, 41, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.dawn-ats-faqs-container {
  max-width: 1040px;
  margin: 0 auto;
}

.dawn-ats-faqs-header {
  text-align: center;
  margin-bottom: 46px;
}

.dawn-ats-faqs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(7, 97, 126, 0.08);
  border: 1px solid rgba(7, 97, 126, 0.12);
  color: #07617e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.dawn-ats-faqs-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fb6e29;
  box-shadow: 0 0 0 7px rgba(251, 110, 41, 0.12);
}

.dawn-ats-faqs-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 800;
  color: #0d2330;
  letter-spacing: -0.02em;
}

.dawn-ats-faqs-title span {
  color: #fb6e29;
  position: relative;
}

.dawn-ats-faqs-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  border-radius: 20px;
  background: rgba(251, 110, 41, 0.18);
  z-index: -1;
}

.dawn-ats-faqs-list {
  display: grid;
  gap: 18px;
}

.dawn-ats-faqs-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 97, 126, 0.10);
  box-shadow: 0 16px 40px rgba(7, 97, 126, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dawn-ats-faqs-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(7, 97, 126, 0.12);
  border-color: rgba(251, 110, 41, 0.22);
}

.dawn-ats-faqs-item.active {
  border-color: rgba(251, 110, 41, 0.28);
  box-shadow: 0 22px 55px rgba(7, 97, 126, 0.12);
}

.dawn-ats-faqs-question {
  width: 100%;
  padding: 24px 26px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.dawn-ats-faqs-question-text {
  display: block;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 700;
  color: #0d2330;
  transition: color 0.3s ease;
}

.dawn-ats-faqs-item.active .dawn-ats-faqs-question-text {
  color: #07617e;
}

.dawn-ats-faqs-icon {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(251, 110, 41, 0.10);
  border: 1px solid rgba(251, 110, 41, 0.18);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.dawn-ats-faqs-icon::before,
.dawn-ats-faqs-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fb6e29;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.dawn-ats-faqs-icon::before {
  width: 16px;
  height: 2.5px;
}

.dawn-ats-faqs-icon::after {
  width: 2.5px;
  height: 16px;
}

.dawn-ats-faqs-item.active .dawn-ats-faqs-icon {
  background: linear-gradient(135deg, #07617e 0%, #0b748c 100%);
  border-color: rgba(7, 97, 126, 0.24);
  transform: rotate(180deg);
}

.dawn-ats-faqs-item.active .dawn-ats-faqs-icon::before,
.dawn-ats-faqs-item.active .dawn-ats-faqs-icon::after {
  background: #ffffff;
}

.dawn-ats-faqs-item.active .dawn-ats-faqs-icon::after {
  opacity: 0;
}

.dawn-ats-faqs-answer {
  display: none;
  padding: 0 26px 24px;
}

.dawn-ats-faqs-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #5b7180;
  max-width: 90%;
}

@media (max-width: 991px) {
  .dawn-ats-faqs-section {
    padding: 90px 20px;
  }

  .dawn-ats-faqs-title {
    font-size: 38px;
  }

  .dawn-ats-faqs-question-text {
    font-size: 19px;
  }

  .dawn-ats-faqs-answer p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .dawn-ats-faqs-section {
    padding: 75px 16px;
  }

  .dawn-ats-faqs-header {
    margin-bottom: 34px;
  }

  .dawn-ats-faqs-title {
    font-size: 30px;
    line-height: 1.28;
  }

  .dawn-ats-faqs-badge {
    font-size: 13px;
    padding: 9px 14px;
  }

  .dawn-ats-faqs-item {
    border-radius: 18px;
  }

  .dawn-ats-faqs-question {
    padding: 18px 18px;
    gap: 14px;
  }

  .dawn-ats-faqs-question-text {
    font-size: 17px;
    line-height: 1.5;
  }

  .dawn-ats-faqs-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .dawn-ats-faqs-answer {
    padding: 0 18px 18px;
  }

  .dawn-ats-faqs-answer p {
    font-size: 15px;
    line-height: 1.75;
  }
}
.dawn-ats-accessibility-insights-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 14% 10%, rgba(7, 97, 126, 0.08), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(251, 110, 41, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.dawn-ats-accessibility-insights-section::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(7, 97, 126, 0.08);
  filter: blur(38px);
  animation: dawnAtsInsightsFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.dawn-ats-accessibility-insights-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(251, 110, 41, 0.10);
  filter: blur(42px);
  animation: dawnAtsInsightsFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.dawn-ats-accessibility-insights-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dawn-ats-accessibility-insights-header {
  max-width: 860px;
  margin: 0 auto 55px;
  text-align: center;
}

.dawn-ats-accessibility-insights-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(7, 97, 126, 0.08);
  border: 1px solid rgba(7, 97, 126, 0.14);
  color: #07617e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.dawn-ats-accessibility-insights-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fb6e29;
  box-shadow: 0 0 0 7px rgba(251, 110, 41, 0.12);
  animation: dawnAtsInsightsPulse 2s infinite;
}

.dawn-ats-accessibility-insights-title {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d2330;
  letter-spacing: -0.02em;
}

.dawn-ats-accessibility-insights-title span {
  color: #07617e;
  position: relative;
}

.dawn-ats-accessibility-insights-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  border-radius: 20px;
  background: rgba(251, 110, 41, 0.20);
  z-index: -1;
}

.dawn-ats-accessibility-insights-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5b7180;
}

.dawn-ats-accessibility-insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.dawn-ats-accessibility-insights-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 97, 126, 0.10);
  box-shadow: 0 18px 45px rgba(7, 97, 126, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dawn-ats-accessibility-insights-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 72px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, #07617e, #fb6e29);
}

.dawn-ats-accessibility-insights-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(7, 97, 126, 0.14);
  border-color: rgba(251, 110, 41, 0.24);
}

.dawn-ats-accessibility-insights-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.dawn-ats-accessibility-insights-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(7, 97, 126, 0.10), rgba(251, 110, 41, 0.12));
  font-size: 24px;
}

.dawn-ats-accessibility-insights-card-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #0d2330;
}

.dawn-ats-accessibility-insights-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.dawn-ats-accessibility-insights-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.8;
  color: #5b7180;
}

.dawn-ats-accessibility-insights-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb6e29, #ff8b52);
  box-shadow: 0 0 0 6px rgba(251, 110, 41, 0.10);
}

.dawn-ats-accessibility-insights-list strong {
  color: #07617e;
  font-weight: 800;
}

.dawn-ats-accessibility-insights-list span {
  display: inline;
  color: #6d818c;
}

.dawn-ats-accessibility-insights-highlight {
  position: relative;
  padding: 36px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #07617e 0%, #0b748c 100%);
  box-shadow: 0 22px 55px rgba(7, 97, 126, 0.22);
  overflow: hidden;
}

.dawn-ats-accessibility-insights-highlight::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dawn-ats-accessibility-insights-highlight h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

.dawn-ats-accessibility-insights-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.dawn-ats-accessibility-insights-point {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

.dawn-ats-accessibility-insights-point::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dawn-ats-accessibility-insights-footer {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.dawn-ats-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.dawn-ats-reveal.dawn-ats-active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dawnAtsInsightsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}

@keyframes dawnAtsInsightsPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(251, 110, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0); }
}

@media (max-width: 991px) {
  .dawn-ats-accessibility-insights-section {
    padding: 90px 20px;
  }

  .dawn-ats-accessibility-insights-title {
    font-size: 38px;
  }

  .dawn-ats-accessibility-insights-grid,
  .dawn-ats-accessibility-insights-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dawn-ats-accessibility-insights-section {
    padding: 75px 16px;
  }

  .dawn-ats-accessibility-insights-header {
    margin-bottom: 36px;
  }

  .dawn-ats-accessibility-insights-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .dawn-ats-accessibility-insights-badge {
    font-size: 13px;
    padding: 9px 14px;
  }

  .dawn-ats-accessibility-insights-subtitle {
    font-size: 16px;
    line-height: 1.75;
  }

  .dawn-ats-accessibility-insights-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .dawn-ats-accessibility-insights-card-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .dawn-ats-accessibility-insights-icon {
    width: 46px;
    height: 46px;
    font-size: 21px;
    border-radius: 14px;
  }

  .dawn-ats-accessibility-insights-card-head h3 {
    font-size: 22px;
  }

  .dawn-ats-accessibility-insights-list li {
    font-size: 16px;
    line-height: 1.75;
  }

  .dawn-ats-accessibility-insights-highlight {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .dawn-ats-accessibility-insights-highlight h3 {
    font-size: 24px;
  }

  .dawn-ats-accessibility-insights-point {
    padding: 14px 16px 14px 44px;
    font-size: 15px;
  }

  .dawn-ats-accessibility-insights-footer {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dawn-ats-reveal,
  .dawn-ats-reveal.dawn-ats-active,
  .dawn-ats-accessibility-insights-section::before,
  .dawn-ats-accessibility-insights-section::after,
  .dawn-ats-accessibility-insights-badge::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.dawn-ats-laws-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 14% 10%, rgba(7, 97, 126, 0.08), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(251, 110, 41, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.dawn-ats-laws-section::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(7, 97, 126, 0.08);
  filter: blur(38px);
  animation: dawnAtsLawsFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.dawn-ats-laws-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(251, 110, 41, 0.10);
  filter: blur(42px);
  animation: dawnAtsLawsFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.dawn-ats-laws-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dawn-ats-laws-header {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.dawn-ats-laws-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(7, 97, 126, 0.08);
  border: 1px solid rgba(7, 97, 126, 0.14);
  color: #07617e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.dawn-ats-laws-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fb6e29;
  box-shadow: 0 0 0 7px rgba(251, 110, 41, 0.12);
  animation: dawnAtsLawsPulse 2s infinite;
}

.dawn-ats-laws-title {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d2330;
  letter-spacing: -0.02em;
}

.dawn-ats-laws-title span {
  color: #07617e;
  position: relative;
}

.dawn-ats-laws-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  border-radius: 20px;
  background: rgba(251, 110, 41, 0.20);
  z-index: -1;
}

.dawn-ats-laws-subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #5b7180;
}

.dawn-ats-laws-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-bottom: 24px;
}

.dawn-ats-laws-side-stack {
  display: grid;
  gap: 24px;
}

.dawn-ats-laws-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.dawn-ats-laws-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 97, 126, 0.10);
  box-shadow: 0 18px 45px rgba(7, 97, 126, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dawn-ats-laws-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 72px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, #07617e, #fb6e29);
}

.dawn-ats-laws-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(7, 97, 126, 0.14);
  border-color: rgba(251, 110, 41, 0.24);
}

.dawn-ats-laws-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.dawn-ats-laws-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(7, 97, 126, 0.10), rgba(251, 110, 41, 0.12));
  font-size: 24px;
  flex-shrink: 0;
}

.dawn-ats-laws-card-head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #0d2330;
}

.dawn-ats-laws-table-wrap {
  overflow-x: auto;
}

.dawn-ats-laws-table {
  min-width: 100%;
  display: grid;
  gap: 10px;
}

.dawn-ats-laws-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.6fr;
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(7, 97, 126, 0.03);
  border: 1px solid rgba(7, 97, 126, 0.06);
}

.dawn-ats-laws-row-head {
  background: linear-gradient(135deg, rgba(7, 97, 126, 0.10), rgba(251, 110, 41, 0.10));
  border-color: rgba(7, 97, 126, 0.10);
  font-weight: 700;
  color: #0d2330;
}

.dawn-ats-laws-row:not(.dawn-ats-laws-row-head) div {
  font-size: 15px;
  line-height: 1.65;
  color: #5b7180;
}

.dawn-ats-laws-row:not(.dawn-ats-laws-row-head) div:first-child {
  color: #0d2330;
  font-weight: 700;
}

.dawn-ats-laws-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.dawn-ats-laws-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: #5b7180;
}

.dawn-ats-laws-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb6e29, #ff8b52);
  box-shadow: 0 0 0 6px rgba(251, 110, 41, 0.10);
}

.dawn-ats-laws-list strong {
  color: #07617e;
  font-weight: 800;
}

.dawn-ats-laws-note {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: #6d818c;
}

.dawn-ats-laws-update-block + .dawn-ats-laws-update-block {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(7, 97, 126, 0.08);
}

.dawn-ats-laws-update-block h4 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
  color: #0d2330;
}

.dawn-ats-laws-update-block p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: #5b7180;
}

.dawn-ats-laws-applies-title {
  margin: 14px 0 12px !important;
  font-weight: 700;
  color: #0d2330 !important;
}

.dawn-ats-laws-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dawn-ats-laws-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 97, 126, 0.08);
  border: 1px solid rgba(7, 97, 126, 0.10);
  color: #07617e;
  font-size: 14px;
  font-weight: 600;
}

.dawn-ats-laws-timeline {
  display: grid;
  gap: 16px;
}

.dawn-ats-laws-timeline-item {
  position: relative;
  padding: 16px 18px 16px 22px;
  border-radius: 18px;
  background: rgba(7, 97, 126, 0.04);
  border: 1px solid rgba(7, 97, 126, 0.06);
}

.dawn-ats-laws-timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 10px;
  background: linear-gradient(180deg, #07617e, #fb6e29);
}

.dawn-ats-laws-timeline-year {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
  color: #07617e;
}

.dawn-ats-laws-timeline-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5b7180;
}

.dawn-ats-laws-highlight {
  position: relative;
  padding: 34px 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #07617e 0%, #0b748c 100%);
  box-shadow: 0 22px 55px rgba(7, 97, 126, 0.22);
  overflow: hidden;
}

.dawn-ats-laws-highlight::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -38px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dawn-ats-laws-highlight h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

.dawn-ats-laws-highlight p {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.dawn-ats-laws-highlight-strong {
  margin-bottom: 0 !important;
  font-weight: 700;
  color: #ffffff !important;
}

.dawn-ats-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.dawn-ats-reveal.dawn-ats-active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dawnAtsLawsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}

@keyframes dawnAtsLawsPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(251, 110, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 110, 41, 0); }
}

@media (max-width: 1100px) {
  .dawn-ats-laws-main-grid,
  .dawn-ats-laws-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .dawn-ats-laws-section {
    padding: 90px 20px;
  }

  .dawn-ats-laws-title {
    font-size: 38px;
  }

  .dawn-ats-laws-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dawn-ats-laws-row-head {
    display: none;
  }

  .dawn-ats-laws-row:not(.dawn-ats-laws-row-head) {
    padding: 16px 16px;
  }

  .dawn-ats-laws-row:not(.dawn-ats-laws-row-head) div:nth-child(1)::before {
    content: "Country: ";
    font-weight: 700;
    color: #07617e;
  }

  .dawn-ats-laws-row:not(.dawn-ats-laws-row-head) div:nth-child(2)::before {
    content: "Law: ";
    font-weight: 700;
    color: #07617e;
  }

  .dawn-ats-laws-row:not(.dawn-ats-laws-row-head) div:nth-child(3)::before {
    content: "Impact: ";
    font-weight: 700;
    color: #07617e;
  }
}

@media (max-width: 767px) {
  .dawn-ats-laws-section {
    padding: 75px 16px;
  }

  .dawn-ats-laws-header {
    margin-bottom: 36px;
  }

  .dawn-ats-laws-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .dawn-ats-laws-badge {
    font-size: 13px;
    padding: 9px 14px;
  }

  .dawn-ats-laws-subtitle {
    font-size: 16px;
    line-height: 1.75;
  }

  .dawn-ats-laws-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .dawn-ats-laws-card-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .dawn-ats-laws-icon {
    width: 46px;
    height: 46px;
    font-size: 21px;
    border-radius: 14px;
  }

  .dawn-ats-laws-card-head h3 {
    font-size: 22px;
  }

  .dawn-ats-laws-list li,
  .dawn-ats-laws-note,
  .dawn-ats-laws-update-block p,
  .dawn-ats-laws-timeline-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  .dawn-ats-laws-highlight {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .dawn-ats-laws-highlight h3 {
    font-size: 24px;
  }

  .dawn-ats-laws-highlight p {
    font-size: 16px;
    line-height: 1.7;
  }

  .dawn-ats-laws-tags span {
    font-size: 13px;
    padding: 9px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dawn-ats-reveal,
  .dawn-ats-reveal.dawn-ats-active,
  .dawn-ats-laws-section::before,
  .dawn-ats-laws-section::after,
  .dawn-ats-laws-badge::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.dawn-ats-industries-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.dawn-ats-industries-container {
  max-width: 1150px;
  margin: auto;
}

/* HEADER */
.dawn-ats-industries-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 50px;
}

.dawn-ats-industries-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #07617e;
  margin-bottom: 10px;
}

.dawn-ats-industries-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d2330;
}

.dawn-ats-industries-title span {
  color: #fb6e29;
}

.dawn-ats-industries-subtitle {
  margin-top: 12px;
  font-size: 16px;
  color: #5b7180;
}

/* GRID */
.dawn-ats-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.dawn-ats-industry-card {
  padding: 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(7,97,126,0.08);
  box-shadow: 0 10px 30px rgba(7,97,126,0.06);
  transition: 0.3s ease;
}

.dawn-ats-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7,97,126,0.12);
}

.dawn-ats-industry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d2330;
}

.dawn-ats-industry-card p {
  font-size: 14px;
  color: #5b7180;
  line-height: 1.6;
}

/* HIGHLIGHT */
.dawn-ats-industries-highlight {
  margin-top: 40px;
  padding: 30px;
  border-left: 4px solid #fb6e29;
  background: rgba(7,97,126,0.03);
}

.dawn-ats-industries-highlight h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0d2330;
}

.dawn-ats-industries-highlight p {
  font-size: 15px;
  color: #5b7180;
}

/* ANIMATION */
.dawn-ats-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.dawn-ats-reveal.dawn-ats-active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .dawn-ats-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dawn-ats-industries-grid {
    grid-template-columns: 1fr;
  }

  .dawn-ats-industries-title {
    font-size: 28px;
  }
}
