:root {
    --primary-color: #195E77;
    --primary-dark: #103F50;
    --primary-light: rgba(25, 94, 119, 0.1);
    --primary-light-solid: #E8F0F3;

    --accent-color: #F2A900;
    --accent-hover: #D99700;

    --dark-custom: #0F172A;
    --muted-custom: #64748B;
    --light-custom: #F8FAFC;
    --success-custom: rgba(34, 197, 94, 0.15);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);

    --font-family: 'Plus Jakarta Sans', sans-serif;

    --transition-speed: 0.4s;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 20px 40px rgba(25, 94, 119, 0.15);
}

body {
    font-family: var(--font-family);
    color: var(--dark-custom);
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Typography & Utilities */
.text-primary-color {
    color: var(--primary-color) !important;
}

.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.text-dark-custom {
    color: var(--dark-custom) !important;
}

.text-muted-custom {
    color: var(--muted-custom) !important;
}

.bg-light-custom {
    background-color: var(--light-custom) !important;
}

.bg-success-custom {
    background-color: var(--success-custom) !important;
    color: #166534 !important;
}

.border-primary-color {
    border-color: var(--primary-color) !important;
}

.border-accent-color {
    border-color: var(--accent-color) !important;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.transition-hover {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25, 94, 119, 0.2);
}

.btn-outline-custom {
    color: var(--dark-custom);
    border: 1px solid #E2E8F0;
    background-color: #fff;
}

.btn-outline-custom:hover {
    background-color: var(--light-custom);
    color: var(--primary-color);
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.btn-alt:hover {
    color: var(--primary-color);
}

/* =====================
   NAVBAR
   ===================== */
.transition-navbar {
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.transition-navbar.scrolled {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    padding: 12px 0 !important;
}

/* Mobile navbar: solid background when open */
@media (max-width: 991.98px) {
    .transition-navbar {
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        padding: 14px 0;
    }

    .navbar-collapse {
        padding: 12px 0 4px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        margin-top: 12px;
    }

    .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-item:last-child .nav-link,
    .nav-item:last-child .btn {
        border-bottom: none;
    }
}

.nav-link {
    color: var(--dark-custom);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    z-index: 1;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(25, 94, 119, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(25, 94, 119, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(242, 169, 0, 0.03) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(25, 94, 119, 0.02) 0px, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape-1 {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(25, 94, 119, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: blob-float 15s infinite alternate;
}

.shape-2 {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 94, 119, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: -1;
    animation: blob-float 18s infinite alternate-reverse;
}

.shape-3 {
    position: absolute;
    bottom: 20%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: blob-float 20s infinite alternate;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -40px) scale(1.1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1) translate(20px, 20px);
        opacity: 0.8;
    }
}

/* Hero title — fluid sizing */
.hero-title {
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0F172A;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-purple {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(25, 94, 119, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-purple:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(25, 94, 119, 0.3);
    color: #fff;
}

/* =====================
   DASHBOARD MOCKUP
   ===================== */
.dashboard-mockup-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    /* Horizontal padding leaves room for floating cards on desktop */
    padding: 0 80px;
    perspective: 2000px;
}

.dashboard-mockup {
    border-radius: 24px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 15px 30px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    padding: 12px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: rotateX(4deg) translateY(0);
}

.dashboard-mockup-wrapper:hover .dashboard-mockup {
    transform: rotateX(0deg) translateY(-10px);
    box-shadow: 0 50px 100px rgba(25, 94, 119, 0.12);
    border-color: rgba(25, 94, 119, 0.2);
}

/* Floating cards */
.floating-card-ref {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 18px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s ease;
}

.floating-card-ref:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.floating-card-left {
    left: -20px;
    top: 25%;
    animation: float1 6s infinite ease-in-out;
}

.floating-card-right {
    right: -10px;
    bottom: 30%;
    animation: float2 7s infinite ease-in-out;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =====================
   TRUSTED BY
   ===================== */
.trusted-by {
    margin-top: 100px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
}

.trusted-logo {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    max-height: 25px;
}

.trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =====================
   FEATURE CARDS
   ===================== */
.shadow-hover:hover {
    box-shadow: var(--box-shadow-hover) !important;
    transform: translateY(-5px);
}

.feature-card .feature-icon-wrapper {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color) !important;
}

.feature-card:hover .feature-icon-wrapper i {
    color: #fff !important;
}

/* =====================
   ABOUT SECTION
   ===================== */
.transform-tilt {
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.transform-tilt:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Floating badge positioning fix for small screens */
.about-floating-badge {
    white-space: nowrap;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    position: relative;
}

.cta-gradient-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4b5f 50%, #2c7a91 100%);
    position: relative;
    overflow: hidden;
}

.cta-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(at 0% 0%, rgba(242, 169, 0, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 255, 255, 0.1) 0px, transparent 50%);
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: pulse 10s infinite alternate;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: pulse 8s infinite alternate-reverse;
}

.avatar-stack {
    display: flex;
    justify-content: center;
}

.avatar-stack img {
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.avatar-stack img:hover {
    transform: translateY(-5px);
    z-index: 10;
}

/* Dotted Border Utility */
.border-dashed {
    border-style: dashed !important;
    border-width: 1px;
}

/* =====================
   FOOTER
   ===================== */
.footer-link:hover {
    color: var(--primary-color) !important;
}

/* Back to top button */
.back-to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(25, 94, 119, 0.3);
    cursor: pointer;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
}

.back-to-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(0);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =====================
   RESPONSIVE BREAKPOINTS
   ===================== */

/* Large tablets / small desktops */
@media (max-width: 1199.98px) {
    .dashboard-mockup-wrapper {
        padding: 0 60px;
    }

    .floating-card-left {
        left: -10px;
    }

    .floating-card-right {
        right: -5px;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    /* Stack mockup wrapper, hide floating cards so they don't overflow */
    .dashboard-mockup-wrapper {
        margin-top: 50px;
        padding: 0 16px;
    }

    .floating-card-ref {
        /* Smaller size and keep inside viewport */
        padding: 12px 16px;
        border-radius: 12px;
    }

    .floating-card-left {
        left: 8px;
        top: 15%;
        font-size: 0.85rem;
    }

    .floating-card-right {
        right: 8px;
        bottom: 20%;
        font-size: 0.85rem;
    }

    .dashboard-mockup {
        border-radius: 16px;
        padding: 8px;
        /* Flatten the 3D tilt on tablets */
        transform: rotateX(2deg) translateY(0);
    }

    /* About section: remove tilt on tablets */
    .transform-tilt {
        transform: none;
    }

    .transform-tilt:hover {
        transform: none;
    }

    /* About floating badge: don't overflow on right */
    .about-floating-badge {
        right: 0 !important;
        bottom: -10px !important;
    }

    /* CTA padding */
    .cta-gradient-card {
        padding: 3rem 2rem !important;
    }

    .display-3 {
        font-size: 2.2rem;
    }

    .display-2 {
        font-size: 2.8rem;
    }

    /* Trusted logos: smaller gap */
    .trusted-by {
        margin-top: 60px;
    }
}

/* Mobile phones */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    /* Hide floating cards on small phones — they have nowhere to go */
    .floating-card-ref {
        display: none;
    }

    .dashboard-mockup-wrapper {
        margin-top: 40px;
        padding: 0 8px;
    }

    .dashboard-mockup {
        border-radius: 12px;
        padding: 6px;
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .dashboard-mockup-wrapper:hover .dashboard-mockup {
        transform: none;
    }

    /* Trusted logos: wrap and shrink */
    .trusted-by {
        margin-top: 48px;
        padding-top: 28px;
    }

    .trusted-logo {
        max-height: 18px;
    }

    /* About section image height */
    .about-section img.object-fit-cover {
        height: 260px !important;
    }

    /* About floating badge: centered at bottom */
    .about-floating-badge {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        bottom: -22px !important;
    }

    /* CTA section */
    .cta-gradient-card {
        padding: 2.5rem 1.25rem !important;
        border-radius: 1.5rem !important;
    }

    .cta-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .display-3 {
        font-size: 1.85rem !important;
    }

    /* Feature cards: consistent padding */
    .feature-card {
        padding: 1.5rem !important;
    }

    /* Footer newsletter form: stack on tiny screens */
    .footer .d-flex.position-relative {
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 0.75rem !important;
    }

    .footer .d-flex.position-relative .btn {
        border-radius: 0.5rem !important;
        width: 100%;
    }

    .footer .d-flex.position-relative input {
        border-radius: 0.5rem !important;
    }
}

/* Extra small phones */
@media (max-width: 479.98px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-section .lead {
        font-size: 1rem !important;
    }

    .btn-purple,
    .btn-outline-custom {
        padding: 0.75rem 2rem !important;
        font-size: 0.95rem;
    }

    .avatar-stack img,
    .avatar-stack div {
        width: 36px !important;
        height: 36px !important;
        margin-left: -12px !important;
    }

    /* Trusted logos: even tighter */
    .trusted-by .d-flex {
        gap: 1rem !important;
    }

    .trusted-logo {
        max-height: 15px;
    }
}


/* ============================================================
   FEATURES PAGE — RESPONSIVE FIXES
   ============================================================ */

/* ---- Features Hero ---- */
@media (max-width: 767.98px) {
    .features-hero {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .features-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
    }

    .features-hero p {
        font-size: 1rem !important;
    }

    .features-hero .d-flex.gap-3 {
        gap: 0.75rem !important;
    }

    /* Hero CTA buttons: full width on small phones */
    .features-hero .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 479.98px) {
    .features-hero {
        padding-top: 88px !important;
        padding-bottom: 40px !important;
    }

    .hero-badge {
        font-size: 0.75rem !important;
        padding: 6px 14px !important;
    }
}

/* ---- Feature Tabs Section ---- */
@media (max-width: 991.98px) {
    .feature-tabs-section {
        padding: 60px 0 !important;
    }

    /* Tabs: no translateX slide on mobile since layout is stacked */
    .feat-tab-btn:hover,
    .feat-tab-btn.active {
        transform: none !important;
    }

    /* Scrollable horizontal tab bar on tablet */
    .feat-tab-buttons-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .feat-tab-buttons-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Make each tab button inline / compact for horizontal scroll */
    .feat-tab-btn {
        min-width: 180px;
        flex-shrink: 0;
        margin-bottom: 0 !important;
        border-radius: 12px !important;
    }

    .feature-tab-content {
        margin-top: 20px;
        padding: 28px 24px !important;
    }
}

@media (max-width: 767.98px) {
    .feature-tab-content {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    .feat-tab-btn {
        min-width: 160px;
        padding: 14px 16px !important;
    }

    .tab-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.95rem !important;
    }

    .tab-title {
        font-size: 0.85rem !important;
    }

    .tab-desc {
        display: none;
        /* hide sub-text on small phones — too cramped */
    }

    .tab-content-icon {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.3rem !important;
        border-radius: 14px !important;
    }

    .feature-point {
        margin-bottom: 12px !important;
    }
}

/* ---- All Features Grid ---- */
@media (max-width: 991.98px) {
    .all-features-section {
        padding: 70px 0 !important;
    }
}

@media (max-width: 767.98px) {
    .all-features-section {
        padding: 50px 0 !important;
    }

    .feat-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }

    .feat-card-icon {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.15rem !important;
        border-radius: 12px !important;
    }

    .feat-card h5 {
        font-size: 0.97rem !important;
    }
}

/* ---- Comparison Table ---- */
@media (max-width: 991.98px) {
    .comparison-section {
        padding: 70px 0 !important;
    }

    /* Make table horizontally scrollable */
    .compare-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .compare-table {
        min-width: 560px;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
}

@media (max-width: 767.98px) {
    .comparison-section {
        padding: 50px 0 !important;
    }

    .compare-table thead th {
        padding: 16px 14px !important;
        font-size: 0.82rem !important;
    }

    .compare-table tbody td {
        padding: 14px 14px !important;
        font-size: 0.85rem !important;
    }
}

/* ---- Integrations Section ---- */
.integrations-section {
    padding: 100px 0;
    background: #fff;
}


@media (max-width: 991.98px) {
    .integrations-section {
        padding: 70px 0 !important;
    }
}

@media (max-width: 767.98px) {
    .integrations-section {
        padding: 50px 0 !important;
    }

    .integration-pill {
        font-size: 0.82rem !important;
        padding: 9px 16px !important;
        margin: 4px !important;
    }
}

@media (max-width: 479.98px) {
    .integration-pill {
        font-size: 0.78rem !important;
        padding: 8px 12px !important;
        gap: 7px !important;
    }

    .integration-pill i {
        font-size: 0.95rem !important;
    }
}

/* ---- Section common: fluid headings ---- */
@media (max-width: 767.98px) {
    .section-title-lg {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    .section-desc {
        font-size: 0.97rem !important;
    }

    .section-eyebrow {
        font-size: 0.75rem !important;
    }

    .navbar.fixed-top {
        position: sticky;
    }
}

@media(max-width:575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* -------------------------------
   Global responsive fixes for all pages
   ------------------------------- */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

img,
video,
iframe,
svg,
.img-fluid {
    max-width: 100%;
    height: auto;
}

section,
.container,
.row,
.card,
.feature-card,
.dashboard-mockup {
    word-wrap: break-word;
}

.navbar-nav .nav-link {
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0.5rem;
    }

    .btn-purple,
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .hero-section .lead,
    .section-desc,
    .text-muted-custom {
        font-size: 0.95rem;
    }

    .about-section img.object-fit-cover,
    .dashboard-mockup,
    .feature-card,
    .blog-card {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }

    .section-title h2,
    .display-5 {
        font-size: clamp(1.35rem, 7vw, 2rem);
    }

    .row>[class*="col-"] {
        width: 100%;
        max-width: 100%;
    }

    .back-to-top-btn {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================================
   PAGE-SPECIFIC MIGRATED STYLES
   ========================================================================== */

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.about-hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(93, 69, 253, 0.04) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.04) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(242, 169, 0, 0.03) 0px, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 94, 119, 0.08);
    border: 1px solid rgba(25, 94, 119, 0.2);
    color: #195E77;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto 20px;
}

.about-hero p {
    font-size: 1.15rem;
    color: #64748B;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.stats-bar {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-item .stat-number span {
    color: #195E77;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
    margin-top: 6px;
}

.mission-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.integrations-section .section-eyebrow,
.comparison-section .section-eyebrow,
.all-features-section .section-eyebrow,
.feature-tabs-section .section-eyebrow,
.team-section .section-eyebrow,
.values-section .section-eyebrow,
.mission-section .section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.integrations-section .section-title-lg,
.comparison-section .section-title-lg,
.feature-tabs-section .section-title-lg,
.all-features-section .section-title-lg,
.team-section .section-title,
.values-section .section-title,
.mission-section .section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.integrations-section .section-desc,
.comparison-section .section-desc,
.all-features-section .section-desc,
.feature-tabs-section .section-desc,
.team-section .section-desc,
.values-section .section-desc,
.mission-section .section-desc {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.8;
}

.bg-purple-soft {
    background: rgba(25, 94, 119, 0.08);
    color: #195E77;
}

.bg-green-soft {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
}

.bg-pink-soft {
    background: rgba(236, 72, 153, 0.08);
    color: #EC4899;
}

.value-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.value-card p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.mission-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.mission-img-wrapper img {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.mission-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.values-section {
    padding: 100px 0;
    background: #fff;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(25, 94, 119, 0.1);
    border-color: rgba(25, 94, 119, 0.15);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(25, 94, 119, 0.1);
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 24px;
}

.team-card h6 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.85rem;
    color: #195E77;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #F1F5F9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 6px;
}

.team-social a:hover {
    background: #195E77;
    color: white;
}

.about-cta {
    padding: 100px 0;
    background: #103F50;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

/* ===== BLOG SPECIFIC STYLES ===== */
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: none;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 4px;
    transition: all 0.3s ease;
    background: #f8fafc;
    padding: 0;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(25, 94, 119, 0.2);
}

.pagination .page-item .page-link:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(25, 94, 119, 0.2);
}

:root {
    --blog-primary: #195E77;
    --blog-secondary: #103F50;
    --blog-accent: #F2A900;
    --blog-light-bg: #f8fafc;
}

.blog-header-section {
    padding: 160px 0 40px;
}

.blog-header-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--blog-secondary);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.category-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--blog-primary);
    color: var(--blog-primary);
}

.filter-btn.active {
    background: var(--blog-secondary);
    color: #fff;
    border-color: var(--blog-secondary);
}

.featured-horizontal {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    border: 1px solid #f1f5f9;
    margin-bottom: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.featured-h-img {
    width: 55%;
    height: 480px;
}

.featured-h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.featured-h-content {
    width: 45%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-h-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--blog-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-h-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-read-more {
    background: var(--blog-secondary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.3s ease;
}

.btn-read-more:hover {
    opacity: 0.9;
    color: #fff;
}

.btn-alt:hover {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 40px;
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--blog-primary);
    border-radius: 50%;
}

.grid-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blog-secondary);
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.post-card {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card-img {
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    margin-bottom: 20px;
}

.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--blog-secondary);
    margin-bottom: 12px;
}

.post-card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== BLOG DETAIL SPECIFIC STYLES ===== */
.detail-hero {
    padding-top: 180px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    text-align: center;
}

.breadcrumb-custom {
    display: inline-block;
    background: rgba(25, 94, 119, 0.08);
    color: #195E77;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.post-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #103F50;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #64748B;
    font-weight: 600;
}

.post-meta-detail img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.featured-image-wide {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.content-column h2 {
    font-weight: 800;
    color: #103F50;
    margin-top: 50px;
    margin-bottom: 25px;
}

.content-column p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.blockquote-custom {
    border-left: 5px solid #195E77;
    padding: 30px 40px;
    background: #f8fafc;
    border-radius: 0 20px 20px 0;
    font-style: italic;
    font-size: 1.5rem;
    color: #103F50;
    margin: 50px 0;
    font-weight: 600;
}

.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-weight: 800;
    color: #103F50;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.latest-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
}

.latest-post-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.latest-post-info h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #103F50;
    margin-bottom: 5px;
}

.latest-post-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.related-section {
    padding: 100px 0;
    background: #f8fafc;
}

.blog-card {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
:root {
    --contact-primary: #195E77;
    --contact-secondary: #103F50;
    --contact-accent: #F2A900;
}

.portal-wrapper {
    padding-top: 100px;
    background: #f8fafc;
    min-height: 100vh;
}

.split-container {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08);
    margin-bottom: 100px;
}

.info-panel {
    background: var(--contact-secondary);
    color: #fff;
    padding: 80px 60px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(25, 94, 119, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.info-panel h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    line-height: 1.1;
}

.info-panel p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 50px;
}

.contact-item-portal {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.contact-item-portal:hover {
    transform: translateX(10px);
}

.portal-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--contact-accent);
}

.portal-text h5 {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 1rem;
}

.portal-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.form-panel {
    padding: 80px 80px;
    background: #fff;
}

.form-panel h2 {
    font-weight: 800;
    color: var(--contact-secondary);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.form-floating-custom {
    margin-bottom: 30px;
    position: relative;
}

.form-floating-custom label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px 20px;
    pointer-events: none;
    transition: all 0.3s ease;
    color: #64748B;
    font-weight: 500;
}

.input-portal {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #F1F5F9;
    background: #F8FAFC;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-portal:focus {
    border-color: var(--contact-primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(25, 94, 119, 0.08);
}

.btn-portal-send {
    background: var(--contact-primary);
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.btn-portal-send:hover {
    background: var(--contact-secondary);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(16, 63, 80, 0.15);
}

/* ===== FEATURES PAGE SPECIFIC STYLES ===== */
.features-hero {
    padding: 180px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.fhero-blob-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 94, 119, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.fhero-blob-2 {
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 94, 119, 0.08);
    color: #195E77;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.features-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #103F50;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-hero p {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.feature-tabs-section {
    padding: 100px 0;
    background: #f8fafc;
}

.feat-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(25, 94, 119, 0.1);
    border-color: rgba(25, 94, 119, 0.12);
}

.feat-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.feat-card p {
    color: #64748B;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.feat-tab-btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.feat-tab-btn.active {
    border-color: #195E77;
    box-shadow: 0 20px 40px rgba(25, 94, 119, 0.06);
    background: #fff;
    /* transform: translateX(15px); */
}

.feat-tab-btn .tab-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: #64748B;
    transition: all 0.3s ease;
}

.feat-tab-btn.active .tab-icon {
    background: #195E77;
    color: #fff;
}

.feat-tab-btn .tab-title {
    font-weight: 800;
    color: #103F50;
    margin-bottom: 4px;
}

.feat-tab-btn .tab-desc {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 0;
}

.feature-tab-content {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    height: 100%;
    display: none;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
}

.feature-tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.tab-content-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.feature-point {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.point-dot {
    width: 24px;
    height: 24px;
    background: rgba(25, 94, 119, 0.1);
    color: #195E77;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.all-features-section {
    padding: 100px 0;
    background: #fff;
}

.feat-card {
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feat-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.feat-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.comparison-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.compare-table thead th:first-child {
    border-radius: 0;
    background: #103F50;
}

.compare-table thead th {
    background: #195E77;
    color: #fff;
    font-weight: 700;
    padding: 22px 20px;
    font-size: 0.95rem;
    border: none;
}

.compare-table tbody td {
    padding: 18px 20px;
    color: #0F172A;
    font-size: 0.92rem;
    vertical-align: middle;
    border: none;
}

.compare-table tbody td:first-child {
    font-weight: 600;
    color: #0F172A;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.compare-table th {
    padding: 30px;
    background: #f8fafc;
    font-weight: 800;
    color: #103F50;
    border-bottom: 2px solid #eef2f6;
}

.compare-table td {
    padding: 24px 30px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.check-yes {
    color: #10B981;
    font-size: 1.2rem;
}

.check-no {
    color: #EF4444;
    font-size: 1.2rem;
}

.integration-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 100px;
    margin: 8px;
    font-weight: 700;
    color: #475569;
}

/* ==========================================================================
   UTILITY CLASSES (REPLACING INLINE STYLES)
   ========================================================================== */

/* Navbar & Brand */
.nav-logo-size {
    max-height: 45px;
}

.footer-logo-size {
    max-height: 50px;
}

.navbar-toggler-icon-color {
    color: var(--primary-color);
}

/* Layout & Sizing */
.max-w-600 {
    max-width: 600px;
}

.max-w-540 {
    max-width: 540px;
}

.max-w-520 {
    max-width: 520px;
}

.section-desc-max-w {
    max-width: 540px;
}

/* Colors & Backgrounds */
.bg-warning-light {
    background: rgba(242, 169, 0, 0.1);
}

.text-muted-custom {
    color: #64748B;
}

/* Dashboard Mockup Elements */
.dash-glow {
    top: -10%;
    left: -10%;
    filter: blur(60px);
    opacity: 0.6;
}

.dash-img-h {
    height: 400px;
}

.dash-cta-pos {
    bottom: 20px;
    right: -20px;
}

.icon-box-40 {
    width: 40px;
    height: 40px;
}

.icon-box-50 {
    width: 50px;
    height: 50px;
}

.icon-box-60 {
    width: 60px;
    height: 60px;
}

/* Featured Content */
.eyebrow-accent {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.features-section-bg {
    background-color: #F8FAFC;
}

/* Profile/Avatar Stack */
.avatar-stack-item {
    width: 45px;
    margin-left: -15px;
}

.avatar-stack-counter {
    width: 45px;
    height: 45px;
    margin-left: -15px;
    font-size: 0.8rem;
    z-index: 5;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Trusted Logos */
.trusted-logo-default {
    height: 25px;
    filter: grayscale(1) opacity(0.6);
}

.trusted-logo-slack {
    height: 30px;
    filter: grayscale(1) opacity(0.6);
}

.trusted-logo-oracle {
    height: 20px;
    filter: grayscale(1) opacity(0.6);
}

/* Social Icons */
.social-icon-size {
    width: 40px;
    height: 40px;
}

/* Mission/Checklist elements */
.mission-trophy-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(93, 69, 253, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-trophy-icon {
    color: #5D45FD;
    font-size: 1.3rem;
}

.mission-badge-title {
    color: #0F172A;
    font-size: 1rem;
}

.mission-badge-subtitle {
    color: #64748B;
    font-size: 0.8rem;
}

.checklist-icon-purple {
    width: 36px;
    height: 36px;
    background: rgba(93, 69, 253, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-check-purple {
    color: #5D45FD;
    font-size: 0.9rem;
}

.checklist-icon-green {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-check-green {
    color: #10B981;
    font-size: 0.9rem;
}

.checklist-icon-orange {
    width: 36px;
    height: 36px;
    background: rgba(242, 169, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-check-orange {
    color: #F2A900;
    font-size: 0.9rem;
}

.checklist-strong {
    color: #0F172A;
}

.checklist-text {
    color: #64748B;
    font-size: 0.9rem;
}

.team-card-img-overflow {
    overflow: hidden;
}

/* Blog Details specific */
.blog-card-min-h {
    min-height: 380px;
}

/* Custom colors mapped from specific pages */
.bg-blue-soft {
    background: rgba(25, 94, 119, 0.08);
    color: #195E77;
}

.bg-orange-soft {
    background: rgba(242, 169, 0, 0.1);
    color: #D99700;
}

.bg-teal-soft {
    background: rgba(20, 184, 166, 0.08);
    color: #14B8A6;
}

.bg-violet-soft {
    background: rgba(139, 92, 246, 0.08);
    color: #8B5CF6;
}

.bg-red-soft {
    background: rgba(239, 68, 68, 0.08);
    color: #EF4444;
}

.bg-indigo-soft {
    background: rgba(79, 70, 229, 0.08);
    color: #4F46E5;
}

.text-color-dark {
    color: #103F50;
}

.tab-content-text {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Navbar scroll helper */
.navbar.scrolled {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 0 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   CONTACT FORM 7 GLOBALS AND FOOTER OVERRIDES
   ============================================================ */

/* Force CF7 form control wrap to grow in a flex layout */
.d-flex .wpcf7-form-control-wrap {
    flex-grow: 1;
    width: 100%;
}

/* Specific alignments for the footer CF7 form */
.footer .wpcf7-spinner {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.footer .wpcf7-response-output {
    position: absolute;
    bottom: -50px;
    left: 0;
    margin: 0 !important;
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem !important;
    border-radius: 4px;
    margin-top: 12px !important;
}

.footer .wpcf7-not-valid-tip {
    position: absolute;
    top: 50px;
    left: 22px;
}

.footer .wpcf7-response-output {
    position: static;
}