/* ==========================
RESET
========================== */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Manrope', sans-serif;
    background: #fafafa;
    color: #111827;
    overflow-x: hidden;

}

img {

    max-width: 100%;

}

a {

    text-decoration: none;

}

.container {

    width: min(1220px, 92%);
    margin: auto;

}


/* =========================

NAVBAR

========================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 88px;

    background: rgba(250, 248, 245, .92);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid #ece8e1;

    z-index: 1000;

    transition: .35s;

}

.navbar.scrolled {

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

}



.nav-container {

    height: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo {

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 24px;

    font-weight: 800;

    color: #1e1e1e;

}



.logo-box {

    width: 48px;

    height: 48px;

    border-radius: 18px;

    background: #0f9d58;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 18px;

    box-shadow: 0 15px 35px rgba(15, 157, 88, .25);

}



.desktop-nav {

    display: flex;

    gap: 36px;

}



.desktop-nav a {

    position: relative;

    font-weight: 600;

    color: #666;

    transition: .35s;

    padding-bottom: 6px;

}



.desktop-nav a:hover {

    color: #111;

}



.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #0f9d58;

    transition: .35s;

}



.desktop-nav a:hover::after {

    width: 100%;

}



.desktop-nav .active {

    color: #111;

}



.desktop-nav .active::after {

    width: 100%;

}



.contact-btn {

    padding: 14px 26px;

    background: #1e1e1e;

    color: white;

    border-radius: 50px;

    font-weight: 600;

    transition: .35s;

}



.contact-btn:hover {

    background: #0f9d58;

    transform: translateY(-2px);

}



.menu-btn {

    display: none;

    background: none;

    border: none;

    font-size: 28px;

    cursor: pointer;

}



.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 320px;

    height: 100vh;

    background: white;

    padding: 100px 40px;

    transition: .4s;

    z-index: 2000;

    box-shadow: -20px 0 40px rgba(0, 0, 0, .08);

}



.mobile-menu.active {

    right: 0;

}



.mobile-menu nav {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



.mobile-menu a {

    font-size: 22px;

    font-weight: 700;

    color: #222;

}



.close-btn {

    position: absolute;

    right: 30px;

    top: 25px;

    background: none;

    border: none;

    font-size: 28px;

    cursor: pointer;

}



.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 1500;

}



.menu-overlay.active {

    opacity: 1;

    visibility: visible;

}



@media(max-width:1024px) {

    .desktop-nav,

    .contact-btn {

        display: none;

    }



    .menu-btn {

        display: block;

    }

}

/*============================

HERO

============================*/

.hero {

    padding: 170px 0 120px;

    position: relative;

    overflow: hidden;

    background: #faf8f5;

}

.hero-pattern {

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background: radial-gradient(circle, #0f9d5812 0%, transparent 70%);

    right: -250px;

    top: -180px;

}

.hero-container {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    align-items: center;

    gap: 80px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 12px 22px;

    border-radius: 50px;

    background: white;

    border: 1px solid #ece8e1;

    font-weight: 600;

    margin-bottom: 30px;

    box-shadow: 0 12px 25px rgba(0, 0, 0, .04);

}

.badge-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #0f9d58;

    animation: pulse 2s infinite;

}

.hero h1 {

    font-size: 72px;

    line-height: 1.08;

    max-width: 650px;

    margin-bottom: 30px;

}

.hero h1 span {

    color: #0f9d58;

}

.hero p {

    font-size: 20px;

    line-height: 1.9;

    color: #6b7280;

    max-width: 620px;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    margin-bottom: 55px;

}

.hero-btn {

    padding: 18px 34px;

    background: #1f2937;

    color: white;

    border-radius: 14px;

    font-weight: 700;

    transition: .35s;

}

.hero-btn:hover {

    background: #0f9d58;

    transform: translateY(-3px);

}

.hero-btn-outline {

    padding: 18px 34px;

    border-radius: 14px;

    border: 1px solid #d9d4cc;

    color: #62686d;

    font-weight: 700;

    transition: .35s;

}

.hero-btn-outline:hover {

    background: white;

}

.hero-info {

    display: flex;

    gap: 60px;

}

.hero-info h2 {

    font-size: 34px;

    margin-bottom: 6px;

}

.hero-info span {

    color: #777;

}

.hero-card {

    background: white;

    border-radius: 30px;

    padding: 35px;

    box-shadow: 0 30px 60px rgba(0, 0, 0, .07);

    border: 1px solid #ece8e1;

    animation: floatCard 6s ease-in-out infinite;

}

.card-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

    font-weight: 700;

}

.status {

    display: flex;

    align-items: center;

    gap: 10px;

}

.status span {

    width: 10px;

    height: 10px;

    background: #0f9d58;

    border-radius: 50%;

}

.task {

    display: flex;

    justify-content: space-between;

    padding: 18px 0;

    border-bottom: 1px solid #f2f2f2;

}

.task div {

    display: flex;

    gap: 12px;

}

.task i {

    color: #0f9d58;

}

.progress-box {

    margin-top: 30px;

}

.progress-title {

    display: flex;

    justify-content: space-between;

    margin-bottom: 12px;

}

.progress-bar {

    height: 10px;

    background: #ececec;

    border-radius: 50px;

    overflow: hidden;

}

.progress-fill {

    width: 99%;

    height: 100%;

    background: #0f9d58;

    border-radius: 50px;

    transition: 2s;

}

@keyframes floatCard {

    50% {

        transform: translateY(-10px);

    }

}

@keyframes pulse {

    50% {

        transform: scale(1.4);

        opacity: .4;

    }

}

/*============================
RESPONSIVE
============================*/

@media(max-width:1000px) {

    .hero-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .hero {

        text-align: center;

    }

    .hero h1 {

        font-size: 50px;

        margin: auto auto 25px;

    }

    .hero p {

        margin: 0 auto 40px;

    }

    .hero-buttons,

    .hero-info {

        justify-content: center;

        flex-wrap: wrap;

    }

}

@media(max-width:600px) {

    .hero {

        padding-top: 130px;

    }

    .hero h1 {

        font-size: 38px;

    }

    .hero-info {

        gap: 30px;

    }

    .hero-card {

        padding: 25px;

    }

}

/*=============================

WHY SECTION

==============================*/

.why {

    padding: 120px 0;

    background: white;

}

.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}

.why-images {

    position: relative;

}

.main-image {

    width: 100%;

    border-radius: 28px;

    box-shadow: 0 35px 70px rgba(0, 0, 0, .08);

    display: block;

}

.floating-image {

    position: absolute;

    width: 240px;

    right: -40px;

    bottom: -40px;

    border-radius: 24px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

    border: 8px solid white;

    animation: floatImage 5s ease-in-out infinite;

}

.why-content h2 {

    font-size: 52px;

    line-height: 1.15;

    margin-bottom: 25px;

}

.why-content>p {

    font-size: 18px;

    line-height: 1.9;

    color: #6b7280;

    margin-bottom: 45px;

}

.feature-list {

    display: flex;

    flex-direction: column;

    gap: 30px;

}

.feature-item {

    display: flex;

    gap: 22px;

    align-items: flex-start;

}

.icon {

    width: 60px;

    height: 60px;

    background: #f5f4ef;

    border-radius: 18px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    color: #0f9d58;

    flex-shrink: 0;

    transition: .35s;

}

.feature-item:hover .icon {

    transform: translateY(-6px) rotate(-6deg);

    background: #0f9d58;

    color: white;

}

.feature-item h3 {

    font-size: 22px;

    margin-bottom: 10px;

}

.feature-item p {

    line-height: 1.8;

    color: #6b7280;

}

@keyframes floatImage {

    50% {

        transform: translateY(-12px);

    }

}

@media(max-width:1000px) {

    .why-grid {

        grid-template-columns: 1fr;

    }

    .why-images {

        max-width: 650px;

        margin: auto;

    }

    .why-content {

        text-align: center;

    }

    .feature-item {

        text-align: left;

    }

}

@media(max-width:650px) {

    .why {

        padding: 80px 0;

    }

    .why-content h2 {

        font-size: 38px;

    }

    .floating-image {

        width: 170px;

        right: -10px;

        bottom: -20px;

    }

}

/*==================================

BENTO GRID

===================================*/

.capabilities {

    padding: 130px 0;

    background: #f7f5f2;

}

.section-heading {

    text-align: center;

    max-width: 760px;

    margin: auto auto 70px;

}

.section-heading h2 {

    font-size: 54px;

    line-height: 1.15;

    margin-bottom: 20px;

}

.section-heading p {

    font-size: 19px;

    color: #6b7280;

    line-height: 1.8;

}

.bento-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    grid-template-rows: 320px 260px;

    gap: 24px;

}

.large {

    grid-row: span 2;

}

.wide {

    grid-column: span 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.bento {

    background: white;

    border-radius: 30px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

    transition: .35s;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

}

.bento:hover {

    transform: translateY(-10px);

}

.bento span {

    color: #0f9d58;

    font-weight: 700;

}

.bento h3 {

    font-size: 34px;

    line-height: 1.25;

    margin-top: 12px;

}

.bento img {

    width: 100%;

    margin-top: 25px;

    transition: .4s;

}

.bento:hover img {

    transform: scale(1.05);

}

.bento i {

    font-size: 34px;

    color: #0f9d58;

    margin-bottom: 20px;

}

@media(max-width:1000px) {

    .bento-grid {

        grid-template-columns: 1fr;

        grid-template-rows: auto;

    }

    .large,

    .wide {

        grid-column: auto;

        grid-row: auto;

    }

    .wide {

        flex-direction: column;

        align-items: flex-start;

    }

    .section-heading h2 {

        font-size: 40px;

    }

}

/*==================================

WORKFLOW

===================================*/

.workflow {

    padding: 130px 0;

    background: #fff;

}

.section-title {

    max-width: 760px;

    margin: auto;

    text-align: center;

    margin-bottom: 80px;

}

.section-title span {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #0f9d58;

}

.section-title h2 {

    font-size: 54px;

    line-height: 1.15;

    margin-bottom: 22px;

}

.section-title p {

    font-size: 19px;

    color: #6b7280;

    line-height: 1.8;

}

.workflow {

    position: relative;

}

.workflow-line {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    margin-top: 115px;

    width: min(900px, 70%);

    height: 3px;

    background: linear-gradient(to right, #0f9d58, #d7ddd5);

}

.workflow-grid {

    position: relative;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin-bottom: 100px;

}

.workflow-card {

    position: relative;

    background: #faf8f5;

    border: 1px solid #ece8e1;

    border-radius: 28px;

    padding: 35px;

    transition: .35s;

    z-index: 2;

}

.workflow-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .06);

}

.step-number {

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #c66a2b;

    margin-bottom: 18px;

}

.step-icon {

    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: #0f9d58;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 28px;

    margin-bottom: 28px;

    transition: .35s;

}

.workflow-card:hover .step-icon {

    transform: rotate(-8deg) scale(1.08);

}

.workflow-card h3 {

    font-size: 28px;

    margin-bottom: 16px;

}

.workflow-card p {

    line-height: 1.9;

    color: #6b7280;

}

.workflow-preview {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    background: #faf8f5;

    padding: 50px;

    border-radius: 32px;

    border: 1px solid #ece8e1;

}

.workflow-preview h3 {

    font-size: 42px;

    margin-bottom: 20px;

}

.workflow-preview p {

    line-height: 1.9;

    color: #6b7280;

    font-size: 18px;

}

.workflow-preview img {

    width: 100%;

    display: block;

    transition: .4s;

}

.workflow-preview:hover img {

    transform: scale(1.03);

}

@media(max-width:1000px) {

    .workflow-line {

        display: none;

    }

    .workflow-grid {

        grid-template-columns: 1fr;

    }

    .workflow-preview {

        grid-template-columns: 1fr;

        padding: 35px;

    }

    .section-title h2 {

        font-size: 40px;

    }

    .workflow-preview h3 {

        font-size: 34px;

    }

}

@media(max-width:600px) {

    .workflow {

        padding: 90px 0;

    }

    .workflow-card {

        padding: 28px;

    }

    .section-title {

        margin-bottom: 60px;

    }

    .section-title h2 {

        font-size: 34px;

    }

}


/*==================================

ASSISTANT PREVIEW

===================================*/

.assistant-preview {

    padding: 140px 0;

    background: #F8F6F2;

    overflow: hidden;

}

.assistant-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.section-label {

    display: inline-block;

    color: #0F9D58;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

.assistant-left h2 {

    font-size: 56px;

    line-height: 1.15;

    margin-bottom: 25px;

}

.assistant-left p {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 40px;

}

.assistant-prompts {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}

.prompt-chip {

    padding: 14px 22px;

    background: white;

    border-radius: 50px;

    border: 1px solid #ECE8E1;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.prompt-chip:hover {

    background: #0F9D58;

    color: white;

    transform: translateY(-4px);

}

.chat-window {

    background: white;

    border-radius: 28px;

    padding: 30px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .07);

    border: 1px solid #ECE8E1;

    position: relative;

    z-index: 2;

}

.chat-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

    font-weight: 700;

}

.chat-top span {

    font-size: 12px;

    padding: 8px 14px;

    border-radius: 40px;

    background: #DDF5E8;

    color: #0F9D58;

}

.messages {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.message {

    max-width: 85%;

    padding: 18px 22px;

    border-radius: 18px;

    line-height: 1.8;

}

.user {

    background: #1F2937;

    color: white;

    align-self: flex-end;

}

.ai {

    background: #F5F5F5;

}

.assistant-image {

    width: 85%;

    display: block;

    margin: -60px auto 0;

    position: relative;

    z-index: 1;

    animation: laptopFloat 5s ease-in-out infinite;

}

@keyframes laptopFloat {

    50% {

        transform: translateY(-12px);

    }

}

@media(max-width:1000px) {

    .assistant-grid {

        grid-template-columns: 1fr;

    }

    .assistant-left {

        text-align: center;

    }

    .assistant-prompts {

        justify-content: center;

    }

    .assistant-left h2 {

        font-size: 42px;

    }

    .assistant-image {

        width: 100%;

        margin-top: 40px;

    }

}

@media(max-width:600px) {

    .assistant-preview {

        padding: 90px 0;

    }

    .assistant-left h2 {

        font-size: 34px;

    }

    .chat-window {

        padding: 22px;

    }

}

/*=================================

STORY SECTION

==================================*/

.story-section {

    padding: 140px 0;

    background: white;

}

.story-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: start;

}

.story-content {

    display: flex;

    flex-direction: column;

    gap: 40px;

}

.story-item {

    padding-left: 35px;

    border-left: 3px solid #E8E3DA;

    opacity: .45;

    transition: .4s;

    cursor: pointer;

}

.story-item.active {

    opacity: 1;

    border-left-color: #0F9D58;

}

.story-item span {

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 800;

    color: #C66A2B;

    display: block;

    margin-bottom: 15px;

}

.story-item h3 {

    font-size: 34px;

    margin-bottom: 18px;

}

.story-item p {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

}

.story-image {

    position: sticky;

    top: 120px;

}

.story-image img {

    width: 100%;

    display: block;

    border-radius: 26px;

    transition: .5s;

    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, .08));

}

.story-image:hover img {

    transform: scale(1.03);

}

@media(max-width:1000px) {

    .story-container {

        grid-template-columns: 1fr;

    }

    .story-image {

        position: relative;

        top: 0;

        order: -1;

        margin-bottom: 40px;

    }

    .story-item h3 {

        font-size: 28px;

    }

}

@media(max-width:600px) {

    .story-section {

        padding: 90px 0;

    }

    .story-item {

        padding-left: 20px;

    }

    .story-item h3 {

        font-size: 24px;

    }

    .story-item p {

        font-size: 16px;

    }

}

/*=================================

WOW CTA

==================================*/

.future-section {

    padding: 160px 0;

    background: #1E1E1E;

    position: relative;

    overflow: hidden;

    text-align: center;

    color: white;

}

.floating-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .15;

}

.orb-one {

    width: 380px;

    height: 380px;

    background: #0F9D58;

    left: -120px;

    top: -120px;

    animation: floatOrb 12s infinite alternate ease-in-out;

}

.orb-two {

    width: 300px;

    height: 300px;

    background: #C66A2B;

    right: -80px;

    bottom: -80px;

    animation: floatOrb 10s infinite alternate ease-in-out;

}

.future-label {

    display: inline-block;

    letter-spacing: 3px;

    font-size: 13px;

    font-weight: 700;

    color: #A7F3D0;

    margin-bottom: 25px;

}

.future-section h2 {

    font-size: 72px;

    line-height: 1.1;

    max-width: 900px;

    margin: auto;

}

.future-section h2 span {

    display: block;

    color: #0F9D58;

}

.future-section p {

    max-width: 700px;

    margin: 35px auto 70px;

    font-size: 20px;

    line-height: 1.9;

    color: #d6d6d6;

}

.future-image {

    width: min(900px, 95%);

    display: block;

    margin: auto;

    animation: floatDevice 6s infinite ease-in-out;

    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, .45));

}

.future-stats {

    display: flex;

    justify-content: center;

    gap: 80px;

    margin: 70px 0;

    flex-wrap: wrap;

}

.future-stats h3 {

    font-size: 42px;

    margin-bottom: 10px;

    color: #fff;

}

.future-stats span {

    color: #bdbdbd;

}

.future-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

@keyframes floatDevice {

    50% {

        transform: translateY(-14px);

    }

}

@keyframes floatOrb {

    100% {

        transform: translate(50px, -40px);

    }

}

@media(max-width:900px) {

    .future-section {

        padding: 100px 0;

    }

    .future-section h2 {

        font-size: 46px;

    }

    .future-stats {

        gap: 40px;

    }

    .future-stats h3 {

        font-size: 34px;

    }

}

@media(max-width:600px) {

    .future-section h2 {

        font-size: 34px;

    }

    .future-section p {

        font-size: 17px;

    }

}

/*================================

FOOTER

================================*/

.footer {

    background: #171717;

    color: white;

    padding: 90px 0 30px;

}

.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 2fr;

    gap: 50px;

    margin-bottom: 60px;

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 28px;

    font-weight: 800;

    color: white;

    margin-bottom: 25px;

}

.footer-brand p {

    line-height: 1.9;

    color: #BEBEBE;

    max-width: 350px;

    margin-bottom: 35px;

}

.footer-socials {

    display: flex;

    gap: 15px;

}

.footer-socials a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #242424;

    color: white;

    transition: .35s;

}

.footer-socials a:hover {

    background: #0F9D58;

    transform: translateY(-5px);

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.footer-links h4 {

    margin-bottom: 12px;

    font-size: 18px;

}

.footer-links a {

    color: #BEBEBE;

    transition: .3s;

}

.footer-links a:hover {

    color: #0F9D58;

    padding-left: 8px;

}

.footer-newsletter h4 {

    font-size: 24px;

    margin-bottom: 15px;

}

.footer-newsletter p {

    color: #BEBEBE;

    line-height: 1.8;

    margin-bottom: 25px;

}

.footer-newsletter form {

    display: flex;

    background: #242424;

    border-radius: 14px;

    overflow: hidden;

}

.footer-newsletter input {

    flex: 1;

    padding: 16px;

    background: transparent;

    border: none;

    color: white;

    outline: none;

}

.footer-newsletter button {

    padding: 16px 24px;

    border: none;

    background: #0F9D58;

    color: white;

    cursor: pointer;

    font-weight: 700;

    transition: .3s;

}

.footer-newsletter button:hover {

    background: #0c874b;

}

.footer-bottom {

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;

    color: #9A9A9A;

    font-size: 15px;

}

@media(max-width:1000px) {

    .footer-top {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:700px) {

    .footer {

        padding: 70px 0 25px;

    }

    .footer-top {

        grid-template-columns: 1fr;

    }

    .footer-bottom {

        text-align: center;

        justify-content: center;

    }

    .footer-newsletter form {

        flex-direction: column;

    }

    .footer-newsletter button {

        width: 100%;

    }

}


/*==================================

UNIVERSAL PAGE HERO

===================================*/

.page-hero {

    padding: 170px 0 120px;

    background: #FAF8F5;

    overflow: hidden;

    position: relative;

}

.page-hero::before {

    content: "";

    position: absolute;

    right: -250px;

    top: -200px;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background: radial-gradient(circle, #0F9D5810, transparent 70%);

}

.page-hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

}

.page-label {

    display: inline-block;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #0F9D58;

    margin-bottom: 20px;

}

.page-hero h1 {

    font-size: 68px;

    line-height: 1.08;

    margin-bottom: 25px;

    max-width: 620px;

}

.page-hero p {

    font-size: 19px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 40px;

    max-width: 600px;

}

.page-buttons {

    display: flex;

    gap: 18px;

    margin-bottom: 45px;

    flex-wrap: wrap;

}

.page-hero-image {

    position: relative;

}

.page-hero-image img {

    width: 100%;

    display: block;

    animation: pageFloat 6s ease-in-out infinite;

    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .08));

}

.breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    font-size: 15px;

    color: #888;

    flex-wrap: wrap;

}

.breadcrumb a {

    color: #555;

    transition: .3s;

}

.breadcrumb a:hover {

    color: #0F9D58;

}

@keyframes pageFloat {

    50% {

        transform: translateY(-12px);

    }

}

@media(max-width:1000px) {

    .page-hero-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .page-hero h1 {

        font-size: 48px;

        margin: auto auto 20px;

    }

    .page-hero p {

        margin: 0 auto 35px;

    }

    .page-buttons,

    .breadcrumb {

        justify-content: center;

    }

    .page-hero-image {

        margin-top: 40px;

    }

}

@media(max-width:600px) {

    .page-hero {

        padding: 130px 0 80px;

    }

    .page-hero h1 {

        font-size: 36px;

    }

    .page-hero p {

        font-size: 17px;

    }

}


/*================================

FEATURED PRODUCT

================================*/

.featured-product {

    padding: 140px 0;

    background: #fff;

}

.featured-top {

    text-align: center;

    max-width: 850px;

    margin: auto;

    margin-bottom: 70px;

}

.featured-top span {

    display: inline-block;

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 700;

    color: #0F9D58;

    margin-bottom: 18px;

}

.featured-top h2 {

    font-size: 72px;

    margin-bottom: 22px;

}

.featured-top p {

    font-size: 20px;

    line-height: 1.9;

    color: #666;

}

.featured-image {

    text-align: center;

    margin-bottom: 90px;

}

.featured-image img {

    width: min(1100px, 100%);

    display: inline-block;

    filter: drop-shadow(0 45px 80px rgba(0, 0, 0, .12));

    transition: .5s;

}

.featured-image:hover img {

    transform: translateY(-12px) scale(1.02);

}

.feature-highlights {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

}

.highlight {

    padding: 35px;

    border: 1px solid #ECE8E1;

    border-radius: 24px;

    background: #FAF8F5;

    transition: .35s;

}

.highlight:hover {

    transform: translateY(-8px);

    background: white;

    box-shadow: 0 25px 50px rgba(0, 0, 0, .06);

}

.highlight h3 {

    font-size: 24px;

    margin-bottom: 16px;

}

.highlight p {

    line-height: 1.8;

    color: #666;

}

@media(max-width:1000px) {

    .feature-highlights {

        grid-template-columns: repeat(2, 1fr);

    }

    .featured-top h2 {

        font-size: 52px;

    }

}

@media(max-width:650px) {

    .featured-product {

        padding: 90px 0;

    }

    .feature-highlights {

        grid-template-columns: 1fr;

    }

    .featured-top h2 {

        font-size: 38px;

    }

    .featured-top p {

        font-size: 17px;

    }

    .highlight {

        padding: 28px;

    }

}

/*================================

ECOSYSTEM

================================*/

.ecosystem {

    padding: 140px 0;

    background: #F8F6F2;

}

.ecosystem-header {

    text-align: center;

    max-width: 760px;

    margin: auto auto 80px;

}

.ecosystem-header span {

    color: #0F9D58;

    font-weight: 700;

    letter-spacing: 2px;

    font-size: 13px;

}

.ecosystem-header h2 {

    font-size: 60px;

    margin: 18px 0;

}

.ecosystem-header p {

    font-size: 19px;

    line-height: 1.9;

    color: #666;

}

.ecosystem-layout {

    position: relative;

    width: 600px;

    height: 600px;

    margin: auto;

}

.connection-lines {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    stroke: #D7D0C6;

    stroke-width: 2;

    fill: none;

    stroke-dasharray: 8;

    animation: dashMove 8s linear infinite;

}

.core-circle {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 180px;

    height: 180px;

    background: #0F9D58;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: white;

    box-shadow: 0 25px 60px rgba(15, 157, 88, .25);

}

.core-circle i {

    font-size: 40px;

    margin-bottom: 12px;

}

.orbit {

    position: absolute;

    width: 150px;

    height: 150px;

    background: #fff;

    border-radius: 24px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);

    transition: .35s;

}

.orbit:hover {

    transform: scale(1.05);

}

.orbit i {

    font-size: 30px;

    color: #0F9D58;

    margin-bottom: 12px;

}

.orbit-top {
    top: 0;
    left: 225px;
}

.orbit-right {
    right: 0;
    top: 225px;
}

.orbit-bottom {
    bottom: 0;
    left: 225px;
}

.orbit-left {
    left: 0;
    top: 225px;
}

@keyframes dashMove {

    to {

        stroke-dashoffset: -80;

    }

}

@media(max-width:700px) {

    .ecosystem-layout {

        width: 100%;

        height: auto;

        display: grid;

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .connection-lines {

        display: none;

    }

    .core-circle,

    .orbit {

        position: relative;

        top: auto;

        left: auto;

        right: auto;

        bottom: auto;

        transform: none;

        width: 100%;

        height: 130px;

    }

    .ecosystem-header h2 {

        font-size: 38px;

    }

}


/*================================

PRODUCT CTA

================================*/

.product-cta {

    padding: 120px 0 140px;

    background: #fff;

}

.cta-box {

    background: #1F1F1F;

    border-radius: 36px;

    padding: 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    position: relative;

    overflow: hidden;

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    background: #0F9D58;

    opacity: .08;

    border-radius: 50%;

    top: -120px;

    right: -120px;

}

.cta-box span {

    color: #A7F3D0;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

}

.cta-box h2 {

    font-size: 52px;

    color: #fff;

    max-width: 650px;

    margin-top: 20px;

    line-height: 1.15;

}

.cta-actions {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

@media(max-width:900px) {

    .cta-box {

        flex-direction: column;

        text-align: center;

        padding: 50px 35px;

    }

    .cta-box h2 {

        font-size: 38px;

    }

    .cta-actions {

        justify-content: center;

    }

}

/*==================================

INDUSTRY SOLUTIONS

===================================*/

.industry-solutions {

    padding: 140px 0;

    background: #fff;

}

.industry-wrapper {

    display: grid;

    grid-template-columns: 340px 1fr;

    gap: 50px;

    margin-top: 80px;

}

.industry-menu {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.industry-btn {

    background: #F8F6F2;

    border: 1px solid #ECE8E1;

    padding: 22px 24px;

    border-radius: 18px;

    font-size: 17px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 16px;

    cursor: pointer;

    transition: .35s;

    text-align: left;

}

.industry-btn i {

    color: #0F9D58;

    font-size: 20px;

    width: 24px;

}

.industry-btn:hover,

.industry-btn.active {

    background: #0F9D58;

    color: white;

    transform: translateX(10px);

}

.industry-btn:hover i,

.industry-btn.active i {

    color: white;

}

.industry-display {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    background: #F8F6F2;

    padding: 45px;

    border-radius: 32px;

}

.industry-tag {

    display: inline-block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #0F9D58;

    margin-bottom: 18px;

}

.industry-content h3 {

    font-size: 48px;

    margin-bottom: 20px;

}

.industry-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 30px;

}

.industry-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 35px;

}

.industry-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

}

.industry-features i {

    color: #0F9D58;

}

.industry-stat {

    display: inline-block;

    padding: 16px 24px;

    background: #fff;

    border-radius: 50px;

    font-weight: 700;

}

.industry-image img {

    width: 100%;

    display: block;

    transition: .4s;

    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .08));

}

.industry-image img:hover {

    transform: scale(1.03);

}

@media(max-width:1000px) {

    .industry-wrapper {

        grid-template-columns: 1fr;

    }

    .industry-display {

        grid-template-columns: 1fr;

    }

}

@media(max-width:700px) {

    .industry-solutions {

        padding: 90px 0;

    }

    .industry-content h3 {

        font-size: 36px;

    }

    .industry-features {

        grid-template-columns: 1fr;

    }

    .industry-btn:hover,

    .industry-btn.active {

        transform: none;

    }

}

/*=========================================

AI SOLUTION ARCHITECTURE

==========================================*/

.solution-architecture {

    padding: 120px 0;

    background: #ffffff;

}

.architecture-layout {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 70px;

    align-items: center;

    margin-top: 70px;

}

.architecture-flow {

    display: flex;

    flex-direction: column;

    gap: 28px;

}

.flow-card {

    display: flex;

    align-items: flex-start;

    gap: 22px;

    padding: 28px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, .06);

    border-radius: 24px;

    transition: .35s;

    position: relative;

    overflow: hidden;

}

.flow-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: linear-gradient(#18a058, #7dd56f);

    transform: scaleY(0);

    transform-origin: top;

    transition: .35s;

}

.flow-card:hover {

    transform: translateX(12px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);

}

.flow-card:hover::before {

    transform: scaleY(1);

}

.flow-icon {

    width: 64px;

    height: 64px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    background: rgba(24, 160, 88, .08);

    color: #18a058;

    flex-shrink: 0;

}

.flow-card h3 {

    margin-bottom: 10px;

    font-size: 22px;

}

.flow-card p {

    color: #666;

    line-height: 1.8;

}

.flow-line {

    display: flex;

    justify-content: center;

}

.flow-line span {

    width: 2px;

    height: 34px;

    background: linear-gradient(to bottom, #18a058, transparent);

}

.architecture-preview {

    display: flex;

    justify-content: center;

}

.architecture-preview img {

    max-width: 100%;

    animation: architectureFloat 6s ease-in-out infinite;

}

@keyframes architectureFloat {

    50% {

        transform: translateY(-12px);

    }

}

@media(max-width:991px) {

    .architecture-layout {

        grid-template-columns: 1fr;

    }

    .architecture-preview {

        order: -1;

        margin-bottom: 20px;

    }

}


/*=========================================

API CAPABILITIES

==========================================*/

.api-capabilities {

    padding: 120px 0;

    background: #fcfcf9;

}

.api-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-top: 70px;

}

.api-card {

    background: #fff;

    border: 1px solid rgba(0, 0, 0, .06);

    border-radius: 26px;

    padding: 32px;

    transition: .35s ease;

    position: relative;

    overflow: hidden;

}

.api-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, #18a058, #58c67d);

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s;

}

.api-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.api-card:hover::before {

    transform: scaleX(1);

}

.api-icon {

    width: 64px;

    height: 64px;

    border-radius: 18px;

    background: rgba(24, 160, 88, .08);

    color: #18a058;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    margin-bottom: 22px;

}

.api-card h3 {

    margin-bottom: 14px;

    font-size: 23px;

}

.api-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 24px;

}

.api-card span {

    display: inline-flex;

    padding: 8px 16px;

    border-radius: 999px;

    background: #eef8f1;

    color: #18a058;

    font-size: 14px;

    font-weight: 600;

    font-family: monospace;

}

.api-preview {

    margin-top: 80px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.api-window {

    background: #111;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);

}

.window-header {

    display: flex;

    gap: 10px;

    padding: 18px 22px;

    background: #1b1b1b;

}

.window-header span {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #666;

}

.window-header span:nth-child(1) {

    background: #ff5f57;

}

.window-header span:nth-child(2) {

    background: #febc2e;

}

.window-header span:nth-child(3) {

    background: #28c840;

}

.api-window pre {

    margin: 0;

    padding: 30px;

    overflow: auto;

}

.api-window code {

    color: #7fffb0;

    line-height: 1.9;

    font-size: 15px;

    font-family: Consolas, monospace;

}

.api-image {

    text-align: center;

}

.api-image img {

    width: 100%;

    max-width: 520px;

    transition: transform .35s ease;

}

@media(max-width:991px) {

    .api-grid {

        grid-template-columns: 1fr;

    }

    .api-preview {

        grid-template-columns: 1fr;

        gap: 40px;

    }

}

/*=========================================

OUR MANIFESTO

==========================================*/

.manifesto-section {

    padding: 120px 0;

    background: #fff;

}

.manifesto-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 80px;

    align-items: center;

}

.manifesto-label {

    display: inline-flex;

    padding: 10px 18px;

    border-radius: 999px;

    background: #eef8f1;

    color: #18a058;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

    margin-bottom: 24px;

}

.manifesto-content h2 {

    font-size: 54px;

    line-height: 1.15;

    margin-bottom: 24px;

    max-width: 700px;

}

.manifesto-content p {

    color: #666;

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 22px;

}

.manifesto-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 40px;

}

.manifesto-points div {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 22px;

    border-radius: 18px;

    background: #fafaf7;

    transition: .35s;

    font-weight: 600;

}

.manifesto-points div:hover {

    transform: translateY(-6px);

    background: #eef8f1;

}

.manifesto-points i {

    color: #18a058;

    font-size: 18px;

}

.manifesto-image {

    text-align: center;

}

.manifesto-image img {

    width: 100%;

    max-width: 520px;

    transition: .5s ease;

}

@media(max-width:991px) {

    .manifesto-grid {

        grid-template-columns: 1fr;

    }

    .manifesto-content h2 {

        font-size: 40px;

    }

    .manifesto-points {

        grid-template-columns: 1fr;

    }

}

/*=========================================

HOW WE BUILD AI

==========================================*/

.build-ai-section {

    padding: 120px 0;

    background: #fcfcf9;

}

.build-ai-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    margin: 70px 0;

}

.build-card {

    background: #fff;

    border-radius: 26px;

    padding: 34px;

    display: flex;

    gap: 24px;

    border: 1px solid rgba(0, 0, 0, .06);

    transition: .35s ease;

    position: relative;

    overflow: hidden;

}

.build-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 4px;

    background: #18a058;

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s;

}

.build-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.build-card:hover::after {

    transform: scaleX(1);

}

.build-number {

    width: 72px;

    height: 72px;

    border-radius: 20px;

    background: #eef8f1;

    color: #18a058;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 24px;

    flex-shrink: 0;

}

.build-content h3 {

    margin-bottom: 12px;

    font-size: 24px;

}

.build-content p {

    color: #666;

    line-height: 1.8;

}

.build-image {

    text-align: center;

}

.build-image img {

    max-width: 100%;

    width: 760px;

    transition: .4s ease;

}

@media(max-width:991px) {

    .build-ai-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

LEADERSHIP TEAM

==========================================*/

.leadership-section {

    padding: 120px 0;

    background: #ffffff;

}

.leadership-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.leader-card {

    background: #fff;

    border: 1px solid rgba(0, 0, 0, .06);

    border-radius: 28px;

    overflow: hidden;

    transition: .4s ease;

    position: relative;

}

.leader-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 70px rgba(0, 0, 0, .08);

}

.leader-image {

    height: 360px;

    background: #f6f7f5;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    overflow: hidden;

}

.leader-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .45s;

}

.leader-card:hover .leader-image img {

    transform: scale(1.05);

}

.leader-content {

    padding: 30px;

}

.leader-content h3 {

    font-size: 26px;

    margin-bottom: 8px;

}

.leader-content span {

    display: block;

    color: #18a058;

    font-weight: 600;

    margin-bottom: 18px;

}

.leader-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 28px;

}

.leader-social {

    display: flex;

    gap: 14px;

}

.leader-social a {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: #eef8f1;

    color: #18a058;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: .3s;

}

.leader-social a:hover {

    background: #18a058;

    color: #fff;

    transform: translateY(-4px);

}

.leadership-action {

    text-align: center;

    margin-top: 70px;

}

@media(max-width:991px) {

    .leadership-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

CONTACT HERO

==========================================*/

.contact-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 90px;

    background:
        radial-gradient(circle at top right,
            rgba(24, 160, 88, .12),
            transparent 35%),
        #fcfcf9;

}

.contact-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(rgba(24, 160, 88, .05) 1px, transparent 1px),

        linear-gradient(90deg, rgba(24, 160, 88, .05) 1px, transparent 1px);

    background-size: 42px 42px;

    opacity: .35;

    pointer-events: none;

}

.contact-hero .container {

    position: relative;

    z-index: 2;

}

.contact-hero-content {

    text-align: center;

    max-width: 820px;

    margin: auto;

}

.contact-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 20px;

    border-radius: 999px;

    background: #eef8f1;

    color: #18a058;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

    margin-bottom: 24px;

}

.contact-hero-content h1 {

    font-size: 64px;

    line-height: 1.08;

    margin-bottom: 24px;

}

.contact-hero-content p {

    font-size: 19px;

    color: #666;

    line-height: 1.9;

    max-width: 720px;

    margin: auto;

}

.contact-actions {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-top: 40px;

    flex-wrap: wrap;

}

.contact-hero-info {

    margin-top: 80px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}

.hero-info-card {

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(0, 0, 0, .06);

    border-radius: 24px;

    padding: 28px;

    display: flex;

    align-items: center;

    gap: 18px;

    transition: .35s;

}

.hero-info-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.hero-info-card i {

    width: 62px;

    height: 62px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef8f1;

    color: #18a058;

    font-size: 24px;

}

.hero-info-card span {

    display: block;

    color: #888;

    margin-bottom: 8px;

    font-size: 14px;

}

.hero-info-card strong {

    font-size: 18px;

    font-weight: 600;

}

.contact-breadcrumb {

    justify-content: center;

    margin-top: 55px;

}

@media(max-width:991px) {

    .contact-hero {

        padding: 150px 0 80px;

    }

    .contact-hero-content h1 {

        font-size: 46px;

    }

    .contact-hero-info {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .contact-hero-content h1 {

        font-size: 36px;

    }

    .contact-hero-content p {

        font-size: 17px;

    }

}


/*=========================================

CONTACT FORM

==========================================*/

.contact-section {

    padding: 120px 0;

    background: #fff;

}

.contact-wrapper {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: start;

}

.contact-mini-title {

    color: #18a058;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

}

.contact-details h2 {

    font-size: 52px;

    margin: 20px 0;

    line-height: 1.15;

}

.contact-details>p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 40px;

}

.contact-feature {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;

}

.feature-icon {

    width: 62px;

    height: 62px;

    border-radius: 18px;

    background: #eef8f1;

    color: #18a058;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    font-size: 22px;

}

.contact-feature h4 {

    margin-bottom: 8px;

}

.contact-feature p {

    color: #666;

    line-height: 1.7;

}

.contact-status {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    background: #eef8f1;

    padding: 14px 22px;

    border-radius: 999px;

    font-weight: 600;

}

.status-dot {

    width: 12px;

    height: 12px;

    background: #18a058;

    border-radius: 50%;

    animation: pulse 1.8s infinite;

}

@keyframes pulse {

    50% {

        transform: scale(1.5);

        opacity: .4;

    }

}

.contact-form-box {

    background: #fcfcf9;

    border: 1px solid rgba(0, 0, 0, .06);

    border-radius: 30px;

    padding: 40px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .05);

}

.form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

}

.form-group {

    margin-bottom: 24px;

}

.form-group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

}

.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    border: none;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 16px;

    padding: 16px 18px;

    font-size: 15px;

    transition: .3s;

    outline: none;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    border-color: #18a058;

    box-shadow: 0 0 0 4px rgba(24, 160, 88, .12);

}

textarea {

    resize: vertical;

}

.contact-form-box button {

    width: 100%;

    justify-content: center;

}

@media(max-width:991px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

    .contact-details h2 {

        font-size: 40px;

    }

}

@media(max-width:640px) {

    .form-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

RESOURCES HERO

==========================================*/

.resources-hero {

    padding: 150px 0 70px;

    background: #fcfcf9;

    position: relative;

    overflow: hidden;

}

.resources-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top left,

            rgba(24, 160, 88, .10),

            transparent 35%),

        radial-gradient(circle at bottom right,

            rgba(24, 160, 88, .08),

            transparent 40%);

    pointer-events: none;

}

.resources-hero .container {

    position: relative;

    z-index: 2;

}

.resources-hero-content {

    max-width: 760px;

    margin: auto;

    text-align: center;

}

.resources-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 20px;

    border-radius: 999px;

    background: #eef8f1;

    color: #18a058;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

    margin-bottom: 24px;

}

.resources-hero h1 {

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 22px;

}

.resources-hero p {

    color: #666;

    line-height: 1.9;

    font-size: 18px;

}

.resource-nav {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 55px;

}

.resource-nav a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 24px;

    border-radius: 18px;

    text-decoration: none;

    background: #fff;

    color: #222;

    border: 1px solid rgba(0, 0, 0, .06);

    transition: .3s;

    font-weight: 600;

}

.resource-nav a i {

    color: #18a058;

}

.resource-nav a:hover {

    transform: translateY(-5px);

    border-color: #18a058;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.resource-breadcrumb {

    justify-content: center;

    margin-top: 45px;

}

@media(max-width:768px) {

    .resources-hero {

        padding: 140px 0 60px;

    }

    .resources-hero h1 {

        font-size: 40px;

    }

    .resources-hero p {

        font-size: 16px;

    }

    .resource-nav {

        gap: 12px;

    }

    .resource-nav a {

        width: 100%;

        justify-content: center;

    }

}


/*=========================================

RESOURCE PORTAL

==========================================*/

.resource-portal {

    padding: 110px 0;

    background: #fff;

}

.portal-wrapper {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 45px;

}

.portal-sidebar {

    position: sticky;

    top: 110px;

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.portal-link {

    border: none;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 18px;

    padding: 18px 22px;

    text-align: left;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

    display: flex;

    align-items: center;

    gap: 14px;

}

.portal-link i {

    color: #18a058;

}

.portal-link:hover,

.portal-link.active {

    background: #18a058;

    color: #fff;

}

.portal-link:hover i,

.portal-link.active i {

    color: #fff;

}

.portal-content {

    border: 1px solid #ececec;

    border-radius: 28px;

    padding: 45px;

    min-height: 650px;

    transition: .3s;

}

.portal-header {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 35px;

}

.portal-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: #eef8f1;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #18a058;

    font-size: 28px;

}

.portal-header span {

    color: #888;

    font-size: 14px;

}

.portal-header h2 {

    margin-top: 6px;

    font-size: 38px;

}

.portal-content h3 {

    margin-top: 40px;

    margin-bottom: 15px;

}

.portal-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 20px;

}

.status-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;

}

.status-card {

    background: #fafafa;

    border-radius: 18px;

    padding: 22px;

}

.status-card strong {

    display: block;

    margin-bottom: 10px;

}

.status-online {

    color: #18a058;

    font-weight: 700;

}

@media(max-width:991px) {

    .portal-wrapper {

        grid-template-columns: 1fr;

    }

    .portal-sidebar {

        position: relative;

        top: 0;

    }

    .status-grid {

        grid-template-columns: 1fr;

    }

    .portal-header h2 {

        font-size: 30px;

    }

}