:root {

    --primary: #0A6CFF;
    --secondary: #14B8A6;

    --heading: #101828;
    --text: #667085;

    --white: #ffffff;

    --border: #E5E7EB;

    --bg: #F8FAFC;

    --shadow: 0 20px 50px rgba(15, 23, 42, .08);

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    background: var(--bg);

    color: var(--heading);

    font-family: 'Inter', sans-serif;

}

a {

    text-decoration: none;

}

ul {

    list-style: none;

}

.container {

    width: min(92%, 1280px);

    margin: auto;

}

.header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

}

.navbar {

    padding: 28px 0;

    transition: .35s;

}

.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.logo {

    font-family: 'Sora', sans-serif;

    font-size: 30px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--heading);

}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 45px;

}

.nav-menu a {

    color: var(--heading);

    font-size: 15px;

    font-weight: 500;

    position: relative;

    transition: .3s;

}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}

.nav-menu a:hover {

    color: var(--primary);

}

.nav-menu a:hover::after {

    width: 100%;

}

.contact-btn {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--heading);

    font-weight: 600;

    transition: .35s;

}

.contact-btn i {

    transition: .35s;

}

.contact-btn:hover {

    color: var(--primary);

}

.contact-btn:hover i {

    transform: translateX(5px);

}

.menu-btn {

    width: 50px;

    height: 50px;

    border: none;

    background: var(--white);

    border-radius: 14px;

    display: none;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    box-shadow: var(--shadow);

}

.menu-btn i {

    font-size: 20px;

}

.navbar.scrolled {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(20px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);

    animation: slideDown .35s ease;

}

@keyframes slideDown {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}

@media(max-width:1000px) {

    .nav-menu {

        position: fixed;

        top: 90px;

        left: -100%;

        width: 100%;

        background: var(--white);

        flex-direction: column;

        gap: 30px;

        padding: 45px;

        transition: .35s;

        box-shadow: var(--shadow);

    }

    .nav-menu.active {

        left: 0;

    }

    .menu-btn {

        display: flex;

    }

    .contact-btn {

        display: none;

    }

}

@media(max-width:768px) {

    .logo {

        font-size: 24px;

    }

}

.hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 100px;

}

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .45;

}

.glow-1 {

    width: 420px;

    height: 420px;

    background: #D9F3FF;

    top: -120px;

    right: -120px;

}

.glow-2 {

    width: 350px;

    height: 350px;

    background: #DDFCEF;

    bottom: -150px;

    left: -80px;

}

.hero-container {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 100px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 35px;

    box-shadow: var(--shadow);

}

.hero-badge i {

    color: var(--primary);

}

.hero h1 {

    font-family: 'Sora', sans-serif;

    font-size: clamp(60px, 9vw, 105px);

    line-height: .95;

    letter-spacing: -4px;

    margin-bottom: 30px;

}

.hero p {

    max-width: 760px;

    margin: auto;

    color: var(--text);

    font-size: 20px;

    line-height: 1.9;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    justify-content: center;

    margin-top: 45px;

}

.hero-btn {

    background: var(--heading);

    color: #fff;

    padding: 18px 34px;

    border-radius: 60px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    transition: .35s;

}

.hero-btn:hover {

    transform: translateY(-6px);

}

.hero-link {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--heading);

    font-weight: 600;

}

.hero-bottom {

    margin-top: 90px;

}

.tech-circle {

    position: relative;

    width: 650px;

    height: 650px;

}

.center-core {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 170px;

    height: 170px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-family: 'Sora', sans-serif;

    font-size: 24px;

    font-weight: 700;

    box-shadow: var(--shadow);

    z-index: 20;

}

.orbit {

    position: absolute;

    top: 50%;

    left: 50%;

    transform-origin: center;

    width: 100%;

    height: 100%;

    animation: rotate 22s linear infinite;

}

.tech-card {

    position: absolute;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    background: #fff;

    padding: 18px 24px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    box-shadow: var(--shadow);

}

.tech-card i {

    color: var(--primary);

}

.orbit2 {

    animation-duration: 18s;

}

.orbit3 {

    animation-duration: 26s;

}

.orbit4 {

    animation-duration: 16s;

}

.orbit5 {

    animation-duration: 30s;

}

.orbit6 {

    animation-duration: 20s;

}

.scroll-indicator {

    margin-top: 60px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    color: var(--text);

}

.scroll-indicator span {

    width: 2px;

    height: 45px;

    background: var(--primary);

    animation: scrollLine 2s infinite;

}

@keyframes rotate {

    from {

        transform: translate(-50%, -50%) rotate(0deg);

    }

    to {

        transform: translate(-50%, -50%) rotate(360deg);

    }

}

@keyframes scrollLine {

    0% {

        transform: scaleY(0);

        transform-origin: top;

    }

    50% {

        transform: scaleY(1);

    }

    100% {

        transform: scaleY(0);

        transform-origin: bottom;

    }

}

@media(max-width:900px) {

    .tech-circle {

        width: 430px;

        height: 430px;

    }

    .center-core {

        width: 130px;

        height: 130px;

        font-size: 18px;

    }

    .tech-card {

        padding: 12px 18px;

        font-size: 14px;

    }

}

@media(max-width:600px) {

    .hero {

        padding-top: 140px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: center;

    }

    .tech-circle {

        width: 320px;

        height: 320px;

    }

}

.about-section {

    padding: 140px 0;

    background:

        linear-gradient(135deg, #08111f, #13233f);

    position: relative;

    overflow: hidden;

}

.about-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    background: #0A6CFF20;

    border-radius: 50%;

    filter: blur(120px);

    top: -200px;

    right: -200px;

}

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 80px;

}

.section-tag {

    color: #7DD3FC;

    font-weight: 700;

    letter-spacing: 2px;

    display: inline-block;

    margin-bottom: 20px;

}

.about-left h2 {

    color: #fff;

    font-size: 56px;

    line-height: 1.15;

}

.about-right p {

    color: #CBD5E1;

    line-height: 2;

    font-size: 18px;

    margin-bottom: 35px;

}

.about-right a {

    color: #fff;

    display: inline-flex;

    gap: 10px;

    align-items: center;

    font-weight: 600;

}

.about-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.about-card {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 40px;

    transition: .4s;

}

.about-card:hover {

    transform: translateY(-12px);

    background: rgba(255, 255, 255, .12);

}

.about-card i {

    width: 70px;

    height: 70px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 18px;

    background: #0A6CFF;

    color: #fff;

    font-size: 28px;

    margin-bottom: 30px;

}

.about-card h3 {

    color: #fff;

    margin-bottom: 18px;

    font-size: 24px;

}

.about-card p {

    color: #CBD5E1;

    line-height: 1.8;

}

@media(max-width:1100px) {

    .about-grid {

        grid-template-columns: 1fr;

    }

    .about-cards {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .about-cards {

        grid-template-columns: 1fr;

    }

    .about-left h2 {

        font-size: 40px;

    }

}

.services-section {

    padding: 150px 0;

    background:
        radial-gradient(circle at right, #dbeafe 0%, transparent 28%),
        radial-gradient(circle at left bottom, #dcfce7 0%, transparent 25%),
        #F8FAFC;

}

.section-heading {

    max-width: 760px;

    margin-bottom: 80px;

}

.dark {

    color: var(--primary);

}

.section-heading h2 {

    font-size: 58px;

    line-height: 1.1;

    margin: 20px 0;

}

.section-heading p {

    font-size: 19px;

    color: var(--text);

    line-height: 1.9;

}

.services-section {

    padding: 140px 0;

    background: #F4F8FC;

}

.services-header {

    text-align: center;

    max-width: 760px;

    margin: auto auto 70px;

}

.services-header span {

    color: #0A6CFF;

    font-weight: 700;

    letter-spacing: 2px;

}

.services-header h2 {

    font-size: 58px;

    margin: 20px 0;

    line-height: 1.1;

}

.services-header p {

    color: #667085;

    line-height: 1.9;

}

.services-layout {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.service {

    padding: 55px;

    border-radius: 32px;

    position: relative;

    overflow: hidden;

    min-height: 320px;

    transition: .45s;

}

.service:hover {

    transform: translateY(-12px) scale(1.02);

}

.service::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    right: -80px;

    bottom: -80px;

    background: rgba(255, 255, 255, .15);

}

.service-icon {

    width: 80px;

    height: 80px;

    border-radius: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    background: rgba(255, 255, 255, .18);

    backdrop-filter: blur(10px);

    margin-bottom: 35px;

}

.service h3 {

    font-size: 34px;

    margin-bottom: 18px;

}

.service p {

    line-height: 1.9;

    max-width: 430px;

}

/* Card Colors */

.service-ai {

    background: linear-gradient(135deg, #2563EB, #38BDF8);

    color: white;

}

.service-cloud {

    background: linear-gradient(135deg, #14B8A6, #22C55E);

    color: white;

}

.service-security {

    background: linear-gradient(135deg, #7C3AED, #A855F7);

    color: white;

}

.service-software {

    background: linear-gradient(135deg, #F97316, #FB7185);

    color: white;

}

@media(max-width:900px) {

    .services-layout {

        grid-template-columns: 1fr;

    }

    .services-header h2 {

        font-size: 42px;

    }

    .service {

        min-height: auto;

    }

}

.impact-section {

    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background: #08111F;

}

.impact-overlay {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top left, #2563EB30 0%, transparent 30%),

        radial-gradient(circle at bottom right, #06B6D430 0%, transparent 35%);

}

.impact-header {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 80px;

}

.impact-header span {

    color: #60A5FA;

    font-weight: 700;

    letter-spacing: 2px;

}

.impact-header h2 {

    color: #fff;

    font-size: 58px;

    line-height: 1.1;

    max-width: 760px;

    margin: 20px auto 0;

}

.impact-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 30px;

}

.impact-left {

    display: flex;

}

.impact-right {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}

.impact-card {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    padding: 40px;

    transition: .4s;

}

.large {

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 100%;

    background: linear-gradient(135deg, #2563EB, #06B6D4);

}

.impact-card:hover {

    transform: translateY(-10px);

}

.impact-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .15);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 28px;

    margin-bottom: 30px;

}

.impact-card h3 {

    color: #fff;

    font-size: 28px;

    margin-bottom: 18px;

}

.impact-card p {

    color: #CBD5E1;

    line-height: 1.9;

}

@media(max-width:1000px) {

    .impact-grid {

        grid-template-columns: 1fr;

    }

    .impact-right {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:700px) {

    .impact-right {

        grid-template-columns: 1fr;

    }

    .impact-header h2 {

        font-size: 42px;

    }

}

.process-section {

    padding: 160px 0;

    background:
        linear-gradient(135deg, #EEF7FF, #FFFFFF);

}

.process-header {

    text-align: center;

    max-width: 700px;

    margin: auto auto 90px;

}

.process-header span {

    color: #0A6CFF;

    font-weight: 700;

    letter-spacing: 2px;

}

.process-header h2 {

    font-size: 58px;

    margin: 20px 0;

    line-height: 1.08;

}

.process-header p {

    color: #667085;

    line-height: 1.9;

}

.process-wrapper {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    position: relative;

    gap: 35px;

}

.progress-line {

    position: absolute;

    left: 8%;

    right: 8%;

    top: 45px;

    height: 4px;

    background: linear-gradient(to right, #0A6CFF, #14B8A6);

    z-index: 1;

    border-radius: 20px;

}

.process-step {

    position: relative;

    text-align: center;

    z-index: 5;

}

.step-circle {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: white;

    margin: auto auto 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    color: #0A6CFF;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);

    transition: .4s;

}

.process-step:hover .step-circle {

    transform: translateY(-12px) rotate(8deg);

    background: #0A6CFF;

    color: white;

}

.process-step h3 {

    font-size: 28px;

    margin-bottom: 15px;
    color: white;

}

.process-step p {

    color: #667085;

    line-height: 1.8;

}

@media(max-width:1100px) {

    .process-wrapper {

        grid-template-columns: 1fr;

    }

    .progress-line {

        display: none;

    }

    .process-step {

        padding-left: 110px;

        text-align: left;

    }

    .step-circle {

        position: absolute;

        left: 0;

        margin: 0;

    }

}

.stats-section {

    padding: 150px 0;

    background:
        radial-gradient(circle at top right, #3B82F620 0%, transparent 35%),
        radial-gradient(circle at bottom left, #14B8A620 0%, transparent 30%),
        #0B1220;

}

.stats-intro {

    text-align: center;

    max-width: 760px;

    margin: auto auto 70px;

}

.stats-intro span {

    color: #38BDF8;

    letter-spacing: 2px;

    font-weight: 700;

}

.stats-intro h2 {

    color: #fff;

    font-size: 60px;

    margin: 20px 0;

    line-height: 1.1;

}

.stats-intro p {

    color: #94A3B8;

    line-height: 1.9;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.stat-card {

    padding: 55px 35px;

    text-align: center;

    border-radius: 28px;

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s;

}

.stat-card:hover {

    transform: translateY(-10px);

    background: rgba(255, 255, 255, .08);

}

.stat-card h3 {

    font-size: 72px;

    color: #fff;

    margin-bottom: 15px;

    font-family: 'Sora', sans-serif;

}

.stat-card h3::after {

    content: "+";

    color: #38BDF8;

}

.stat-card span {

    color: #CBD5E1;

    font-size: 18px;

}

@media(max-width:900px) {

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .stats-intro h2 {

        font-size: 42px;

    }

}

.team-section {

    padding: 150px 0;

    background: linear-gradient(180deg, #ffffff, #EEF6FF);

}

.team-header {

    max-width: 720px;

    text-align: center;

    margin: 0 auto 70px;

}

.team-header span {

    color: var(--primary);

    font-weight: 700;

    letter-spacing: 2px;

}

.team-header h2 {

    font-size: 58px;

    margin: 20px 0;

    line-height: 1.1;

}

.team-header p {

    color: var(--text);

    line-height: 1.9;

}

.team-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.team-card {

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);

    transition: .4s;

}

.team-card:hover {

    transform: translateY(-12px);

}

.team-image {

    height: 320px;

    overflow: hidden;

}

.team-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.team-card:hover img {

    transform: scale(1.08);

}

.team-info {

    padding: 30px;

}

.team-info h3 {

    font-size: 28px;

    margin-bottom: 8px;

}

.team-info span {

    color: var(--primary);

    font-weight: 600;

}

.team-info p {

    margin-top: 20px;

    color: var(--text);

    line-height: 1.8;

}

.team-social {

    display: flex;

    border-top: 1px solid var(--border);

}

.team-social a {

    flex: 1;

    text-align: center;

    padding: 18px;

    color: #64748B;

    transition: .3s;

}

.team-social a:hover {

    background: var(--primary);

    color: #fff;

}

@media(max-width:1100px) {

    .team-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .team-grid {

        grid-template-columns: 1fr;

    }

    .team-header h2 {

        font-size: 42px;

    }

}

.footer {

    background: #08111F;

    color: #CBD5E1;

}

.footer-cta {

    background: linear-gradient(135deg, #2563EB, #06B6D4);

    border-radius: 0 0 70px 70px;

}

.footer-cta-content {

    padding: 90px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

}

.footer-cta span {

    color: #BFDBFE;

    font-weight: 700;

    letter-spacing: 2px;

}

.footer-cta h2 {

    color: #fff;

    font-size: 60px;

    margin: 20px 0;

    line-height: 1.08;

}

.footer-cta p {

    color: #E0F2FE;

    max-width: 650px;

    line-height: 1.9;

}

.footer-contact {

    display: flex;

    align-items: center;

    gap: 14px;

    background: #fff;

    color: #111827;

    padding: 18px 35px;

    border-radius: 60px;

    font-weight: 700;

    transition: .35s;

}

.footer-contact:hover {

    transform: translateY(-6px);

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding: 90px 0;

}

.footer-logo {

    color: #fff;

    font-family: 'Sora', sans-serif;

    font-size: 34px;

    font-weight: 700;

    display: inline-block;

    margin-bottom: 25px;

}

.footer-about p {

    line-height: 2;

    margin-bottom: 35px;

}

.footer-social {

    display: flex;

    gap: 15px;

}

.footer-social a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #13233F;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .35s;

}

.footer-social a:hover {

    background: #0A6CFF;

    transform: translateY(-5px);

}

.footer h4 {

    color: #fff;

    margin-bottom: 25px;

    font-size: 22px;

}

.footer ul {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.footer ul a {

    color: #CBD5E1;

    transition: .3s;

}

.footer ul a:hover {

    color: #fff;

    padding-left: 8px;

}

.footer-contact-list li {

    display: flex;

    gap: 14px;

    align-items: flex-start;

}

.footer-contact-list i {

    color: #38BDF8;

    margin-top: 3px;

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 30px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer-bottom div {

    display: flex;

    gap: 30px;

}

.footer-bottom a {

    color: #CBD5E1;

}

.footer-bottom a:hover {

    color: #fff;

}

@media(max-width:1000px) {

    .footer-cta-content {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

    .footer-bottom div {

        flex-direction: column;

        gap: 12px;

    }

    .footer-cta h2 {

        font-size: 42px;

    }

}

.solutions-hero {

    position: relative;

    overflow: hidden;

    min-height: 760px;

    padding: 180px 0 120px;

    background:

        radial-gradient(circle at 80% 30%, rgba(37, 99, 235, .12), transparent 30%),

        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, .12), transparent 25%),

        #f8fafc;

}


.solutions-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(#dbeafe 1px, transparent 1px),

        linear-gradient(90deg, #dbeafe 1px, transparent 1px);

    background-size: 70px 70px;

    opacity: .35;

}



.solutions-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}



.solutions-hero-text h1 {

    font-size: 78px;

    line-height: 1.02;

    letter-spacing: -3px;

    color: #071321;

    margin-bottom: 30px;

}



.solutions-hero-text p {

    font-size: 20px;

    color: #64748b;

    line-height: 1.9;

    max-width: 600px;

}



.hero-actions {

    display: flex;

    gap: 20px;

    margin-top: 45px;

}



.primary-action {

    background: #0a6cff;

    color: white;

    padding: 17px 32px;

    border-radius: 50px;

    display: flex;

    gap: 12px;

    align-items: center;

}



.secondary-action {

    padding: 17px 30px;

    border-radius: 50px;

    border: 1px solid #cbd5e1;

    color: #071321;

}



.solutions-visual {

    position: relative;

    height: 500px;

}

.solution-image-placeholder {

    position: relative;

    overflow: hidden;

    width: 100%;

    height: 100%;

    border-radius: inherit;

}



.solution-hero-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    user-select: none;

    pointer-events: none;

}


.ai-panel {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 420px;

    padding: 25px;

    border-radius: 32px;

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(20px);

    box-shadow: 0 40px 100px rgba(15, 23, 42, .15);

    border: 1px solid white;

}



.panel-header {

    display: flex;

    gap: 8px;

    margin-bottom: 35px;

}



.panel-header span {

    width: 10px;

    height: 10px;

    background: #94a3b8;

    border-radius: 50%;

}



.ai-status {

    display: flex;

    gap: 20px;

    align-items: center;

}



.status-icon {

    width: 65px;

    height: 65px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #dbeafe;

    color: #0a6cff;

    border-radius: 20px;

    font-size: 28px;

}



.ai-status small {

    color: #64748b;

}



.ai-status h3 {

    margin-top: 5px;

    color: #16a34a;

}



.data-lines div {

    height: 12px;

    background: #e2e8f0;

    margin-top: 18px;

    border-radius: 20px;

}



.data-lines div:nth-child(2) {

    width: 80%;

}



.data-lines div:nth-child(3) {

    width: 60%;

}



.metrics {

    display: flex;

    gap: 20px;

    margin-top: 35px;

}



.metrics div {

    flex: 1;

    background: #f1f5f9;

    padding: 20px;

    border-radius: 20px;

}



.metrics small {

    color: #64748b;

}



.metrics strong {

    display: block;

    font-size: 28px;

    margin-top: 10px;

}



.floating-card {

    position: absolute;

    background: white;

    padding: 18px 25px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);

    display: flex;

    gap: 12px;

    align-items: center;

    font-weight: 600;

}



.floating-card i {

    color: #0a6cff;

}



.cloud-card {

    right: 0;

    top: 80px;

    animation: float 5s infinite ease-in-out;

}



.security-card {

    left: 20px;

    bottom: 90px;

    animation: float 6s infinite ease-in-out reverse;

}



@keyframes float {

    50% {

        transform: translateY(-18px);

    }

}



.floating-elements {

    position: absolute;

    inset: 0;

}



.tech-node {

    position: absolute;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    color: #0a6cff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);

    animation: float 8s infinite ease-in-out;

}



.node-one {

    top: 180px;

    left: 8%;

}



.node-two {

    right: 10%;

    top: 170px;

}



.node-three {

    left: 15%;

    bottom: 120px;

}



.node-four {

    right: 20%;

    bottom: 100px;

}



@media(max-width:1000px) {

    .solutions-hero-grid {

        grid-template-columns: 1fr;

    }

    .solutions-hero-text h1 {

        font-size: 55px;

    }

    .solutions-visual {

        margin-top: 50px;

    }

}



@media(max-width:600px) {

    .solutions-hero {

        padding-top: 140px;

    }

    .solutions-hero-text h1 {

        font-size: 42px;

    }

    .ai-panel {

        width: 90%;

    }

    .floating-card {

        display: none;

    }

}

.solutions-visual {

    position: relative;

    height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.solution-image-placeholder {

    position: relative;

    width: 100%;

    height: 100%;

    max-width: 560px;

    border-radius: 40px;

    background:

        linear-gradient(135deg,

            rgba(255, 255, 255, .9),

            rgba(226, 232, 240, .75));

    border: 1px solid rgba(148, 163, 184, .25);

    box-shadow:

        0 40px 100px rgba(15, 23, 42, .12);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}


.placeholder-glow {

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .25),

            transparent 70%);

    animation: placeholderMove 8s infinite alternate;

}


.placeholder-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;

    color: #64748b;

}


.placeholder-content i {

    font-size: 60px;

    color: #0A6CFF;

}


.placeholder-content span {

    font-size: 18px;

    font-weight: 600;

}


@keyframes placeholderMove {

    from {

        transform: translate(-40px, -20px);

    }

    to {

        transform: translate(40px, 30px);

    }

}

@media(max-width:600px) {

    .solutions-visual {

        height: 360px;

    }


    .solution-image-placeholder {

        border-radius: 25px;

    }


    .placeholder-content i {

        font-size: 45px;

    }

}

.services-showcase {

    padding: 150px 0;

    background: #ffffff;

}


.services-heading {

    max-width: 750px;

    margin-bottom: 90px;

}


.services-heading h2 {

    font-size: 64px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin-bottom: 25px;

}


.services-heading p {

    color: #64748b;

    font-size: 20px;

    line-height: 1.9;

}


.services-list {

    display: flex;

    flex-direction: column;

    gap: 30px;

}


.service-item {

    position: relative;

    display: grid;

    grid-template-columns: 100px 1fr 120px;

    align-items: center;

    gap: 40px;

    padding: 55px;

    border-radius: 35px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    transition: .4s;

}


.service-item:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}


.service-number {

    font-size: 32px;

    font-weight: 700;

    color: #0A6CFF;

}


.service-content h3 {

    font-size: 38px;

    margin-bottom: 18px;

    color: #071321;

}


.service-content p {

    color: #64748b;

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 25px;

}


.service-content a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #0A6CFF;

    font-weight: 600;

}


.service-icon {

    width: 90px;

    height: 90px;

    border-radius: 28px;

    background: #e0f2fe;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 35px;

    color: #0A6CFF;

}


@media(max-width:900px) {

    .service-item {

        grid-template-columns: 1fr;

        padding: 40px;

    }


    .service-icon {

        margin-top: 20px;

    }


    .services-heading h2 {

        font-size: 48px;

    }

}


@media(max-width:600px) {

    .services-heading h2 {

        font-size: 38px;

    }


    .service-content h3 {

        font-size: 30px;

    }


    .service-item {

        padding: 30px;

    }

}

.process-section {

    padding: 150px 0;

    background: #071321;

    position: relative;

    overflow: hidden;

}


.process-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    background: radial-gradient(circle, rgba(37, 99, 235, .18), transparent 70%);

    right: -200px;

    top: -200px;

}


.process-header {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin-bottom: 80px;

}


.process-header h2 {

    color: white;

    font-size: 64px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 25px;

}


.process-header p {

    color: #94a3b8;

    font-size: 20px;

    line-height: 1.9;

}


.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}


.process-card {

    position: relative;

    padding: 40px 30px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    transition: .4s;

}


.process-card:hover {

    transform: translateY(-12px);

    border-color: rgba(255, 255, 255, .2);

}


.process-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: rgba(255, 255, 255, .1);

    color: #38bdf8;

    font-size: 25px;

    margin-bottom: 30px;

}


.process-card span {

    color: #38bdf8;

    font-size: 14px;

    font-weight: 700;

}


.process-card h3 {

    color: white;

    font-size: 28px;

    margin: 15px 0;

}


.process-card p {

    color: #94a3b8;

    line-height: 1.8;

}



@media(max-width:1100px) {

    .process-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media(max-width:650px) {

    .process-grid {

        grid-template-columns: 1fr;

    }


    .process-header h2 {

        font-size: 42px;

    }

}

.technology-showcase {

    padding: 160px 0;

    background: #ffffff;

}


.showcase-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}

.showcase-image {

    position: relative;

    min-height: 620px;

    border-radius: 38px;

    overflow: hidden;

    box-shadow: 0 35px 80px rgba(15, 23, 42, .08);

}



.showcase-image::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top left,
            rgba(10, 108, 255, .08),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(124, 58, 237, .08),
            transparent 35%),

        linear-gradient(135deg,
            #ffffff,
            #f8fbff);

    z-index: 1;

}



.showcase-illustration {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 2;

    transition: transform .6s ease;

}



.showcase-image:hover .showcase-illustration {

    transform: scale(1.04);

}


.image-placeholder {

    height: 560px;

    border-radius: 40px;

    background:

        radial-gradient(circle at top left, rgba(37, 99, 235, .18), transparent 35%),

        linear-gradient(135deg, #f1f5f9, #e2e8f0);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .1);

    border: 1px solid #e2e8f0;

}


.image-placeholder i {

    font-size: 70px;

    color: #0a6cff;

}



.showcase-content span {

    color: #0a6cff;

    font-weight: 700;



    letter-spacing: 2px;

}



.showcase-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.showcase-content p {

    color: #64748b;

    line-height: 1.9;

    font-size: 19px;

}



.showcase-content ul {

    margin: 35px 0;

    display: flex;

    flex-direction: column;

    gap: 18px;

}



.showcase-content li {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #334155;

    font-weight: 600;

}



.showcase-content li i {

    color: #0a6cff;

}



.showcase-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #0a6cff;

    font-weight: 700;

}



@media(max-width:1000px) {

    .showcase-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .showcase-image {

        order: -1;

    }


    .image-placeholder {

        height: 400px;

    }


    .showcase-content h2 {

        font-size: 45px;

    }

}


@media(max-width:600px) {

    .technology-showcase {

        padding: 90px 0;

    }


    .image-placeholder {

        height: 300px;

        border-radius: 25px;

    }


    .showcase-content h2 {

        font-size: 36px;

    }

}

.service-detail {

    padding: 150px 0;

    background: #f8fafc;

}


.service-detail-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}



.service-detail-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 2px;

}



.service-detail-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.service-detail-content p {

    color: #64748b;

    font-size: 19px;

    line-height: 1.9;

}



.service-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin: 40px 0;

}



.service-points div {

    background: white;

    border: 1px solid #e2e8f0;

    padding: 18px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

}



.service-points i {

    color: #0a6cff;

}



.service-detail-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #0a6cff;

    font-weight: 700;

}



.service-image-placeholder {

    position: relative;

    width: 100%;

    min-height: 520px;

    overflow: hidden;

    border-radius: 34px;

    background: #ffffff;

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}



.service-illustration {

    width: 100%;

    height: 100%;

    position: absolute;

    inset: 0;

    object-fit: cover;

    object-position: center;

    transition: transform .6s ease;

}



.service-image-placeholder:hover .service-illustration {

    transform: scale(1.04);

}



.service-image-placeholder i {

    font-size: 80px;

    color: #0a6cff;

}



@media(max-width:1000px) {

    .service-detail-grid {

        grid-template-columns: 1fr;

    }


    .service-detail-image {

        order: -1;

    }


    .service-detail-content h2 {

        font-size: 44px;

    }

}



@media(max-width:600px) {

    .service-points {

        grid-template-columns: 1fr;

    }


    .service-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }


    .service-detail-content h2 {

        font-size: 36px;

    }

}

.service-detail {

    opacity: 0;

    transform: translateY(50px);

    transition: .8s ease;

}


.service-detail.active {

    opacity: 1;

    transform: translateY(0);

}

.service-reverse {

    background: #ffffff;

}


.service-reverse .service-image-placeholder {

    background:

        radial-gradient(circle at top right, rgba(6, 182, 212, .22), transparent 45%),

        linear-gradient(145deg, #ffffff, #e0f2fe);

}


.service-reverse .service-image-placeholder i {

    color: #06b6d4;

}

.security-visual {

    background:

        radial-gradient(circle at center,

            rgba(16, 185, 129, .18),

            transparent 45%),

        linear-gradient(145deg, #ffffff, #ecfdf5);

}


.security-visual i {

    color: #10b981;

    position: relative;

    z-index: 2;

}


.security-ring {

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(16, 185, 129, .35);

    animation: securityPulse 4s infinite;

}


.security-visual {

    position: relative;

    overflow: hidden;

}


@keyframes securityPulse {

    0% {

        transform: scale(.8);

        opacity: .3;

    }


    50% {

        transform: scale(1.2);

        opacity: 1;

    }


    100% {

        transform: scale(.8);

        opacity: .3;

    }

}

.solutions-cta {

    padding: 120px 0;

    background: #f8fafc;

}


.cta-wrapper {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 300px;

    align-items: center;

    gap: 50px;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #071321,

            #102A43);

}



.cta-content h2 {

    color: white;

    font-size: 64px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 25px;

}



.cta-content p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.9;

    max-width: 600px;

    margin-bottom: 40px;

}



.cta-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: white;

    color: #071321;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

}



.cta-visual {

    position: relative;

    height: 260px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.cta-icon {

    position: relative;

    z-index: 2;

    width: 120px;

    height: 120px;

    border-radius: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    color: #38bdf8;

    font-size: 45px;

}



.cta-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

}



.circle-one {

    width: 220px;

    height: 220px;

}



.circle-two {

    width: 320px;

    height: 320px;

}



@media(max-width:900px) {

    .cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .cta-content h2 {

        font-size: 45px;

    }


    .cta-visual {

        margin-top: 30px;

    }

}



@media(max-width:600px) {

    .solutions-cta {

        padding: 70px 0;

    }


    .cta-content h2 {

        font-size: 36px;

    }

}

.platform-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background: #ffffff;

}


.platform-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

}



.floating-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    opacity: .5;

}



.shape-one {

    width: 420px;

    height: 420px;

    background: #dbeafe;

    top: -120px;

    right: 10%;

}



.shape-two {

    width: 260px;

    height: 260px;

    background: #cffafe;

    bottom: 80px;

    left: -80px;

}



.shape-three {

    width: 180px;

    height: 180px;

    background: #e0e7ff;

    right: 35%;

    bottom: 100px;

}



.platform-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}



.platform-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.platform-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.platform-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

    max-width: 620px;

}



.platform-actions {

    margin-top: 45px;

}



.platform-actions a {

    display: inline-flex;

    gap: 12px;

    align-items: center;

    background: #0a6cff;

    color: white;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

}



.platform-visual {

    display: flex;

    justify-content: center;

}

.platform-image-placeholder {

    position: relative;


    overflow: hidden;

}



.platform-illustration {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    position: relative;

    z-index: 2;

    filter: drop-shadow(0 35px 55px rgba(15, 23, 42, .15));

    transition: .6s;

}



.platform-image-placeholder::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(to top, #f8fbff 0%, transparent 12%),

        linear-gradient(to bottom, #f8fbff 0%, transparent 12%),

        linear-gradient(to left, #f8fbff 0%, transparent 10%),

        linear-gradient(to right, #f8fbff 0%, transparent 10%);

    z-index: 3;

}







.platform-image-placeholder:hover .platform-illustration {

    transform: translateY(-10px) scale(1.03);

}



@media(max-width:1000px) {

    .platform-hero-grid {

        grid-template-columns: 1fr;

    }


    .platform-hero-content h1 {

        font-size: 55px;

    }


    .platform-visual {

        margin-top: 50px;

    }

}



@media(max-width:600px) {

    .platform-hero {

        padding-top: 130px;

    }


    .platform-hero-content h1 {

        font-size: 40px;

    }


    .platform-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }

}

.platform-workflow {

    padding: 150px 0;

    background: #f8fafc;

}



.workflow-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

}



.workflow-placeholder {

    height: 520px;

    border-radius: 45px;

    position: relative;

    background:

        radial-gradient(circle at center,

            rgba(37, 99, 235, .15),

            transparent 45%),

        white;

    border: 1px solid #e2e8f0;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .1);

}



.workflow-center {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 140px;

    height: 140px;

    border-radius: 40px;

    background: #0a6cff;

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-weight: 700;

}



.workflow-center i {

    font-size: 35px;

}



.workflow-node {

    position: absolute;

    width: 100px;

    height: 100px;

    border-radius: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #0a6cff;

    font-weight: 600;

}



.workflow-node i {

    font-size: 25px;

}



.node-ai {

    top: 70px;

    left: 80px;

}



.node-data {

    bottom: 70px;

    left: 100px;

}



.node-cloud {

    top: 50%;

    right: 70px;

}



.workflow-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.workflow-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.workflow-content p {

    color: #64748b;

    font-size: 19px;

    line-height: 1.9;

}



.workflow-points {

    margin-top: 40px;

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.workflow-points div {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #334155;

    font-weight: 600;

}



.workflow-points i {

    color: #0a6cff;

}



@media(max-width:1000px) {

    .workflow-grid {

        grid-template-columns: 1fr;

    }


    .workflow-content h2 {

        font-size: 45px;

    }


    .workflow-placeholder {

        height: 400px;

    }

}



@media(max-width:600px) {

    .workflow-placeholder {

        height: 320px;

    }


    .workflow-node {

        width: 75px;

        height: 75px;

        font-size: 12px;

    }


    .workflow-center {

        width: 100px;

        height: 100px;

    }

}

.platform-capabilities {

    padding: 150px 0;

    background: white;

}



.capabilities-header {

    max-width: 750px;

    margin-bottom: 80px;

}



.capabilities-header span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.capabilities-header h2 {

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.capabilities-header p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.capabilities-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}



.capability-card {

    position: relative;

    overflow: hidden;

    padding: 40px;

    border-radius: 35px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    min-height: 280px;

    transition: .4s;

}



.capability-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}



.capability-card.large {

    grid-column: span 2;

}



.capability-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: #dbeafe;

    color: #0a6cff;

    font-size: 28px;

    margin-bottom: 30px;

}



.capability-card h3 {

    font-size: 30px;

    color: #071321;

    margin-bottom: 15px;

}



.capability-card p {

    color: #64748b;

    line-height: 1.8;

}



.capability-visual {

    position: absolute;

    right: 40px;

    bottom: 40px;

    display: flex;

    gap: 10px;

    align-items: end;

}



.capability-visual div {

    width: 15px;

    border-radius: 20px;

    background: #0a6cff;

}



.capability-visual div:nth-child(1) {

    height: 40px;

}


.capability-visual div:nth-child(2) {

    height: 80px;

}



.capability-visual div:nth-child(3) {

    height: 120px;

}



@media(max-width:900px) {

    .capabilities-grid {

        grid-template-columns: 1fr;

    }


    .capability-card.large {

        grid-column: auto;

    }


    .capabilities-header h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .capabilities-header h2 {

        font-size: 36px;

    }


    .capability-card {

        padding: 30px;

    }

}

.capability-card {

    opacity: 0;

    transform: translateY(40px);

}


.capability-card.visible {

    opacity: 1;

    transform: translateY(0);

    transition: .7s ease;

}

.enterprise-section {

    padding: 160px 0;

    background: #f8fafc;

}



.enterprise-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

}



.enterprise-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.enterprise-content h2 {

    font-size: 60px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.enterprise-content p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.enterprise-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin: 40px 0;

}



.enterprise-points div {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px;

    background: white;

    border-radius: 18px;

    border: 1px solid #e2e8f0;

    font-weight: 600;

}



.enterprise-points i {

    color: #0a6cff;

}



.enterprise-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #0a6cff;

    font-weight: 700;

}



.enterprise-placeholder {

    height: 560px;

    border-radius: 45px;

    position: relative;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .15),

            transparent 50%),

        white;

    border: 1px solid #e2e8f0;

    box-shadow: 0 40px 100px rgba(15, 23, 42, .1);

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    overflow: hidden;

}



.enterprise-core {

    position: relative;

    z-index: 2;

    width: 130px;

    height: 130px;

    border-radius: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #0a6cff;

    color: white;

    font-size: 45px;

}



.enterprise-orbit {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(10, 108, 255, .2);

}



.orbit-one {

    width: 280px;

    height: 280px;

}



.orbit-two {

    width: 420px;

    height: 420px;

}



.enterprise-placeholder span {

    position: absolute;

    bottom: 45px;

    color: #64748b;

}



@media(max-width:1000px) {

    .enterprise-grid {

        grid-template-columns: 1fr;

    }


    .enterprise-visual {

        order: -1;

    }


    .enterprise-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .enterprise-placeholder {

        height: 350px;

        border-radius: 25px;

    }


    .enterprise-points {

        grid-template-columns: 1fr;

    }


    .enterprise-content h2 {

        font-size: 36px;

    }

}

.industries-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 130px;

    background: #ffffff;

}



.industries-bg {

    position: absolute;

    inset: 0;

}



.industry-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

}



.shape-one {

    width: 450px;

    height: 450px;

    background: #dbeafe;

    right: -150px;

    top: -100px;

}



.shape-two {

    width: 300px;

    height: 300px;

    background: #cffafe;

    left: -100px;

    bottom: 50px;

}



.shape-three {

    width: 200px;

    height: 200px;

    background: #e0e7ff;

    right: 40%;

    bottom: 100px;

}



.industries-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.industries-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.industries-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.industries-hero-content p {

    color: #64748b;

    font-size: 20px;

    line-height: 1.9;

}



.industries-hero-content a {

    margin-top: 40px;

    display: inline-flex;

    gap: 12px;

    align-items: center;

    padding: 18px 35px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    font-weight: 700;

}



.industry-map-placeholder {

    position: relative;

    height: 520px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .15),

            transparent 45%),

        #f8fafc;

    border: 1px solid #e2e8f0;

    box-shadow: 0 40px 100px rgba(15, 23, 42, .1);

}



.industry-center {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 140px;

    height: 140px;

    border-radius: 40px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 12px;

}



.industry-center i {

    font-size: 35px;

}



.industry-node {

    position: absolute;

    padding: 18px 22px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

}



.industry-node i {

    color: #0a6cff;

}



.node-finance {

    top: 70px;

    left: 60px;

}



.node-health {

    top: 80px;

    right: 50px;

}



.node-retail {

    bottom: 80px;

    left: 70px;

}



.node-education {

    bottom: 70px;

    right: 50px;

}



@media(max-width:1000px) {

    .industries-hero-grid {

        grid-template-columns: 1fr;

    }


    .industries-hero-content h1 {

        font-size: 55px;

    }

}



@media(max-width:600px) {

    .industries-hero {

        padding-top: 130px;

    }


    .industries-hero-content h1 {

        font-size: 40px;

    }


    .industry-map-placeholder {

        height: 330px;

    }


    .industry-node {

        font-size: 12px;

        padding: 12px;

    }

}

.industry-showcase {

    padding: 150px 0;

    background: #ffffff;

}



.industry-heading {

    max-width: 750px;

    margin-bottom: 90px;

}



.industry-heading span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.industry-heading h2 {

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.industry-heading p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.industry-blocks {

    display: flex;

    flex-direction: column;

    gap: 100px;

}



.industry-block {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.industry-block.reverse .industry-image-placeholder {

    order: 2;

}



.industry-image-placeholder {

    height: 520px;

    border-radius: 40px;

    background:

        radial-gradient(circle at center,

            rgba(37, 99, 235, .18),

            transparent 45%),

        #f8fafc;

    border: 1px solid #e2e8f0;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .08);

}



.industry-image-placeholder i {

    font-size: 80px;

    color: #0a6cff;

}



.industry-info span {

    color: #0a6cff;

    font-weight: 700;

}



.industry-info h3 {

    font-size: 48px;

    color: #071321;

    margin: 20px 0;

    letter-spacing: -1px;

}



.industry-info p {

    color: #64748b;

    font-size: 18px;

    line-height: 1.9;

}



.industry-info ul {

    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.industry-info li {

    color: #334155;

    font-weight: 600;

    padding-left: 20px;

    position: relative;

}



.industry-info li::before {

    content: "";

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #0a6cff;

    position: absolute;

    left: 0;

    top: 9px;

}



@media(max-width:1000px) {

    .industry-block {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .industry-block.reverse .industry-image-placeholder {

        order: 0;

    }


    .industry-heading h2 {

        font-size: 45px;

    }


    .industry-info h3 {

        font-size: 38px;

    }

}



@media(max-width:600px) {

    .industry-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }


    .industry-info h3 {

        font-size: 32px;

    }

}


.more-industries {

    padding: 150px 0;

    background: #f8fafc;

}



.more-industries-header {

    margin-bottom: 80px;

}



.more-industries-header span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.more-industries-header h2 {

    font-size: 60px;

    line-height: 1.1;

    color: #071321;

    letter-spacing: -2px;

    margin-top: 25px;

}



.industries-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}



.industry-card {

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 35px;

    padding: 35px;

    min-height: 360px;

    transition: .4s;

    display: flex;

    flex-direction: column;

}



.industry-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}



.industry-card-icon {

    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin-bottom: 30px;

}



.industry-card h3 {

    font-size: 28px;

    color: #071321;

    margin-bottom: 15px;

}



.industry-card p {

    color: #64748b;

    line-height: 1.8;

    flex-grow: 1;

}



.industry-card a {

    margin-top: 30px;

    display: flex;

    gap: 10px;

    align-items: center;

    color: #0a6cff;

    font-weight: 700;

}



@media(max-width:1100px) {

    .industries-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media(max-width:600px) {

    .industries-grid {

        grid-template-columns: 1fr;

    }


    .more-industries-header h2 {

        font-size: 38px;

    }


    .industry-card {

        padding: 30px;

    }

}

.industry-card {

    opacity: 0;

    transform: translateY(40px);

}


.industry-card.visible {

    opacity: 1;

    transform: translateY(0);

    transition: .7s ease;

}

.industry-cta {

    padding: 140px 0;

    background: #ffffff;

}



.industry-cta-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #071321,

            #102a43);

    overflow: hidden;

    position: relative;

}



.industry-cta-wrapper::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .12);

    right: -150px;

    top: -150px;

}



.industry-cta-content {

    position: relative;

    z-index: 2;

}



.industry-cta-content span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.industry-cta-content h2 {

    color: white;

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.industry-cta-content p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.9;

}



.industry-cta-content a {

    margin-top: 40px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    background: white;

    color: #071321;

    border-radius: 50px;

    font-weight: 700;

}



.industry-cta-visual {

    position: relative;

    z-index: 2;

}



.cta-image-placeholder {

    height: 380px;

    border-radius: 35px;

    background:

        rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #cbd5e1;

    position: relative;

    overflow: hidden;

}



.cta-image-placeholder i {

    font-size: 90px;

    color: #38bdf8;

}



.cta-glow {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .2);

    filter: blur(40px);

}



@media(max-width:1000px) {

    .industry-cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .industry-cta-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .industry-cta {

        padding: 80px 0;

    }


    .industry-cta-content h2 {

        font-size: 36px;

    }


    .cta-image-placeholder {

        height: 280px;

    }

}

.resources-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 130px;

    background: #ffffff;

}



.resources-background {

    position: absolute;

    inset: 0;

}



.resource-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

}



.resource-shape.shape-one {

    width: 420px;

    height: 420px;

    background: #dbeafe;

    right: -120px;

    top: -100px;

}



.resource-shape.shape-two {

    width: 280px;

    height: 280px;

    background: #cffafe;

    left: -80px;

    bottom: 80px;

}



.resources-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.resources-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.resources-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.resources-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

}



.resources-hero-content a {

    margin-top: 40px;

    display: inline-flex;

    gap: 12px;

    align-items: center;

    padding: 18px 35px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    font-weight: 700;

}



.resource-library-placeholder {

    height: 520px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .15),

            transparent 45%),

        #f8fafc;

    border: 1px solid #e2e8f0;

    position: relative;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .1);

}



.resource-center {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 130px;

    height: 130px;

    border-radius: 40px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 45px;

}



.resource-card {

    position: absolute;

    background: white;

    padding: 20px 25px;

    border-radius: 22px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

    display: flex;

    gap: 12px;

    align-items: center;

    font-weight: 700;

}



.resource-card i {

    color: #0a6cff;

}



.card-one {

    top: 70px;

    left: 60px;

}



.card-two {

    right: 50px;

    top: 130px;

}



.card-three {

    bottom: 90px;

    left: 100px;

}



@media(max-width:1000px) {

    .resources-hero-grid {

        grid-template-columns: 1fr;

    }


    .resources-hero-content h1 {

        font-size: 55px;

    }

}



@media(max-width:600px) {

    .resources-hero {

        padding-top: 130px;

    }


    .resources-hero-content h1 {

        font-size: 40px;

    }


    .resource-library-placeholder {

        height: 340px;

    }


    .resource-card {

        font-size: 12px;

        padding: 12px;

    }

}

.featured-resources {

    padding: 150px 0;

    background: #f8fafc;

}



.resources-heading {

    max-width: 750px;

    margin-bottom: 80px;

}



.resources-heading span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.resources-heading h2 {

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.resources-heading p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.featured-layout {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 35px;

}



.featured-main {

    background: white;

    border-radius: 40px;

    overflow: hidden;

    border: 1px solid #e2e8f0;

}



.featured-image-placeholder {

    height: 350px;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .2),

            transparent 50%),

        #eaf2ff;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    gap: 15px;

    color: #64748b;

}



.featured-image-placeholder i {

    font-size: 75px;

    color: #0a6cff;

}



.featured-content {

    padding: 40px;

}



.featured-content span {

    color: #0a6cff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}



.featured-content h3 {

    font-size: 40px;

    line-height: 1.2;

    color: #071321;

    margin: 20px 0;

}



.featured-content p {

    color: #64748b;

    line-height: 1.8;

}



.featured-content a {

    display: flex;

    gap: 10px;

    align-items: center;

    margin-top: 25px;

    color: #0a6cff;

    font-weight: 700;

}



.resource-list {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.resource-item {

    background: white;

    padding: 30px;

    border-radius: 30px;

    border: 1px solid #e2e8f0;

    display: flex;

    gap: 25px;

    align-items: center;

    transition: .3s;

}



.resource-item:hover {

    transform: translateX(10px);

}



.resource-item-icon {

    width: 65px;

    height: 65px;

    border-radius: 20px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

}



.resource-item span {

    color: #0a6cff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}



.resource-item h3 {

    margin-top: 8px;

    color: #071321;

    font-size: 20px;

}



@media(max-width:1000px) {

    .featured-layout {

        grid-template-columns: 1fr;

    }


    .resources-heading h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .featured-content {

        padding: 25px;

    }


    .featured-content h3 {

        font-size: 30px;

    }


    .featured-image-placeholder {

        height: 250px;

    }

}

.resource-categories {

    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background:

        linear-gradient(135deg,

            #071321,

            #102a43);

}



.resource-pattern {

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .08);

    right: -200px;

    top: -200px;

}



.categories-header {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin-bottom: 80px;

}



.categories-header span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.categories-header h2 {

    color: white;

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.categories-header p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.8;

}



.categories-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}



.category-panel {

    position: relative;

    overflow: hidden;

    min-height: 360px;

    padding: 40px;

    border-radius: 35px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    transition: .4s;

}



.category-panel:hover {

    transform: translateY(-10px);

}



.category-icon {

    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .12);

    color: #38bdf8;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin-bottom: 30px;

}



.category-panel h3 {

    color: white;

    font-size: 32px;

    margin-bottom: 15px;

}



.category-panel p {

    color: #cbd5e1;

    line-height: 1.8;

    max-width: 420px;

}



.category-visual {

    position: absolute;

    right: 40px;

    bottom: 40px;

    display: flex;

    gap: 10px;

    align-items: flex-end;

}



.category-visual span {

    width: 14px;

    border-radius: 20px;

    background: #38bdf8;

}



.category-visual span:nth-child(1) {

    height: 35px;

}



.category-visual span:nth-child(2) {

    height: 80px;

}



.category-visual span:nth-child(3) {

    height: 120px;

}



@media(max-width:900px) {

    .categories-grid {

        grid-template-columns: 1fr;

    }


    .categories-header h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .category-panel {

        padding: 30px;

    }


    .category-panel h3 {

        font-size: 26px;

    }

}

.resource-cta {

    padding: 140px 0;

    background: #ffffff;

}



.resource-cta-wrapper {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 70px;

    align-items: center;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #eff6ff,

            #ecfeff);

    border: 1px solid #dbeafe;

}



.resource-cta-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.resource-cta-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.resource-cta-content p {

    font-size: 18px;

    color: #64748b;

    line-height: 1.8;

}



.resource-subscribe {

    display: flex;

    margin-top: 35px;

    background: white;

    padding: 8px;

    border-radius: 50px;

    border: 1px solid #e2e8f0;

    max-width: 500px;

}



.resource-subscribe input {

    flex: 1;

    border: none;

    outline: none;

    padding: 15px 25px;

    font-size: 16px;

    background: transparent;

}



.resource-subscribe button {

    border: none;

    cursor: pointer;

    padding: 15px 25px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

}



.knowledge-visual {

    position: relative;

    height: 350px;

}



.knowledge-core {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 120px;

    height: 120px;

    border-radius: 35px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 40px;

    box-shadow: 0 30px 60px rgba(10, 108, 255, .25);

}



.floating-document {

    position: absolute;

    width: 75px;

    height: 75px;

    border-radius: 22px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0a6cff;

    font-size: 28px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

}



.doc-one {

    top: 30px;

    left: 40px;

}



.doc-two {

    right: 50px;

    top: 80px;

}



.doc-three {

    bottom: 40px;

    left: 120px;

}



@media(max-width:1000px) {

    .resource-cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .resource-cta-content h2 {

        font-size: 45px;

    }


    .resource-cta-visual {

        display: none;

    }

}



@media(max-width:600px) {

    .resource-cta-content h2 {

        font-size: 36px;

    }


    .resource-subscribe {

        flex-direction: column;

        border-radius: 25px;

    }


    .resource-subscribe button {

        justify-content: center;

    }

}

.about-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 130px;

    background: #ffffff;

}



.about-background {

    position: absolute;

    inset: 0;

}



.about-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

}



.glow-one {

    width: 450px;

    height: 450px;

    background: #dbeafe;

    right: -100px;

    top: -100px;

}



.glow-two {

    width: 300px;

    height: 300px;

    background: #cffafe;

    left: -100px;

    bottom: 50px;

}



.about-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}



.about-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.about-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.about-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

}



.about-hero-content a {

    margin-top: 40px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    font-weight: 700;

}



.company-visual {

    height: 520px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}



.visual-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(10, 108, 255, .15);

}



.circle-large {

    width: 420px;

    height: 420px;

}



.circle-small {

    width: 260px;

    height: 260px;

}



.company-core {

    position: relative;

    z-index: 2;

    width: 150px;

    height: 150px;

    border-radius: 45px;

    background: #0a6cff;

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-weight: 700;

}



.company-core i {

    font-size: 45px;

}



.company-node {

    position: absolute;

    width: 75px;

    height: 75px;

    background: white;

    border-radius: 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #0a6cff;

    font-size: 28px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);

}



.node-one {

    top: 80px;

    left: 80px;

}



.node-two {

    right: 70px;

    top: 120px;

}



.node-three {

    bottom: 80px;

    left: 50%;

}



@media(max-width:1000px) {

    .about-hero-grid {

        grid-template-columns: 1fr;

    }


    .about-hero-content h1 {

        font-size: 55px;

    }

}



@media(max-width:600px) {

    .about-hero {

        padding-top: 130px;

    }


    .about-hero-content h1 {

        font-size: 40px;

    }


    .company-visual {

        height: 350px;

    }


    .circle-large {

        width: 280px;

        height: 280px;

    }

}

.about-story {

    padding: 150px 0;

    background:

        linear-gradient(135deg,

            #eff6ff,

            #ffffff);

}



.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}



.story-image-placeholder {

    height: 520px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(10, 108, 255, .18),

            transparent 45%),

        white;

    border: 1px solid #dbeafe;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .08);

}



.story-image-placeholder i {

    font-size: 85px;

    color: #0a6cff;

}



.story-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.story-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.story-content p {

    font-size: 18px;

    color: #64748b;

    line-height: 1.9;

    margin-bottom: 20px;

}



.story-stats {

    display: flex;

    gap: 25px;

    margin-top: 40px;

}



.story-stats div {

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.story-stats strong {

    font-size: 35px;

    color: #0a6cff;

}



.story-stats span {

    color: #334155;

    font-size: 14px;

    letter-spacing: 0;

}



@media(max-width:1000px) {

    .story-grid {

        grid-template-columns: 1fr;

    }


    .story-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .about-story {

        padding: 90px 0;

    }


    .story-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }


    .story-content h2 {

        font-size: 36px;

    }


    .story-stats {

        flex-direction: column;

    }

}

.about-values {

    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background:

        linear-gradient(135deg,

            #071321,

            #102a43);

}



.values-background {

    position: absolute;

    inset: 0;

}



.values-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(60px);

}



.orb-one {

    width: 450px;

    height: 450px;

    background: rgba(56, 189, 248, .15);

    right: -150px;

    top: -100px;

}



.orb-two {

    width: 300px;

    height: 300px;

    background: rgba(37, 99, 235, .2);

    left: -100px;

    bottom: 0;

}



.values-header {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin-bottom: 80px;

}



.values-header span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.values-header h2 {

    color: white;

    font-size: 60px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.values-header p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.8;

}



.values-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}



.value-box {

    padding: 35px;

    border-radius: 35px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    transition: .4s;

}



.value-box:hover {

    transform: translateY(-12px);

    background: rgba(255, 255, 255, .12);

}



.value-icon {

    width: 65px;

    height: 65px;

    border-radius: 20px;

    background: rgba(56, 189, 248, .15);

    color: #38bdf8;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;

    margin-bottom: 25px;

}



.value-box h3 {

    color: white;

    font-size: 26px;

    margin-bottom: 15px;

}



.value-box p {

    color: #cbd5e1;

    line-height: 1.8;

}



@media(max-width:1100px) {

    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .values-header h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .values-grid {

        grid-template-columns: 1fr;

    }


    .values-header h2 {

        font-size: 36px;

    }

}

.value-box {

    opacity: 0;

    transform: translateY(40px);

}



.value-box.active {

    opacity: 1;

    transform: translateY(0);

    transition: .7s ease;

}

.about-final-cta {

    padding: 140px 0;

    background: #f8fafc;

}



.about-final-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.about-final-image {

    height: 450px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(10, 108, 255, .18),

            transparent 45%),

        white;

    border: 1px solid #dbeafe;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .08);

}



.about-final-image i {

    font-size: 90px;

    color: #0a6cff;

}



.about-final-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.about-final-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.about-final-content p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.about-final-content a {

    margin-top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #0a6cff;

    color: white;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

}



@media(max-width:1000px) {

    .about-final-wrapper {

        grid-template-columns: 1fr;

    }


    .about-final-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .about-final-cta {

        padding: 90px 0;

    }


    .about-final-image {

        height: 300px;

        border-radius: 30px;

    }


    .about-final-content h2 {

        font-size: 36px;

    }

}


.contact-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background: #ffffff;

}



.contact-background {

    position: absolute;

    inset: 0;

}



.contact-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

}



.contact-orb.orb-one {

    width: 450px;

    height: 450px;

    background: #dbeafe;

    right: -100px;

    top: -100px;

}



.contact-orb.orb-two {

    width: 300px;

    height: 300px;

    background: #cffafe;

    left: -100px;

    bottom: 0;

}



.contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

}



.contact-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.contact-hero-content h1 {

    font-size: 78px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.contact-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

    max-width: 750px;

}



.contact-quick-links {

    display: flex;

    gap: 25px;

    margin-top: 50px;

}



.contact-quick-links div {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    border-radius: 25px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

}



.contact-quick-links i {

    color: #0a6cff;

}



.contact-quick-links span {

    color: #071321;

    letter-spacing: 0;

    font-size: 15px;

}



@media(max-width:900px) {

    .contact-hero-content h1 {

        font-size: 55px;

    }


    .contact-quick-links {

        flex-direction: column;

    }

}



@media(max-width:600px) {

    .contact-hero {

        padding-top: 130px;

    }


    .contact-hero-content h1 {

        font-size: 40px;

    }

}

.contact-main {

    padding: 150px 0;

    background: #f8fafc;

}



.contact-main-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;

}



.contact-form-wrapper span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.contact-form-wrapper h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0 40px;

}



.contact-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    border: none;

    outline: none;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    padding: 18px 22px;

    font-size: 16px;

    color: #071321;

}



.form-group textarea {

    height: 150px;

    resize: none;

}



.contact-form button {

    width: max-content;

    border: none;

    cursor: pointer;

    background: #0a6cff;

    color: white;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 12px;

}



.contact-info-side {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



.contact-visual-placeholder {

    height: 420px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(10, 108, 255, .18),

            transparent 45%),

        white;

    border: 1px solid #dbeafe;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

}



.contact-visual-placeholder i {

    font-size: 90px;

    color: #0a6cff;

}



.contact-details {

    background: white;

    padding: 35px;

    border-radius: 35px;

    border: 1px solid #e2e8f0;

    display: flex;

    flex-direction: column;

    gap: 25px;

}



.contact-details div {

    display: flex;

    gap: 20px;

    align-items: center;

}



.contact-details i {

    width: 55px;

    height: 55px;

    border-radius: 18px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    justify-content: center;

    align-items: center;

}



.contact-details span {

    color: #64748b;

    font-size: 14px;

}



.contact-details p {

    color: #071321;

    margin-top: 5px;

}



@media(max-width:1000px) {

    .contact-main-grid {

        grid-template-columns: 1fr;

    }


    .contact-form-wrapper h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .contact-main {

        padding: 90px 0;

    }


    .contact-form-wrapper h2 {

        font-size: 36px;

    }


    .contact-visual-placeholder {

        height: 300px;

    }

}

.contact-final-cta {

    padding: 140px 0;

    background: #ffffff;

}



.contact-cta-wrapper {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #071321,

            #0f3557);

}



.contact-cta-wrapper::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .12);

    right: -200px;

    top: -200px;

}



.contact-cta-content {

    position: relative;

    z-index: 2;

}



.contact-cta-content span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.contact-cta-content h2 {

    color: white;

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.contact-cta-content p {

    color: #cbd5e1;

    font-size: 18px;

    line-height: 1.8;

}



.contact-cta-content a {

    margin-top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    background: white;

    color: #071321;

    border-radius: 50px;

    font-weight: 700;

}



.future-network {

    height: 360px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}



.network-circle {

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

}



.network-core {

    width: 110px;

    height: 110px;

    border-radius: 35px;

    background: #38bdf8;

    color: #071321;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 40px;

    z-index: 2;

}



.network-node {

    position: absolute;

    width: 65px;

    height: 65px;

    border-radius: 20px;

    background: white;

    color: #0a6cff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 25px;

}



.node-a {

    top: 40px;

    left: 70px;

}



.node-b {

    right: 60px;

    top: 100px;

}



.node-c {

    bottom: 50px;

    left: 50%;

}



@media(max-width:1000px) {

    .contact-cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .contact-cta-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .contact-final-cta {

        padding: 90px 0;

    }


    .contact-cta-content h2 {

        font-size: 36px;

    }


    .contact-cta-visual {

        display: none;

    }

}

.dark-section-divider {

    height: 140px;

    position: relative;

    overflow: hidden;

    background: #071321;

    display: flex;

    align-items: center;

    justify-content: center;

}



.divider-glow {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    filter: blur(80px);

}



.glow-left {

    background: rgba(56, 189, 248, .18);

    left: -80px;

}



.glow-right {

    background: rgba(37, 99, 235, .2);

    right: -80px;

}



.divider-line {

    width: 180px;

    height: 2px;

    background: rgba(255, 255, 255, .2);

    position: relative;

}



.divider-line span {

    position: absolute;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #38bdf8;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    box-shadow: 0 0 40px rgba(56, 189, 248, .7);

}

.index-transition {

    padding: 90px 0;

    background: #f8fafc;

}



.transition-content {

    max-width: 850px;

    margin: auto;

    text-align: center;

}



.transition-content span {

    color: #0a6cff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}



.transition-content h2 {

    margin: 20px 0;

    font-size: 45px;

    line-height: 1.2;

    letter-spacing: -1.5px;

    color: #071321;

}



.transition-content p {

    max-width: 650px;

    margin: auto;

    color: #64748b;

    font-size: 18px;

    line-height: 1.8;

}



@media(max-width:700px) {

    .index-transition {

        padding: 60px 0;

    }


    .transition-content h2 {

        font-size: 32px;

    }


    .transition-content p {

        font-size: 16px;

    }

}

.legal-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .9), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .45), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, .18), transparent 30%),
        linear-gradient(135deg,
            #eef6ff 0%,
            #dbeafe 35%,
            #bfdcff 70%,
            #9cc9ff 100%);

}



.legal-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .15),
            rgba(7, 19, 33, .18));

}



.legal-hero .container {

    position: relative;

    z-index: 2;

}



.legal-hero-content {

    max-width: 860px;

}



.legal-hero-content span {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .65);

    border: 1px solid rgba(255, 255, 255, .7);

    backdrop-filter: blur(10px);

    color: #0a6cff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}



.legal-hero-content h1 {

    margin: 28px 0 24px;

    font-size: 72px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    max-width: 760px;

}



.legal-hero-content p {

    max-width: 700px;

    font-size: 20px;

    line-height: 1.9;

    color: #334155;

}



.legal-updated {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 40px;

    padding: 14px 22px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .75);

    border: 1px solid rgba(255, 255, 255, .8);

    color: #0f172a;

    font-weight: 600;

    backdrop-filter: blur(10px);

}



.legal-updated i {

    color: #0a6cff;

}



@media (max-width: 900px) {

    .legal-hero {

        padding: 140px 0 90px;

    }

    .legal-hero-content h1 {

        font-size: 54px;

    }

}



@media (max-width: 700px) {

    .legal-hero {

        padding: 120px 0 70px;

    }

    .legal-hero-content h1 {

        font-size: 40px;

        letter-spacing: -1.5px;

    }

    .legal-hero-content p {

        font-size: 17px;

    }

    .legal-updated {

        width: 100%;

        justify-content: center;

    }

}

.privacy-content {

    padding: 120px 0;

    background: #f8fafc;

}



.privacy-layout {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 45px;

    align-items: start;

}



.privacy-nav {

    position: sticky;

    top: 120px;

    padding: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 28px;

}



.privacy-nav h3 {

    margin-bottom: 20px;

    color: #071321;

    font-size: 22px;

}



.privacy-nav a {

    display: block;

    padding: 14px 0;

    color: #475569;

    transition: .3s;

}



.privacy-nav a:hover {

    color: #0a6cff;

    padding-left: 10px;

}



.privacy-sections {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



.privacy-card {

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 30px;

    padding: 40px;

    transition: .35s;

}



.privacy-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);

}



.privacy-card h2 {

    font-size: 32px;

    color: #071321;

    margin-bottom: 20px;

}



.privacy-card p {

    color: #64748b;

    line-height: 1.9;

    font-size: 17px;

}



@media(max-width:1000px) {

    .privacy-layout {

        grid-template-columns: 1fr;

    }



    .privacy-nav {

        position: relative;

        top: 0;

    }

}



@media(max-width:700px) {

    .privacy-content {

        padding: 80px 0;

    }



    .privacy-card {

        padding: 28px;

    }



    .privacy-card h2 {

        font-size: 26px;

    }

}

.privacy-card {

    opacity: 0;

    transform: translateY(40px);

}



.privacy-card.visible {

    opacity: 1;

    transform: translateY(0);

    transition: .6s ease;

}


.legal-terms-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .9), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .45), transparent 30%),
        radial-gradient(circle at 80% 85%, rgba(245, 158, 11, .12), transparent 35%),
        linear-gradient(135deg,
            #f8fafc 0%,
            #eef2ff 40%,
            #dbeafe 100%);

}



.legal-terms-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(255, 255, 255, .08),
            rgba(15, 23, 42, .12));

}



.legal-terms-hero .container {

    position: relative;

    z-index: 2;

}

.terms-content {

    padding: 120px 0;

    background: #f8fafc;

}



.terms-layout {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 45px;

    align-items: start;

}



.terms-navigation {

    position: sticky;

    top: 120px;

    padding: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 28px;

}



.terms-navigation h3 {

    margin-bottom: 20px;

    color: #071321;

    font-size: 22px;

}



.terms-navigation a {

    display: block;

    padding: 14px 0;

    color: #475569;

    transition: .3s;

}



.terms-navigation a:hover {

    color: #0a6cff;

    padding-left: 10px;

}



.terms-sections {

    display: flex;

    flex-direction: column;

    gap: 25px;

}



.terms-card {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 30px;

    padding: 35px;

    transition: .35s;

}



.terms-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);

}



.terms-number {

    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    font-weight: 700;

}



.terms-body h2 {

    font-size: 30px;

    color: #071321;

    margin-bottom: 18px;

}



.terms-body p {

    color: #64748b;

    line-height: 1.9;

    font-size: 17px;

}



@media(max-width:1000px) {

    .terms-layout {

        grid-template-columns: 1fr;

    }



    .terms-navigation {

        position: relative;

        top: 0;

    }

}



@media(max-width:700px) {

    .terms-content {

        padding: 80px 0;

    }



    .terms-card {

        grid-template-columns: 1fr;

        padding: 28px;

        gap: 20px;

    }



    .terms-body h2 {

        font-size: 26px;

    }

}

.terms-card {

    opacity: 0;

    transform: translateY(40px);

}



.terms-card.show {

    opacity: 1;

    transform: translateY(0);

    transition: .6s ease;

}