/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-primary: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-secondary: "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: #0a3d44;
    background: #fff;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    border: 1px solid #C0EDEE;
    background: #FAFCFC;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid #C0EDEE;
}

.mega-grid {
    display: flex;
}

.mega-grid .header-column {
    width: calc(100% / 3);
    padding: 40px 31px;
    border-right: 1px solid #C0EDEE;
}

.mega-grid .header-column:last-child {
    border-right: none;
}

.header-list ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px !important;
    color: #0E7F8F;
    list-style-type: disc !important;
    margin-left: 50px;
}

.header-list ul li {
    font-size: 16px;
    font-weight: 500;
}

.header-list ul li a {
    padding: 0 !important;
    color: inherit;
    text-decoration: none;
}

.header-list ul li a:hover {
    color: #FC821F;
}

.header-btn {
    margin-bottom: 35px;
}

.header-btn a.header-btn-anchor {
    display: flex;
    align-items: center;
    gap: 17px;
    background: linear-gradient(180deg, #F3FFFE 0%, #FFFFFF 100%);
    box-shadow: 0px 4px 12.3px 0px #0000000D;
    border: 1px solid #C0EDEE;
    font-size: 24px !important;
    padding: 24px 18px;
    font-weight: 500;
    outline: none;
    font-family: var(--font-secondary);
    border-radius: 13px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.header-btn a.header-btn-anchor:hover {
    border: 1px solid #FCC892;
    box-shadow: 0px 4px 12.3px 0px #0000000D;
    background: linear-gradient(180deg, #FFF7EE 0%, #FFFFFF 100%);
    color: #072F35 !important;
}

.header-btn a.header-btn-anchor:hover img {
    filter: invert(54%) sepia(83%) saturate(1700%) hue-rotate(2deg) brightness(102%) contrast(101%);
}

.header-btn a.header-btn-anchor img {
    height: 27px;
}

.logo img {
    height: auto;
}

/* HAMBURGER */
.hamburger {
    display: none;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #072F35;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.nav ul {
    display: flex;
    list-style-type: none;
}

.nav a.main-link {
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    color: #072F35;
    font-weight: 500;
    padding: 35px 24px;
    display: block;
}

.nav a.main-link:hover {
    color: #FC821F;
}

.mob {
	display: none;
}

/* BUTTONS */
.btn {
    padding: 10px 26px;
    border-radius: 42px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #FC821F;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background: #0E7F8F;
    color: #fff;
}

.btn-outline {
    border: 1px solid #0E7F8F;
    color: #0E7F8F;
    background: #fff;
    transition: background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.btn-outline:hover {
    background: #0E7F8F;
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    z-index: 2;
    padding: 56px 0 74px;
    overflow: hidden;
}

main {
    margin-top: 90px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background: url('../assets/images/hero-bg-grid.svg') center center no-repeat;
    background-size: cover;
}

.cfo-grid {
    position: absolute;
    inset: 0;
    background: url('../assets/images/open-cfo-bg.svg') center center no-repeat;
    background-size: contain;
    top: -60%;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-left: 7%;
    padding-right: 7%;
    gap: 30px;
}

.hero-content .hero-left {
    min-width: 45%;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 500;
    color: #045868;
}

/* ICON CIRCLES */
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 4px 7px 0px #49D6CE47;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
}

.hero-desc {
    margin-top: 28px;
    font-size: 20px;
    max-width: 750px;
    margin-inline: auto;
    color: #072F35;
}

.hero span.highlight {
	color: #FC821F;
	color: #FA903A;
	font-weight: bold;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.hero-right video {
    display: block;
    width: 100%;
    border: solid 3px #C0EDEE;
    border-radius: 43px;
}

@media(max-width: 1024px) {
    .hero-right video {
        width: 100%;
    }
}

/* SECTION */
.agentic-platform {
    background: #072F35;
    padding: 68px 0 200px;
    position: relative;
    z-index: 1;
}

/* CONTAINER */
.container-large {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* HEADER */
.section-head {
    margin-bottom: 60px;
}

.section-head h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 55%;
    color: #fff;
}

.section-head h3 span {
    color: #FA903A;
}

.section-head .subtext {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
    margin-top: 27px;
    max-width: 45%;
}

/* COMMON WHITE CARD */
.white-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #CFF8F9;
    padding: 17px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 53px;
}

.white-card .white-card-top {
    display: flex;
    margin-bottom: 20px;
}

.white-card .card-content {
    width: 50%;
    padding: 32px 30px 35px 52px;
}

.white-card .white-card-bottom {
    padding-left: 52px;
    padding-bottom: 16px;
}

.mob-accordion {
    display: none;
}

.white-card .white-card-bottom h6 {
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: #FC821F;
}

.white-card .feature-list {
    padding: 30px 0 0 20px;
}

.white-card .card-visual {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #FAFCFC; */
    border-radius: 15px;
    position: relative;
    /* border: 1px solid #C0EDEE; */
}

/*
.white-card .card-visual::after {
    content: "";
    z-index: 0;
    background-image: radial-gradient(#C0EDEE 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
*/

.white-card .card-visual>* {
    position: relative;
    z-index: 2;
    width: 100%;
}

.feature-list li::marker {
    color: #FC821F;
    font-size: 1.4em;
}

.white-card .card-content h3,
.mob-accordion h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: #229CA4;
    margin-bottom: 17px;
}

.white-card .card-content p {
    font-size: 16px;
    font-weight: 500;
    color: #072F35;
    line-height: 1.3;
}

/* FEATURES */

.feature-list li {
    margin-bottom: 18px;
}

.feature-list div {
    display: block;
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 500;
    color: #072F35;
    line-height: 1.2;
    margin-bottom: 10px;
}

.feature-list span {
    font-size: 15px;
    font-weight: 300;
    color: #072F35;
}

/* TAGS */
.card-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.card-tags a {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 5px;
    background: #FFF0DE;
    color: #072F35;
    border: 1px solid #F9AA1E;
}

/* VISUAL */
.card-visual img {
    width: 100%;
}

/* CTA */
.platform-cta {
    margin-top: -120px;
    position: relative;
    z-index: 1;
}

.platform-cta div.inner-platfrom-card {
    background:
        url("../assets/images/platform-bg.svg") center / cover no-repeat,
        #F3FFFE;
    border: 1px solid #C0EDEE;
    border-radius: 15px;
}

.platform-cta div.inner-platfrom-card .inner-card-wrapper {
    max-width: 50%;
    margin: auto;
    padding: 60px 0;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.platform-cta h4 {
    font-size: 40px;
    font-weight: 500;
    color: #04262D;
}

/* SECTION */
.why-opencfo {
    padding: 91px 0;
    background: #fff;
    text-align: center;
    position: relative;
}

.why-opencfo .why-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADING */
.why-head h2 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    color: #072F35;
    width: 90%;
}

.why-head h2 span {
    color: #ff8a1f;
}

.why-head p {
    max-width: 620px;
    margin: 26px auto 34px;
    font-size: 20px;
    font-weight: 400;
    color: #072F35;
}

/* TABS */
.why-tabs {
    display: inline-flex;
    border: 1px solid #35B9B9;
    background: #fff;
    border-radius: 61px;
    padding: 11px 13px;
    position: relative;
    z-index: 1;
}

.tab-btn {
    padding: 10px 26px;
    border-radius: 38px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    color: #35B9B9;
}

.tab-btn.active {
    background: linear-gradient(90deg, #229CA4 0%, #072F35 100%);
    color: #fff;
}

/* GRID */
.benefit-grid {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: center;
    background: #FAFCFC;
    border-radius: 14px;
    padding: 50px 40px;
    position: relative;
}

.benefit-grid .row1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    position: relative;
    width: 100%;

}

.benefit-grid .row1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 0.9px;
    background: linear-gradient(270deg, rgba(38, 112, 108, 0) 0%, #49D6CE 50.48%, rgba(38, 112, 108, 0) 100%);
}

.benefit-grid .row2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    width: 100%;
}

/* CENTER DIVIDERS */
.benefit-card {
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.benefit-card .benifit-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 0.8px;
    height: 90%;
    background: linear-gradient(180deg, rgba(38, 112, 108, 0) 0%, #49D6CE 49.52%);
}

.row2 .benefit-card:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-50%);
    width: 0.8px;
    height: 100%;
    background: linear-gradient(0deg, rgba(38, 112, 108, 0) 0%, #49D6CE 49.52%);
}

.benefit-card:last-child:after {
    content: none;
}

/* CARD */
.benefit-card img {
    margin-bottom: 14px;
}

.benefit-card h4 {
    font-size: 24px;
    width: 70%;
    font-weight: 500;
    color: #072F35;
    margin-bottom: 18px;
}

.benefit-card p {
    font-size: 15px;
    font-weight: 300;
    color: #072F35;
    width: 68%;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    margin-top: -30px;
    position: relative;
    z-index: 0;
    margin-bottom: -20px;
}

.tab-content.active {
    display: block;
}

.why-cta {
    position: relative;
    z-index: 1;
}

/* SECTION */
.how-it-works {
    background: #072F35;
    padding: 59px 0 230px;
    color: #fff;
}

/* HEADER */
.hiw-head {
    max-width: 520px;
    margin-bottom: 32px;
}

.hiw-head h2 {
    font-size: 60px;
    font-weight: 500;
    color: #49D6CE;
    margin-bottom: 25px;
    line-height: 1;
}

.hiw-head p {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

/* STEPS WRAPPER */
.hiw-steps {
    border: 1px solid #047185;
}

/* STEP */
.hiw-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 50px;
    border-bottom: 1px solid #047185;
}

.hiw-step:last-child {
    border-bottom: none;
}

/* NUMBER */
.step-num {
    display: inline-block;
    font-size: 150px;
    font-weight: 100;
    line-height: 1.421;
    letter-spacing: 0;
    background: linear-gradient(180deg, #49D6CE 0%, #0C3639 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 20%;
}

/* CONTENT */
.step-content h4 {
    font-size: 40px;
    font-weight: 500;
    color: #FC821F;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    font-weight: 300;
    max-width: 420px;
    color: #FFFFFF;
}

/* OVERLAP SECTION */
.onboarding {
    margin-top: -120px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* CARD */
.onboarding-card {
    background: #F3FFFE;
    border-radius: 15px;
    border: 1px solid #C0EDEE;
    padding: 44px 54px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
}

/* LEFT */
.onboarding-left h3 {
    font-size: 40px;
    font-weight: 500;
    color: #04262D;
    margin-bottom: 16px;
}

.onboarding-left h3 span {
    color: #047185;
}

.onboarding-left p {
    font-size: 14px;
    color: #5f7d82;
    max-width: 420px;
	margin-bottom: 16px;
}

.onboarding-card .onboarding-right {
    border-left: 1px solid #C0EDEE;
}

.onboarding-card .onboarding-right .onboarding-item {
    padding: 31px 43px;
}

.onboarding-card .onboarding-right .onboarding-item:first-child {
    border-bottom: 1px solid #C0EDEE;
}

.onboarding-card .bottom-element {
    position: absolute;
    bottom: -5px;
    left: 54px;
    left: 25%;
}

.onboarding-item h5 {
    font-size: 24px;
    font-weight: 500;
    color: #047185;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.onboarding-item h5 img {
    width: 28px;
    height: auto;
}

.onboarding-item p {
    font-size: 15px;
    font-weight: 300;
    color: #072F35;
}

/* SECTION */
.integration-section {
    padding: 47px 0 90px;
    background: #fff;
    text-align: center;
}

/* HEADING */
.integration-head h2 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2;
    color: #072F35;
}

.integration-head h2 span {
    color: #ff8a1f;
}

.integration-head p {
    margin-top: 17px;
    font-size: 20px;
    font-weight: 400;
    color: #072F35;
    margin-inline: auto;
}

/* SLIDER */
.integration-slider {
    margin-top: 50px;
}

.integration-slider .swiper-slide {
    display: flex;
    width: auto;
    min-width: 165px;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 36px;
}

/* Divider */
.integration-slider .swiper-slide::after {
    content: "";
    position: absolute;
    right: 0;
    height: 68px;
    width: 1px;
    background: #C0EDEE;
}

.integration-slider .swiper-slide:last-child::after {
    display: none;
}

.integration-slider img {
    max-height: 40px;
    width: auto;
}

/* SECTION */
.trial-cta {
    background: url(../assets/images/free-trail-bg.svg) center / cover no-repeat, #072F35;
    padding: 53px 0 43px 0;
    position: relative;
    overflow: hidden;
}

/* INNER */
.trial-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 0 75px;
}

/* LEFT TEXT */
.trial-cta-inner h3 {
    font-size: 40px;
    font-weight: 500;
    color: #66e3dd;
}

/* RIGHT GROUP */
.trial-cta-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 28px;
}

.trial-cta-right p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    width: 40%;
    color: #cbe7e9;
    text-align: right;
}

.trial-cta-right .divider {
    width: 1px;
    height: 42px;
    background: #C0EDEE;
}

/* SECTION */
.faq-section {
    background: #043F4A;
    padding: 88px 0 200px 0;
    color: #fff;
}

.faq-title {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 30px;
}

.faq-list {
    border-top: 1px solid #50888A;
}

.faq-item {
    border-bottom: 1px solid #50888A;
}

.faq-question {
    width: 100%;
    padding: 30px 0;
    background: none;
    border: none;
    color: #cde9ec;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    cursor: pointer;
    gap: 30px;
}

.faq-item.active .faq-question {
    padding-bottom: 10px;
}

.faq-item.active .faq-question span {
    color: #82E5E0;
}

.faq-question span {
    max-width: 880px;
    font-size: 20px;
    line-height: 1.5;
}

/* ICON */
.faq-question .icon {
    font-size: 26px;
    line-height: 1;
    color: #8bd7db;
    transition: transform 0.25s ease;
}

/* ANSWER */
.faq-answer {
    display: none;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-size: 15px;
    font-weight: 300;
    color: #FFFFFF;
    padding: 0 0 26px;
    max-width: 880px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.final-cta {
    background: #083e44;
    padding: 64px 0;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 84px;
}

.final-cta-inner h2 {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 500;
    color: #ffffff;
    max-width: 85%;
}

.final-cta-left {
    width: 55%;
    border-right: 1px solid #50888A;
}

.final-cta-inner h2 span {
    color: #FC821F;
}

.final-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 45%;
    padding-left: 70px;
}

.final-cta-right p {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.5;
    max-width: 360px;
}

.final-cta-right form {
	width: 100%;
}

.form-input {
	margin-bottom: 10px;
}

.form-input input, .form-input textarea {
	padding: 10px;
    width: 70%;
    border-radius: 15px;
    font-size: 20px;
    border: 1px solid #C0EDEE;
    background: #cde9ec;
    font-family: var(--font-secondary);
    resize: vertical;
}

form button {
	border: none;
	cursor: pointer;
}


/* FOOTER WRAPPER */
.site-footer {
    margin-top: -100px;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

.footer-card {
    background: #F3FFFE;
    border: 1px solid #C0EDEE;
    border-radius: 15px;
    padding: 48px 56px;
    display: flex;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.footer-brand {
    max-width: 85%;
}

.footer-card .footer-left {
    width: 30%;
}

.footer-card .footer-right {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 57px;
    border-left: 1px solid #A7E2DF;
}

.footer-card .footer-right .row1 ul {
    display: flex;
    align-items: center;
    gap: 47px;
}

.footer-card .footer-right .row2 {
    display: flex;
    align-items: end;
}

.footer-card .footer-right .row2 .footer-col {
    padding: 0 28px;
    border-right: 1px solid #A7E2DF;
}

.footer-col img {
	height: 76px;
}

.footer-card .footer-right .row2 .footer-col:first-child {
    padding-left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-card .footer-right .row2 .footer-col:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-logo img {
    height: 76px;
    width: 100%;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 15px;
    font-weight: 300;
    color: #04262D;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: #0E7F8F;
}
.footer-links a:hover, .footer-col a:hover{
    color: #FC821F;
}
.footer-col h5 {
    font-size: 20px;
    font-weight: 400;
    color: #0E7F8F;
    margin-bottom: 15px;
}

.footer-col a {
    font-size: 15px;
    font-weight: 300;
    color: #072F35;
    text-decoration: none;
    line-height: 1.6;
}

.security-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 300;
    color: #0b3c43;
    flex-direction: column;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social img {
    height: 18px;
}