/* Fonts */

@import url('rowan.css');

/* ==========================================
       CUSTOM CSS - eTaxTranscript Taxpayers Page
       ========================================== */
       :root {
        --font-header: 'Rowan-Regular';
        --font-badge: 'Rowan-LightItalic';
        --font-body: 'Hanken Grotesk', sans-serif;
        --font-secondary: 'Rowan-Italic';
        --color-primary: #007483;
        --color-primary-hover: #004F59;
        --color-dark: #0F1822;
        --color-light-bg: #F4F9FF;
        --color-accent: #E6F1F2;
        --color-border: #E7E7E7;
        --color-text-muted: #64748b;
        --color-footer-dark: #00292E;      
      --color-slate-600: #475569;
      --color-slate-500: #64748b;
      --color-slate-400: #94a3b8;
      --color-slate-300: #cbd5e1;
      --color-slate-200: #e2e8f0;
      --color-slate-100: #f1f5f9;
      --color-slate-50: #f8fafc;
      --color-slate-900: #0f172a;
    }
/* NO SHADOWS - Flat Design */

*, *::before, *::after {
      box-shadow: none !important;
      text-shadow: none !important;
    }

body {
      font-family: var(--font-body);
      color: var(--color-dark);
      overflow-x: hidden;
    }

h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-header);
      font-weight: 500;
    }
    p{
      margin: 0;
    }

/* Buttons */

.btn-primary-custom {
      background: var(--color-primary);
      color: white;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: 32px;
      border: none;
      transition: all 0.3s ease;
      text-align: center;
      text-decoration: none;
      height: fit-content;
    }

.btn-primary-custom:hover {
      background: var(--color-primary-hover);
      color: white;
      transform: scale(1.02);
    }
    .btn-rounded-custome{
      border: 2px solid var(--color-primary); 
      color: var(--color-primary); 
      background: transparent; 
      font-weight: 700; 
      padding: 12px 24px;
      border-radius: 32px;
      text-transform: uppercase;
      height: fit-content;
      text-decoration: none;
      transition: all 0.3s ease;
      text-align: center;
    }

    .btn-rounded-custome:hover {
      background: var(--color-primary-hover);
      color: white;
      transform: scale(1.02);
    }
    .btn-white-custom{
      border: 2px solid #FFF; 
      color:#0f1822 ; 
      background: #FFF; 
      font-weight: 700; 
      padding: 12px 24px;
      border-radius: 32px;
      text-transform: uppercase;
      height: fit-content;
      text-decoration: none;
      transition: all 0.3s ease;
      text-align: center;
    }
    .btn-white-custom:hover {
      background: var(--color-primary-hover);
      color: white;
      transform: scale(1.02);
    }
/* Navigation */

.navbar-custom {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: white;
    }

.navbar-top {
      border-bottom: 1px solid var(--color-border);
      padding: 16px 0px;
      background: white;
    }

.navbar-logo img {
      height: 40px;
    }

.btn-sign-in {
      height: 42px;
      padding: 0 24px;
      border-radius: 21px;
      border: 1px solid var(--color-border);
      background: white;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background 0.3s ease;
    }

.btn-sign-in:hover {
      background: #f8fafc;
      color: var(--color-dark);
    }

.btn-get-started-nav {
      height: 42px;
      padding: 0 24px;
      border-radius: 21px;
      background: var(--color-primary);
      color: white;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      border: none;
    }

.btn-get-started-nav:hover {
      background: var(--color-primary-hover);
      color: white;
    }

.navbar-secondary {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--color-border);
      transition: all 0.3s ease;
    }

.navbar-secondary.hidden {
      height: 0;
      opacity: 0;
      overflow: hidden;
    }

.nav-link-custom {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-slate-600);
      padding: 8px 16px;
      text-decoration: none;
      border-radius: 6px;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

.nav-link-custom:hover,
    .nav-link-custom.active {
      color: var(--color-primary);
    }

.dropdown-custom {
      position: relative;
    }

.dropdown-menu-custom {
      position: absolute;
      top: 100%;
      right: 0;
      width: 420px;
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 0 0 16px 16px;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }

.dropdown-custom:hover .dropdown-menu-custom {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

.dropdown-item-custom {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

.dropdown-item-custom:last-child {
      margin-bottom: 0;
    }

.dropdown-item-custom:hover {
      background: #f8fafc;
    }

.dropdown-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #f8fafc;
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

.dropdown-item-custom:hover .dropdown-icon {
  background: rgb(0 116 131 / 5%);
  border-color: rgb(0 116 131);
    }

.dropdown-icon svg {
      width: 20px;
      height: 20px;
      color: var(--color-slate-400);
    }

.dropdown-item-custom:hover .dropdown-icon svg {
      color: var(--color-primary);
    }

.dropdown-content h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 4px;
      font-family: var(--font-body);
    }

.dropdown-item-custom:hover h3 {
      color: var(--color-primary);
    }

.dropdown-content p {
      font-size: 13px;
      color: var(--color-slate-500);
      margin: 0;
    }

/* Footer */

.lottie{
  height: min-content;
}

/*-----------Footer---------------*/

footer {
  background: #00292E;
  padding: 40px 0px 40px 0px;
}

.footer-top {
  width: 100%;
  margin-bottom: 100px;
  padding: 200px 0;
  position: relative;
}

.footer-cont {
  display: block;
  padding-top: 100px;
}

.footer-cont ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap; margin: 0; padding: 0;
}

.footer-cont ul li a.footer-redirect {
  width: 300px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 50px;
}

.footer-cont ul li a img {
  width: 80%;
  height: auto;
}

.footer-cont ul li .footer-main-links .footer-links ul {
  display: block;
}

.footer-cont ul li h3 {
  color: #fff;
  font-size:30px;
  line-height:1.2em;
  
  margin-bottom:20px;
}

.footer-cont ul li address {
  color: #fff;
  margin-bottom: 20px; font-size: 14px; line-height: 1.2em;
  display: flex; align-items: center;
}

.footer-main-links {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-around;
}

.footer-cont ul li .footer-main-links .footer-links ul li h2 {
  color: #fff;
  font-size: 23px;
  line-height: 1.2em;
  font-weight: 500;
  /* margin-bottom: 20px;  */
  font-family:var(--font-secondary);
  letter-spacing: 1px;
  
}

.footer-cont ul li .footer-main-links .footer-links ul li a {
  color: #C2CEC6 !important;
  display: inline-block;
  font-size: 16px;
  line-height: 1.2em;
  position: relative;
  cursor: pointer;width: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.footer-cont ul li .footer-main-links .footer-links ul li {
  margin-bottom: 10px; list-style-type: none;
}

.footer-cont ul li address a {
  color: #fff;
  margin: 0; text-decoration: underline;
}

.footer-cont ul li span {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 40px 0;
}

.footer-cont ul li .footer-main-links .footer-links ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  border-bottom: 2px solid #00292E;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  
}

.footer-cont ul li .footer-main-links .footer-links ul li a:hover::after {
  left: 0;
  width: 100%;
}

.irs-dates{margin-top: 30px !important;}
/* .footer-cont ul li .footer-main-links .footer-links ul.resource {
  margin-top: 45px;
} */


.footer-cont ul li span p a img {
  width: auto;
}

.footer-cont ul li span p a {
  width: auto;
  background: #0047BB;
  border-radius: 30px;
  padding: 10px;
  margin: 0;
}

.footer-cont ul li span p {
  margin-right: 20px;
}

.footer-cont ul li span p:nth-last-child(1) {
  margin-right: 0;
}

.footer-terms {
  margin-top: 30px;
  display: flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-terms-lft ul {
  display: flex;
  align-items: center;
  border-bottom: #A8BAAF 1px solid;
  padding-bottom: 5px;
  width:85%;
  padding: 0;
  margin: 0;
}

.footer-terms-lft ul li {
  margin: 0 5px 0 0;
  list-style-type: none;
}

.footer-terms-lft ul li a {
  color: #A8BAAF !important;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
}

.footer-terms-lft p {
  color: #A8BAAF;
  font-size: 14px;
  margin: 7px 0 0;
}

.footer-terms-lft ul li a:hover {
  color: #fff !important;
}

.footer-terms-lft ul li span {
  color: #A8BAAF;
}

.footer-terms-rgt ul {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end; padding: 0; margin: 0;
}

.footer-terms-rgt ul li {
  margin: 0 20px 0 0; list-style-type: none;
}

.footer-terms-rgt ul li a {
  cursor: auto;
  display: inline-block;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 0, 0.10);
  padding: 10px;
  border-radius: 10px;
}

.footer-terms-rgt ul li:nth-last-child(1) {
  margin: 0;
}

/* .footer-terms-rgt ul li a img {
  width: 76%;
  height: auto;
  margin: 0px auto;
  display: block;
} */


.social-icons { display: flex; align-items: center; margin: 30px 0;}


.social-icons-block:hover .main-facebook, .social-icons-block:hover .main-x, .social-icons-block:hover .main-linkedin, .social-icons-block:hover .show-youtube {
  display: none;
}

.social-icons-block:hover .hover-facebook, .social-icons-block:hover .hover-x, .social-icons-block:hover .hover-linkedin, .social-icons-block:hover .hover-youtube {
  display: block;
  background: rgba(255, 255, 255, 0.10);
}


.social-icons-block .hover-facebook, .social-icons-block .hover-x, .social-icons-block .hover-linkedin, .social-icons-block .hover-youtube {
  display: none;
}

.compliance-products {
  background: rgba(0, 0, 0, 0.32);
  padding: 20px 0;
  margin-top: 60px;
}

.compliance-products-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.compliance-products-in h3 {
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.compliance-products-in ul {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0; padding: 0;
}

.compliance-products-in ul li {
  margin-right: 10px;
  list-style-type: none;
}

.compliance-products-in ul li a {
  display: inline-block;
  cursor: pointer;
}

.compliance-products-in ul li:nth-last-child(1) {
  margin-right: 0;
}

.footer-cont ul li address small { line-height: 1.2em; width: 100%; max-width: 35px;}

/* .footer-cont ul li address.time-cls { display: block;} */

/*--------------------------*/

@media (max-width:1700px) {

  .footer-terms-lft ul {
      width: 100%;
  }

}

@media (max-width:1500px) {

  .footer-terms-lft ul {
      width: 100%;
  }

}

@media (max-width:1400px) {

  .compliance-products-in h3 {display: block; margin-bottom: 20px;}
  .compliance-products-in { justify-content: center;}
  .footer-terms-lft { width: 100%; margin-bottom: 30px;}
  .footer-terms-lft ul {width: 60%;}
  .footer-terms-rgt ul { justify-content: left;}

}



@media (max-width:1300px) {
  
  .compliance-products-in h3 { margin-bottom:20px;}

  .footer-terms-lft {
      padding: 0;
  }

  .container {
      max-width: 95%;        
  }

}

@media (max-width:1200px) {
  
  .footer-terms-rgt {width: 100%;}
  .footer-terms-lft ul {
      width: 90%;
  }
  .footer-terms-lft ul li { margin: 0 1px 0 0;}
  .compliance-products-in ul {
      justify-content: center;
      flex-wrap: wrap;
  }

  .compliance-products-in ul li {
      margin-bottom: 20px;
  }

  .footer-terms-lft ul li a {
      font-size: 16px;
  }

  .compliance-products-in  { justify-content:center;}
  .compliance-products-in h3 { margin-bottom: 25px;}
  footer .container-fluid { padding: 0 3%;}
}

@media(max-width:992px) {
  footer .container-fluid {padding: 0 2%;}
  .footer-cont ul li address br { display: none;}
  .footer-terms-lft ul {
      width: 100%;
  }
  .footer-cont ul li a.footer-redirect {width: 220px;}

  .footer-terms-rgt {
      padding: 0;
  }

  .footer-terms {
      flex-direction: column-reverse;
  }

  .footer-cont ul li {
      padding: 0;
  }

  .footer-cont ul li a {
      width: 240px;
  }

  .footer-cont ul li address br {
      display: none;
  }

  .footer-cont ul li address {
      font-size: 15px;
      line-height: 1.2em;
  }

  .footer-terms-lft {
      max-width: 100%;
  }

  .footer-terms-rgt {
      margin-bottom: 30px;
  }

  .footer-terms-rgt ul {
      justify-content: flex-start;
  }
  .footer-cont ul li .footer-main-links .footer-links ul li a { font-size:15px;}
  .social-icons-block {
      margin-right: 10px;
  }
  
}

@media(max-width:768px) {
  footer {
      padding: 70px 0 0;
  }

  .compliance-products {
      margin-top: 20px;
  }

  .footer-cont ul li address a {
      width: auto;
  }


  .footer-main-links {
      justify-content: space-between;
  }

  .footer-cont ul li {
      margin-bottom: 30px;
  }

  .footer-terms {
      margin-top: 40px;
  }

  .footer-terms-rgt ul li a img {width:100%; height: auto;}
}

@media(max-width:576px) {
 
  .compliance-products {
      margin: 20px 0;
  }
  .footer-terms-lft {
      max-width: 100%;
  }

  .footer-terms-rgt ul li {
      margin: 0 5px 0 0;
  }

  .footer-terms {
      margin-top: 0;
  }

  footer {
      padding: 30px 0;
  }

  .footer-cont {
      padding-top: 50px;
  }

}

@media(max-width:480px) {

  .compliance-products-in h3 {
      font-size: 22px;
  }

  .footer-main-links {
      flex-wrap: wrap;
  }

  .footer-links {
      width: 50%;
  }

  .footer-cont ul li {
      margin-bottom: 10px;
  }

  .footer-terms-rgt ul {
      justify-content: center;
      flex-wrap: wrap;
      align-items: flex-start;
  }

  .footer-terms-rgt ul li a {
      margin: 0 5px 20px 0;
      padding: 8px 10px;
      border-radius: 5px;
  }

  .footer-terms-lft ul li {
      margin: 0;
  }

  .footer-terms-lft ul li a {
      font-size: 14px;
  }   
  .footer-cont ul li a {
      width:auto;
  }
  .footer-cont ul li a.btn-primary{ margin-bottom: 20px;}
  footer .container-fluid {
      padding: 0px 4%;
  }
}


@media (resolution:1.25dppx) {
  .compliance-products-in h3 { font-size: 22px !important;flex-wrap: wrap;}
  .compliance-products-in {flex-wrap:inherit !important;}
  
}

.social-icons-block a {
  width: auto;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 30px;
  padding: 10px;
  display: inline-block;
  text-align: center;
}
.social-icons-block { margin-right: 15px;}

.footer-cont ul li address a:hover{text-decoration:none;}
.footer-cont ul li {list-style-type: none;}
@media(width:1024px){
  .footer-redirect img{
      width: 150px !important;
  }
  .footer-cont ul li h3 {font-size: 25px;}
  .footer-cont ul li address {font-size: 14px;}
  .footer-cont ul li .footer-main-links .footer-links ul li h2 {font-size: 20px;}
  .footer-cont ul li .footer-main-links .footer-links ul li a {font-size: 14px;}
  .compliance-products-in h3 {font-size: 20px;}
}


/* Animations */

@keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

@keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

@keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

.fade-in {
      animation: fadeIn 0.8s ease-out;
    }

.fade-in-scale {
      animation: fadeInScale 1s ease-out;
    }

.slide-in-left {
      animation: slideInLeft 0.6s ease-out;
    }

/* Arrow animation */

.btn-primary-custom svg,
    .btn-get-started-nav svg {
      transition: transform 0.3s ease;
    }

.btn-primary-custom:hover svg,
    .btn-get-started-nav:hover svg {
      transform: translateX(3px);
    }

/* Mobile Menu */

.mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: white;
      z-index: 999;
      overflow-y: auto;
      padding: 32px;
    }

.mobile-menu.show {
      display: block;
      animation: slideInRight 0.3s ease-out;
    }

@keyframes slideInRight {
      from {
        transform: translateX(100%);
      }
      to {
        transform: translateX(0);
      }
    }

.mobile-menu h5 {
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--color-slate-400);
      margin-bottom: 24px;
      font-family: var(--font-body);
    }

.mobile-menu-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px;
      margin-bottom: 16px;
      text-decoration: none;
      color: var(--color-dark);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

.mobile-menu-item:hover {
      background: #f8fafc;
      color: var(--color-dark);
    }

.mobile-menu-item span {
      font-size: 16px;
      font-weight: 700;
    }

/* Responsive */

@media (max-width: 991px) {
      .navbar-secondary {
        display: none;
      }
    }

@media (min-width: 992px) {
      .navbar-toggler {
        display: none;
      }
    }

/* Contact Us */
/* Hero Header */
.hero-contact {
  background: linear-gradient(135deg, #007483 0%, #00464F 50%, #00292E 100%);
  padding: 160px 24px 128px;
  position: relative;
  overflow: hidden;
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-contact::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 384px;
  height: 384px;
  background: rgba(157, 108, 219, 0.3);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-icon-1 {
  position: absolute;
  top: 48px;
  right: 15%;
  width: 96px;
  height: 96px;
  color: rgba(255, 255, 255, 0.1);
  transform: rotate(12deg);
  transition: transform 1s ease-in-out;
}

.hero-icon-1:hover {
  transform: rotate(12deg) scale(1.1);
}

.hero-icon-2 {
  position: absolute;
  bottom: 32px;
  left: 10%;
  width: 128px;
  height: 128px;
  color: rgba(255, 255, 255, 0.05);
  transform: rotate(-12deg);
}

.hero-icon-3 {
  position: absolute;
  top: 80px;
  left: 5%;
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.1);
  transform: rotate(6deg);
}

.hero-content {
  margin-bottom: 30px;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: var(--font-header);
}

.hero-content p {
  max-width: 672px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--font-body);
}

/* Main Content */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Section 1: What Can We Help With? */
.help-section h2 {
  font-size: 36px;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 36px;
  font-family: var(--font-header);
  font-weight: 400;
}

.help-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.help-card h3 {
  font-size: 22px;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}

.help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}

.help-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--color-slate-600);
  font-size: 16px;
  font-family: var(--font-body);
}

.help-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-help {
  width: 100%;
  padding: 12px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-help.secondary {
  background: #f1f5f9;
  color: var(--color-dark);
}

.btn-help.secondary:hover {
  background: #e2e8f0;
}

.btn-help.primary {
  background: var(--color-primary);
  color: white;
}

.btn-help.primary:hover {
  background: var(--color-primary-hover);
}

/* Section 2: Send Us A Message */
.message-section {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 96px;
}

.message-left {
  background: #F8FAFC;
  padding: 48px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message-left h2 {
  font-size: 36px;
  color: var(--color-dark);
  margin-bottom: 12px;
  font-family: var(--font-header);
  font-weight: 400;
}

.message-left > p {
  font-size: 18px;
  color: var(--color-slate-600);
  margin-bottom: 32px;
  font-family: var(--font-body);
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--color-slate-700);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 116, 131, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-item .label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.contact-item .value {
  font-size: 16px;
  font-family: var(--font-body);
}

/* Form Section */
.message-right {
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  
  font-family: var(--font-body);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary) !important;
}

.form-control::placeholder {
  color: #94a3b8;
}

textarea.form-control {
  resize: none;
}

/* Radio Options */
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-slate-700);
}

.radio-option input[type="radio"]:checked + .radio-label {
  border-color: var(--color-primary);
  background: rgba(0, 116, 131, 0.05);
}

.radio-option input[type="radio"]:not(:checked) + .radio-label:hover {
  border-color: var(--color-primary);
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-label .radio-custom {
  border-color: var(--color-primary);
}

.radio-option input[type="radio"]:checked + .radio-label .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 32px;
  background: var(--color-primary);
  color: white;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: var(--color-primary-hover);
}

.btn-submit:active {
  transform: scale(0.98);
}

/* Pring page */
.page-bg {
  background: radial-gradient(85.06% 44.97% at 100% 0%, rgba(0, 116, 131, 0.20) 0%, rgba(0, 116, 131, 0.00) 100%), 
              radial-gradient(85.06% 44.97% at 0% 0%, rgba(0, 116, 131, 0.20) 0%, rgba(0, 116, 131, 0.00) 100%), 
              #FFF;
  
  padding-top: 160px;
}
/* Header Section */
.pricing-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 36px;
}

.pricing-header h1 {
  font-size: 44px;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 12px;
  font-family: var(--font-header);
  font-weight: 400;
}

.pricing-header h1 span {
  color: var(--color-primary);
}

.pricing-header p {
  font-size: 16px;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-body);
}

/* Toggle Switch */
.billing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.billing-toggle {
  position: relative;
  display: inline-flex;
  padding: 6px;
  background: white;
  border-radius: 32px;
}

.billing-toggle-bg {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: calc(50% - 6px);
  background: var(--color-primary);
  border-radius: 32px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.billing-toggle.annual .billing-toggle-bg {
  left: calc(50% + 6px);
}

.billing-toggle.monthly .billing-toggle-bg {
  left: 6px;
}

.billing-btn {
  position: relative;
  z-index: 2;
  width: 144px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  background: transparent;
  border-radius: 32px;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.billing-btn.active {
  color: white;
}

.billing-btn:not(.active) {
  color: var(--color-slate-500);
}

.save-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 700;
  color: white;
}

.billing-btn.active .save-badge {
  background: rgba(255, 255, 255, 0.2);
}

.billing-btn:not(.active) .save-badge {
  background: var(--color-primary);
}

/* Pricing Cards */
.pricing-cards {
  margin-bottom: 96px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(0, 116, 131, 0.3);
}

.pricing-card.highlight {
  background: #E6F1F2;
  border-color: var(--color-primary);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0px 32px 0px 16px;
  font-family: var(--font-body);
}

.pricing-card h3 {
  font-size: 24px;
  color: var(--color-dark);
  margin-bottom: 4px;
  font-family: var(--font-header);
  font-weight: 400;
}

.pricing-card .description {
  font-size: 14px;
  color: var(--color-slate-500);
  margin: 0;
  height: 16px;
  font-family: var(--font-body);
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  margin-top: 1px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  font-family: var(--font-body);
}

.price-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-slate-500);
  margin-left: 8px;
  font-family: var(--font-body);
}

.annual-price {
  font-size: 14px;
  color: var(--color-primary);
  margin-top: 8px;
  font-weight: 500;
  font-family: var(--font-body);
}

.features-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 116, 131, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  font-size: 15px;
  color: var(--color-slate-600);
  line-height: 1.4;
  font-family: var(--font-body);
}

.pricing-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.pricing-btn:hover {
  background: var(--color-slate-50);
}

.pricing-btn.primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pricing-btn.primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.pricing-btn:active {
  transform: scale(0.98);
}

/* CAF Section */
.caf-section {
  border: 1px solid var(--color-border);
  border-radius: 32px;
  overflow: hidden;
}

.caf-left {
  background: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.addon-badge {
  display: inline-block;
  background: #F9F5FF;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 24px;
  text-transform: uppercase;
  
  margin-bottom: 12px;
  font-family: var(--font-body);
  width: fit-content;
}

.caf-left h2 {
  font-size: 36px;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 4px;
  font-family: var(--font-header);
  font-weight: 400;
}

.caf-left p {
  font-size: 16px;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 672px;
  font-family: var(--font-body);
}

.caf-left p .highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.btn-cta {
  background: var(--color-primary);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  width: fit-content;
}

.btn-cta:hover {
  background: var(--color-primary-hover);
}

.btn-cta:active {
  transform: scale(0.98);
}

.caf-right {
  background: #E6F1F2;
  padding: 48px;
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.caf-right .label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #434343;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.caf-right .price-large {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

@media (max-width: 991px) {
  .pricing-header h1 {
    font-size: 36px;
  }

  .caf-left h2 {
    font-size: 32px;
  }

  .caf-right {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 768px) {
  .page-bg {
    padding-top: 120px;
  }

  .billing-btn {
    width: 120px;
    font-size: 13px;
  }

  .caf-right .price-large {
    font-size: 48px;
  }
}

 /* Responsive */
 @media (max-width: 991px) {
  .hero-section h1 {
    font-size: 36px;
  }

  .what-is-section h2,
  .types-section h2,
  .how-to-section h2,
  .why-not-mail-section h2,
  .when-need-section h2,
  .faq-section h2 {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 36px;
  }

  .step-connector {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .page-bg {
    padding-top: 96px;
  }

  .hero-section {
    padding: 32px 0 0;
  }

  .cta-box {
    padding: 48px 24px;
  }
}

 /* Hero Section */
 .hero-section {
  padding: 64px 0 0;
  margin-bottom: 96px;
  position: relative;
}

.hero-section h1 {
  font-size: 44px;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 32px;
  font-family: var(--font-header);
  font-weight: 400;
}

.hero-section p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-slate-600);
  margin-bottom: 25px;
  font-family: var(--font-body);
  font-weight: 400;
}

.hero-section p.text-muted-custom {
  color: #45556c;
  margin-bottom: 40px;
}

/* Hero Visual Card */
.hero-visual-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  aspect-ratio: 4/3;
}

.hero-visual-card::before,
.hero-visual-card::after {
  content: '';
  position: absolute;
  width: 256px;
  height: 256px;
  background: rgba(0, 116, 131, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-visual-card::before {
  top: -96px;
  right: -96px;
}

.hero-visual-card::after {
  bottom: -96px;
  left: -96px;
}

.status-card {
  background: white;
  border: 1px solid var(--color-slate-100);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.transcript-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-100);
  margin-bottom: 16px;
}

.transcript-item:last-child {
  margin-bottom: 0;
}
 /* What Is Section */
 .what-is-section {
  background: var(--color-slate-50);
  padding: 80px 0;
}

.what-is-section h2 {
  font-size: 36px;
  color: var(--color-dark);
  margin-bottom: 8px;
  font-family: var(--font-header);
  font-weight: 400;
}

.what-is-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.what-is-section p {
  font-size: 18px;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}


.check-item:hover .check-icon {
  border-color: var(--color-primary);
}

.official-box {
  background: var(--color-primary);
  border-radius: 32px;
  padding: 32px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}

.official-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  font-family: var(--font-header);
}

.official-box p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: var(--font-body);
}
/* Types Section */
.types-section {
  padding: 72px 24px;
}

.types-section h2 {
  font-size: 36px;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 12px;
  font-family: var(--font-header);
  font-weight: 400;
}

.types-section .subtitle {
  font-size: 18px;
  color: var(--color-slate-500);
  text-align: center;
  max-width: 672px;
  margin: 0 auto 64px;
  font-family: var(--font-body);
}

.type-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 36px;
  height: 100%;
  transition: all 0.3s ease;
}

.type-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.type-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 116, 131, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.type-card:hover .type-icon {
  background: var(--color-primary);
  color: white;
}

.type-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.type-card:hover h3 {
  color: var(--color-primary);
}

.type-card p {
  font-size: 15px;
  color: var(--color-slate-500);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-body);
}
/* How To Section */
.how-to-section {
  background: var(--color-slate-50);
  padding: 72px 24px;
}

.how-to-section h2 {
  font-size: 36px;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 36px;
  font-family: var(--font-header);
  font-weight: 400;
}

.step-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.step-card:hover {
  border-color: rgba(0, 116, 131, 0.3);
  transform: translateY(-8px);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 116, 131, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-number {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.step-card:hover h3 {
  color: var(--color-primary);
}

.step-card p {
  font-size: 16px;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-body);
}

.step-connector {
  position: absolute;
  top: 64px;
  left: 100%;
  width: 48px;
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}
/* Why Not Mail Section */
.why-not-mail-section {
  padding: 60px 0;
}

.why-not-mail-section h2 {
  font-size: 36px;
  color: var(--color-dark);
  margin-bottom: 12px;
  font-family: var(--font-header);
  font-weight: 400;
}

.why-not-mail-section p {
  font-size: 18px;
  color: var(--color-slate-600);
  margin-bottom: 40px;
  font-family: var(--font-body);
  line-height: 1.7;
}

.issues-box {
  background: var(--color-slate-50);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
}

.issues-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.issue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.issue-item:last-child {
  margin-bottom: 0;
}

.issue-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.digital-box {
  background: linear-gradient(90deg, #007483 0%, #00292E 100%);
  color: white;
  border-radius: 48px;
  padding: 32px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.digital-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.digital-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  font-family: var(--font-header);
}

.digital-box p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: var(--font-body);
}

.btn-digital {
  width: 100%;
  height: 56px;
  border-radius: 32px;
  background: white;
  color: var(--color-primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.btn-digital:hover {
  background: var(--color-slate-100);
  transform: scale(0.98);
}

    /* When Need Section */
    .when-need-section {
      background: var(--color-primary);
      color: white;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .when-need-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .when-need-section h2 {
      font-size: 36px;
      color: white;
      text-align: center;
      margin-bottom: 12px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .when-need-section .subtitle {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      text-align: center;
      max-width: 672px;
      margin: 0 auto 36px;
      font-family: var(--font-body);
    }

    .use-case-card {
      background: #FFF;
      border: 1px solid rgba(38, 34, 34, 0.1);
      border-radius: 20px;
      padding: 24px;
      transition: all 0.3s ease;
      height: 100%;
    }

    .use-case-card:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--color-primary);
    transform: translateY(-8px);
    }

    .use-case-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: #e5f1f2;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #007483;
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .use-case-card:hover .use-case-icon {
      transform: scale(1.1);
    }
    .use-case-card h3{
      font-family: var(--font-body);
          font-size: 20px;
    font-weight: 600;
    }

    .use-case-card span {
      font-size: 15px;
      font-weight: 700;
      color: white;
      font-family: var(--font-body);
      line-height: 1.4;
    }
    /* FAQ Section */
    .faq-section {
      padding: 60px 0;
    }

    .faq-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 64px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .accordion-item {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 16px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    .accordion-button {
      background: white;
      color: var(--color-dark);
      font-size: 16px;
      font-weight: 700;
      padding: 24px 32px;
      border: none;
      width: 100%;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: var(--font-body);
      transition: all 0.3s ease;
    }

    .accordion-button:hover {
      background: var(--color-slate-50);
      color: var(--color-primary);
    }

    .accordion-button:not(.collapsed) {
      background: white;
    }

    .accordion-button::after {
      display: none;
    }

    .accordion-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .accordion-button.collapsed .accordion-icon {
      color: var(--color-slate-400);
    }

    .accordion-button:not(.collapsed) .accordion-icon {
      color: var(--color-primary);
      transform: rotate(180deg);
    }

    .accordion-body {
      padding: 0 32px 24px;
      color: var(--color-slate-500);
      font-size: 16px;
      line-height: 1.7;
      font-family: var(--font-body);
    }
    /* CTA Section */
    .cta-section {
      padding: 72px 0 0;
      background: white;
    }

    .cta-box {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), 
                  linear-gradient(-90deg, #007483 0%, #00292E 100%);
      border-radius: 20px;
      padding: 64px 48px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-bg-image {
      position: absolute;
      inset: 0;
      opacity: 0.1;
      mix-blend-mode: overlay;
      pointer-events: none;
    }

    .cta-bg-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-decorative {
      position: absolute;
      inset: 0;
      opacity: 0.3;
      pointer-events: none;
      overflow: hidden;
    }

    .cta-circles {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      opacity: 0.4;
    }

    .cta-glow-1 {
      position: absolute;
      top: 0;
      left: 25%;
      width: 500px;
      height: 500px;
      background: rgba(0, 116, 131, 0.3);
      border-radius: 50%;
      filter: blur(150px);
    }

    .cta-glow-2 {
      position: absolute;
      bottom: 0;
      right: 25%;
      width: 500px;
      height: 500px;
      background: rgba(16, 185, 129, 0.2);
      border-radius: 50%;
      filter: blur(150px);
    }

    .cta-content {
      position: relative;
      z-index: 10;
      max-width: 896px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-size: 48px;
      line-height: 1.1;
      color: white;
      margin-bottom: 24px;
      font-family: var(--font-header);
      font-weight: 900;
    }

    .cta-section .subtitle-cta {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 48px;
      font-family: var(--font-body);
    }

    /* Hero Section */
    .hero-section {
      padding: 64px 0 0;
      margin-bottom: 96px;
      position: relative;
    }

    .hero-section h1 {
      font-size: 44px;
      line-height: 1.1;
      color: var(--color-dark);
      margin-bottom: 32px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    /* Client File Card */
    .client-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 32px;
      padding: 32px;
      position: relative;
      aspect-ratio: 4/3;
    }

    .client-card::before,
    .client-card::after {
      content: '';
      position: absolute;
      width: 256px;
      height: 256px;
      background: rgba(0, 116, 131, 0.05);
      border-radius: 50%;
      filter: blur(80px);
    }

    .client-card::before {
      top: -96px;
      right: -96px;
    }

    .client-card::after {
      bottom: -96px;
      left: -96px;
    }

    .instant-badge {
      background: rgba(0, 116, 131, 0.1);
      color: var(--color-primary);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      padding: 6px 16px;
      border-radius: 24px;
      font-family: var(--font-body);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .timeline-step {
      display: flex;
      gap: 20px;
      position: relative;
      margin-bottom: 24px;
    }

    .timeline-step:last-child {
      margin-bottom: 0;
    }

    .timeline-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      z-index: 1;
    }

    .timeline-icon.completed {
      background: var(--color-primary);
      color: white;
    }

    .timeline-icon.active {
      background: white;
      border: 1px solid rgba(0, 116, 131, 0.1);
    }

    .timeline-line {
      position: absolute;
      left: 22px;
      top: 16px;
      bottom: 14px;
      width: 2px;
      background: var(--color-slate-100);
    }

    /* Stop Faxing Section */
    .stop-faxing-section {
      background: linear-gradient(90deg, #007483 0%, #00292E 100%);
      color: white;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .stop-faxing-section h2 {
      font-size: 36px;
      color: white;
      margin-bottom: 32px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .stop-faxing-section p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 48px;
      font-family: var(--font-body);
    }

    .problem-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .problem-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .problem-item:hover .problem-icon {
      background: rgba(239, 68, 68, 0.2);
      border-color: rgba(239, 68, 68, 0.3);
    }

    .problem-item span {
      font-size: 16px;
      font-weight: 500;
      font-family: var(--font-body);
      transition: color 0.3s ease;
      color: #787b7e
    }

    /* .problem-item:hover span {
      color: white;
    } */

    .solution-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 32px 40px;
    }

    .solution-box p {
      font-size: 20px;
      color: white;
      line-height: 1.7;
      margin-bottom: 32px;
      font-family: var(--font-body);
    }

    .btn-digital {
      width: 100%;
      height: 56px;
      border-radius: 32px;
      background: white;
      color: var(--color-primary);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 14px;
      border: none;
      transition: all 0.3s ease;
      font-family: var(--font-body);
    }

    .btn-digital:hover {
      background: var(--color-slate-100);
      transform: scale(0.98);
    }

    /* Transcript Types Section */
    .transcript-types-section {
      background: var(--color-slate-50);
      padding: 80px 0;
    }

    .transcript-types-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      margin-bottom: 60px;
      font-family: var(--font-header);
      font-weight: 400;
      text-align: center;
    }

    .transcript-types-section .subtitle {
      font-size: 18px;
      color: var(--color-slate-500);
      text-align: center;
      max-width: 672px;
      margin: 0 auto 64px;
      font-family: var(--font-body);
    }

    .transcript-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
      transition: all 0.3s ease;
    }

    .transcript-card:hover {
      border-color: var(--color-primary);
    }

    .transcript-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(0, 116, 131, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .transcript-card:hover .transcript-icon {
      background: var(--color-primary);
      color: white;
    }

    .transcript-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 12px;
      font-family: var(--font-body);
    }

    .transcript-card p {
      font-size: 15px;
      color: var(--color-slate-500);
      line-height: 1.7;
      margin: 0;
      font-family: var(--font-body);
    }

    /* How It Works Section */
    .how-it-works-section {
      padding: 72px 0;
      background: white;
    }

    .how-it-works-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 64px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .step-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 20px;
      padding: 24px;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
    }

    .step-card:hover {
      border-color: rgba(0, 116, 131, 0.3);
      transform: translateY(-8px);
    }

    .step-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: rgba(0, 116, 131, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }

    .step-card:hover .step-icon {
      transform: scale(1.1);
    }

    .step-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 8px;
      font-family: var(--font-body);
      transition: color 0.3s ease;
    }

    .step-card:hover h3 {
      color: var(--color-primary);
    }

    .step-card p {
      font-size: 16px;
      color: var(--color-slate-600);
      line-height: 1.7;
      margin: 0;
      font-family: var(--font-body);
    }

    .step-connector {
      position: absolute;
      top: 52px;
      left: 100%;
      width: 48px;
      height: 1px;
      background: var(--color-border);
      z-index: 0;
    }

    /* Workflows Section */
    .workflows-section {
      padding: 60px 0;
      background: var(--color-slate-50);
    }

    .workflows-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 64px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .workflow-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 20px;
      padding: 32px;
      height: 100%;
      transition: all 0.3s ease;
    }

    .workflow-card:hover {
      border-color: var(--color-primary);
    }

    .workflow-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(0, 116, 131, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin: 0 auto;
      transition: all 0.3s ease;
    }

    .workflow-card:hover .workflow-icon {
      background: var(--color-primary);
      color: white;
    }

    .workflow-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-dark);
      margin: 20px 0px;
      font-family: var(--font-header);
    }

    .workflow-card p {
      font-size: 14px;
      color: var(--color-slate-500);
      line-height: 1.7;
      margin: 0;
      font-family: var(--font-body);
    }

    /* Why Choose Section */
    .why-choose-section {
      padding: 72px 0;
      background: white;
    }

    .why-choose-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 12px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .why-choose-section .subtitle {
      font-size: 18px;
      color: var(--color-slate-500);
      text-align: center;
      max-width: 672px;
      margin: 0 auto 36px;
      font-family: var(--font-body);
      line-height: 1.7;
    }

    .why-choose-card {
      background: var(--color-slate-50);
      border-radius: 20px;
      padding: 20px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 24px;
      transition: all 0.3s ease;
    }

    .why-choose-card:hover {
      background: var(--color-slate-100);
    }

    .why-choose-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .why-choose-card:hover .why-choose-icon {
      background: var(--color-primary);
      color: white;
    }

    .why-choose-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-dark);
      line-height: 1.3;
      margin: 0;
      font-family: var(--font-body);
    }

    /* FAQ Section */
    .faq-section {
      padding: 60px 0;
      background: var(--color-slate-50);
    }

    .accordion-button {
      background: white;
      color: var(--color-dark);
      font-size: 16px;
      font-weight: 700;
      padding: 24px 32px;
      border: none;
      width: 100%;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: var(--font-body);
      transition: background 0.3s ease;
    }

    .accordion-button:hover {
      background: var(--color-slate-50);
    }

    .accordion-body {
      padding: 0 32px 24px;
      color: var(--color-slate-500);
      font-size: 16px;
      line-height: 1.7;
      font-family: var(--font-body);
    }

    /* CTA Section */
    .cta-section {
      padding: 72px 0 0;
      background: white;
    }

    .cta-box {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), 
                  linear-gradient(-90deg, #007483 0%, #00292E 100%);
      border-radius: 32px;
      padding: 64px 48px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-content {
      position: relative;
      z-index: 10;
    }

    .cta-section h3 {
      font-size: 30px;
      line-height: 1.3;
      color: white;
      margin-bottom: 32px;
      font-family: var(--font-header);
      font-weight: 700;
    }

    /* Hero Section */
    .hero-section {
      padding: 64px 0 0;
      margin-bottom: 96px;
    }

    /* Info Card */
    .info-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 32px;
      padding: 80px;
      position: relative;
      aspect-ratio: 4/3;
    }

    .info-card::before,
    .info-card::after {
      content: '';
      position: absolute;
      width: 256px;
      height: 256px;
      background: rgba(0, 116, 131, 0.05);
      border-radius: 50%;
      filter: blur(80px);
    }

    .info-card::before {
      top: -96px;
      right: -96px;
    }

    .info-card::after {
      bottom: -96px;
      left: -96px;
    }


    .timeline-step {
      display: flex;
      gap: 20px;
      position: relative;
      margin-bottom: 32px;
    }

    .timeline-icon.active {
      background: white;
      border: 2px solid rgba(0, 116, 131, 0.2);
    }

    /* Transcript Types */
    .transcript-types-section {
      background: var(--color-slate-50);
      padding: 60px 0;
    }

    .transcript-type-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }

    .transcript-type-card:hover {
      border-color: rgba(0, 116, 131, 0.5);
    }

    .transcript-type-icon {
      border-radius: 12px;
      background: rgba(0, 116, 131, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFF;
      transition: all 0.3s ease;
    }

    .transcript-type-card:hover .transcript-type-icon {
      background: var(--color-primary);
      color: white;
      transform: scale(1.1);
    }

    .transcript-type-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--color-dark);
      margin: 10px 0px;
      font-family: var(--font-body);
    }

    /* How It Works */
    .how-it-works-section {
      background: linear-gradient(180deg, var(--color-slate-50) 0%, #FFF 100%);
      padding: 60px 0;
    }

    .step-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 24px;
      padding: 24px;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
    }

    .step-card:hover {
      border-color: rgba(0, 116, 131, 0.5);
      transform: translateY(-8px);
    }

    .step-card:hover .step-icon {
      background: var(--color-primary);
      color: white;
      transform: scale(1.1);
    }

    .step-card h3 {
      font-size: 20px;
      margin-bottom: 8px;
      color: var(--color-dark);
      font-family: var(--font-body);
      font-weight: 700;
      transition: color 0.3s ease;
    }

    .step-card p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--color-slate-600);
      margin: 0;
      font-family: var(--font-body);
    }

    /* Why Not Form Section */
    .why-not-form-section {
      background: linear-gradient(90deg, #007483 0%, #00292E 100%);
      color: white;
      padding: 80px 0;
    }

    .why-not-form-section h2 {
      font-size: 36px;
      margin-bottom: 12px;
      color: white;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .why-not-form-section .lead {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 48px;
      font-family: var(--font-body);
    }

    .issue-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .issue-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.4);
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .issue-item:hover .issue-icon {
      background: rgba(239, 68, 68, 0.2);
      border-color: rgba(239, 68, 68, 0.3);
      color: #f87171;
    }

    .issue-item span {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
      font-family: var(--font-body);
      transition: color 0.3s ease;
    }

    .issue-item:hover span {
      color: white;
    }

    .solution-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 32px;
      position: relative;
    }

    .solution-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      filter: blur(80px);
    }

    .solution-header {
      display: flex;
      gap: 20px;
      margin-bottom: 32px;
    }

    .solution-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(16, 185, 129, 0.2);
      border: 1px solid rgba(16, 185, 129, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #34d399;
      flex-shrink: 0;
    }

    .solution-box h4 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      font-family: var(--font-body);
    }

    .solution-box p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      font-family: var(--font-body);
    }

    .btn-switch {
      width: 100%;
      height: 56px;
      border-radius: 32px;
      background: white;
      color: var(--color-primary);
      font-family: var(--font-body);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 14px;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-switch:hover {
      background: var(--color-slate-100);
      transform: scale(0.98);
    }

    /* CTA Section */
    .cta-section {
      background: white;
      padding: 72px 24px;
    }

    .cta-box {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), 
                  linear-gradient(-90deg, #007483 0%, #00292E 100%);
      border-radius: 32px;
      min-height: 400px;
      padding: 64px 48px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .cta-section h2 {
      font-size: 48px;
      line-height: 1.1;
      color: white;
      margin-bottom: 24px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .cta-section p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 48px;
      font-family: var(--font-body);
    }

    /* Verification Card */
    .verification-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 32px;
      padding: 32px;
      position: relative;
      aspect-ratio: 4/3;
    }

    .verification-card::before,
    .verification-card::after {
      content: '';
      position: absolute;
      width: 256px;
      height: 256px;
      background: rgba(0, 116, 131, 0.05);
      border-radius: 50%;
      filter: blur(80px);
    }

    .verification-card::before {
      top: -96px;
      right: -96px;
    }

    .verification-card::after {
      bottom: -96px;
      left: -96px;
    }

    .verified-badge {
      background: rgba(0, 116, 131, 0.1);
      color: var(--color-primary);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      padding: 6px 16px;
      border-radius: 24px;
      font-family: var(--font-body);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* What Is Section */
    .what-is-section {
      background: var(--color-slate-50);
      padding: 80px 0;
    }

    .what-is-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      margin-bottom: 32px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .what-is-section p {
      font-size: 18px;
      color: var(--color-slate-600);
      line-height: 1.7;
      font-family: var(--font-body);
      font-weight: 400;
    }

    .badge-official {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 24px;
      background: rgba(0, 116, 131, 0.05);
      border: 1px solid rgba(0, 116, 131, 0.1);
      color: var(--color-primary);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      
      margin-bottom: 32px;
    }

    .transcript-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      border-radius: 16px;
      border: 1px solid var(--color-border);
      background: white;
      transition: all 0.3s ease;
    }

    .transcript-item:hover {
      border-color: rgba(0, 116, 131, 0.3);
      background: white;
    }

    .transcript-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: white;
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .transcript-item:hover .transcript-icon {
      background: var(--color-primary);
      border-color: var(--color-primary);
    }

    .transcript-item:hover .transcript-icon svg {
      color: white !important;
    }

    .purple-box {
      background: var(--color-primary);
      border-radius: 20px;
      padding: 36px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .purple-box::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .purple-box h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      font-family: var(--font-body);
      line-height: 1.3;
      color: #FFF;
    }

    .purple-box p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .purple-box-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    .purple-box-item:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    /* Why Use Section */
    .why-use-section {
      padding: 60px 0;
    }

    .why-use-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      margin-bottom: 32px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .traditional-problem-box {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 32px;
      padding: 40px;
    }

    .traditional-problem-box h3 {
      font-size: 24px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 32px;
      font-family: var(--font-body);
    }

    .traditional-problem-box p {
      font-size: 16px;
      color: var(--color-slate-600);
      margin-bottom: 32px;
      font-family: var(--font-body);
    }

    .problem-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--color-slate-500);
      font-style: italic;
      margin-bottom: 16px;
      font-family: var(--font-body);
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }

    .benefit-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 4px;
    }

    .benefit-item h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 4px;
      font-family: var(--font-body);
    }

    .benefit-item p {
      font-size: 14px;
      color: var(--color-slate-500);
      margin: 0;
      font-family: var(--font-body);
    }

    /* Use Cases Section */
    .use-cases-section {
      background: var(--color-slate-50);
      padding: 80px 0;
    }

    .use-cases-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 64px;
      font-family: var(--font-header);
      font-weight: 400;
    }



    /* How To Section */
    .how-to-section {
      padding: 80px 24px;
      text-align: center;
    }

    .how-to-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      margin-bottom: 80px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .step-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 24px;
      padding: 32px;
      transition: all 0.3s ease;
      height: 100%;
      text-align: left;
      position: relative;
    }

    .step-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(0, 116, 131, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .step-number {
      font-size: 14px;
      font-weight: 900;
      color: var(--color-primary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
      font-family: var(--font-body);
    }

    .step-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 16px;
      font-family: var(--font-body);
      transition: color 0.3s ease;
    }

    .step-connector {
      position: absolute;
      top: 60px;
      left: 100%;
      width: 32px;
      height: 1px;
      background: var(--color-border);
      z-index: 0;
    }

    .process-note {
      border-top: 1px solid var(--color-border);
      padding-top: 40px;
      margin-top: 80px;
      max-width: 672px;
      margin-left: auto;
      margin-right: auto;
    }

    .process-note p {
      font-size: 15px;
      color: var(--color-slate-500);
      font-style: italic;
      font-family: var(--font-body);
    }

    /* Built For Section */
    .built-for-section {
      background: linear-gradient(90deg, #007483 0%, #00292E 100%);
      color: white;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .built-for-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .built-for-section h2 {
      font-size: 36px;
      color: white;
      margin-bottom: 24px;
      font-family: var(--font-header);
      font-weight: 400;
      line-height: 1.3;
    }

    .built-for-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 16px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .built-for-item:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .erc-built-for-icon{
        width: 80px;
        height: 80px;
        border-radius: 24px;
        background: rgba(0, 116, 131, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
        transition: all 0.3s ease;
    }
    .built-for-card:hover .erc-built-for-icon {
      background: var(--color-primary);
      color: white;
      transform: scale(1.1);
  }
    .built-for-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      flex-shrink: 0;
    }

    .built-for-item span {
      font-size: 17px;
      font-weight: 700;
      color: white;
      font-family: var(--font-body);
    }

    .platform-benefits-box {
      background: white;
      color: var(--color-dark);
      border-radius: 24px;
      padding: 36px;
    }

    .platform-benefits-box h3 {
      font-size: 28px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 20px;
      font-family: var(--font-body);
    }

    .platform-benefit-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }

    .platform-benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--color-slate-50);
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .platform-benefit-item:hover .platform-benefit-icon {
      border-color: rgba(0, 116, 131, 0.3);
    }

    .platform-benefit-item span {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-dark);
      font-family: var(--font-body);
    }

    .platform-note {
      border-top: 1px solid var(--color-border);
      padding-top: 16px;
      margin-top: 20px;
    }

    .platform-note p {
      font-size: 14px;
      color: var(--color-slate-500);
      line-height: 1.7;
      margin: 0;
      font-family: var(--font-body);
    }

    /* CTA Section */
    .cta-section {
      padding: 80px 24px 0;
    }

    .cta-box {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), 
                  linear-gradient(-90deg, #007483 0%, #00292E 100%);
      border-radius: 36px;
      min-height: 400px;
      padding: 64px 48px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .cta-section h2 {
      font-size: 36px;
      line-height: 1.2;
      color: white;
      margin-bottom: 16px;
      font-family: var(--font-header);
      font-weight: 700;
    }

     /* Hero Section */
     .hero {
      
      padding: 160px 0 80px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 78.28%, #FFF 100%), 
                  radial-gradient(50.07% 50.07% at 50% 100.04%, rgba(0, 116, 131, 0.20) 0%, rgba(0, 116, 131, 0.00) 100%), 
                  radial-gradient(49.96% 49.96% at 50% 0%, rgba(0, 116, 131, 0.20) 0%, rgba(0, 116, 131, 0.00) 100%), 
                  #FFF;
    }

    .hero h1 {
      font-size: 52px;
      line-height: 1.1;
      margin-bottom: 32px;
      color: var(--color-dark);
      font-family: var(--font-header);
      font-weight: 400;
    }

    .hero h1 .highlight {
      color: var(--color-primary);
      font-size: 48px;
    }

    .hero p.lead {
      font-size: 18px;
      line-height: 1.7;
      color: var(--color-slate-600);
      margin-bottom: 36px;
    }

    .built-for-label {
      font-size: 14px;
      color: var(--color-slate-500);
      margin-bottom: 24px;
      font-family: var(--font-body);
    }

    .built-for-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 32px;
    }

    .built-for-tag {
      background: white;
      border: 1px solid var(--color-border);
      color: var(--color-slate-700);
      font-size: 14px;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
    }

    .built-for-tag-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--color-light-shade);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
    }

    /* How It Works */
    .how-it-works {
      background: linear-gradient(180deg, #FFF 0%, #F8FAFC 100%);
      padding: 60px 0;
    }

    .how-it-works h2 {
      font-size: 40px;
      text-align: center;
      margin-bottom: 64px;
      color: var(--color-dark);
      font-family: var(--font-header);
      font-weight: 400;
      line-height: 1.2;
    }

    .step-card:hover {
      border-color: var(--color-primary);
      transform: translateY(-8px);
    }

    .step-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--color-light-shade);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }

    .step-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--color-dark);
      font-family: var(--font-body);
      font-weight: 700;
      transition: color 0.3s ease;
    }

    /* Product Capabilities */
    .product-capabilities {
      padding: 60px 0;
    }

    .product-capabilities h2 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 64px;
      color: var(--color-dark);
      font-family: var(--font-header);
      font-weight: 400;
    }

    .product-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 24px;
      padding: 24px;
      transition: all 0.3s ease;
      height: 100%;
      cursor: pointer;
    }

    .product-card:hover {
      border-color: var(--color-primary);
      transform: translateY(-5px);
    }

    .product-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--color-light-shade);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    .product-card:hover .product-icon {
      transform: scale(1.1);
    }

    .product-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--color-dark);
      font-family: var(--font-header);
      font-weight: 400;
    }

    .product-card:hover h3 {
      color: var(--color-primary);
    }

    .product-card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--color-slate-600);
      margin-bottom: 16px;
    }

    .product-card .learn-more {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      
      background: linear-gradient(90deg, #00292E 0%, #007483 51.92%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .product-card:hover .learn-more svg {
      transform: translateX(4px);
    }

    /* Differentiator Section */
    .differentiator {
      background: linear-gradient(90deg, #007483 0%, #00464F 100%);
      color: white;
      padding: 80px 0;
    }

    .differentiator h2 {
      font-size: 40px;
      margin-bottom: 32px;
      color: white;
      font-family: var(--font-header);
      font-weight: 400;
      line-height: 1.2;
    }

    .differentiator .lead {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 600;
    }

    .status-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 32px;
    }

    .status-item {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }

    .status-item:last-child {
      margin-bottom: 0;
    }

    .status-item:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .status-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .status-icon.blue {
      background: rgba(59, 130, 246, 0.2);
      color: #60a5fa;
    }

    .status-icon.amber {
      background: rgba(245, 158, 11, 0.2);
      color: #fbbf24;
    }

    .status-icon.emerald {
      background: rgba(16, 185, 129, 0.2);
      color: #34d399;
    }

    .status-icon.red {
      background: rgba(239, 68, 68, 0.2);
      color: #f87171;
    }

    .status-icon.slate {
      background: rgba(148, 163, 184, 0.2);
      color: #94a3b8;
    }

    .status-badge {
      background: rgba(59, 130, 246, 0.2);
      border: 1px solid rgba(59, 130, 246, 0.3);
      color: #93c5fd;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      
      padding: 4px 12px;
      border-radius: 12px;
    }

    /* Who It's For */
    .who-its-for {
      padding: 60px 0;
      background: #FCF7FB;
    }

    .who-its-for h2 {
      font-size: 48px;
      text-align: center;
      margin-bottom: 64px;
      color: var(--color-dark);
      font-family: var(--font-header);
      font-weight: 400;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 4px 16px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .section-badge svg {
      width: 16px;
      height: 18px;
    }

    .section-badge span {
      font-family: var(--font-secondary);
      font-style: italic;
      color: var(--color-primary);
      font-size: 18px;
    }

    .stakeholder-card {
      background: white;
      border-radius: 20px;
      padding: 24px;
      min-height: 210px;
      transition: all 0.3s ease;
    }

    .stakeholder-card:hover {
      background: rgba(248, 250, 252, 0.5);
      transform: translateY(-8px);
    }

    .stakeholder-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .stakeholder-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--color-light-shade);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
    }

    .stakeholder-card h3 {
      font-size: 22px;
      margin: 0;
      color: var(--color-dark);
      font-family: var(--font-body);
      font-weight: 700;
    }

    .stakeholder-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .stakeholder-card li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 8px;
      font-size: 16px;
      color: var(--color-slate-600);
    }

    .stakeholder-card li:last-child {
      margin-bottom: 0;
    }

    .check-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #10b981;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .check-icon-bg{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: white;
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    /* Transcript Types We Support */
    .transcript-types-section {
      padding: 60px 0;
    }

    .transcript-types-box {
      background: linear-gradient(90deg, #007483 0%, #00464F 100%);
      border-radius: 40px;
      overflow: hidden;
      color: white;
    }

    .transcript-types-content {
      padding: 48px;
    }

    .transcript-types-box h2 {
      font-size: 36px;
      margin-bottom: 32px;
      color: white;
      font-family: var(--font-header);
      font-weight: 400;
      white-space: nowrap;
    }

    .transcript-type-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .transcript-type-item:last-child {
      margin-bottom: 0;
    }


    .transcript-type-item span {
      font-size: 18px;
      color: var(--color-slate-300);
      font-weight: 500;
      font-family: var(--font-body);
    }

    .transcript-types-image {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 80px;
    }
    .workflows-section h2 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 64px;
      color: var(--color-dark);
      font-family: var(--font-header);
      font-weight: 400;
    }

    .workflow-card {
      background: white;
      border: 1px solid var(--color-slate-100);
      border-radius: 24px;
      padding: 24px;
      text-align: center;
      transition: all 0.3s ease;
    }

    
 
    .workflow-card p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--color-slate-600);
      margin: 0;
    }

    /* Trust & CTA Section */
    .trust-cta-section {
      padding: 60px 0;
      background: white;
    }

    .trust-cta-box {
      background: var(--color-slate-50);
      border: 1px solid var(--color-slate-100);
      border-radius: 32px;
      padding: 48px 64px;
      position: relative;
      overflow: hidden;
    }

    .trust-cta-box::before,
    .trust-cta-box::after {
      content: '';
      position: absolute;
      width: 384px;
      height: 384px;
      background: rgba(0, 116, 131, 0.05);
      border-radius: 50%;
      filter: blur(80px);
    }

    .trust-cta-box::before {
      top: -96px;
      right: -96px;
    }

    .trust-cta-box::after {
      bottom: -96px;
      left: -96px;
    }

    .trust-cta-content {
      position: relative;
      z-index: 1;
    }

    .trust-cta-box h2 {
      font-size: 36px;
      margin-bottom: 12px;
      color: var(--color-slate-900);
      font-family: var(--font-header);
      font-weight: 400;
    }

    .trust-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 40px;
    }

    .trust-feature {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .trust-feature svg {
      width: 24px;
      height: 24px;
      color: var(--color-primary);
      flex-shrink: 0;
    }

    .trust-feature span {
      font-size: 16px;
      font-weight: 500;
      color: var(--color-slate-700);
      font-family: var(--font-body);
    }

    .cta-subtitle {
      font-size: 14px;
      color: var(--color-slate-500);
      font-style: italic;
      margin-top: 12px;
      font-family: var(--font-body);
    }

    /* Case Tracking Card */
    .case-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 32px;
      padding: 32px;
      position: relative;
      aspect-ratio: 4/3;
    }

    .case-card::before,
    .case-card::after {
      content: '';
      position: absolute;
      width: 256px;
      height: 256px;
      background: rgba(0, 116, 131, 0.05);
      border-radius: 50%;
      filter: blur(80px);
    }

    .case-card::before {
      top: -96px;
      right: -96px;
    }

    .case-card::after {
      bottom: -96px;
      left: -96px;
    }

    .processing-badge {
      background: rgba(245, 158, 11, 0.1);
      color: #d97706;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      padding: 6px 16px;
      border-radius: 24px;
      font-family: var(--font-body);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .timeline-icon.pending {
      background: white;
      border: 1px solid var(--color-slate-100);
    }

    /* What You Track Section */
    .what-you-track-section {
      background: var(--color-slate-50);
      padding: 72px 0;
    }

    .what-you-track-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 64px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .track-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
      transition: all 0.3s ease;
    }

    .track-card:hover {
      border-color: var(--color-primary);
    }

    .track-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(0, 116, 131, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .track-card:hover .track-icon {
      background: var(--color-primary);
      color: white;
    }

    .track-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 8px;
      font-family: var(--font-body);
    }

    .track-card p {
      font-size: 14px;
      color: var(--color-slate-500);
      line-height: 1.7;
      margin: 0;
      font-family: var(--font-body);
    }

    /* Why It Matters Section */
    .why-it-matters-section {
      background: var(--color-primary);
      color: white;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .why-it-matters-section h2 {
      font-size: 36px;
      color: white;
      margin-bottom: 8px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .why-it-matters-section p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 32px;
      font-family: var(--font-body);
      max-width: 448px;
    }

    .matter-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    .matter-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .matter-item:hover .matter-icon {
      background: rgba(239, 68, 68, 0.2);
      border-color: rgba(239, 68, 68, 0.3);
    }

    .matter-item span {
      font-size: 18px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      font-family: var(--font-body);
      transition: color 0.3s ease;
    }

    .matter-item:hover span {
      color: white;
    }

    .enhanced-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 32px 40px;
      position: relative;
    }

    .enhanced-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      filter: blur(80px);
    }

    .enhanced-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(16, 185, 129, 0.2);
      border: 1px solid rgba(16, 185, 129, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .enhanced-box h4 {
      font-size: 24px;
      font-weight: 700;
      color: white;
      margin-bottom: 16px;
      font-family: var(--font-body);
    }

    .enhanced-box p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 32px;
      font-family: var(--font-body);
    }

    .btn-eliminate {
      width: 100%;
      height: 56px;
      border-radius: 32px;
      background: white;
      color: var(--color-primary);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 14px;
      border: none;
      transition: all 0.3s ease;
      font-family: var(--font-body);
    }

    .btn-eliminate:hover {
      background: var(--color-slate-100);
      transform: scale(0.98);
    }

    /* Built For Section */
    .built-for-section {
      padding: 60px 0;
    }

    .built-for-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 36px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .built-for-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin-bottom: 64px;
    }

    .built-for-card {
      flex-shrink: 0;
      width: 220px;
      aspect-ratio: 1;
      border-radius: 40px;
      background: white;
      border: 1px solid var(--color-border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 24px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .built-for-card:hover {
      border-color: var(--color-primary);
      transform: scale(1.05);
    }


    .built-for-card:hover .built-for-icon {
      background: var(--color-primary);
      color: white;
      transform: scale(1.1);
    }

    .built-for-card span {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-dark);
      font-family: var(--font-body);
      line-height: 1.3;
    }

    /* CTA Section */
    .cta-section {
      max-width: 1280px;
      margin: 0 auto;
    }

    .cta-box {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), 
                  linear-gradient(-90deg, #007483 0%, #00292E 100%);
      border-radius: 36px;
      min-height: 360px;
      padding: 64px 48px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .cta-section h2 {
      font-size: 42px;
      line-height: 1.2;
      color: white;
      margin-bottom: 40px;
      font-family: var(--font-header);
      font-weight: 700;
    }


    /* Stop Manually Section */
    .stop-manually-section {
      background: var(--color-slate-50);
      padding: 60px 0;
    }

    .stop-manually-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      margin-bottom: 32px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .stop-manually-section p {
      font-size: 18px;
      color: var(--color-slate-600);
      margin-bottom: 48px;
      font-family: var(--font-body);
    }

    .pain-point-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .pain-point-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: white;
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f87171;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .pain-point-item:hover .pain-point-icon {
      border-color: #fca5a5;
    }

    .pain-point-item span {
      color: var(--color-slate-700);
      font-weight: 700;
      font-size: 16px;
      font-family: var(--font-body);
    }

    .automated-alert-box {
      background: var(--color-primary);
      border-radius: 32px;
      padding: 40px;
      color: white;
    }

    .automated-alert-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      flex-shrink: 0;
    }

    .automated-alert-box h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 32px;
      font-family: var(--font-body);
    }

    .automated-alert-box p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      margin-bottom: 32px;
      font-family: var(--font-body);
    }

    /* Why Monitoring Matters */
    .why-monitoring-section {
      padding: 60px 0;
    }

    .why-monitoring-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 8px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .why-monitoring-section .subtitle {
      font-size: 18px;
      color: var(--color-slate-600);
      text-align: center;
      margin-bottom: 64px;
      font-family: var(--font-body);
      font-weight: 400;
    }

    .role-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--color-slate-50) 100%);
      border-radius: 32px;
      padding: 24px;
      transition: all 0.3s ease;
      height: 100%;
    }

    .role-card:hover {
      transform: translateY(-5px);
    }

    .role-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: white;
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .role-card:hover .role-card-icon {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: white;
    }

    .role-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 16px;
      font-family: var(--font-body);
      transition: color 0.3s ease;
    }

    .role-card:hover h3 {
      color: var(--color-primary);
    }

    .role-card p {
      font-size: 16px;
      color: var(--color-slate-600);
      line-height: 1.7;
      margin: 0;
      font-family: var(--font-body);
    }

    /* How It Works */
    .how-it-works-section {
      background: var(--color-slate-50);
      padding: 72px 0;
    }

    .how-it-works-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 60px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .how-it-works-section .subtitle {
      font-size: 18px;
      color: var(--color-slate-600);
      text-align: center;
      margin-bottom: 48px;
      font-family: var(--font-body);
      font-weight: 400;
      margin-top:-20px;
    }

    .step-card {
      background: white;
      border: 1px solid var(--color-border);
      border-radius: 24px;
      padding: 36px;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
    }

    .step-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: rgba(0, 116, 131, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .step-card h3 {
      font-size: 20px;
      margin-bottom: 16px;
      color: var(--color-dark);
      font-family: var(--font-body);
      font-weight: 700;
      transition: color 0.3s ease;
    }

    .step-connector {
      position: absolute;
      top: 60px;
      left: 100%;
      width: 36px;
      height: 1px;
      background: var(--color-border);
      z-index: 0;
    }

    /* Scalable Monitoring */
    .scalable-monitoring-section {
      padding: 72px 24px;
      text-align: center;
    }

    .scalable-monitoring-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      margin-bottom: 48px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .monitoring-cards-wrapper {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 64px;
      flex-wrap: wrap;
    }

    .monitoring-card {
      flex-shrink: 0;
      width: 220px;
      aspect-ratio: 1;
      border-radius: 40px;
      background: white;
      border: 1px solid var(--color-border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .monitoring-card:hover {
      border-color: var(--color-primary);
      transform: scale(1.05);
    }

    .monitoring-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 24px;
      background: rgba(0, 116, 131, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      transition: all 0.3s ease;
    }

    .monitoring-card:hover .monitoring-card-icon {
      background: var(--color-primary);
      color: white;
      transform: scale(1.1);
    }

    .monitoring-card span {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-dark);
      font-family: var(--font-body);
      max-width: 140px;
      line-height: 1.3;
    }

    .scalable-monitoring-section .note {
      font-size: 16px;
      color: var(--color-slate-500);
      font-family: var(--font-body);
      font-weight: 400;
    }

    /* What Is Monitoring */
    .what-is-monitoring-section {
      background: var(--color-primary);
      color: white;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .what-is-monitoring-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .what-is-monitoring-section h2 {
      font-size: 36px;
      color: white;
      text-align: center;
      margin-bottom: 48px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .monitoring-info-box {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 40px;
      padding: 40px;
      backdrop-filter: blur(10px);
    }

    .monitoring-info-box p {
      font-size: 18px;
      color: white;
      line-height: 1.7;
      margin-bottom: 16px;
      font-family: var(--font-body);
    }

    .monitoring-info-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      margin-top: 0;
      margin-bottom: 12px;
    }

    .monitoring-info-box .subtitle {
      font-size: 16px;
      font-weight: 700;
      color: #e9d5ff;
      margin-bottom: 24px;
      font-family: var(--font-body);
    }

    .monitoring-info-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .monitoring-info-box li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 16px;
      font-weight: 500;
      font-family: var(--font-body);
    }

    .monitoring-info-box .final-note {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      padding-top: 12px;
      margin: 0;
      font-family: var(--font-body);
      font-weight: 400;
    }

    /* Security & Audit */
    .security-audit-section {
      padding: 60px 0;
    }

    .security-audit-box {
      background: var(--color-slate-50);
      border: 1px solid var(--color-border);
      border-radius: 48px;
      padding: 64px;
    }

    .security-audit-section h2 {
      font-size: 36px;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: 24px;
      font-family: var(--font-header);
      font-weight: 400;
    }

    .security-audit-section .subtitle {
      font-size: 16px;
      color: var(--color-slate-600);
      text-align: center;
      margin-bottom: 64px;
      font-family: var(--font-body);
      font-weight: 400;
    }

    .audit-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .audit-icon {
      width: 64px;
      height: 64px;
      border-radius: 24px;
      background: white;
      border: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      margin-bottom: 24px;
    }

    .audit-item span {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-dark);
      font-family: var(--font-body);
    }

    /* CTA Section */
    .cta-section {
      padding: 60px 0px;
    }

    .cta-section h2 {
      font-size: 36px;
      line-height: 1.4;
      color: white;
      margin-bottom: 48px;
      font-family: var(--font-header);
      font-weight: 400;
    }
    
    .statusirs-badge {
      background: rgba(0, 116, 131, 0.1);
      color: var(--color-primary);
    }
    .status-badge-online{
      background: rgba(16, 185, 129, 0.1);
      color: #059669;
      display: inline-flex;
      padding: 6px 16px;
      align-items: center;
      gap: 8px;
      border-radius: 24px;
      border:none;
    }
    .transcript-type-icon-width{
      width: 48px;
    height: 48px;
    margin: 0 auto;
    }
.container-fluid{
  padding: 0px 5%;
}
.img-responsive{
width: 100%;
}