/* =========================================================
   ROOT
========================================================= */
:root {
    --primary: #11b8a7;
    --primary-dark: #079d91;
    --primary-light: #e5faf7;
    --blue: #3478ed;
    --purple: #6747d9;
    --dark: #071b3a;
    --dark-2: #0b2344;
    --dark-3: #102b4e;
    --white: #ffffff;
    --black: #000000;
    --text: #142442;
    --text-light: #61708a;
    --text-muted: #718096;
    --border: #dce8ed;
    --success: #11b8a7;
    --shadow: 0 20px 55px rgba(7, 27, 58, 0.14);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-primary: "Inter", sans-serif;
    --client-bg: #ffffff;
    --client-border: #e6e9ed;
    --client-text: #70747b;
    --client-height: 65px;
}
/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
button,
input,
textarea,
select {
    font-family: var(--font-primary);
}
button {
    border: 0;
    outline: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul,
ol {
    list-style: none;
}
/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid rgba(7, 27, 58, 0.05);
}
.header-container {
    width: min(1200px, 92%);
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
/* =========================================================
   LOGO
========================================================= */
.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    height: 50px;
}
.brand-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 27px;
}
.brand-name {
    color: var(--dark);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1.1px;
}
.brand-name span {
    color: var(--primary);
}
.brand-tagline {
    position: absolute;
    left: 43px;
    bottom: 0;
    color: #6e7b8e;
    font-size: 7px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}
/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
}
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 82px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link.active {
    color: var(--primary);
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19px;
    height: 2px;
    background: var(--primary);
    border-radius: 20px;
}
.nav-dropdown {
    gap: 5px;
}
.nav-dropdown i {
    font-size: 8px;
}
/* =========================================================
   HEADER ACTIONS
========================================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-btn {
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}
.demo-btn {
    color: var(--primary-dark);
    background: var(--white);
    border: 1.5px solid #8bd9d1;
}
.demo-btn:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
    border-color: var(--primary);
}
.login-btn {
    min-width: 103px;
    color: var(--white);
    background: var(--dark);
    border: 1.5px solid var(--dark);
}
.login-btn:hover {
    background: var(--dark-2);
    transform: translateY(-1px);
}
/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
.mobile-menu-btn {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 17px;
    cursor: pointer;
}
/* =========================================================
   HERO
========================================================= */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 97% 55%,
            rgba(17, 184, 167, 0.09),
            transparent 24%),
        var(--white);
}
/* Right-side dotted decoration */
.hero-section::after {
    content: "";
    position: absolute;
    right: -80px;
    top: 150px;
    width: 230px;
    height: 430px;
    background-image:
        radial-gradient(var(--primary) 1px,
            transparent 1px);
    background-size: 9px 9px;
    opacity: 0.11;
    transform: rotate(8deg);
    pointer-events: none;
}
/* =========================================================
   HERO CONTAINER
========================================================= */
.hero-container {
    position: relative;
    z-index: 2;
    width: min(1200px, 92%);
    min-height: 550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px 0 48px;
}
/* =========================================================
   HERO LEFT CONTENT
========================================================= */
.hero-content {
    width: 42%;
    flex: 0 0 42%;
}
/* =========================================================
   HERO BADGE
========================================================= */
.hero-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 24px;
    padding: 8px 13px;
    color: var(--dark);
    background: #fbfffe;
    border: 1px solid #d8ebe8;
    border-radius: 30px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
}
.hero-badge i {
    color: var(--primary);
    font-size: 6px;
}
/* =========================================================
   HERO TITLE
========================================================= */
.hero-title {
	color: var(--dark);
	font-size: clamp(40px, 4vw, 49px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -2.5px;
	margin: 0 0 18px;
}
.hero-title .green {
    color: var(--primary);
}
.hero-title .blue {
    color: var(--blue);
}
.hero-title .purple {
    color: var(--purple);
}
/* =========================================================
   HERO DESCRIPTION
========================================================= */
.hero-description {
    max-width: 500px;
    margin-bottom: 31px;
    /* color: var(--text-light); */
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}
/* =========================================================
   HERO FEATURES
========================================================= */
.hero-features {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-bottom: 32px;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
}
.feature-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 11px;
}
.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.feature-content div {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    white-space: nowrap;
}
/* =========================================================
   HERO BUTTONS
========================================================= */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hero-btn {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.hero-btn i {
    font-size: 12px;
}
.primary-hero-btn {
    color: var(--white);
    background: var(--primary);
    box-shadow:
        0 9px 20px rgba(17, 184, 167, 0.18);
}
.primary-hero-btn:hover {
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(17, 184, 167, 0.25);
}
.secondary-hero-btn {
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid #88d9d1;
}
.secondary-hero-btn:hover {
    color: var(--primary-dark);
    background: #fafffe;
    border-color: var(--primary);
    transform: translateY(-2px);
}
/* =========================================================
   TRUST
========================================================= */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 28px;
    color: #526078;
    font-size: 10px;
    font-weight: 500;
}
.hero-trust i {
    margin-right: 7px;
    color: var(--primary);
    font-size: 12px;
}
/* =========================================================
   HERO IMAGE AREA
========================================================= */
.hero-image-area {
    width: 58%;
    flex: 0 0 58%;
    min-width: 0;
    display: flex;
    align-items: center;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* background: var(--dark); */
    border-radius: 15px 15px 0 0;
    /* box-shadow:
        -15px 22px 55px rgba(7, 27, 58, 0.16); */
}
.hero-banner-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 470px;
    object-fit: cover;
    object-position: right center;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 70%,
            rgba(7, 27, 58, 0.04) 100%);
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1100px) {
    .header-container {
        width: 94%;
        gap: 20px;
    }
    .main-nav {
        gap: 22px;
    }
    .nav-link {
        font-size: 11px;
    }
    .header-btn {
        padding: 0 15px;
    }
    .hero-container {
        width: 94%;
        gap: 30px;
    }
    .hero-title {
        font-size: 43px;
        letter-spacing: -2px;
    }
    .hero-features {
        gap: 15px;
    }
    .feature-content div {
        font-size: 8px;
    }
    .hero-btn {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */
@media (max-width: 900px) {
    .header-container {
        height: 75px;
    }
    .main-nav {
        gap: 16px;
    }
    .nav-link {
        font-size: 10px;
    }
    .header-actions {
        gap: 6px;
    }
    .header-btn {
        height: 40px;
        padding: 0 12px;
        font-size: 10px;
    }
    .hero-container {
        gap: 25px;
    }
    .hero-content {
        width: 44%;
        flex-basis: 44%;
    }
    .hero-image-area {
        width: 56%;
        flex-basis: 56%;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-description {
        font-size: 12px;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 800px) {
    /* Header */
    .header-container {
        width: 92%;
        height: 72px;
    }
    .brand-name {
        font-size: 21px;
    }
    .brand-icon {
        width: 30px;
        height: 30px;
        font-size: 23px;
    }
    .brand-tagline {
        left: 38px;
        bottom: 2px;
        font-size: 6px;
    }
    .main-nav,
    .header-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    /* Mobile Hero */
    .hero-container {
        width: 92%;
        min-height: auto;
        flex-direction: column;
        gap: 42px;
        padding-top: 36px;
        padding-bottom: 40px;
    }
    .hero-content {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-trust {
        margin-top: 24px;
        justify-content: center;
    }
    /* Mobile Image */
    .hero-image-area {
        width: 100%;
        flex: 0 0 100%;
    }
    .hero-image-frame {
        width: 100%;
        border-radius: 12px;
    }
    .hero-banner-image {
        min-height: auto;
        width: 100%;
        object-fit: cover;
        object-position: right center;
    }
}
/* =========================================================
   MOBILE NAVIGATION OPEN STATE
========================================================= */
@media (max-width: 800px) {
    .main-nav.mobile-nav-open {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 999;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 5% 18px;
        margin: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow:
            0 18px 35px rgba(7, 27, 58, 0.10);
    }
    .main-nav.mobile-nav-open .nav-link {
        width: 100%;
        height: auto;
        padding: 14px 0;
        font-size: 13px;
    }
    .main-nav.mobile-nav-open .nav-link.active::after {
        display: none;
    }
}
/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 520px) {
    .header-container {
        width: 90%;
    }
    .hero-container {
        width: 90%;
        padding-top: 32px;
        padding-bottom: 36px;
    }
    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -1.7px;
    }
    .hero-description {
        font-size: 12px;
        line-height: 1.75;
    }
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        gap: 14px;
    }
    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .hero-btn {
        width: 100%;
        min-height: 48px;
    }
    .hero-trust {
        font-size: 9px;
    }
    .hero-image-frame {
        border-radius: 10px;
    }
    .hero-banner-image {
        width: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: 72% center;
    }
}
/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */
@media (max-width: 380px) {
    .brand-name {
        font-size: 19px;
    }
    .brand-icon {
        font-size: 21px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-badge {
        font-size: 9px;
        padding: 7px 10px;
    }
    .hero-description {
        font-size: 11px;
    }
    .feature-content div {
        font-size: 9px;
    }
}
/* =========================================
   CLIENT LOGO STRIP
========================================= */
.client-strip {
    width: 100%;
    background: var(--client-bg);
    border-top: 1px solid var(--client-border);
    border-bottom: 1px solid var(--client-border);
    overflow: hidden;
}
.client-strip-container {
    width: min(1200px, 92%);
    min-height: var(--client-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
/* =========================================
   LOGO ITEM
========================================= */
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 32px;
}
.client-logo-item img {
    display: block;
    width: auto;
    max-width: 125px;
    height: 25px;
    object-fit: contain;
    opacity: 0.88;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}
.client-logo-item:hover img {
    opacity: 1;
    transform: translateY(-1px);
}
/* =========================================
   INDIVIDUAL LOGO SIZES
========================================= */
.client-logo-item:nth-child(1) img {
    max-width: 90px;
    height: 23px;
}
.client-logo-item:nth-child(2) img {
    max-width: 115px;
    height: 25px;
}
.client-logo-item:nth-child(3) img {
    max-width: 105px;
    height: 27px;
}
.client-logo-item:nth-child(4) img {
    max-width: 125px;
    height: 27px;
}
.client-logo-item:nth-child(5) img {
    max-width: 100px;
    height: 32px;
}
.client-logo-item:nth-child(6) img {
    max-width: 115px;
    height: 27px;
}
.client-logo-item:nth-child(7) img {
    max-width: 100px;
    height: 27px;
}
.client-logo-item:nth-child(8) img {
    max-width: 115px;
    height: 27px;
}
/* =========================================
   MANY MORE
========================================= */
.client-more {
    flex: 0 0 auto;
    color: var(--client-text);
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.9;
}
/* =========================================
   TABLET
========================================= */
@media (max-width: 1050px) {
    .client-strip-container {
        width: 94%;
        gap: 22px;
    }
    .client-logo-item img {
        max-width: 100px;
        height: 23px;
    }
    .client-more {
        font-size: 9px;
    }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 700px) {
    .client-strip {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .client-strip::-webkit-scrollbar {
        display: none;
    }
    .client-strip-container {
        width: max-content;
        min-height: 60px;
        justify-content: flex-start;
        gap: 30px;
        padding: 0 25px;
    }
    .client-logo-item {
        height: 28px;
    }
    .client-logo-item img {
        max-width: 100px;
        height: 23px;
    }
    .client-more {
        font-size: 9px;
    }
}
/* =========================================================
   MODULES SECTION
========================================================= */
.modules-section {
    position: relative;
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    background:
        rgba(17, 184, 167, 0.035);
}
/* =========================================================
   FLUID CONTAINER
========================================================= */
.modules-container {
    width: 100%;
    padding-left: 4.3%;
    padding-right: 4.3%;
    margin: 0 auto;
}
/* =========================================================
   INTRO
========================================================= */
.modules-intro {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
}
.modules-label {
    margin-bottom: 8px;
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.modules-title {
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.8px;
}
.modules-subtitle {
    margin-top: 8px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}
/* =========================================================
   MODULE GRID
========================================================= */
.modules-grid {
    width: 100%;
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 10px;
}
/* =========================================================
   MODULE CARD
========================================================= */
.module-card {
    min-height: 133px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #edf0f3;
    border-radius: 9px;
    box-shadow:
        0 2px 10px rgba(7, 27, 58, 0.025);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.module-card:hover {
    transform: translateY(-2px);
    border-color: #dce8ed;
    box-shadow:
        0 8px 22px rgba(7, 27, 58, 0.07);
}
/* =========================================================
   MODULE ICON
========================================================= */
.module-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
}
/* Green */
.icon-green {
    color: #19b84b;
    background: #e6fae9;
}
/* Blue */
.icon-blue {
    color: #3478ed;
    background: #eaf2ff;
}
/* Red */
.icon-red {
    color: #ff4545;
    background: #fff0f0;
}
/* Purple */
.icon-purple {
    color: #6546df;
    background: #f0edff;
}
/* Orange */
.icon-orange {
    color: #ff7119;
    background: #fff0df;
}
/* Cyan */
.icon-cyan {
    color: #14bfc1;
    background: #e7fafa;
}
/* Teal */
.icon-teal {
    color: #13b6a6;
    background: #e5f9f6;
}
/* =========================================================
   MODULE CONTENT
========================================================= */
.module-content {
    min-width: 0;
    padding-top: 1px;
}
.module-name {
    margin-bottom: 7px;
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
}
.module-description {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}
/* =========================================================
   INTEGRATIONS
========================================================= */
.integrations-box {
    width: 80%;
    min-height: 96px;
    margin: 24px auto 0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    /* background: rgba(255, 255, 255, 0.96); */
    border: 1px solid #e8edf0;
    border-radius: 12px;
    box-shadow:
        0 3px 14px rgba(7, 27, 58, 0.025);
}
/* =========================================================
   INTEGRATION INFO
========================================================= */
.integrations-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.integration-status {
    width: 15px;
    height: 15px;
    position: relative;
    flex: 0 0 15px;
    border: 2px solid #e4f3f1;
    border-radius: 50%;
}
.integration-status::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}
.integration-title {
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
}
.integration-description {
    margin-top: 3px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}
/* =========================================================
   INTEGRATION LOGOS
========================================================= */
.integration-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}
.integration-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    background: #ffffff;
    border: 1px solid #edf0f2;
    border-radius: 50%;
    box-shadow:
        0 2px 8px rgba(7, 27, 58, 0.04);
    font-size: 25px;
}
/* Google */
.integration-logo.google {
    color: #4285f4;
}
/* Meta */
.integration-logo.meta {
    color: #1877f2;
}
/* WordPress */
.integration-logo.wordpress {
    color: #21759b;
}
/* WhatsApp */
.integration-logo.whatsapp {
    color: #25d366;
}
/* Slack */
.integration-logo.slack {
    color: #36c5f0;
}
/* Microsoft */
.integration-logo.teams {
    color: #6264a7;
}
/* Gmail */
.integration-logo.gmail {
    color: #ea4335;
}
/* Plus */
.integration-logo.more {
    color: var(--dark);
    background: #f8f9fa;
    font-size: 19px;
}
/* =========================================================
   LARGE DESKTOP
========================================================= */
@media (min-width: 1400px) {
    .modules-container {
        padding-left: 4.5%;
        padding-right: 4.5%;
    }
    .module-card {
        min-height: 140px;
        padding: 17px 16px;
    }
    .module-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        font-size: 23px;
    }
    .module-name {
        font-size: 14px;
    }
    .module-description {
        font-size: 10px;
    }
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1050px) {
    .modules-container {
        padding-left: 3%;
        padding-right: 3%;
    }
    .modules-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
    .module-card {
        min-height: 135px;
    }
    .modules-title {
        font-size: 23px;
    }
    .integrations-box {
        width: 85%;
    }
    .integration-logos {
        gap: 6px;
    }
    .integration-logo {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 21px;
    }
}
.get-started-section {
    width: 100%;
    padding: 40px 4.3%;
    background: rgba(17, 184, 167, 0.035);
    font-family: var(--font-primary);
    overflow: hidden;
    border-top: 1px solid var(--client-border);
    border-bottom: 1px solid var(--client-border);
}
/* ================================
     FULL WIDTH CONTAINER
  ================================= */
.get-started-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
/* ================================
     SECTION HEADER
  ================================= */
.get-started-header {
    width: 100%;
    text-align: center;
    margin-bottom: 28px;
}
.get-started-label {
    margin: 0 0 7px;
    color: var(--primary);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.get-started-title {
    margin: 0;
    color: var(--dark);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}
.get-started-subtitle {
    margin: 8px 0 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}
/* ================================
     STEPS GRID
  ================================= */
.get-started-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    position: relative;
}
/* ================================
     STEP ITEM
  ================================= */
.get-started-item {
    position: relative;
    min-width: 0;
    text-align: center;
}
/* ================================
     CONNECTING DOTS
  ================================= */
.get-started-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    left: calc(50% + 48px);
    width: calc(100% - 96px);
    border-top: 4px dotted #73d7ce;
    z-index: 1;
}
/* ================================
     NUMBER
  ================================= */
.get-started-number {
    position: absolute;
    top: 8px;
    left: calc(50% - 92px);
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 17px;
    line-height: 1;
    font-weight: 800;
    z-index: 5;
}
/* ================================
     ICON BOX
  ================================= */
.get-started-icon {
    width: 98px;
    height: 98px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbfdff;
    border: 1px solid #e6edf2;
    border-radius: 17px;
    position: relative;
    z-index: 3;
}
.get-started-icon i {
    font-size: 40px;
    color: var(--blue);
    line-height: 1;
}
/* Step 1 */
.get-started-item:nth-child(1) .get-started-icon i {
    color: var(--blue);
}
/* Step 2 */
.get-started-item:nth-child(2) .get-started-icon i {
    color: var(--blue);
}
/* Step 3 */
.get-started-item:nth-child(3) .get-started-icon i {
    color: var(--blue);
}
/* Step 4 */
.get-started-item:nth-child(4) .get-started-icon {
    background: #fff8fa;
}
.get-started-item:nth-child(4) .get-started-icon i {
    color: #ed2465;
}
/* ================================
     STEP TITLE
  ================================= */
.get-started-step-title {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}
/* ================================
     DESCRIPTION
  ================================= */
.get-started-description {
    width: 100%;
    max-width: 235px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}
/* ================================
     TABLET
  ================================= */
@media (max-width: 900px) {
    .get-started-section {
        padding: 32px 25px;
    }
    .get-started-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }
    .get-started-item::after {
        display: none;
    }
    .get-started-number {
        left: calc(50% - 92px);
    }
}
/* ================================
     MOBILE
  ================================= */
@media (max-width: 600px) {
    .get-started-section {
        padding: 28px 18px;
    }
    .get-started-title {
        font-size: 24px;
    }
    .get-started-subtitle {
        font-size: 14px;
    }
    .get-started-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .get-started-number {
        left: calc(50% - 92px);
    }
    .get-started-icon {
        width: 90px;
        height: 90px;
    }
    .get-started-description {
        max-width: 280px;
    }
}
/* =========================================================
   SMALL TABLET
========================================================= */
@media (max-width: 800px) {
    .modules-section {
        padding: 32px 0;
    }
    .modules-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .modules-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .module-card {
        min-height: 130px;
        padding: 14px 12px;
        gap: 10px;
    }
    .module-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 19px;
    }
    .module-name {
        font-size: 12px;
    }
    .module-description {
        font-size: 9px;
    }
    .integrations-box {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .integration-logos {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 550px) {
    .modules-section {
        padding: 28px 0;
    }
    .modules-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .modules-intro {
        margin-bottom: 15px;
    }
    .modules-label {
        font-size: 9px;
    }
    .modules-title {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .modules-subtitle {
        font-size: 11px;
    }
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .module-card {
        min-height: auto;
        padding: 13px;
    }
    .module-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }
    .module-name {
        font-size: 12px;
    }
    .module-description {
        font-size: 9px;
    }
    .integrations-box {
        margin-top: 14px;
    }
    .integration-logos {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        padding-bottom: 3px;
        scrollbar-width: none;
    }
    .integration-logos::-webkit-scrollbar {
        display: none;
    }
    .integration-logo {
        width: 43px;
        height: 43px;
        flex: 0 0 43px;
    }
}
.platform-section {
    width: 100%;
    padding: 40px 4.3%;
    background: var(--white);
    font-family: var(--font-primary);
    overflow: hidden;
}
.platform-container {
    width: 100%;
    max-width: none;
    margin: 0;
}
/* ==============================
     TWO SIDES
  ============================== */
.platform-content {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    gap: 30px;
}
/* ==============================
     LEFT SIDE
  ============================== */
.platform-info {
    width: 100%;
    padding-left: 0;
    padding-right: 15px;
}
.platform-label {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}
.platform-title {
    margin: 0 0 18px;
    color: var(--dark);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
}
.platform-description {
    max-width: 370px;
    margin: 0 0 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}
/* ==============================
     BUTTON
  ============================== */
.platform-button {
    min-width: 242px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    color: var(--primary-dark);
    background: var(--white);
    border: 2px solid #a9e8e1;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}
.platform-button:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(17, 184, 167, 0.2);
}
.platform-button-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    font-size: 11px;
}
/* ==============================
     RIGHT PNG IMAGE / VIDEO
  ============================== */
.platform-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.platform-image img,
.platform-video-thumb {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
}
.platform-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #0b1220;
    box-shadow:
        0 10px 28px rgba(7, 27, 58, 0.14),
        0 2px 8px rgba(7, 27, 58, 0.06);
}
.platform-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    line-height: 0;
}
.platform-video-thumb {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}
.platform-video-trigger:hover .platform-video-thumb,
.platform-video-trigger:focus-visible .platform-video-thumb {
    transform: scale(1.015);
    filter: brightness(0.94);
}
.platform-video.is-playing {
    aspect-ratio: 16 / 9;
    background: #000;
}
.platform-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
    display: block;
}
button.platform-button {
    font-family: inherit;
    cursor: pointer;
}
/* ==============================
     TABLET
  ============================== */
@media (max-width: 900px) {
    .platform-section {
        padding: 32px 30px;
    }
    .platform-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .platform-info {
        text-align: center;
        padding-right: 0;
    }
    .platform-description {
        margin-left: auto;
        margin-right: auto;
    }
    .platform-image {
        justify-content: center;
    }
    .platform-image img,
    .platform-video {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }
}
/* ==============================
     MOBILE
  ============================== */
@media (max-width: 600px) {
    .platform-section {
        padding: 28px 18px;
    }
    .platform-title {
        font-size: 26px;
    }
    .platform-description {
        font-size: 14px;
    }
    .platform-button {
        min-width: 220px;
    }
    .platform-video {
        border-radius: 12px;
    }
    .platform-video-thumb,
    .platform-video-iframe {
        border-radius: 12px;
    }
}
/* =====================================
     SECTION
  ===================================== */
.clients-section {
    width: 100%;
    padding: 40px 0;
    background: rgba(17, 184, 167, 0.035);
    font-family: var(--font-primary);
    overflow: hidden;
    border-top: 1px solid var(--client-border);
    border-bottom: 1px solid var(--client-border);
}
/* =====================================
     CONTAINER
  ===================================== */
.clients-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4.3%;
}
/* =====================================
     HEADER
  ===================================== */
.clients-header {
    text-align: center;
    margin-bottom: 28px;
}
.clients-label {
    margin: 0 0 7px;
    color: var(--primary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}
.clients-title {
    margin: 0 0 7px;
    color: var(--dark);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}
.clients-subtitle {
    margin: 8px 0 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}
/* =====================================
     SLIDER
  ===================================== */
.clients-slider {
    width: 100%;
    position: relative;
}
.clients-viewport {
    width: 100%;
    overflow: hidden;
}
.clients-track {
    width: 100%;
    display: flex;
    transform: translateX(0);
    transition: transform 0.6s ease;
}
/* =====================================
     SLIDE
  ===================================== */
.client-slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    padding: 0 12px;
}
/* =====================================
     CARD
  ===================================== */
.client-card {
    width: 100%;
    min-height: 225px;
    padding: 20px 24px;
    background: var(--client-bg);
    border: 1px solid var(--client-border);
    border-radius: var(--radius-md);
    box-shadow: 0 3px 12px rgba(7, 27, 58, 0.05);
    transition: 0.25s ease;
}
.client-card:hover {
    border-color: #cfe0e6;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.client-card .module-description {
    margin: 0 0 16px;
}
/* =====================================
     QUOTE
  ===================================== */
.client-quote {
    margin: 0 0 10px;
    color: var(--dark);
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 0.7;
    font-weight: 900;
}
/* =====================================
     TEXT
  ===================================== */
.client-text {
    margin: 0 0 17px;
    color: var(--client-text);
    font-size: 14px;
    line-height: 1.75;
}
/* =====================================
     CLIENT INFO
  ===================================== */
.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.client-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef7f8;
    border: 1px solid #dce8ed;
    color: var(--blue);
    font-size: 21px;
}
.client-name {
    margin: 0 0 3px;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}
.client-role {
    margin: 0;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.4;
}
/* =====================================
     CONTROLS
  ===================================== */
.clients-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.clients-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s ease;
}
.clients-arrow:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}
/* =====================================
     DOTS
  ===================================== */
.clients-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}
.clients-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d4dce3;
    cursor: pointer;
    transition: 0.25s ease;
}
.clients-dot.active {
    width: 11px;
    height: 11px;
    background: var(--primary);
}
/* =====================================
     TABLET
  ===================================== */
@media (max-width: 900px) {
    .clients-container {
        padding: 0 20px;
    }
    .client-slide {
        flex: 0 0 50%;
        width: 50%;
    }
    .clients-title {
        font-size: 27px;
    }
}
/* =====================================
     MOBILE
  ===================================== */
@media (max-width: 600px) {
    .clients-section {
        padding: 28px 0;
    }
    .clients-container {
        padding: 0 15px;
    }
    .clients-title {
        font-size: 25px;
    }
    .clients-subtitle {
        font-size: 14px;
    }
    .client-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 4px;
    }
    .client-card {
        min-height: 220px;
        padding: 20px;
    }
    .client-text {
        font-size: 14px;
    }
}
/* =========================
   BLOG SECTION
========================= */
.blog-section {
    width: 100%;
    padding: 40px 4.3% 48px;
    background: #fff;
}
.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.blog-heading-area {
    max-width: 650px;
}
.blog-heading-area .module-description {
    margin-top: 8px;
}
.blog-label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.blog-title {
    color: var(--dark);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 7px;
}
.blog-description {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}
/* View all button */
.blog-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 153px;
    height: 44px;
    padding: 0 18px;
    border: 2px solid #8bded6;
    border-radius: 7px;
    color: var(--primary-dark);
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}
.blog-view-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.blog-view-btn i {
    font-size: 13px;
    line-height: 1;
}
/* =========================
   BLOG GRID
========================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.blog-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
    box-shadow: 0 5px 18px rgba(7, 27, 58, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.blog-image {
    width: 100%;
    /* height: 90px; */
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.blog-content {
    padding: 13px 12px 12px;
}
.blog-category {
    display: inline-block;
    padding: 4px 7px;
    color: var(--blue);
    background: #f0f4ff;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 600;
    margin-bottom: 9px;
}
.blog-card-title {
    min-height: 50px;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 13px;
}
.blog-meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-arrow {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f5f7;
    color: var(--dark);
    font-size: 12px;
}
/* =========================
   CTA + FOOTER
========================= */
.footer-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 0% 100%, rgba(17, 184, 167, .18), transparent 30%),
        linear-gradient(110deg, #071b3a 0%, #082343 60%, #073e4c 100%);
    padding: 17px 4.5% 70px;
}
/* Subtle dotted effect */
.footer-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 230px;
    opacity: .35;
    background-image: radial-gradient(rgba(255, 255, 255, .3) 1px,
            transparent 1px);
    background-size: 7px 7px;
    mask-image: linear-gradient(to right,
            black,
            transparent);
}
/* =========================
   CTA
========================= */
.footer-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
}
.footer-cta-content {
    max-width: 470px;
}
.footer-cta-title {
    color: var(--white);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}
.footer-cta-text {
    color: #c4d0df;
    font-size: 11px;
}
.footer-cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-primary {
    height: 51px;
    min-width: 222px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    transition: .25s ease;
}
.btn-primary:hover {
    background: var(--primary-dark);
}
.btn-secondary {
    height: 51px;
    min-width: 268px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #61748e;
    border-radius: 6px;
    color: var(--white);
    background: rgba(255, 255, 255, .02);
    font-size: 12px;
    font-weight: 600;
}
.btn-secondary:hover {
    border-color: var(--primary);
}
.footer-features {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    margin-top: -2px;
    margin-bottom: 19px;
    color: #c3cfdd;
    font-size: 13px;
}
.footer-feature {
    display: flex;
    align-items: center;
    gap: 5px;
}
/* =========================
   FOOTER MAIN
========================= */
.footer-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
    padding: 4px 0 18px;
}
.footer-brand {
    flex: 1 1 190px;
    max-width: 220px;
}
.footer-column {
    flex: 1 1 130px;
    max-width: 200px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 17px;    line-height: 1;
    font-weight: 700;
}
.footer-logo img {
    max-height:63px;
    width: auto;
    display: block;
}
.footer-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}
.footer-brand-text {
    color: #b6c4d4;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 13px;
}
.footer-social {
    display: flex;
    gap: 9px;
}
.social-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #52667f;
    border-radius: 50%;
    color: var(--white);
    font-size: 11px;
}
.social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
}
/* Footer columns */
.footer-column-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 11px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer-link {
    color: #b9c5d4;
    font-size: 14px;
    transition: .2s ease;
}
.footer-link:hover {
    color: var(--primary);
}
/* Newsletter */
.newsletter-text {
    color: #b9c5d4;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.newsletter-form {
    display: flex;
    height: 39px;
}
.newsletter-input {
    width: calc(100% - 42px);
    min-width: 0;
    border: 1px solid #52667f;
    border-radius: 6px 0 0 6px;
    outline: none;
    background: rgba(255, 255, 255, .03);
    color: var(--white);
    padding: 0 11px;
    font-family: var(--font-primary);
    font-size: 9px;
}
.newsletter-input::placeholder {
    color: #9baabd;
}
.newsletter-button {
    width: 42px;
    border: 0;
    border-radius: 0 5px 5px 0;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
}
/* =========================
   COPYRIGHT
========================= */
.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #aebccd;
    font-size: 14px;
}
.footer-bottom-links {
    display: flex;
    gap: 32px;
}
.footer-bottom-link:hover {
    color: var(--primary);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
    .blog-section,
    .footer-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main {
        gap: 28px 24px;
    }
    .footer-brand,
    .footer-column {
        flex: 1 1 160px;
        max-width: none;
    }
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-features {
        justify-content: flex-start;
    }
}
@media (max-width: 650px) {
    .blog-section {
        padding: 32px 5% 36px;
    }
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-main {
        gap: 24px 18px;
    }
    .footer-brand,
    .footer-column {
        flex: 1 1 140px;
    }
    .footer-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    .footer-features {
        flex-wrap: wrap;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* /////////////about page css */
/* ######################################################################## */
/* =========================
       ABOUT SECTION
    ========================= */
.about-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 48px 5.4% 48px;
    background: #ffffff;
    font-family: var(--font-primary, "Inter", sans-serif);
}
/* =========================
       MAIN CONTENT
    ========================= */
.about-content {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
}
/* =========================
       LEFT SIDE
    ========================= */
.about-left {
    padding-right: 40px;
}
.about-left .modules-label,
.story-left .modules-label {
    margin-bottom: 10px;
}
.about-heading {
    color: var(--dark, #071b3a);
    font-size: 35px;
    line-height: 1.27;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0 0 20px;
}
.about-description {
    max-width: 475px;
    color: var(--text-light, #61708a);
    font-size: 16px;
    line-height: 1.72;
    margin: 0 0 28px;
}
/* =========================
       FEATURES
    ========================= */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 25px;
}
.about-feature:last-child {
    margin-bottom: 0;
}
.about-feature-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5faf7;
    color: var(--primary, #11b8a7);
    font-size: 25px;
}
.about-feature-content {
    padding-top: 1px;
}
.about-feature-title {
    color: var(--dark, #071b3a);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 6px;
}
.about-feature-text {
    max-width: 315px;
    color: var(--text-light, #61708a);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
/* =========================
       RIGHT SIDE
    ========================= */
.about-right {
    position: relative;
    padding-left: 4px;
}
.about-image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 18px;
}
.about-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 452px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #cbdfe5;
    box-shadow:
        0 12px 35px rgba(7, 27, 58, .10);
}
/* =========================
       DOT PATTERN
    ========================= */
.about-dots {
    position: absolute;
    z-index: 1;
    right: -35px;
    top: 28px;
    width: 145px;
    height: 350px;
    opacity: .8;
    background-image: radial-gradient(var(--primary, #11b8a7) 1.2px,
            transparent 1.2px);
    background-size: 7px 7px;
    border-radius: 50%;
    mask-image: linear-gradient(to left,
            black 0%,
            rgba(0, 0, 0, .8) 35%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to left,
            black 0%,
            rgba(0, 0, 0, .8) 35%,
            transparent 100%);
}
/* =========================
       STAT CARD
    ========================= */
.about-stat-card {
    position: absolute;
    z-index: 5;
    left: 25%;
    bottom: -10px;
    min-width: 238px;
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
    background: #ffffff;
    border: 1px solid #d6e5e9;
    border-radius: 12px;
    box-shadow:
        0 9px 22px rgba(7, 27, 58, .13);
}
.about-stat-icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #0db7a7,
            #079d91);
    color: #ffffff;
    font-size: 34px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.about-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-stat-number {
    color: var(--dark, #071b3a);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
}
.about-stat-text {
    color: var(--text-light, #61708a);
    font-size: 14px;
    line-height: 1.45;
}
/* =========================
       TABLET
    ========================= */
@media (max-width: 1000px) {
    .about-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .about-left {
        padding-right: 0;
    }
    .about-heading {
        font-size: 29px;
    }
    .about-image {
        height: 380px;
    }
    .about-stat-card {
        left: 15%;
    }
}
/* =========================
       MOBILE
    ========================= */
@media (max-width: 700px) {
    .about-section {
        padding: 36px 6% 40px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-left {
        padding-right: 0;
    }
    .about-heading {
        font-size: 29px;
        letter-spacing: -.5px;
    }
    .about-description {
        font-size: 13px;
    }
    .about-right {
        padding: 0;
    }
    .about-image-wrapper {
        padding-right: 10px;
    }
    .about-image {
        height: 320px;
        border-radius: 12px;
    }
    .about-dots {
        right: -25px;
        height: 270px;
    }
    .about-stat-card {
        left: 12%;
        bottom: -25px;
        min-width: 225px;
        min-height: 95px;
        padding: 13px 16px;
    }
    .about-stat-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }
}
/* =========================
       SMALL MOBILE
    ========================= */
@media (max-width: 450px) {
    .about-heading {
        font-size: 25px;
    }
    .about-feature {
        gap: 12px;
    }
    .about-feature-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }
    .about-image {
        height: 260px;
    }
    .about-stat-card {
        left: 5%;
        right: 5%;
        min-width: 0;
    }
}
.purpose-section {
    width: 100%;
    padding: 40px 5.4% 40px;
    background: #ffffff;
    font-family: var(--font-primary, "Inter", sans-serif);
}
/* =========================
       HEADING
    ========================= */
.purpose-heading {
    text-align: center;
    margin-bottom: 28px;
}
.purpose-label {
    color: var(--primary, #11b8a7);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 9px;
}
.purpose-title {
    color: var(--dark, #071b3a);
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -.5px;
    margin: 0 0 7px;
}
.purpose-subtitle {
    color: var(--text-light, #61708a);
    font-size: 13px;
    margin: 0;
}
/* =========================
       CARDS
    ========================= */
.purpose-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1043px;
	margin: 0 auto 28px;
}
.purpose-card {
    min-height: 264px;
    padding: 20px 20px 22px;
    border: 1px solid #dce8ed;
    border-radius: 12px;
    background:
        rgba(17, 184, 167, 0.035);
    box-shadow: 0 3px 12px rgba(7, 27, 58, .025);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}
.purpose-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(7, 27, 58, .08);
}
/* =========================
       ICONS
    ========================= */
.purpose-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 19px;
    font-size: 31px;
    font-weight: 600;
}
.purpose-icon-green {
    color: var(--primary, #11b8a7);
    background: #e6faf6;
}
.purpose-icon-blue {
    color: #2389e8;
    background: #e8f8fc;
}
.purpose-icon-purple {
    color: #3478ed;
    background: #edf1ff;
}
/* =========================
       CARD TEXT
    ========================= */
.purpose-card-title {
    color: var(--dark, #071b3a);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 11px;
}
.purpose-card-text {
    max-width: 315px;
    color: var(--text-light, #61708a);
    font-size: 15px;
    line-height: 1.72;
    margin: 0;
}
/* =========================
       VALUES
    ========================= */
.purpose-values {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.purpose-value {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-light, #61708a);
    font-size: 12px;
    line-height: 1.3;
}
.value-check {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 15px;
    border: 1.5px solid var(--primary, #11b8a7);
    border-radius: 50%;
    color: var(--primary, #11b8a7);
    font-size: 9px;
    font-weight: 700;
}
/* =========================
       STATS
    ========================= */
.purpose-stats {
    position: relative;
    overflow: hidden;
    max-width: 1335px;
    min-height: 138px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        1fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: center;
    padding: 20px 55px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 0% 100%,
            rgba(17, 184, 167, .28),
            transparent 23%),
        radial-gradient(circle at 100% 0%,
            rgba(17, 184, 167, .25),
            transparent 22%),
        linear-gradient(105deg,
            #061b3a 0%,
            #061b3b 68%,
            #07535a 100%);
    border: 1px solid #d4e1e5;
    box-shadow:
        0 5px 18px rgba(7, 27, 58, .08);
}
/* =========================
       DOT EFFECT
    ========================= */
.purpose-stats::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 100%;
    opacity: .5;
    background-image:
        radial-gradient(rgba(17, 184, 167, .6) 1px,
            transparent 1px);
    background-size: 7px 7px;
    mask-image:
        linear-gradient(to right,
            black,
            transparent);
    -webkit-mask-image:
        linear-gradient(to right,
            black,
            transparent);
}
.purpose-stat {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.purpose-stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #11b8a7);
    font-size: 38px;
    flex: 0 0 52px;
}
.purpose-stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.purpose-stat-number {
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.5px;
}
.purpose-stat-label {
    color: #ffffff;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
}
.purpose-stat-divider {
    width: 1px;
    height: 82px;
    background: rgba(255, 255, 255, .28);
}
/* =========================
       TABLET
    ========================= */
@media (max-width: 1000px) {
    .purpose-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .purpose-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .purpose-card {
        padding: 18px;
    }
    .purpose-stats {
        padding-left: 25px;
        padding-right: 25px;
    }
    .purpose-stat {
        gap: 9px;
    }
    .purpose-stat-number {
        font-size: 23px;
    }
    .purpose-stat-icon {
        font-size: 30px;
    }
}
/* =========================
       MOBILE
    ========================= */
@media (max-width: 700px) {
    .purpose-section {
        padding: 36px 6% 36px;
    }
    .purpose-title {
        font-size: 24px;
    }
    .purpose-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .purpose-card {
        min-height: auto;
    }
    .purpose-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    .purpose-stat-divider {
        display: none;
    }
    .purpose-stat {
        justify-content: flex-start;
    }
}
/* =========================
       SMALL MOBILE
    ========================= */
@media (max-width: 450px) {
    .purpose-stats {
        grid-template-columns: 1fr;
    }
    .purpose-stat {
        justify-content: center;
    }
    .purpose-stat-number {
        font-size: 26px;
    }
}
.story-section {
    width: 100%;
    padding: 48px 5.4% 56px;
    background: #ffffff;
    font-family: var(--font-primary, "Inter", sans-serif);
    overflow: hidden;
}
.story-content {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
}
/* =========================
   LEFT CONTENT
========================= */
.story-left {
    padding-right: 40px;
}
.story-title {
    color: var(--dark, #071b3a);
    font-size: 33px;
    line-height: 1.27;
    font-weight: 700;
    letter-spacing: -.7px;
    margin: 0 0 20px;
}
.story-text {
    max-width: 490px;
    color: var(--text-light, #61708a);
    font-size: 16px;
    line-height: 1.72;
    margin: 0 0 18px;
}
.story-text:last-of-type {
    margin-bottom: 25px;
}
/* =========================
   BUTTON
========================= */
.story-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 224px;
    height: 50px;
    padding: 0 22px;
    border: 2px solid #55cfc5;
    border-radius: 7px;
    color: var(--primary-dark, #079d91);
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}
.story-button i {
    font-size: 14px;
    line-height: 1;
}
.story-button:hover {
    background: var(--primary, #11b8a7);
    border-color: var(--primary, #11b8a7);
    color: #ffffff;
    transform: translateY(-2px);
}
/* =========================
   RIGHT IMAGE
========================= */
.story-right {
    position: relative;
    padding-left: 4px;
}
.story-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 5px;
}
.story-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #d4e1e5;
    box-shadow:
        0 12px 35px rgba(7, 27, 58, .12);
}
/* =========================
   FLOATING CARD
========================= */
.story-stat-card {
    position: absolute;
    z-index: 5;
    left: 22%;
    bottom: -5px;
    min-width: 390px;
    min-height: 121px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px 21px;
    background: #ffffff;
    border: 1px solid #d9e5e8;
    border-radius: 12px;
    box-shadow:
        0 10px 25px rgba(7, 27, 58, .14);
}
.story-stat-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(135deg,
            #12b9a8,
            #079d91);
    font-size: 34px;
}
.story-stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.story-stat-title {
    color: var(--dark, #071b3a);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}
.story-stat-text {
    color: var(--text-light, #61708a);
    font-size: 14px;
    line-height: 1.45;
}
/* =========================
   TABLET
========================= */
@media (max-width: 1000px) {
    .story-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .story-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .story-left {
        padding-right: 0;
    }
    .story-title {
        font-size: 28px;
    }
    .story-image {
        height: 380px;
    }
    .story-stat-card {
        left: 10%;
        min-width: 330px;
    }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 700px) {
    .story-section {
        padding: 36px 6% 48px;
    }
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-left {
        padding-right: 0;
    }
    .story-title {
        font-size: 28px;
    }
    .story-text {
        font-size: 13px;
    }
    .story-right {
        padding: 0;
    }
    .story-image {
        height: 320px;
        border-radius: 12px;
    }
    .story-stat-card {
        left: 8%;
        right: 8%;
        min-width: 0;
        min-height: 100px;
        padding: 13px 16px;
    }
    .story-stat-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        font-size: 29px;
    }
}
/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 450px) {
    .story-title {
        font-size: 25px;
    }
    .story-button {
        width: 100%;
    }
    .story-image {
        height: 270px;
    }
    .story-stat-card {
        left: 4%;
        right: 4%;
    }
    .story-stat-title {
        font-size: 14px;
    }
    .story-stat-text {
        font-size: 10px;
    }
}
.demo-section {
    width: 100%;
    padding: 48px 0 35px;
    background: var(--white);
    font-family: var(--font-primary);
}
.demo-container {
    width: min(1179px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 390px 1fr;
    align-items: center;
    gap: 20px;
}
/* LEFT */
.demo-intro {
    padding: 30px 15px 30px 0;
    position: relative;
}
.demo-intro::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 0;
    width: 230px;
    height: 100%;
    opacity: .7;
    background-image:
        radial-gradient(var(--primary) 1px,
            transparent 1px);
    background-size: 8px 8px;
    mask-image: linear-gradient(to right,
            black,
            transparent);
    pointer-events: none;
}
.demo-label {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
}
.demo-title {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 30px;
    line-height: 1.35;
    font-weight: 750;
}
.demo-title span {
    color: var(--primary-dark);
}
.demo-description {
    position: relative;
    z-index: 1;
    max-width: 350px;
    margin-bottom: 28px;
    color: var(--text);
    font-size: 13px;
    line-height: 2.05;
}
/* BENEFITS */
.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 1;
}
.demo-benefit {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
}
.benefit-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    background: var(--primary-light);
    font-size: 19px;
}
.benefit-title {
    margin: 1px 0 7px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 750;
}
.benefit-text {
    max-width: 275px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.75;
}
/* FORM CARD */
.demo-form-card {
    padding: 27px;
    background: var(--white);
    border: 1px solid #e6ebef;
    border-radius: var(--radius-md);
    box-shadow:
        0 4px 14px rgba(7, 27, 58, .08);
}
/* FORM HEADER */
.form-header {
    position: relative;
    margin-bottom: 22px;
    padding-right: 160px;
}
.form-heading {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 750;
}
.form-header-description {
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.5;
}
.form-guarantee {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 139px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 10px;
    line-height: 1.45;
    font-weight: 650;
}
.form-guarantee i {
    font-size: 19px;
}
/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 14px;
}
.form-field {
    min-width: 0;
}
.form-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 11px;
    font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #dce5ea;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 11px;
    outline: none;
}
.form-field input,
.form-field select {
    height: 38px;
    padding: 0 12px;
}
.form-field textarea {
    height: 78px;
    padding: 11px 12px;
    resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8490a1;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(17, 184, 167, .08);
}
/* SELECT */
.select-wrapper,
.date-wrapper {
    position: relative;
}
.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 35px;
    cursor: pointer;
}
.select-wrapper i,
.date-wrapper i {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #657993;
    font-size: 10px;
    pointer-events: none;
}
/* BUTTON */
.request-demo-btn {
    width: 100%;
    height: 39px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}
.request-demo-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow:
        0 6px 15px rgba(17, 184, 167, .2);
}
/* TRUST */
.form-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 14px;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--text);
    font-size: 10px;
}
.trust-item i {
    color: var(--primary);
    font-size: 13px;
}
/* TABLET */
@media (max-width: 950px) {
    .demo-section {
        padding-top: 36px;
    }
    .demo-container {
        grid-template-columns: 1fr;
        width: min(700px, calc(100% - 40px));
    }
    .demo-intro {
        padding-right: 0;
        text-align: center;
    }
    .demo-description {
        margin-left: auto;
        margin-right: auto;
    }
    .demo-benefits {
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
    }
}
/* MOBILE */
@media (max-width: 600px) {
    .demo-section {
        padding-top: 28px;
    }
    .demo-container {
        width: calc(100% - 30px);
    }
    .demo-title {
        font-size: 24px;
    }
    .demo-form-card {
        padding: 22px 17px 18px;
    }
    .form-header {
        padding-right: 0;
    }
    .form-guarantee {
        position: static;
        width: 100%;
        margin-top: 14px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .trust-item {
        justify-content: flex-start;
    }
}
/* ==========================================
   WHAT TO EXPECT
========================================== */
.expect-section {
    width: 100%;
    padding: 28px 0 30px;
    background:
        linear-gradient(110deg,
            #f7fcff 0%,
            #ffffff 48%,
            #f5fbff 100%);
    font-family: var(--font-primary);
    border-radius: var(--radius-lg);
}
.expect-container {
    width: min(1290px, calc(100% - 60px));
    margin: 0 auto;
}
/* ==========================================
   HEADER
========================================== */
.expect-header {
    text-align: center;
    margin-bottom: 30px;
}
.expect-label {
    margin-bottom: 9px;
    color: var(--primary-dark);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .2px;
}
.expect-title {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 27px;
    line-height: 1.3;
    font-weight: 750;
}
.expect-subtitle {
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}
/* ==========================================
   ITEMS
========================================== */
.expect-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 25px;
}
.expect-item {
    min-height: 140px;
    padding: 0 35px;
    text-align: center;
    border-right: 2px dotted #dce8ed;
}
.expect-item:last-child {
    border-right: none;
}
/* ==========================================
   ICON
========================================== */
.expect-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}
.expect-icon i {
    font-size: inherit;
    line-height: 1;
    color: inherit;
}
/* GREEN */
.expect-icon-green {
    color: var(--primary-dark);
    background: #ddf8f4;
}
/* PURPLE */
.expect-icon-purple {
    color: var(--purple);
    background: #eee8ff;
}
/* ORANGE */
.expect-icon-orange {
    color: #ff8a29;
    background: #fff0df;
}
/* BLUE */
.expect-icon-blue {
    color: var(--blue);
    background: #e5efff;
}
/* PINK */
.expect-icon-pink {
    color: #f03c83;
    background: #ffe6f0;
}
/* ==========================================
   ITEM TITLE
========================================== */
.expect-item-title {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 750;
}
/* ==========================================
   ITEM DESCRIPTION
========================================== */
.expect-item-text {
    max-width: 190px;
    margin: 0 auto;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}
/* ==========================================
   TABLET
========================================== */
@media (max-width: 1000px) {
    .expect-container {
        width: calc(100% - 40px);
    }
    .expect-items {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }
    .expect-item {
        border-right: none;
    }
    .expect-item:nth-child(1),
    .expect-item:nth-child(2),
    .expect-item:nth-child(3) {
        border-bottom: 1px dotted var(--border);
        padding-bottom: 30px;
    }
}
/* ==========================================
   MOBILE
========================================== */
@media (max-width: 650px) {
    .expect-section {
        padding: 25px 0;
    }
    .expect-container {
        width: calc(100% - 30px);
    }
    .expect-title {
        font-size: 22px;
    }
    .expect-subtitle {
        font-size: 13px;
    }
    .expect-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .expect-item {
        min-height: auto;
        padding: 0 10px 30px;
        border-right: none;
        border-bottom: 1px dotted var(--border);
    }
    .expect-item:last-child {
        border-bottom: none;
    }
    .expect-icon {
        margin-bottom: 15px;
    }
    .expect-item-title {
        font-size: 14px;
    }
    .expect-item-text {
        font-size: 12px;
    }
}
.clients {
    background: var(--client-bg);
    padding: 35px 40px;
    overflow: hidden;
}
.clients-title {
    margin: 0 0 22px;
    text-align: center;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.client-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    max-width: 1240px;
    margin: 0 auto;
}
.client-logo {
    height: var(--client-height);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.client-logo img {
    display: block;
    width: auto;
    max-width: 160px;
    max-height: 42px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .client-logos {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .client-logo {
        flex: 0 0 calc(33.333% - 25px);
    }
    .client-logo img {
        max-width: 130px;
        max-height: 36px;
    }
}
/* =========================================
   CTA BANNER
========================================= */
.cta-banner {
    position: relative;
    width: 100%;
    max-width: 1245px;
    min-height: 140px;
    margin: 0 auto;
    padding: 25px 80px;
    box-sizing: border-box;
    overflow: hidden;
    background: #087277;
    border-radius: 14px;
    color: var(--white);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
}
/* =========================================
   BACKGROUND DECORATION
========================================= */
.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px dotted rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner::before {
    left: -115px;
    top: -85px;
}
.cta-banner::after {
    right: -115px;
    bottom: -85px;
}
/* Additional dotted effect */
.cta-banner {
    background-image:
        radial-gradient(circle at 0% 50%,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1.5px),
        radial-gradient(circle at 100% 50%,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1.5px);
    background-size: 8px 8px;
}
/* =========================================
   CONTENT
========================================= */
.cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
/* =========================================
   CALENDAR ICON CIRCLE
========================================= */
.cta-icon {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
.cta-icon i {
    color: var(--primary);
    font-size: 32px;
    line-height: 1;
}
/* =========================================
   TEXT
========================================= */
.cta-copy {
    flex: 1;
    min-width: 0;
}
.cta-copy h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}
.cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}
/* =========================================
   RIGHT SIDE ACTION AREA
========================================= */
.cta-actions {
    flex: 0 0 525px;
    min-width: 0;
}
/* =========================================
   BUTTONS
========================================= */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cta-btn {
    height: 48px;
    flex: 1;
    padding: 0 18px;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
/* Calendar icon */
.cta-btn>i:first-child {
    font-size: 16px;
}
/* Arrow icon */
.cta-btn>i:last-child {
    margin-left: 3px;
    font-size: 13px;
}
/* =========================================
   PRIMARY BUTTON
========================================= */
.cta-btn-primary {
    background: var(--white);
    border: 1px solid var(--white);
    color: #087277;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.cta-btn-primary:hover {
    background: #f5fffe;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
/* =========================================
   OUTLINE BUTTON
========================================= */
.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--white);
}
.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-1px);
}
/* =========================================
   BENEFITS
========================================= */
.cta-benefits {
    margin-top: 12px;
    padding: 0 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}
.cta-benefits span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.cta-benefits i {
    margin-right: 5px;
    color: var(--white);
    font-size: 9px;
}
/* =========================================
   TABLET
========================================= */
@media (max-width: 1100px) {
    .cta-banner {
        padding: 25px 45px;
    }
    .cta-actions {
        flex: 0 0 470px;
    }
    .cta-buttons {
        gap: 12px;
    }
    .cta-btn {
        padding: 0 12px;
        font-size: 13px;
    }
    .cta-benefits {
        font-size: 11px;
        gap: 8px;
    }
}
/* =========================================
   SMALL TABLET
========================================= */
@media (max-width: 900px) {
    .cta-banner {
        padding: 30px;
    }
    .cta-content {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
    }
    .cta-icon {
        grid-row: span 2;
    }
    .cta-copy {
        min-width: 0;
    }
    .cta-actions {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 10px;
    }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 600px) {
    .cta-banner {
        min-height: auto;
        padding: 25px 20px;
        border-radius: 12px;
    }
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .cta-icon {
        width: 65px;
        height: 65px;
        flex: 0 0 65px;
        margin: 0 auto;
    }
    .cta-icon i {
        font-size: 26px;
    }
    .cta-copy {
        text-align: center;
    }
    .cta-copy h2 {
        font-size: 19px;
        margin-bottom: 8px;
    }
    .cta-copy p {
        font-size: 13px;
        line-height: 1.6;
    }
    .cta-copy p br {
        display: none;
    }
    .cta-actions {
        width: 100%;
        flex: none;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .cta-btn {
        width: 100%;
        min-height: 48px;
        flex: none;
        font-size: 13px;
    }
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
        gap: 8px;
        font-size: 11px;
    }
}
/* =========================================
   VERY SMALL MOBILE
========================================= */
@media (max-width: 380px) {
    .cta-banner {
        padding: 22px 15px;
    }
    .cta-copy h2 {
        font-size: 17px;
    }
    .cta-copy p {
        font-size: 12px;
    }
    .cta-btn {
        font-size: 12px;
    }
    .cta-benefits {
        font-size: 10px;
    }
}
/* //////////////contact page css//////////////// */
.contact-section {
	position: relative;
	width: 100%;
	padding: 23px 55px;
	box-sizing: border-box;
	background: #ffffff;
	overflow: hidden;
	font-family: var(--font-primary);
}
/* Decorative dots on right */
.contact-section::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 20px;
    width: 180px;
    height: 600px;
    opacity: 0.65;
    background-image: radial-gradient(#a8e6e0 1.2px,
            transparent 1.2px);
    background-size: 9px 9px;
    mask-image: linear-gradient(to left,
            #000 0%,
            transparent 90%);
    pointer-events: none;
}
/* =========================================
   MAIN CONTAINER
========================================= */
.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
/* =========================================
   LEFT SIDE
========================================= */
.contact-info {
    padding-top: 5px;
}
.contact-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.contact-info h2 {
    max-width: 500px;
    margin: 0 0 22px;
    color: var(--dark);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.2px;
}
.contact-info h2 span {
    display: block;
    color: var(--primary);
}
.contact-description {
    max-width: 490px;
    margin: 0 0 32px;
    color: #53627a;
    font-size: 15px;
    font-weight: 400;
    line-height: 2.05;
}
/* =========================================
   CONTACT DETAILS
========================================= */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
}
.detail-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e4f9f6;
    color: var(--primary);
    font-size: 17px;
}
.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}
.contact-detail span {
    display: block;
    color: #53627a;
    font-size: 13px;
    font-weight: 400;
}
/* =========================================
   SOCIAL
========================================= */
.social-connect {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}
.social-connect>strong {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e8ed;
    border-radius: 50%;
    background: #ffffff;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 2px 7px rgba(7, 27, 58, 0.04);
    transition: all 0.2s ease;
}
.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}
/* Twitter blue */
.social-icons a:nth-child(3) {
    color: #2d8de5;
}
.social-icons a:nth-child(3):hover {
    color: #ffffff;
}
/* =========================================
   FORM CARD
========================================= */
.contact-form-card {
    position: relative;
    padding: 28px 33px 30px;
    background: #ffffff;
    border: 1px solid #e4e9ed;
    border-radius: 10px;
    box-shadow:
        0 3px 12px rgba(7, 27, 58, 0.06),
        0 15px 35px rgba(7, 27, 58, 0.04);
    box-sizing: border-box;
}
.contact-form-card h3 {
    margin: 0 0 7px;
    color: var(--dark);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}
.form-intro {
    margin: 0 0 25px;
    color: #61708a;
    font-size: 13px;
    line-height: 1.5;
}
/* =========================================
   FORM ROW
========================================= */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
/* =========================================
   FORM GROUP
========================================= */
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #394963;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}
.form-group label span {
    color: #53627a;
    margin-left: 2px;
}
/* =========================================
   INPUTS
========================================= */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce5eb;
    border-radius: 6px;
    outline: none;
    background: #ffffff;
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 12px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.form-group input,
.form-group select {
    height: 44px;
    padding: 0 13px;
}
.form-group textarea {
    height: 127px;
    padding: 13px;
    resize: vertical;
    line-height: 1.5;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8794a8;
    opacity: 1;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(17, 184, 167, 0.08);
}
/* =========================================
   SELECT
========================================= */
.select-wrapper {
    position: relative;
}
.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #7c899d;
}
.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748a;
    font-size: 10px;
    pointer-events: none;
}
/* =========================================
   FORM FOOTER
========================================= */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 3px;
}
/* =========================================
   SEND BUTTON
========================================= */
.send-button {
    min-width: 159px;
    height: 43px;
    padding: 0 18px;
    border: 0;
    border-radius: 5px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        0 4px 10px rgba(17, 184, 167, 0.18);
    transition: all 0.2s ease;
}
.send-button i {
    font-size: 13px;
}
.send-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow:
        0 6px 14px rgba(17, 184, 167, 0.25);
}
/* =========================================
   PRIVACY
========================================= */
.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #75839a;
    font-size: 11px;
    line-height: 1.65;
}
.privacy-note i {
    padding-top: 2px;
    color: var(--primary);
    font-size: 12px;
}
/* =========================================
   TABLET
========================================= */
@media (max-width: 1100px) {
    .contact-section {
        padding: 60px 35px;
    }
    .contact-container {
        gap: 45px;
    }
    .contact-info h2 {
        font-size: 36px;
    }
    .contact-description {
        font-size: 14px;
    }
    .contact-form-card {
        padding: 25px;
    }
}
/* =========================================
   SMALL TABLET
========================================= */
@media (max-width: 850px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
        max-width: 650px;
    }
    .contact-info h2 {
        max-width: 600px;
    }
    .contact-description {
        max-width: 600px;
    }
    .contact-form-card {
        width: 100%;
    }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 600px) {
    .contact-section {
        padding: 45px 18px;
    }
    .contact-container {
        gap: 35px;
    }
    .contact-info h2 {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.8px;
    }
    .contact-description {
        font-size: 14px;
        line-height: 1.8;
    }
    .contact-details {
        gap: 16px;
    }
    .detail-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
    .contact-detail strong {
        font-size: 13px;
    }
    .contact-detail span {
        font-size: 12px;
    }
    .social-connect {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }
    .contact-form-card {
        padding: 23px 18px;
    }
    .contact-form-card h3 {
        font-size: 21px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group {
        margin-bottom: 16px;
    }
    .form-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .send-button {
        width: 100%;
    }
    .privacy-note {
        width: 100%;
        justify-content: center;
    }
    .contact-section::after {
        opacity: 0.25;
    }
}
/* =========================================
   EXTRA SMALL
========================================= */
@media (max-width: 380px) {
    .contact-section {
        padding: 35px 14px;
    }
    .contact-info h2 {
        font-size: 28px;
    }
    .contact-form-card {
        padding: 20px 15px;
    }
    .social-icons {
        gap: 7px;
    }
    .social-icons a {
        width: 35px;
        height: 35px;
    }
}
.offices-section {
	width: 100%;
	padding: 15px 68px;
	box-sizing: border-box;
	font-family: var(--font-primary);
}
.offices-container {
    width: 100%;
    min-height: 350px;
    display: flex;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e3eaf0;
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}
/* =========================
   MAP
========================= */
.offices-map {
    position: relative;
    width: 49%;
    min-height: 350px;
    overflow: hidden;
    background:
        linear-gradient(115deg,
            rgba(255, 255, 255, .92) 0%,
            rgba(243, 247, 246, .82) 50%,
            rgba(237, 244, 240, .9) 100%);
}
/* subtle map-like road pattern */
.map-grid {
    position: absolute;
    inset: -15%;
    opacity: .6;
    background-image:
        linear-gradient(28deg,
            transparent 47%,
            rgba(190, 201, 207, .28) 48%,
            rgba(190, 201, 207, .28) 49%,
            transparent 50%),
        linear-gradient(118deg,
            transparent 48%,
            rgba(190, 201, 207, .22) 49%,
            rgba(190, 201, 207, .22) 50%,
            transparent 51%),
        linear-gradient(75deg,
            transparent 47%,
            rgba(205, 214, 215, .25) 48%,
            rgba(205, 214, 215, .25) 49%,
            transparent 50%);
    background-size:
        125px 95px,
        160px 115px,
        105px 145px;
    transform: rotate(-5deg);
}
.map-label {
    position: absolute;
    z-index: 2;
    color: #5c6268;
    font-size: 11px;
    white-space: nowrap;
}
.map-zirakpur {
    left: 13%;
    top: 42%;
}
.map-dhakoli {
    left: 45%;
    top: 67%;
    font-size: 12px;
    font-weight: 600;
}
.map-ganipur {
    right: 28%;
    bottom: 15%;
    font-size: 12px;
}
.map-dittarpur {
    right: 17%;
    top: 31%;
}
.map-chandigarh {
    right: 15%;
    top: 42%;
    transform: rotate(28deg);
    font-size: 9px;
}
.map-pin {
	position: absolute;
	top: 30%;
	left: 55%;
	width: 42px;
	height: 42px;
	background: var(--primary);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 8px 18px rgba(17, 184, 167, .25);
	z-index: 5;
}
.map-pin-inner {
    position: absolute;
    width: 12px;
    height: 12px;
    left: 15px;
    top: 15px;
    background: white;
    border-radius: 50%;
}
/* =========================
   OFFICE CONTENT
========================= */
.offices-content {
    flex: 1;
    padding: 30px 38px 25px;
    box-sizing: border-box;
}
.offices-title {
    color: var(--dark);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 28px;
}
.office-row {
    display: grid;
    grid-template-columns: 52px minmax(260px, 1fr) 195px;
    column-gap: 16px;
    align-items: start;
    margin-bottom: 25px;
}
.office-location-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.office-location-icon:before {
    content: "";
    width: 15px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    top: 13px;
}
.office-location-icon:after {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 19px;
}
.office-location-icon span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
    bottom: 11px;
}
/* =========================
   OFFICE DETAILS
========================= */
.office-name {
    color: var(--primary-dark);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin: 2px 0 9px;
}
.office-address {
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 500;
}
/* =========================
   CONTACT
========================= */
.office-contact {
    padding-top: 3px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 22px;
}
.phone-icon {
    width: 14px;
    height: 14px;
    position: relative;
    transform: rotate(-25deg);
}
.phone-icon:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 12px;
    left: 3px;
    top: 1px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    border-radius: 6px;
}
.phone-icon:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: 1px;
    top: 0;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    border-radius: 3px;
}
.mail-icon {
    position: relative;
    width: 15px;
    height: 11px;
    border: 2px solid var(--primary);
    border-radius: 2px;
    box-sizing: border-box;
}
.mail-icon:after,
.mail-icon:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    top: 3px;
    background: var(--primary);
}
.mail-icon:before {
    left: 0;
    transform: rotate(30deg);
}
.mail-icon:after {
    right: 0;
    transform: rotate(-30deg);
}
/* =========================
   DIRECTIONS BUTTON
========================= */
.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    height: 45px;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--primary-dark);
    border: 2px solid #86d9d2;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}
.directions-button:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
}
.external-icon {
    position: relative;
    width: 14px;
    height: 14px;
}
.external-icon:before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    left: 0;
    bottom: 0;
    border: 2px solid currentColor;
    border-radius: 2px;
}
.external-icon:after {
    content: "↗";
    position: absolute;
    top: -6px;
    right: -3px;
    font-size: 15px;
    font-weight: 700;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .offices-container {
        flex-direction: column;
    }
    .offices-map {
        width: 100%;
        min-height: 280px;
    }
    .office-row {
        grid-template-columns: 52px 1fr;
    }
    .office-contact {
        grid-column: 2;
        margin-top: 12px;
    }
}
@media (max-width: 600px) {
    .offices-section {
        padding: 10px;
    }
    .offices-content {
        padding: 25px 20px;
    }
    .offices-title {
        font-size: 22px;
    }
    .office-row {
        grid-template-columns: 45px 1fr;
        column-gap: 12px;
    }
    .office-location-icon {
        width: 45px;
        height: 45px;
    }
    .office-address {
        font-size: 12px;
    }
    .office-contact {
        grid-column: 1 / -1;
        padding-left: 57px;
    }
    .offices-map {
        min-height: 230px;
    }
}
.help-section {
    width: 100%;
    padding: 18px 55px 20px;
    box-sizing: border-box;
    font-family: var(--font-primary);
    background: #ffffff;
}
.help-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}
/* =========================
   TOP CONTENT
========================= */
.help-eyebrow {
    text-align: center;
    color: var(--primary-dark);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: 12px;
}
.help-title {
    text-align: center;
    color: var(--dark);
    font-size: 25px;
    line-height: 1.25;
    font-weight: 750;
    margin-bottom: 7px;
}
.help-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 19px;
}
/* =========================
   CARDS
========================= */
.help-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.help-card {
    /* min-height: 268px; */
    padding: 23px 20px 19px;
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid #e4ebef;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(7, 27, 58, .025);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}
.help-card:hover {
    transform: translateY(-3px);
    border-color: #cde7e5;
    box-shadow: 0 12px 28px rgba(7, 27, 58, .08);
}
/* =========================
   ICON CIRCLES
========================= */
.help-icon {
    width: 57px;
    height: 57px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 18px;
}
.help-icon-purple {
    background: #f0e8ff;
    color: #7545e9;
}
.help-icon-green {
    background: #e1f8f5;
    color: #12ad9e;
}
.help-icon-blue {
    background: #e8efff;
    color: #326ee8;
}
.help-icon-orange {
    background: #fff0e9;
    color: #ff6b2d;
}
.help-icon i {
    font-size: 22px;
    line-height: 1;
    color: inherit;
}
/* =========================
   CHAT ICON
========================= */
.icon-chat {
    width: 20px;
    height: 15px;
    border: 2.5px solid currentColor;
    border-radius: 6px;
    position: relative;
}
.icon-chat:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 6px;
    border: 2px solid currentColor;
    border-radius: 5px;
    right: -7px;
    bottom: -6px;
    background: transparent;
}
.icon-chat:after {
    content: "...";
    position: absolute;
    left: 3px;
    top: -8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}
/* =========================
   HEADSET ICON
========================= */
.icon-headset {
    width: 23px;
    height: 21px;
    border: 2.5px solid currentColor;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    position: relative;
}
.icon-headset:before {
    content: "";
    position: absolute;
    left: -6px;
    bottom: -1px;
    width: 6px;
    height: 11px;
    border: 2px solid currentColor;
    border-radius: 4px;
}
.icon-headset:after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -1px;
    width: 6px;
    height: 11px;
    border: 2px solid currentColor;
    border-radius: 4px;
}
/* =========================
   SUPPORT ICON
========================= */
.icon-support {
    width: 20px;
    height: 20px;
    border: 2.5px solid currentColor;
    border-radius: 50%;
    position: relative;
}
.icon-support:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border: 2px solid currentColor;
    border-radius: 50%;
    left: 4px;
    top: 4px;
}
.icon-support:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 3px;
    background: currentColor;
    right: -5px;
    bottom: 1px;
    border-radius: 2px;
    transform: rotate(-25deg);
}
/* =========================
   BULB ICON
========================= */
.icon-bulb {
    width: 18px;
    height: 20px;
    border: 2.5px solid currentColor;
    border-radius: 50% 50% 45% 45%;
    position: relative;
}
.icon-bulb:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 5px;
    left: 2.5px;
    bottom: -6px;
    border-bottom: 2.5px solid currentColor;
    border-top: 2.5px solid currentColor;
}
.icon-bulb:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 7px;
    left: 5px;
    top: 4px;
    border-left: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
/* =========================
   CARD TEXT
========================= */
.help-card-title {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 750;
    margin-bottom: 9px;
}
.help-card-text {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 450;
    /* min-height: 91px; */
}
.help-card-link {
    color: var(--primary-dark);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 750;
    margin-top: 10px;
    cursor: pointer;
}
.help-card-link span {
    display: inline-block;
    margin-left: 5px;
    font-size: 17px;
    transition: transform .2s ease;
}
.help-card:hover .help-card-link span {
    transform: translateX(4px);
}
/* =========================
   CTA
========================= */
.help-cta {
    position: relative;
    overflow: hidden;
    min-height: 146px;
    margin-top: 30px;
    padding: 27px 74px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:
        radial-gradient(circle at 0% 50%,
            rgba(17, 184, 167, .25),
            transparent 30%),
        radial-gradient(circle at 100% 50%,
            rgba(17, 184, 167, .18),
            transparent 28%),
        #00636c;
    border-radius: 15px;
    color: #ffffff;
}
/* subtle dotted pattern */
.help-cta:before,
.help-cta:after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: .18;
    background-image: radial-gradient(rgba(71, 220, 207, .8) 1px,
            transparent 1.5px);
    background-size: 7px 7px;
    border-radius: 50%;
    pointer-events: none;
}
.help-cta:before {
    left: -65px;
    top: -5px;
}
.help-cta:after {
    right: -65px;
    bottom: -5px;
}
/* =========================
   CTA LEFT
========================= */
.cta-left {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.cta-rocket-circle {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-rocket {
    font-size: 35px;
    filter: saturate(1.2);
}
.cta-content {
    margin-left: 27px;
}
.cta-title {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 750;
    margin-bottom: 10px;
}
.cta-text {
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    line-height: 1.4;
}
/* =========================
   CTA RIGHT
========================= */
.cta-right {
    position: relative;
    z-index: 2;
    min-width: 480px;
}
.cta-buttons {
    display: flex;
    gap: 17px;
}
.cta-primary-button,
.cta-secondary-button {
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}
.cta-primary-button {
    min-width: 234px;
    padding: 0 20px;
    color: var(--primary-dark);
    background: #ffffff;
}
.cta-primary-button span {
    margin-left: 12px;
    font-size: 19px;
}
.cta-secondary-button {
    min-width: 230px;
    padding: 0 20px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .02);
}
.cta-secondary-button:hover {
    background: rgba(255, 255, 255, .1);
}
.calendar-icon {
    position: relative;
    width: 17px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 3px;
    margin-right: 10px;
    box-sizing: border-box;
}
.calendar-icon:before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 3px;
    height: 2px;
    background: #ffffff;
}
.calendar-icon:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    left: 3px;
    bottom: 3px;
    box-shadow: 6px 0 #ffffff;
}
/* =========================
   CTA FEATURES
========================= */
.cta-features {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: rgba(255, 255, 255, .9);
    font-size: 12px;
    line-height: 1;
}
.cta-features div {
    white-space: nowrap;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .help-section {
        padding-left: 25px;
        padding-right: 25px;
    }
    .help-cards {
        gap: 15px;
    }
    .help-card {
        padding-left: 16px;
        padding-right: 16px;
    }
    .help-cta {
        padding-left: 35px;
        padding-right: 35px;
    }
    .cta-right {
        min-width: 450px;
    }
}
@media (max-width: 900px) {
    .help-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .help-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .cta-right {
        width: 100%;
        min-width: 0;
    }
    .cta-buttons {
        width: 100%;
    }
    .cta-primary-button,
    .cta-secondary-button {
        flex: 1;
    }
}
@media (max-width: 600px) {
    .help-section {
        padding: 20px 15px;
    }
    .help-title {
        font-size: 21px;
    }
    .help-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .help-card {
        min-height: auto;
    }
    .help-card-text {
        min-height: auto;
    }
    .help-cta {
        padding: 25px 20px;
    }
    .cta-left {
        align-items: flex-start;
    }
    .cta-rocket-circle {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
    }
    .cta-content {
        margin-left: 16px;
    }
    .cta-title {
        font-size: 17px;
    }
    .cta-text {
        font-size: 12px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
    }
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
}
/* ///////////////////pricing page//////////// */
.pricing-section {
    width: 100%;
    padding: 0 44px 18px;
    box-sizing: border-box;
    background: #ffffff;
    font-family: var(--font-primary);
}
.pricing-container {
    width: 100%;
    /* max-width: 980px; */
    margin: 0 auto;
}
/* =========================
   HEADER
========================= */
.pricing-eyebrow {
    text-align: center;
    color: var(--primary-dark);
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
}
.pricing-title {
    text-align: center;
    color: var(--dark);
    font-size: 25px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.pricing-agencies {
    color: var(--primary);
}
.pricing-ai {
    color: var(--purple);
}
.pricing-description {
    margin-top: 10px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}
/* =========================
   BILLING
========================= */
.pricing-billing-area {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}
.pricing-toggle {
    height: 30px;
    min-width: 263px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid #e1e8ed;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(7, 27, 58, .03);
}
.pricing-toggle-active {
    width: 50%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px;
    margin-left: -1px;
    color: #ffffff;
    background: var(--primary-dark);
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
}
.pricing-toggle-yearly {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 9px;
    font-weight: 700;
    flex: 1;
}
.pricing-save {
    color: var(--primary-dark);
    background: var(--primary-light);
    border-radius: 10px;
    padding: 3px 7px;
    margin-right: 7px;
    font-size: 7px;
    font-weight: 800;
}
.pricing-save-note {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
    font-size: 10px;
    font-style: italic;
    font-weight: 600;
}
.pricing-arrow {
    position: absolute;
    left: -48px;
    top: -18px;
    color: var(--primary);
    font-size: 28px;
    font-style: normal;
    transform: rotate(-25deg);
}
/* =========================
   PLANS
========================= */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    align-items: stretch;
}
.pricing-card {
    position: relative;
    min-height: 374px;
    padding: 19px 15px 17px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e0e8ed;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(7, 27, 58, .025);
}
.pricing-card-popular {
    border-color: var(--primary);
}
/* =========================
   POPULAR BADGE
========================= */
.pricing-popular {
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    padding: 4px 10px;
    color: #ffffff;
    background: var(--primary-dark);
    border-radius: 8px;
    font-size: 8px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}
/* =========================
   PLAN ICON
========================= */
.pricing-plan-icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 11px;
    position: relative;
}
.pricing-icon-green {
    color: var(--primary-dark);
    background: var(--primary-light);
}
.pricing-icon-purple {
    color: #6747d9;
    background: #eeeaff;
}
.pricing-icon-purple-light {
    color: #7643d8;
    background: #f0e7ff;
}
/* =========================
   PLAN ICONS
========================= */
/* Rocket */
.pricing-rocket {
    width: 13px;
    height: 21px;
    border: 2px solid currentColor;
    border-radius: 80% 20% 80% 20%;
    transform: rotate(45deg);
    position: relative;
}
.pricing-rocket:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    top: 4px;
    left: 2px;
}
.pricing-rocket:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 5px;
    left: -5px;
    bottom: -2px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}
/* Chart */
.pricing-chart {
    width: 19px;
    height: 16px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    position: relative;
}
.pricing-chart:before {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 4px;
    width: 13px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: skewY(-35deg);
}
.pricing-chart:after {
    content: "↗";
    position: absolute;
    right: -3px;
    top: -9px;
    font-size: 12px;
    font-weight: 800;
}
/* Briefcase */
.pricing-briefcase {
    width: 19px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 3px;
    position: relative;
}
.pricing-briefcase:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 4px;
    left: 4px;
    top: -6px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
}
.pricing-briefcase:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 2px;
    background: currentColor;
    left: 6px;
    top: 5px;
}
/* Crown */
.pricing-crown {
    width: 22px;
    height: 13px;
    position: relative;
    border-bottom: 2px solid currentColor;
    clip-path: polygon(0 10%,
            25% 40%,
            50% 0,
            75% 40%,
            100% 10%,
            85% 100%,
            15% 100%);
    background: currentColor;
}
.pricing-crown:after {
    content: "";
    position: absolute;
    inset: 4px 3px 3px;
    background: #f0e7ff;
}
/* =========================
   TEXT
========================= */
.pricing-plan-name {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 5px;
}
.pricing-plan-description {
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.55;
    min-height: 35px;
}
.pricing-price {
    margin-top: 8px;
    color: var(--dark);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.4px;
}
.pricing-price span {
    color: var(--text);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
}
.pricing-custom {
    font-size: 22px;
}
.pricing-custom-subtitle {
    color: var(--text-light);
    font-size: 10px;
    line-height: 1;
    margin-top: 1px;
    min-height: 17px;
}
/* =========================
   BUTTONS
========================= */
.pricing-button {
    width: 100%;
    height: 33px;
    margin-top: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
    transition: .2s ease;
}
.pricing-button-outline {
    color: var(--primary-dark);
    border: 1px solid var(--primary);
    background: #ffffff;
}
.pricing-button-filled {
    color: #ffffff;
    border: 1px solid var(--primary-dark);
    background: var(--primary-dark);
}
.pricing-button-purple {
    color: #6747d9;
    border: 1px solid #9b8cff;
    background: #ffffff;
}
.pricing-button:hover {
    transform: translateY(-1px);
}
.pricing-button-outline:hover {
    color: #ffffff;
    background: var(--primary);
}
.pricing-button-purple:hover {
    color: #ffffff;
    background: var(--purple);
}
/* =========================
   LOWER CARD CONTENT
========================= */
.pricing-no-card {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 8px;
}
.pricing-enterprise-space {
    height: 24px;
}
.pricing-includes {
    color: var(--dark);
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;
    margin-top: 1px;
    margin-bottom: 8px;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 9px;
    line-height: 1.2;
}
/* CSS check circle */
.feature-check {
    position: relative;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border: 1.4px solid var(--primary);
    border-radius: 50%;
    box-sizing: border-box;
}
.feature-check:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 2px;
    left: 2px;
    top: 2px;
    border-left: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    transform: rotate(-45deg);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .pricing-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pricing-plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .pricing-billing-area {
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .pricing-section {
        padding: 20px 15px;
    }
    .pricing-title {
        font-size: 22px;
    }
    .pricing-description br {
        display: none;
    }
    .pricing-billing-area {
        height: auto;
        flex-direction: column;
        gap: 14px;
        padding: 18px 0 25px;
    }
    .pricing-toggle {
        width: 260px;
    }
    .pricing-save-note {
        margin-left: 35px;
    }
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        min-height: auto;
    }
}
.pricing-section {
    width: 100%;
    padding: 22px 30px 28px;
    background: #fff;
    font-family: var(--font-primary);
}
/* Font utility */
.font-asw {
    font-family: var(--font-primary);
}
.pricing-title-wrap {
    text-align: center;
    margin-bottom: 20px;
}
.pricing-eyebrow {
    color: var(--primary);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}
.pricing-title {
	color: #071b3a;
	font-size: 37px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0;
}
.pricing-table {
    width: 100%;
    border: 1px solid #e1e9ed;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}
.pricing-row {
    display: grid;
    grid-template-columns: 18% 20.5% 20.5% 20.5% 20.5%;
    min-height: 39px;
}
.pricing-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    border-right: 1px solid #edf1f3;
    border-bottom: 1px solid #edf1f3;
    text-align: center;
}
.pricing-cell:last-child {
    border-right: 0;
}
.pricing-row:last-child .pricing-cell {
    border-bottom: 0;
}
/* First column */
.pricing-feature {
    justify-content: flex-start;
    padding-left: 38px;
    font-weight: 600;
    color: #1a2b47;
    text-align: left;
}
/* Top row */
.pricing-head {
    min-height: 48px;
    background: #fafcfd;
}
.pricing-head .pricing-cell {
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #e6ecef;
}
.pricing-head .pricing-feature {
    color: #31415a;
}
.plan-starter {
    color: var(--primary) !important;
}
.plan-growth {
    color: #0faea2 !important;
}
.plan-business {
    color: var(--purple) !important;
}
.plan-enterprise {
    color: #7148df !important;
}
/* Check / dash */
.check {
    color: var(--primary);
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
}
.dash {
    color: #9aa7b8;
    font-size: 16px;
    line-height: 1;
}
.value {
    color: #273650;
    font-weight: 400;
}
/* Responsive */
@media (max-width: 900px) {
    .pricing-section {
        padding: 20px 15px;
    }
    .pricing-table {
        overflow-x: auto;
    }
    .pricing-row {
        min-width: 850px;
        grid-template-columns: 18% 20.5% 20.5% 20.5% 20.5%;
    }
}
@media (max-width: 600px) {
    .pricing-title {
        font-size: 22px;
    }
    .pricing-eyebrow {
        font-size: 11px;
    }
}
.faq-cta-section {
    width: 100%;
    padding: 25px 22px 24px;
    background: #ffffff;
    font-family: var(--font-primary);
}
.font-asw {
    font-family: var(--font-primary);
}
/* =========================
       FAQ
    ========================= */
.faq-title {
    width: 100%;
    text-align: center;
    color: var(--dark);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 14px;
    width: 100%;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.faq-item.active {
    border-color: #cfdde5;
    box-shadow: 0 4px 15px rgba(7, 27, 58, 0.05);
}
.faq-question {
    min-height: 57px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    user-select: none;
}
.faq-question-text {
    padding-right: 15px;
}
.faq-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #263650;
    font-size: 19px;
    font-weight: 400;
    transition: transform 0.25s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.3s ease,
        opacity 0.25s ease;
}
.faq-answer-inner {
    padding: 0 20px 17px;
    color: #61708a;
    font-size: 13px;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 150px;
    opacity: 1;
}
/* =========================
       COMMON SITE CTA
    ========================= */
.site-cta-section {
    width: 100%;
    padding: 24px 4.3% 40px;
    background: #ffffff;
    font-family: var(--font-primary);
    box-sizing: border-box;
}
.site-cta-section .cta-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 168px;
    margin-top: 0;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    border-radius: 17px;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 8% 50%,
            rgba(103, 71, 217, 0.18),
            transparent 17%),
        linear-gradient(110deg,
            #09052d 0%,
            #031431 48%,
            #061b3c 100%);
    color: #ffffff;
}
.site-cta-section .cta-banner::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 10px;
    width: 100px;
    height: 165px;
    opacity: 0.75;
    background-image:
        radial-gradient(circle,
            rgba(116, 56, 238, 0.9) 1.2px,
            transparent 1.5px);
    background-size: 6px 6px;
    transform: rotate(24deg);
    mask-image: linear-gradient(to right,
            #000,
            transparent);
    pointer-events: none;
}
.site-cta-section .cta-banner::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 5px;
    width: 90px;
    height: 175px;
    opacity: 0.6;
    background-image:
        radial-gradient(circle,
            rgba(0, 180, 190, 0.8) 1.2px,
            transparent 1.5px);
    background-size: 6px 6px;
    transform: rotate(-25deg);
    mask-image: linear-gradient(to left,
            #000,
            transparent);
    pointer-events: none;
}
.site-cta-section .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
    margin-left: 0;
    flex: none;
}
.site-cta-section .cta-icon {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}
.site-cta-section .cta-icon svg,
.site-cta-section .cta-icon i {
    width: auto;
    height: auto;
    font-size: 36px;
    line-height: 1;
    color: var(--purple);
}
.site-cta-section .cta-copy {
    flex: 1 1 auto;
    min-width: 0;
}
.site-cta-section .cta-heading {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 8px;
}
.site-cta-section .cta-description {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}
.site-cta-section .cta-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    gap: 12px;
    position: relative;
    z-index: 2;
}
.site-cta-section .cta-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: auto;
    gap: 14px;
}
.site-cta-section .cta-button {
    height: 48px;
    min-height: 48px;
    width: auto;
    flex: 0 0 auto;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.site-cta-section .cta-button span {
    white-space: nowrap;
}
.site-cta-section .cta-button:hover {
    transform: translateY(-2px);
}
.site-cta-section .cta-primary {
    flex: 0 0 auto;
    color: #ffffff;
    border: 1px solid #11c0b1;
    background: linear-gradient(135deg,
            #0bb7a8,
            #08a99c);
    box-shadow: 0 7px 20px rgba(17, 184, 167, 0.22);
}
.site-cta-section .cta-secondary {
    flex: 0 0 auto;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.65);
    background: transparent;
}
.site-cta-section .cta-arrow {
    font-size: 18px;
    line-height: 1;
}
.site-cta-section .calendar-icon {
    position: static;
    width: 18px;
    height: 18px;
    border: 0;
    margin: 0;
    border-radius: 0;
    flex-shrink: 0;
    box-sizing: content-box;
}
.site-cta-section .calendar-icon::before,
.site-cta-section .calendar-icon::after {
    content: none;
    display: none;
}
.site-cta-section .cta-benefits {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
    gap: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 400;
}
.site-cta-section .cta-benefit {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.site-cta-section .cta-benefit-check {
    font-size: 13px;
    font-weight: 700;
}
/* =========================
       Responsive
    ========================= */
@media (max-width: 1200px) {
    .site-cta-section .cta-banner {
        padding: 26px 28px;
    }
    .site-cta-section .cta-heading {
        font-size: 22px;
    }
    .site-cta-section .cta-description {
        font-size: 14px;
    }
    .site-cta-section .cta-button {
        font-size: 13px;
        padding: 0 14px;
    }
    .site-cta-section .cta-benefits {
        font-size: 11px;
        gap: 10px;
    }
}
@media (max-width: 1050px) {
    .site-cta-section .cta-banner {
        padding: 24px 22px;
    }
    .site-cta-section .cta-content {
        gap: 18px;
    }
    .site-cta-section .cta-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }
    .site-cta-section .cta-icon svg,
    .site-cta-section .cta-icon i {
        font-size: 30px;
    }
    .site-cta-section .cta-heading {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .site-cta-section .cta-description {
        font-size: 13px;
    }
    .site-cta-section .cta-button {
        height: 44px;
        min-height: 44px;
        font-size: 12px;
        padding: 0 12px;
    }
    .site-cta-section .cta-benefits {
        font-size: 10px;
        gap: 8px;
    }
}
@media (max-width: 800px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .site-cta-section .cta-banner {
        padding: 28px 22px;
        min-height: auto;
    }
    .site-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .site-cta-section .cta-copy {
        min-width: 0;
    }
    .site-cta-section .cta-actions {
        width: 100%;
        align-items: center;
    }
    .site-cta-section .cta-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .site-cta-section .cta-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 520px) {
    .site-cta-section {
        padding: 20px 14px 28px;
    }
    .faq-cta-section {
        padding: 20px 14px;
    }
    .faq-title {
        font-size: 22px;
    }
    .faq-question {
        padding: 0 15px;
        font-size: 13px;
    }
    .site-cta-section .cta-banner {
        border-radius: 14px;
    }
    .site-cta-section .cta-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }
    .site-cta-section .cta-icon svg,
    .site-cta-section .cta-icon i {
        font-size: 28px;
    }
    .site-cta-section .cta-heading {
        font-size: 20px;
    }
    .site-cta-section .cta-buttons {
        flex-direction: column;
    }
    .site-cta-section .cta-button {
        width: 100%;
    }
    .site-cta-section .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
}
/* ////////////feature/////////////////////// */
.features-section {
    width: 100%;
    padding: 55px 52px;
    background: #ffffff;
    font-family: var(--font-primary);
    overflow: hidden;
}
.font-asw {
    font-family: var(--font-primary);
}
.features-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}
/* =========================
       LEFT CONTENT
    ========================= */
.features-content {
    width: 40%;
    flex-shrink: 0;
}
.features-label {
    color: var(--primary);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 29px;
}
.features-title {
    color: var(--dark);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 28px;
}
.features-title-highlight {
    color: var(--primary);
}
.features-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    max-width: 510px;
    margin-bottom: 57px;
}
/* =========================
       FEATURE ITEMS
    ========================= */
.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #e1faf7;
    border: 1px solid #b8eee8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.feature-icon svg {
    width: 17px;
    height: 17px;
}
.feature-text {
    padding-top: 1px;
}
.feature-name {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 11px;
    white-space: nowrap;
}
.feature-description {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.9;
    font-weight: 400;
}
/* =========================
       PNG IMAGE
    ========================= */
.features-image-wrap {
    width: 60%;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 14px 35px rgba(7, 27, 58, 0.13);
}
/* =========================
       RESPONSIVE
    ========================= */
@media (max-width: 1050px) {
    .features-section {
        padding: 45px 30px;
    }
    .features-container {
        gap: 30px;
    }
    .features-title {
        font-size: 32px;
    }
    .features-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .feature-name {
        font-size: 11px;
    }
    .feature-description {
        font-size: 9px;
    }
}
@media (max-width: 800px) {
    .features-section {
        padding: 40px 22px;
    }
    .features-container {
        flex-direction: column;
        align-items: stretch;
    }
    .features-content {
        width: 100%;
    }
    .features-image-wrap {
        width: 100%;
    }
    .features-title {
        font-size: 32px;
    }
    .features-description {
        max-width: 650px;
    }
}
@media (max-width: 550px) {
    .features-section {
        padding: 35px 18px;
    }
    .features-label {
        margin-bottom: 18px;
    }
    .features-title {
        font-size: 27px;
    }
    .features-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 35px;
    }
    .features-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .feature-name {
        font-size: 12px;
    }
    .feature-description {
        font-size: 10px;
    }
    .features-image {
        border-radius: 10px;
    }
}
.agency-modules-header {
    width: 100%;
    max-width: 900px;
    margin: 32px auto 32px;
    text-align: center;
}
.agency-modules-label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.agency-modules-title {
    display: block;
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 750;
    letter-spacing: -0.6px;
}
.agency-modules-subtitle {
    display: block;
    margin: 9px auto 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}
/* =========================================================
   CARDS GRID
========================================================= */
.agency-modules-grid {
    width: 100%;
    max-width: 1205px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
/* =========================================================
   CARD
========================================================= */
.agency-module-card {
    position: relative;
    min-width: 0;
    min-height: 295px;
    padding: 18px 20px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(7, 27, 58, 0.035);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.agency-module-card:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 184, 167, 0.35);
    box-shadow: var(--shadow);
}
/* =========================================================
   CARD TOP
========================================================= */
.agency-module-card-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
/* =========================================================
   ICON BOX
========================================================= */
.agency-module-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    line-height: 1;
}
/* CRM ICON */
.agency-module-icon.crm-icon {
    color: var(--primary);
    background: var(--primary-light);
}
/* TASK ICON */
.agency-module-icon.task-icon {
    color: var(--blue);
    background: #edf4ff;
}
/* PROJECT ICON */
.agency-module-icon.project-icon {
    color: #ef5350;
    background: #fff0f0;
}
/* AMC ICON */
.agency-module-icon.amc-icon {
    color: #26b97f;
    background: #eafbf3;
}
/* =========================================================
   CARD CONTENT
========================================================= */
.agency-module-card-content {
    min-width: 0;
    padding-top: 4px;
}
.agency-module-card-name {
    display: block;
    margin: 0;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 750;
}
.agency-module-card-description {
    display: block;
    margin-top: 17px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.85;
    font-weight: 400;
}
/* =========================================================
   FEATURES
========================================================= */
.agency-module-features {
    display: flex;
    flex-direction: column;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}
.agency-module-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}
/* =========================================================
   CHECK ICON
========================================================= */
.agency-module-feature-check {
    width: 14px;
    height: 14px;
    min-width: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1.7px solid var(--primary);
    border-radius: 50%;
    font-size: 7px;
    line-height: 1;
}
/* =========================================================
   LEARN MORE
========================================================= */
.agency-module-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 750;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}
.agency-module-link:hover {
    color: var(--primary-dark);
    gap: 11px;
}
.agency-module-link i {
    font-size: 11px;
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1100px) {
    .agency-modules-section {
        padding-left: 24px;
        padding-right: 24px;
    }
    .agency-modules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 650px) {
    .agency-modules-section {
        padding: 38px 16px 45px;
    }
    .agency-modules-header {
        margin-bottom: 25px;
    }
    .agency-modules-title {
        font-size: 24px;
        letter-spacing: -0.4px;
    }
    .agency-modules-subtitle {
        font-size: 13px;
    }
    .agency-modules-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .agency-module-card {
        min-height: auto;
        padding: 18px;
    }
}
/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 400px) {
    .agency-modules-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .agency-module-card-top {
        gap: 12px;
    }
    .agency-module-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 21px;
    }
}
/* =========================================
   MODULE ICON COLORS
========================================= */
.agency-module-icon.crm-icon {
    color: var(--primary);
    background: var(--primary-light);
}
.agency-module-icon.task-icon {
    color: var(--blue);
    background: #edf4ff;
}
.agency-module-icon.project-icon {
    color: #ef5350;
    background: #fff0f0;
}
.agency-module-icon.amc-icon {
    color: #26b97f;
    background: #eafbf3;
}
.agency-module-icon.social-icon {
    color: var(--purple);
    background: #f1edff;
}
.agency-module-icon.shoot-icon {
    color: #ff7a21;
    background: #fff2e8;
}
.agency-module-icon.influencer-icon {
    color: #ef5360;
    background: #fff0f2;
}
.agency-module-icon.seo-icon {
    color: #20a9c9;
    background: #eaf9fc;
}
.agency-module-icon.finance-icon {
    color: var(--primary);
    background: var(--primary-light);
}
.agency-module-icon.hra-icon {
    color: var(--blue);
    background: #edf4ff;
}
.agency-module-icon.communication-icon {
    color: var(--blue);
    background: #edf4ff;
}
.seamless-integrations {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 35px 30px 40px;
    background: #ffffff;
    font-family: var(--font-primary, "Inter", sans-serif);
}
/* =========================================================
   BACKGROUND DOT PATTERN
========================================================= */
.seamless-integrations::before,
.seamless-integrations::after {
    content: "";
    position: absolute;
    width: 310px;
    height: 250px;
    pointer-events: none;
    background-image: radial-gradient(circle,
            rgba(17, 184, 167, 0.20) 1.4px,
            transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.65;
}
.seamless-integrations::before {
    left: -65px;
    bottom: -75px;
    border-radius: 50%;
    transform: rotate(-12deg);
}
.seamless-integrations::after {
    right: -65px;
    bottom: -75px;
    border-radius: 50%;
    transform: rotate(12deg);
}
/* =========================================================
   HEADER
========================================================= */
.seamless-integrations-header {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 25px;
    text-align: center;
}
.seamless-integrations-title {
    display: block;
    margin: 0;
    color: var(--dark, #071b3a);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -0.45px;
}
.seamless-integrations-subtitle {
    display: block;
    margin-top: 9px;
    color: var(--text-light, #61708a);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}
/* =========================================================
   INTEGRATION LIST
========================================================= */
.seamless-integrations-list {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1055px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 22px;
}
/* =========================================================
   INTEGRATION ITEM
========================================================= */
.integration-item {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e6edf1;
    border-radius: 13px;
    box-shadow:
        0 5px 12px rgba(7, 27, 58, 0.07),
        0 1px 3px rgba(7, 27, 58, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.integration-item:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 184, 167, 0.35);
    box-shadow:
        0 12px 25px rgba(7, 27, 58, 0.11),
        0 2px 5px rgba(7, 27, 58, 0.05);
}
/* =========================================================
   LOGO
========================================================= */
.integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    font-size: 45px;
    line-height: 1;
}
/* Google */
.integration-google {
    color: #4285f4;
}
.integration-google .google-g {
    font-size: 46px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    background: conic-gradient(from -45deg,
            #4285f4 0deg 90deg,
            #34a853 90deg 180deg,
            #fbbc05 180deg 270deg,
            #ea4335 270deg 360deg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Meta */
.integration-meta {
    color: #087ce8;
}
.integration-meta i {
    font-size: 47px;
}
/* WordPress */
.integration-wordpress {
    color: #21759b;
}
.integration-wordpress i {
    font-size: 48px;
}
/* WhatsApp */
.integration-whatsapp {
    color: #25d366;
}
.integration-whatsapp i {
    font-size: 48px;
}
/* Slack */
.integration-slack {
    color: #36c5f0;
}
.integration-slack i {
    font-size: 47px;
}
/* Microsoft Teams */
.integration-teams {
    color: #5b5fc7;
}
.integration-teams i {
    font-size: 46px;
}
/* Gmail */
.integration-gmail {
    color: #ea4335;
}
.integration-gmail i {
    font-size: 48px;
}
/* =========================================================
   MORE ITEM
========================================================= */
.integration-more {
    flex-direction: column;
    gap: 7px;
    color: var(--dark, #071b3a);
}
.integration-more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--dark, #071b3a);
    font-size: 18px;
}
.integration-more-text {
    display: block;
    color: var(--text, #142442);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .seamless-integrations-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 700px;
    }
}
@media (max-width: 650px) {
    .seamless-integrations {
        padding: 32px 16px 40px;
    }
    .seamless-integrations-title {
        font-size: 22px;
    }
    .seamless-integrations-subtitle {
        font-size: 12px;
    }
    .seamless-integrations-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }
    .integration-item {
        height: 82px;
        border-radius: 10px;
    }
    .integration-logo {
        width: 42px;
        height: 42px;
        font-size: 32px;
    }
    .integration-google .google-g {
        font-size: 36px;
    }
    .integration-meta i,
    .integration-wordpress i,
    .integration-whatsapp i,
    .integration-slack i,
    .integration-teams i,
    .integration-gmail i {
        font-size: 35px;
    }
    .integration-more-icon {
        width: 25px;
        height: 25px;
        font-size: 15px;
    }
    .integration-more-text {
        font-size: 9px;
    }
}
@media (max-width: 420px) {
    .seamless-integrations-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 300px;
        gap: 12px;
    }
    .integration-item {
        height: 85px;
    }
}
.features-section {
	width: 100%;
	padding: 8px 7px 0;
	background: var(--white);
	font-family: var(--font-primary);
	color: var(--text);
	box-sizing: border-box;
}
/* Heading */
.features-header {
    text-align: center;
    margin-bottom: 46px;
}
.features-header .eyebrow {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.features-header h2 {
    margin: 0;
    color: var(--dark);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}
/* Features */
.features-grid {
    max-width: 1200px;
    margin: 0 auto 62px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.feature-card {
    position: relative;
    min-height: 165px;
    padding: 0 25px;
    text-align: center;
    box-sizing: border-box;
}
.feature-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 1px;
    height: 164px;
    background: #dceff1;
}
.feature-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border: 2px solid #bcece7;
    border-radius: 50%;
    font-size: 22px;
}
.feature-card h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}
.feature-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.9;
    font-weight: 400;
}
/* CTA */
.features-cta {
    position: relative;
    max-width: 1320px;
    min-height: 148px;
    margin: 40px auto;
    padding: 32px 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 50%,
            rgba(17, 184, 167, 0.18),
            transparent 18%),
        radial-gradient(circle at 100% 50%,
            rgba(52, 120, 237, 0.12),
            transparent 20%),
        var(--dark);
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}
/* Decorative dots */
.features-cta::before,
.features-cta::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.3;
    pointer-events: none;
    background-image: radial-gradient(var(--primary) 1px,
            transparent 1.5px);
    background-size: 7px 7px;
}
.features-cta::before {
    left: -65px;
    top: -15px;
    transform: rotate(-25deg);
}
.features-cta::after {
    right: -65px;
    bottom: -20px;
    transform: rotate(25deg);
}
.cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}
.cta-content h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
}
.cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}
/* Buttons */
.cta-actions {
    position: relative;
    z-index: 1;
    width: 535px;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
.btn {
    min-height: 56px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    transition: all 0.25s ease;
}
.btn-primary {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline {
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
}
.btn i {
    font-size: 13px;
}
/* CTA points */
.cta-points {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    list-style: none;
}
.cta-points li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    white-space: nowrap;
}
.cta-points i {
    margin-right: 6px;
    color: var(--primary);
    font-size: 10px;
}
/* Responsive */
@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }
    .feature-card:nth-child(3)::after {
        display: none;
    }
    .feature-card:nth-child(4)::after {
        display: block;
    }
    .features-cta {
        padding: 32px 45px;
    }
}
@media (max-width: 800px) {
    .features-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-actions {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .features-section {
        padding: 40px 18px 0;
    }
    .features-header h2 {
        font-size: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-card {
        padding: 0 12px;
    }
    .feature-card:nth-child(even)::after {
        display: none;
    }
    .feature-card:nth-child(3)::after {
        display: block;
    }
    .features-cta {
        padding: 30px 25px;
        border-radius: var(--radius-md);
    }
    .cta-content h2 {
        font-size: 20px;
    }
    .cta-actions {
        grid-template-columns: 1fr;
    }
    .cta-points {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* //////////////resource page /////////////////////*/
.resources-section {
    width: 100%;
    padding: 48px 60px 40px;
    background: var(--white);
    font-family: var(--font-primary);
    color: var(--text);
    box-sizing: border-box;
}
.resources-container {
    max-width: 1240px;
    min-height: 380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 35px;
}
/* =========================
   LEFT CONTENT
========================= */
.resources-content {
    padding-right: 5px;
}
.resources-eyebrow {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
}
.resources-content h2 {
    margin: 0 0 22px;
    color: var(--dark);
    font-size: 36px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -1px;
}
.text-gradient {
    background: linear-gradient(90deg,
            var(--primary),
            var(--blue),
            var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.resources-description {
    max-width: 485px;
    margin: 0 0 26px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 2;
}
/* =========================
   SEARCH
========================= */
.resources-search {
    width: 100%;
    max-width: 515px;
    height: 51px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(7, 27, 58, 0.04);
    box-sizing: border-box;
}
.search-input {
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 16px;
}
.search-input i {
    color: var(--text-light);
    font-size: 15px;
}
.search-input input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 12px;
}
.search-input input::placeholder {
    color: var(--text-muted);
}
.category-select {
    width: 165px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 0;
    border-left: 1px solid #edf1f4;
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 12px;
    cursor: pointer;
}
.category-select i {
    color: var(--text-muted);
    font-size: 10px;
}
/* =========================
   RIGHT IMAGE
========================= */
.resources-image {
    width: 100%;
    height: 376px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--dark);
    box-shadow: var(--shadow);
    box-sizing: border-box;
}
.resources-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
    .resources-section {
        padding: 36px 30px;
    }
    .resources-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .resources-content {
        padding-right: 0;
    }
    .resources-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
@media (max-width: 600px) {
    .resources-section {
        padding: 32px 18px;
    }
    .resources-content h2 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    .resources-description {
        font-size: 14px;
        line-height: 1.8;
    }
    .resources-search {
        height: auto;
        min-height: 51px;
    }
    .category-select {
        width: 125px;
        padding: 0 10px;
    }
    .resources-image {
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-md);
    }
}
.resource-categories {
    width: 100%;
    padding: 0 26px 30px;
    background: var(--white);
    font-family: var(--font-primary);
    color: var(--text);
    box-sizing: border-box;
}
.resource-categories>h2 {
    max-width: 1228px;
    margin: 0 auto 20px;
    color: var(--dark);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.category-grid {
    max-width: 1228px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.category-card {
    min-height: 193px;
    padding: 16px 16px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e5ebf1;
    border-radius: var(--radius-md);
    background: var(--white);
    box-sizing: border-box;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.category-card:hover {
    transform: translateY(-3px);
    border-color: #cfe0e7;
    box-shadow: 0 10px 25px rgba(7, 27, 58, 0.07);
}
/* Icon */
.category-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 19px;
}
.category-icon-teal {
    color: var(--primary);
    background: var(--primary-light);
}
.category-icon-purple {
    color: var(--purple);
    background: #f0edff;
}
.category-icon-orange {
    color: #f39a48;
    background: #fff3e7;
}
.category-icon-blue {
    color: var(--blue);
    background: #edf2ff;
}
.category-icon-red {
    color: #ef4560;
    background: #ffebef;
}
/* Card heading */
.category-card h3 {
    margin: 0 0 5px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}
/* Description */
.category-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}
/* View all */
.category-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}
.category-card a i {
    font-size: 10px;
    transition: transform 0.2s ease;
}
.category-card a:hover i {
    transform: translateX(3px);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1050px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .resource-categories {
        padding: 0 18px 30px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .resource-categories>h2 {
        font-size: 19px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        min-height: 180px;
    }
}
.featured-resources {
    width: 100%;
    padding: 25px 55px 35px;
    background: var(--white);
    font-family: var(--font-primary);
    color: var(--text);
    box-sizing: border-box;
}
/* =========================
   HEADER
========================= */
.featured-header {
    max-width: 1255px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.featured-title {
    color: var(--dark);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.view-all-resources {
    min-width: 185px;
    height: 40px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.view-all-resources:hover {
    color: var(--white);
    background: var(--primary);
}
.view-all-resources i {
    font-size: 11px;
}
/* =========================
   GRID
========================= */
.featured-grid {
    max-width: 1255px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
/* =========================
   CARD
========================= */
.resource-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e5ebf1;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 2px 7px rgba(7, 27, 58, 0.025);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.resource-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(7, 27, 58, 0.09);
}
/* =========================
   IMAGE
========================= */
.resource-image {
    position: relative;
    width: 100%;
    height: 155px;
    overflow: hidden;
    background: var(--dark);
}
.resource-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}
.resource-card:hover .resource-image img {
    transform: scale(1.03);
}
/* =========================
   LABEL
========================= */
.resource-label {
    position: absolute;
    top: 13px;
    left: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--white);
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
}
.article-label {
    background: var(--primary);
}
.guide-label {
    background: var(--purple);
}
.webinar-label {
    background: var(--primary);
}
.case-label {
    background: #ef3f78;
}
/* =========================
   VIDEO CONTROLS
========================= */
.video-controls {
    position: absolute;
    right: 15px;
    bottom: 10px;
    display: flex;
    gap: 4px;
}
.video-controls span {
    width: 38px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--white);
    background: rgba(7, 27, 58, 0.72);
    backdrop-filter: blur(4px);
}
.video-controls i {
    font-size: 12px;
}
/* =========================
   BODY
========================= */
.resource-body {
    padding: 15px 14px 13px;
}
.resource-card-title {
    min-height: 42px;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}
.resource-description {
    min-height: 43px;
    margin-bottom: 14px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}
/* =========================
   META
========================= */
.resource-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1;
}
.read-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.read-time i {
    color: var(--text-light);
    font-size: 12px;
}
/* Arrow */
.resource-arrow {
	width: 30px;
	height: 30px;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	color: var(--text-light);
	background: #f3f6f9;
	text-decoration: none;
	transition: all 0.2s ease;
}
.resource-arrow i {
    font-size: 9px;
}
.resource-arrow:hover {
    color: var(--white);
    background: var(--primary);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .featured-resources {
        padding-left: 30px;
        padding-right: 30px;
    }
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .featured-resources {
        padding: 25px 18px 30px;
    }
    .featured-header {
        align-items: flex-start;
        gap: 15px;
    }
    .featured-title {
        font-size: 19px;
    }
    .view-all-resources {
        min-width: auto;
        padding: 0 12px;
    }
    .view-all-resources {
        font-size: 0;
    }
    .view-all-resources i {
        font-size: 12px;
    }
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .resource-image {
        height: 190px;
    }
}
/* ==============================
   Agency Resources Section
================================ */
.agency-resources {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 15px 40px 10px;
    font-family: "Inter", sans-serif;
    color: #111c3a;
}
/* ==============================
   Popular Topics
================================ */
.agency-resources__topics-title {
    margin-bottom: 22px;
    color: #17213c;
    font-size: 18px;
    font-weight: 700;
}
.agency-resources__topic-list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    overflow: hidden;
}
.agency-resources__topic {
    height: 44px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    border: 1px solid #edf0f7;
    border-radius: 24px;
    background: #f8f9fd;
    color: #17213c;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 7px rgba(30, 45, 80, 0.03);
}
.agency-resources__topic i {
    color: #7654e8;
    font-size: 16px;
}
.agency-resources__topic:nth-child(4) i {
    color: #16a89b;
}
.agency-resources__topic-arrow {
    width: 40px;
    height: 40px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: #17213c;
    box-shadow: 0 3px 12px rgba(30, 45, 80, 0.1);
}
/* ==============================
   Resource Cards Area
================================ */
.agency-resources__content {
    display: grid;
    grid-template-columns: 335px repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 19px;
}
.agency-resources__intro {
    padding: 15px 0;
}
.agency-resources__intro-title {
    max-width: 290px;
    margin-bottom: 14px;
    color: #111d3c;
    font-size: 24px;
    line-height: 1.38;
    font-weight: 700;
}
.agency-resources__intro-text {
    max-width: 295px;
    margin-bottom: 25px;
    color: #536078;
    font-size: 14px;
    line-height: 1.8;
}
.agency-resources__main-btn {
    width: 219px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 6px;
    background: linear-gradient(135deg, #078e87, #078f9b);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 12px rgba(0, 150, 145, 0.15);
}
.agency-resources__main-btn i {
    font-size: 11px;
}
/* ==============================
   Resource Card
================================ */
.agency-resources__card {
    min-height: 237px;
    padding: 17px;
    border: 1px solid #e8ecf4;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(30, 45, 80, 0.025);
}
.agency-resources__card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 22px;
}
.agency-resources__card-icon--green {
    background: #e4faf3;
    color: #10a999;
}
.agency-resources__card-icon--purple {
    background: #f0e6ff;
    color: #7854e8;
}
.agency-resources__card-icon--orange {
    background: #fff0df;
    color: #fa8617;
}
.agency-resources__card-icon--blue {
    background: #e7f0ff;
    color: #3978e8;
}
.agency-resources__card-title {
    min-height: 47px;
    margin-bottom: 5px;
    color: #111b37;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}
.agency-resources__card-text {
    min-height: 58px;
    margin-bottom: 7px;
    color: #5b657c;
    font-size: 14px;
    line-height: 1.75;
}
.agency-resources__download {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0aa29b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.agency-resources__download i {
    font-size: 11px;
}
/* ==============================
   Newsletter
================================ */
.agency-resources__newsletter {
    position: relative;
    min-height: 138px;
    padding: 20px 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 3% 50%,
            rgba(0, 185, 190, 0.15),
            transparent 17%),
        radial-gradient(circle at 98% 50%,
            rgba(0, 185, 190, 0.12),
            transparent 18%),
        #031334;
    color: #fff;
}
.agency-resources__newsletter::before,
.agency-resources__newsletter::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px dotted rgba(0, 192, 190, 0.35);
    border-radius: 50%;
    pointer-events: none;
}
.agency-resources__newsletter::before {
    left: -115px;
    top: -20px;
}
.agency-resources__newsletter::after {
    right: -115px;
    top: -20px;
}
.agency-resources__newsletter-icon {
    position: relative;
    z-index: 1;
    width: 87px;
    height: 87px;
    margin-right: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: #7854e8;
    font-size: 34px;
}
.agency-resources__newsletter-content {
    position: relative;
    z-index: 1;
    flex: 1;
}
.agency-resources__newsletter-title {
    margin-bottom: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.agency-resources__newsletter-text {
    max-width: 450px;
    color: #d4dbea;
    font-size: 13px;
    line-height: 1.65;
}
.agency-resources__newsletter-form {
    position: relative;
    z-index: 1;
    width: 477px;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.agency-resources__newsletter-input {
    width: 298px;
    height: 51px;
    padding: 0 20px;
    outline: none;
    border: 1px solid #41506f;
    border-radius: 7px;
    background: rgba(0, 10, 35, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
}
.agency-resources__newsletter-input::placeholder {
    color: #aeb8cc;
}
.agency-resources__subscribe {
    width: 171px;
    height: 51px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, #08aaa3, #04a7bb);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.agency-resources__subscribe i {
    margin-left: 9px;
    font-size: 11px;
}
/* ==============================
   Responsive
================================ */
@media (max-width: 1100px) {
    .agency-resources__content {
        grid-template-columns: 1fr 1fr;
    }
    .agency-resources__intro {
        grid-column: 1 / -1;
    }
    .agency-resources__newsletter {
        padding: 25px 40px;
    }
    .agency-resources__newsletter-form {
        width: 440px;
    }
}
@media (max-width: 760px) {
    .agency-resources {
        padding: 15px 20px;
    }
    .agency-resources__topic-list {
        overflow-x: auto;
        padding-bottom: 5px;
    }
    .agency-resources__content {
        grid-template-columns: 1fr;
    }
    .agency-resources__intro {
        grid-column: auto;
    }
    .agency-resources__newsletter {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
    .agency-resources__newsletter-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .agency-resources__newsletter-content {
        margin-bottom: 20px;
    }
    .agency-resources__newsletter-form {
        width: 100%;
        flex-direction: column;
    }
    .agency-resources__newsletter-input,
    .agency-resources__subscribe {
        width: 100%;
    }
}
.cta-rocket {
	/* width: 55px; */
	/* height: 55px; */
	display: flex;
	align-items: center;
	justify-content: center;
	/* border-radius: 50%; */
	color: rgb(0, 99, 108);
	font-size: 45px;
}
.cta-rocket i {
    line-height: 1;
}
.brand-logo img {
    width: 150px;
    height: auto;
    display: block;
}
/* =========================
   LEGAL PAGES
========================= */
.legal-section {
    width: 100%;
    padding: 48px 60px 64px;
    background: var(--white);
    font-family: var(--font-primary);
    color: var(--text);
    box-sizing: border-box;
}
.legal-container {
    max-width: 860px;
    margin: 0 auto;
}
.legal-hero {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.legal-eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.legal-title {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}
.legal-title span {
    color: var(--primary);
}
.legal-updated {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}
.legal-intro {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}
.legal-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.legal-block h2 {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}
.legal-block h2 span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.legal-richtext {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}
.legal-richtext p {
    margin: 0 0 12px;
}
.legal-richtext p:last-child {
    margin-bottom: 0;
}
.legal-richtext ul,
.legal-richtext ol {
    margin: 0 0 12px 20px;
}
.legal-richtext a {
    color: var(--primary);
    text-decoration: underline;
}
@media (max-width: 800px) {
    .legal-section {
        padding: 32px 22px 48px;
    }
    .legal-title {
        font-size: 28px;
    }
}