.workflow-section {
position: relative;
}
/* Header */
.workflow-section .workflow-title {
background: linear-gradient(90deg, #141B5D 0%, #9810FA 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 150%;
letter-spacing: -1.92px;
}
.workflow-section .workflow-subtitle {
color: var(--Colors-Neutral-1000, #333);
text-align: center;
font-size: 32px;
font-weight: 700;
line-height: 150%;
letter-spacing: -1.92px;
}
.workflow-section .workflow-text {
color: var(--Colors-Neutral-900, #4A4A4A);
text-align: center;
font-size: 20px;
font-weight: 400;
line-height: 200%;
}
/* Vertical Line */
.workflow-section .timeline-wrapper {
position: relative;
margin-top: 60px;
}
.workflow-section .timeline-wrapper::before {
content: '';
position: absolute;
width: 3px;
background: linear-gradient(to bottom, #7b3cff, #4c2cff);
top: 0;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
/* Dot Image */
.workflow-section .timeline-dot {
position: relative;
z-index: 2;
}
/* Content Card */
.workflow-section .timeline-content {
padding: 25px;
transition: 0.3s;
margin-bottom: 1.5rem;
}
.workflow-section .timeline-content h6 {
color: #060B13;
font-size: 24px;
font-weight: 600;
line-height: 39.6px;
}
.workflow-section .timeline-content p {
color: #4A5565;
font-size: 16px;
font-weight: 400;
line-height: 26px;
}
.workflow-section .timeline-content:hover {
transform: translateY(-5px);
}
.workflow-section .step-number {
color: #99A1AF;
font-size: 72px;
font-weight: 700;
line-height: 72px;
display: block;
margin-bottom: 8px;
}
/* Image Card */
.workflow-section .timeline-image {
padding: 15px;
transition: 0.3s;
margin-bottom: 1.5rem;
}
.workflow-section .timeline-image:hover {
transform: translateY(-5px);
}
.workflow-section .workflow-btn {
border-radius: 8px;
background: linear-gradient(0deg, #141B5D 0%, #141B5D 100%), rgba(255, 255, 255, 0.02);
box-shadow: 0 2px 8px 0 rgba(255, 255, 255, 0.05) inset,
0 1px 3px 0 rgba(255, 255, 255, 0.12) inset,
0 0.5px 0.5px 0 rgba(255, 255, 255, 0.16) inset;
backdrop-filter: blur(6px);
color: #FFF;
text-align: center;
font-size: 16px;
font-weight: 700;
padding: 12px 16px;
}
.workflow-section .workflow-btn:hover {
background: linear-gradient(0deg, #141B5D 0%, #141B5D 100%), rgba(255, 255, 255, 0.02);
box-shadow: 0 2px 8px 0 rgba(255, 255, 255, 0.05) inset,
0 1px 3px 0 rgba(255, 255, 255, 0.12) inset,
0 0.5px 0.5px 0 rgba(255, 255, 255, 0.16) inset;
backdrop-filter: blur(6px);
color: #FFF;
}
/* Responsive */
@media (max-width: 991px) {
.workflow-section .timeline-wrapper::before {
left: 20px;
}
.workflow-section .timeline-row .row {
flex-direction: column;
}
.workflow-section .timeline-dot {
margin-left: -24px;
text-align: left;
}
.workflow-section .timeline-content,
.workflow-section .timeline-image {
text-align: left !important;
margin-bottom: 1.5rem;
}
}
.common-cta-section{
padding:80px 0;
}
.common-cta-section .common-cta-card{
border-radius: 24px;
background: linear-gradient(90deg, #141B5D -18.06%, #9810FA 149.69%);
box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.30);
padding:50px 40px;
color:#fff;
}
.common-cta-section .common-cta-title{
color: var(--Backgrounds-Primary, #FFF);
text-align: center;
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 72px */
letter-spacing: -1.92px;
margin-bottom:15px;
}
.common-cta-section .common-cta-text{
color: var(--Colors-Neutral-100, #FFF);
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 40px */
}
.common-cta-section .common-cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:20px;
}
.common-cta-section .common-btn-light{
border-radius: 14px;
background: #FFF;
color: #141B5D;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
padding:10px 22px;
}
.common-cta-section .common-btn-outline{
border-radius: 14px;
border: 1px solid #FFF;
color: #FFF;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
padding:10px 22px;
}
.common-cta-section .common-btn-outline:hover{
border: 1px solid #FFF;
color: #FFF;
}
.common-cta-section .common-cta-meta{
color: var(--Colors-Neutral-100, #FFF);
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 200%; /* 40px */
letter-spacing: 4px;
margin-top:10px;
}
/* responsive */
@media (max-width:768px){
.common-cta-section .common-cta-card{
padding:40px 25px;
}
.common-cta-section .common-cta-title{
font-size:24px;
}
.common-cta-section .common-cta-buttons{
flex-direction:column;
}
.common-cta-section .common-btn-light,
.common-cta-section .common-btn-outline{
width:100%;
}
}
/* Use Cases Section */
.use-cases-section {
padding: 80px 0;
}
/* Header */
.use-cases-section .use-cases-subtitle {
color: var(--Colors-Neutral-1000, #333);
text-align: center;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 48px */
letter-spacing: -1.92px;
margin-bottom: 10px;
}
.use-cases-section .use-cases-title {
background: var(--frre, linear-gradient(90deg, #141B5D 0%, #9810FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 150%;
letter-spacing: -1.92px;
margin-bottom: 15px;
}
.use-cases-section .use-cases-description {
color: var(--Colors-Neutral-900, #4A4A4A);
text-align: center;
leading-trim: both;
text-edge: cap;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 40px */
line-height: 1.7;
}
/* Cards */
.use-cases-section .use-cases-card {
padding-left: 20px;
border-left: 3px solid #141B5D;
}
.use-cases-section .use-cases-card .card-title {
background: var(--frre, linear-gradient(90deg, #141B5D 0%, #9810FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 36px */
margin-bottom: 10px;
}
.use-cases-section  ul li {
color: var(--Colors-Neutral-900, #4A4A4A);
leading-trim: both;
text-edge: cap;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 40px */
}
.use-cases-section .use-cases-card p {
color: var(--Colors-Neutral-900, #4A4A4A);
leading-trim: both;
text-edge: cap;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 40px */
line-height: 1.6;
}
/* Images */
.use-cases-section .use-cases-image-wrapper img {
width: 100%;
border-radius: 12px;
}
/* Responsive */
@media (max-width: 991px) {
.use-cases-section .use-cases-title {
font-size: 26px;
}
.use-cases-section .use-cases-description {
font-size: 15px;
}
.use-cases-section .use-cases-card {
margin-top: 15px;
}
}
@media (max-width: 576px) {
.use-cases-section {
text-align: center;
}
.use-cases-section .use-cases-card {
text-align: left;
}
}
/* ==========================================
SLEEP PRICING SECTION
========================================== */
.sleep-pricing-section {
padding: 80px 0;
}
.sleep-pricing-section__title {
background: linear-gradient(90deg, #141B5D 0%, #9810FA 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 60px */
letter-spacing: -1.92px;
margin-bottom: 18px;
}
.sleep-pricing-section__description {
color: var(--Colors-Neutral-900, #4A4A4A);
text-align: center;
leading-trim: both;
text-edge: cap;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 40px */
margin-bottom: 5px;
}
.sleep-pricing-section__card {
position: relative;
border-radius: 16px;
border: 1.6px solid var(--frre, #141B5D);
padding: 45px 35px;
height: 100%;
}
.sleep-pricing-section__badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
border-radius: 26843500px;
background: linear-gradient(90deg, #141B5D 0%, #1E1D67 7.14%, #281E72 14.29%, #311F7C 21.43%, #3A2087 28.57%, #432192 35.71%, #4C219D 42.86%, #5621A8 50%, #5F20B3 57.14%, #681FBF 64.29%, #721ECA 71.43%, #7B1CD6 78.57%, #8519E2 85.71%, #8E16EE 92.86%, #9810FA 100%);
color: #FFF;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
padding: 6px 18px;
border-radius: 30px;
letter-spacing: 0.5px;
}
.sleep-pricing-section__item {
margin-bottom: 28px;
}
.sleep-pricing-section__item-title {
color: #333;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 35.984px; /* 179.921% */
margin-bottom: 8px;
line-height: 1.3;
}
.sleep-pricing-section__item-text {
color: #4A4A4A;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 32px */
margin-bottom: 0;
}
.sleep-pricing-section__image-wrapper {
position: relative;
}
.sleep-pricing-section__image {
max-width: 100%;
height: auto;
object-fit: contain;
}
/* ==========================================
RESPONSIVE
========================================== */
@media (max-width: 1199px) {
.sleep-pricing-section__title {
font-size: 38px;
}
.sleep-pricing-section__item-title {
font-size: 22px;
}
}
@media (max-width: 991px) {
.sleep-pricing-section {
text-align: center;
}
.sleep-pricing-section__card {
padding: 40px 28px;
}
.sleep-pricing-section__title {
font-size: 34px;
}
.sleep-pricing-section__image-wrapper {
margin-top: 10px;
}
}
@media (max-width: 767px) {
.sleep-pricing-section {
padding: 60px 0;
}
.sleep-pricing-section__title {
font-size: 28px;
}
.sleep-pricing-section__description {
font-size: 15px;
}
.sleep-pricing-section__card {
padding: 35px 22px;
}
.sleep-pricing-section__item {
margin-bottom: 24px;
}
.sleep-pricing-section__item-title {
font-size: 20px;
}
.sleep-pricing-section__item-text {
font-size: 14px;
}
.sleep-pricing-section__badge {
font-size: 10px;
padding: 5px 16px;
}
}
/* ==========================================
WHY DENTAL SLEEP MEDICINE SECTION
========================================== */
.sleep-opportunity-section {
padding: 80px 0;
}
.sleep-opportunity-section__wrapper {
border-radius: 24px;
background: linear-gradient(90deg, #141B5D -18.06%, #9810FA 149.69%);
box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.30);
padding: 70px 50px;
overflow: hidden;
}
.sleep-opportunity-section__title {
color: var(--Backgrounds-Primary, #FFF);
text-align: center;
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 72px */
letter-spacing: -1.92px;
margin-bottom: 18px;
}
.sleep-opportunity-section__subtitle {
margin-bottom: 24px;
color: var(--Backgrounds-Primary, #FFF);
text-align: center;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 36px */
letter-spacing: -1.5px;
}
.sleep-opportunity-section__description {
color: var(--Colors-Neutral-100, #FFF);
text-align: center;
leading-trim: both;
text-edge: cap;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 40px */
}
.sleep-opportunity-section__card {
border-radius: 24px;
border: 0.8px solid #27272A;
background: #18181B;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
padding: 55px 25px;
text-align: center;
height: 100%;
transition: all 0.3s ease;
}
.sleep-opportunity-section__card:hover {
transform: translateY(-5px);
}
.sleep-opportunity-section__card-number {
color: #FFF;
text-align: center;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 38.4px */
margin-bottom: 16px;
line-height: 1;
}
.sleep-opportunity-section__card-text {
color: var(--Colors-Neutral-100, #FFF);
text-align: center;
leading-trim: both;
text-edge: cap;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 200%; /* 28px */
margin-bottom: 0;
}
/* ==========================================
RESPONSIVE
========================================== */
@media (max-width: 1199px) {
.sleep-opportunity-section__title {
font-size: 42px;
}
.sleep-opportunity-section__subtitle {
font-size: 22px;
}
}
@media (max-width: 991px) {
.sleep-opportunity-section__wrapper {
padding: 60px 35px;
}
.sleep-opportunity-section__title {
font-size: 36px;
}
.sleep-opportunity-section__subtitle {
font-size: 20px;
}
.sleep-opportunity-section__description {
font-size: 16px;
}
.sleep-opportunity-section__card {
padding: 45px 20px;
}
}
@media (max-width: 767px) {
.sleep-opportunity-section__wrapper {
padding: 50px 22px;
border-radius: 14px;
}
.sleep-opportunity-section__title {
font-size: 28px;
}
.sleep-opportunity-section__subtitle {
font-size: 18px;
margin-bottom: 18px;
}
.sleep-opportunity-section__description {
font-size: 15px;
line-height: 1.8;
}
.sleep-opportunity-section__card {
padding: 38px 18px;
border-radius: 18px;
}
.sleep-opportunity-section__card-number {
font-size: 34px;
}
.sleep-opportunity-section__card-text {
font-size: 14px;
}
}
.rpm-device-section{
padding: 80px 0;
}
.rpm-subtitle{
color: var(--Colors-Neutral-1000, #333);
text-align: center;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 48px */
letter-spacing: -1.92px;
margin-bottom: 0;
}
.rpm-title{
background: linear-gradient(90deg, #141B5D 0%, #9810FA 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 150%;
letter-spacing: -1.92px;
}
.rpm-desc{
color: var(--Colors-Neutral-900, #4A4A4A);
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 200%; /* 40px */
}
.rpm-device-card{
border-radius: 4px;
background: #FFF;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
overflow:hidden;
height:100%;
}
.rpm-card-title{
padding:40px;
border-right:0.8px solid #E5E7EB;
border-bottom:0.8px solid #E5E7EB;
}
.rpm-card-title h2{
color: #1A1A1A;
text-align: center;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 52.8px; /* 165% */
}
.rpm-card-info{
padding:40px;
border-bottom:0.8px solid #E5E7EB;
}
.rpm-status{
border-radius: 4px;
background: #10B981;
padding:6px 14px;
color: #FFF;
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 16.5px; /* 150% */
letter-spacing: 1.5px;
display:inline-block;
margin-bottom:15px;
}
.rpm-card-info p{
color: #4A4A4A;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25.2px; /* 180% */
margin-bottom: 0;
}
.rpm-coming{
border-radius: 4px;
background: #3B82F6;
padding:6px 14px;
color: #FFF;
font-size: 11px;
font-style: normal;
font-weight: 700;
line-height: 16.5px; /* 150% */
letter-spacing: 1.5px;
display:inline-block;
margin-bottom:15px;
}
.rpm-card-image{
padding:30px;
text-align:center;
background: #F9FAFB;
border-right:1px solid #E5E7EB;
}
.rpm-inner-image
{
background: #F9FAFB;
height: 100%;  
}
.rpm-card-capabilities{
padding:30px;
}
.rpm-card-capabilities h6{
color: #1A1A1A;
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 18px; /* 150% */
letter-spacing: 1.2px;
margin-bottom:15px;
}
.rpm-cap-list{
list-style:none;
padding:0;
margin:0;
}
.rpm-cap-list li{
padding:10px 0;
border-bottom:1px solid #eee;
position:relative;
padding-right:25px;
color: #6B7280;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 19.5px; /* 150% */
}
.rpm-cap-list li:after{
content: "\F26E";
font-family: "Bootstrap-icons";
position:absolute;
right:0;
top: 10px;
color:#fff;
border-radius: 26843500px;
background: linear-gradient(180deg, #141B5D 0%, #9810FA 100%);
font-size: 14px;
width: 16px;
height: 16px;
padding-top: 2px;
display: flex;
justify-content: center;
align-items: center;
}