* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #f7f8fb;
    color: #111;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

header {
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: #4a6cf7;
}

.logo img{
    width: 120px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language {
    color: #666;
    font-weight: 500;
    cursor: pointer;
}

.login {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

.btn-primary {
    background: #003366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #004992;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ================= HERO ================= */

.hero {
    padding-top: 160px;
    padding-bottom: 120px;
    text-align: center;
    background: linear-gradient(90deg, #fefcfb 0%, #faf6f1 100%);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    background: #fff;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #6c4cf1, #c44dd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sap-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
}

.sap-title span {
    background: #0fa3ff;
    color: #fff;
    padding: 4px 14px;
    border-radius: 6px;
    margin-right: 10px;
}

.hero p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-dark {
    background: #003366;
    color: #fff;
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}
.btn-dark:hover{
    background: #004992;
}

.btn-light {
    border: 1px solid #ddd;
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    background: #fff;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
    nav {
        position: absolute;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        transition: 0.4s;
        border-bottom: 1px solid #eee;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 42px;
    }

    .sap-title {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .hero {
        padding-top: 140px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-dark,
    .btn-light {
        padding: 14px 22px;
    }
}
/* ================= FEATURES STRIP ================= */

.features-strip {
    background: #fafcfe;
    padding: 60px 0;
    margin-top: -40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 22px;
    
    padding: 14px;
    border-radius: 12px;
   
    margin-bottom: 20px;
}
.feature-item .fa-cloud{
    background: #edf7ff;
    color: #3655b7;
}
.feature-item .fa-plug{
    background: #fffbea;
    color: #c37819;
}
.feature-item .fa-shield{
    background: #dbeafe;
    color: #07325b;
}
.feature-item .fa-bolt{
    background: #f1f5f9;
    color: #495668;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1b2b4b;
}

.feature-item p {
    font-size: 15px;
    color: #7a8798;
}

/* ================= MODULES ================= */

.modules {
    padding: 120px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #023266;
    margin-bottom: 10px;
}

.section-title p {
    color: #7b8a9a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    max-width: 800px;
    margin: 0 auto;
}

.module-card {
    display: flex;
    align-items: center;
    background: #f2f8ff;
    border-radius: 20px;
    padding: 40px;
    gap: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.module-image {
    background: url('../images/blur-bg.jpg');
    background-size: cover;
    height: 400px;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.2);
}
.module-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
}

.module-content {
    max-width: 520px;
}

.module-icon {
    background: #fff;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #2b5cff;
}

.module-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.module-content h5 {
    font-size: 16px;
    color: #2b5cff;
    margin-bottom: 18px;
    margin-top: 10px;
}

.module-content p {
    color: #6f7d90;
    margin-bottom: 20px;
    line-height: 1.7;
}

.module-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.module-content ul li {
    margin-bottom: 10px;
    color: #5f6d80;
}

.module-content ul li i {
    color: #ffb020;
    margin-right: 8px;
}

.module-link {
    text-decoration: none;
    color: #2b5cff;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-card {
        flex-direction: column;
        text-align: center;
    }

    .module-content {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }
}
/* ================= Docu sign CARD BASE ================= */

.docu-sign-section {
    padding: 80px 0;
    background: #fff;
}

.docu-sign-section .cloud-module-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #eff7ff;
    padding: 55px;
    border-radius: 22px;
    box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.1);
}

/* reverse second layout */

.reverse-layout {
    flex-direction: row-reverse;
}

/* ================= LEFT CONTENT ================= */

.cloud-module-left {
    max-width: 520px;
}

.cloud-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ffe9cb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ff9900;
}

.docu-sign-section .blue-icon {
    background: #003366;
    color: #fff;
}

.cloud-module-left h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1a2b49;
}

.cloud-module-left h5 {
    color: #7d8aa3;
    margin-bottom: 18px;
    font-size: 15px;
}

.cloud-module-left p {
    color: #6f7d90;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ================= LIST ================= */

.cloud-module-left ul {
    list-style: none;
    margin-bottom: 20px;
}

.cloud-module-left ul li {
    margin-bottom: 12px;
    color: #4d5d73;
    font-size: 15px;
}

.cloud-module-left ul li i {
    color: #f5a623;
    margin-right: 10px;
}

.reverse-layout ul li i {
    color: #2f6bff;
}

/* ================= LINKS ================= */

.cloud-link {
    text-decoration: none;
    color: #f5a623;
    font-weight: 600;
}
.blue-link {
    color: #2f6bff;
}

/* ================= IMAGE ================= */
.cloud-module-right{
    background: url('../images/blur-bg.jpg');
    background-size: cover;
    height: 400px;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.2);
}
.cloud-module-right img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .cloud-module-card {
        flex-direction: column;
        text-align: center;
    }

    .reverse-layout {
        flex-direction: column;
    }

    .cloud-module-right img {
        width: 100%;
    }
}


/* ================= MODULE CARD BASE ================= */

.cloud-module-section {
    padding: 80px 0;
    background: #f9fbfc;
}

.cloud-module-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #fafcfe;
    padding: 55px;
    border-radius: 22px;
    box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.1);
}

/* reverse second layout */

.reverse-layout {
    flex-direction: row-reverse;
}

/* ================= LEFT CONTENT ================= */

.cloud-module-left {
    max-width: 520px;
}

.cloud-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ffe9cb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ff9900;
}

.blue-icon {
    background: #eef4ff;
    color: #2f6bff;
}

.cloud-module-left h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1a2b49;
}

.cloud-module-left h5 {
    color: #7d8aa3;
    margin-bottom: 18px;
    font-size: 15px;
}

.cloud-module-left p {
    color: #6f7d90;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ================= LIST ================= */

.cloud-module-left ul {
    list-style: none;
    margin-bottom: 20px;
}

.cloud-module-left ul li {
    margin-bottom: 12px;
    color: #4d5d73;
    font-size: 15px;
}

.cloud-module-left ul li i {
    color: #f5a623;
    margin-right: 10px;
}

.reverse-layout ul li i {
    color: #2f6bff;
}

/* ================= LINKS ================= */

.cloud-link {
    text-decoration: none;
    color: #f5a623;
    font-weight: 600;
}
.blue-link {
    color: #2f6bff;
}

/* ================= IMAGE ================= */
.cloud-module-right{
    background: url('../images/blur-bg.jpg');
    background-size: cover;
    height: 400px;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.2);
}
.cloud-module-right img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .cloud-module-card {
        flex-direction: column;
        text-align: center;
    }

    .reverse-layout {
        flex-direction: column;
    }

    .cloud-module-right img {
        width: 100%;
    }
}

.automation-section{
    background: #fff;
    border-top: 1px solid #ddd;
}
.automation-section .cloud-module-card{
    background: #dbe8fb;
    background-image: linear-gradient(to right, #fff , #dbe8fb);
}
.automation-section .cloud-icon-box{
    background: #2664ec;
    color: #fff;
}
.automation-section .cloud-module-left ul li i{
    color: #2f6bff;
}
.automation-section .cloud-link{
    color: #2f6bff;
}


.exchange-section{
    border-top: 1px solid #ddd
}


/* pricing section */
.ps-section {
    text-align: center;
    padding: 80px 0;
}

.ps-section h1 {
    font-size: 40px;
    color: #123c63;
    margin-bottom: 15px;
}

.ps-section p {
    color: #6b7c93;
    margin-bottom: 50px;
}

.ps-pricing {
    display: flex;
    justify-content: center;
    gap: 25px;
    
}

.ps-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
}

.ps-card--highlight {
    border: 2px solid #0d3b66;
}

.ps-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb703;
    color: #000;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.ps-icon {
    width: 40px;
    height: 40px;
    background: #e8f1fb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 18px;
}
.bg-icon{
    background: #003366;
    color: #fff;
}
.ps-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.ps-subtitle {
    font-size: 14px;
    color: #6b7c93;
    margin-bottom: 20px;
}

.ps-price {
    font-size: 32px;
    font-weight: bold;
}

.ps-price span {
    font-size: 14px;
    color: #6b7c93;
}

.ps-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ps-list li {
    margin-bottom: 15px;
    font-size: 14px;
}
.ps-list li i{
    color: #ffb703;
    margin-right: 5px;
}
.ps-list li .blue-icon{
    color: #003366;
}

.ps-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.ps-btn--outline {
    border: 1px solid #cdd7e1;
    color: #0d3b66;
}

.ps-btn--primary {
    background: #0d3b66;
    color: #fff;
}

.ps-btn--primary:hover {
    background: #092c4c;
}

.ps-note {
    margin-top: 20px;
    font-size: 12px;
    color: #6b7c93;
}

/* consensus section */

.consensus-section {
    padding: 110px 0;
    background: #fdfdfd;
}

.consensus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.consensus-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 14px;
}

.consensus-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blue {
    background: #e6f0ff;
    color: #1d4ed8;
}
.orange {
    background: #fff4e6;
    color: #f59e0b;
}
.gray {
    background: #eef2f7;
    color: #475569;
}
.consensus-card h4{
    font-size: 18px;
    margin-bottom: 10px;
}
.consensus-card p{
    color: #6f7d90;
    font-size: 15px;
    line-height: 1.6em;
}
.billing-note {
    text-align: center;
    margin-top: 18px;
    color: #94a3b8;
}
.section-heading {
    text-align: center;
    font-size: 40px;
    color: #1a365d;
    margin-bottom: 10px;
}

.section-subheading {
    text-align: center;
    color: #6c7a89;
    margin-bottom: 60px;
}


.security-section {
    padding: 110px 0;
    background: #f7f8fb;
}

.security-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.security-subtitle {
    max-width: 780px;
    margin: auto;
    text-align: center;
    color: #7c8ea6;
    margin-bottom: 60px;
    line-height: 1.7;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.security-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e6ecf2;
    transition: 0.25s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.security-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.security-card h4{
    margin-bottom: 10px;
    font-size: 18px;
}
.security-card p{
    color: #6b7c93;
    font-size: 15px;
    line-height: 1.6em;
}

/* icon colors */

.security-section .blue {
    background: #e6f0ff;
    color: #1d4ed8;
}

.security-section .green {
    background: #e7f8f1;
    color: #059669;
}

.security-section .orange {
    background: #fff4e6;
    color: #f59e0b;
}

.security-section .gray {
    background: #eef2f7;
    color: #475569;
}

/* responsive */

@media (max-width: 992px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}




.faq-section {
    background: #fff;
    padding: 100px 0;
}

.faq {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.faq-question {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: white;
    border-radius: 10px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.faq-question i{
    color: #0fa3ff;
    margin-right: 10px;
}

.faq-answer {
    display: none;
    padding: 18px;
    padding-top: 10px;
    font-size: 15px;
    line-height: 1.7em;
    font-weight: 400;
    color: #6b7c93;
    margin-top: 5px;
    border-radius: 10px;
}
.faq-answer b{
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 0;
}
.faq-answer ul{
    list-style-type: none;
    margin-top: 10px;
}
.faq-footer{
    text-align: center;
    margin-top: 50px;
}
.faq-footer h3{
    font-size: 20px;
    margin-bottom: 10px;
}
.faq-footer a{
    background: #0d3b66;
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}


.ps-cta {
    text-align: center;
    padding: 80px 20px;
    background: #f5f7fb;
}

.ps-cta-title {
    font-size: 36px;
    color: #123c63;
    margin-bottom: 10px;
}

.ps-cta-subtitle {
    color: #6b7c93;
    margin-bottom: 30px;
}

.ps-cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ps-cta-note {
    font-size: 13px;
    color: #8a97a6;
}

.ps-footer {
    background: #fff;
    padding: 80px 0 0;
    border-top: 1px solid #e5eaf0;
}

.ps-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.ps-footer-col {
    flex: 1;
    min-width: 200px;
}

.ps-footer-brand p {
    color: #6b7c93;
    font-size: 14px;
}

.ps-footer-logo {
    font-weight: bold;
    margin-bottom: 15px;
}
.ps-footer-logo img{
    width: 120px;
}

.ps-footer-col h4 {
    margin-bottom: 15px;
    color: #123c63;
}

.ps-footer-col ul {
    list-style: none;
    padding: 0;
}

.ps-footer-col li {
    margin-bottom: 12px;
}
.ps-footer-col li a{
    color: #6b7c93;
    font-size: 14px;
    text-decoration: none;
}
.ps-footer-col li a:hover{
    text-decoration: underline;
}

.ps-footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 13px;
    color: #8a97a6;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.ps-status {
    color: green;
}



@media (max-width: 992px) {
    .container{
        padding: 0 15px;
    }
    .logo img {
        width: 100px;
    }
    .nav-right .language{
        display: none;
    }
    nav ul{
        gap: 0;
        padding: 0;
    }
    nav ul li a{
        border-top: 1px solid #ddd;
        padding: 20px 30px;
        width: 100%;
        display: block;
    }
    .modules{
        padding: 50px 0;
    }
    .module-card{
        padding: 30px 20px;
    }
    .module-content{
        text-align: left;
    }
    .module-image{
        height: 270px;
        padding: 20px;
    }
    .automation-section .cloud-module-card{
        padding: 30px 15px;
        box-sizing: border-box;
    }
    .cloud-module-section{
        padding: 50px 0;
    }
    .cloud-module-left{
        text-align: left;
    }
    .cloud-module-right{
        height: 270px;
        padding: 20px;
    }
    .cloud-module-card{
        padding: 30px 20px;
    }
    .docu-sign-section{
        padding: 50px 0;
    }
    .docu-sign-section .cloud-module-card{
        padding: 30px 15px;
    }
    .ps-section h1{
        font-size: 30px;
    }
    .section-heading{
        font-size: 30px;
    }
    .faq-question{
        font-size: 16px;
    }

    .ps-pricing{
        display: block;
    }
    .ps-card{
        margin-bottom: 30px;
    }
    .consensus-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .ps-cta-title{
        font-size: 30px;
    }
    .ps-footer-container{
        padding: 20px;
    }
    .ps-footer-bottom{
        padding: 30px 20px;
    }
}
