/* ==========================================================================
   Patel Analytics — Main Stylesheet
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    --brand: #17a34a;
    --brand-dark: #0e8038;
    --brand-deep: #0a5c29;
    --brand-soft: #e9f7ef;
    --brand-tint: #f3fbf6;
    --ink: #1c2b3a;
    --ink-soft: #000000;
    --mist: #f4f7f8;
    --mist-deep: #e9eef1;
    --abyss: #0b2531;
    --abyss-2: #0e3140;
    --coral: #e0524d;
    --shadow-card: 0 10px 30px -12px rgb(18 35 48 / 0.14), 0 2px 8px -2px rgb(18 35 48 / 0.06);
    --shadow-card-lg: 0 30px 60px -18px rgb(18 35 48 / 0.22), 0 8px 20px -8px rgb(18 35 48 / 0.1);
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-display: "Sora", "Inter", ui-sans-serif, system-ui, sans-serif;

    /*    ADD THIS */
    --header-h: 76px;
}

/*    ADD THIS — smaller header on mobile */
@media (max-width: 991.98px) {
    :root {
        --header-h: 68px;
    }
}
/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;

    /*    ADD THIS — pushes all pages below fixed header */
    padding-top: var(--header-h);
}

a {
    text-decoration: none;
}

/* ---------- Typography Helpers ---------- */
.font-display {
    font-family: var(--font-display);
}

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

.text-brand-deep {
    color: var(--brand-deep) !important;
}

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

.text-ink-soft {
    color: var(--ink-soft) !important;
}

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

/* ---------- Background Helpers ---------- */
.bg-brand {
    background-color: var(--brand) !important;
}

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

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

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

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

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

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

/* ---------- Border Helpers ---------- */
.border-mist {
    border-color: var(--mist) !important;
}

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

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

/* ---------- Shadow Helpers ---------- */
.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-card-lg {
    box-shadow: var(--shadow-card-lg);
}

.rounded-xl2 {
    border-radius: 1rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
#siteHeader {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(6px);
    transition: box-shadow .3s ease;
    height: var(--header-h);          /*    was 76px */
}

#siteHeader.scrolled {
    box-shadow: 0 6px 24px -12px rgb(18 35 48 / .18);
}

.header-inner {
    height: var(--header-h);          /*    was 76px */
}

#siteHeader.scrolled {
    box-shadow: 0 6px 24px -12px rgb(18 35 48 / .18);
}

/*.header-inner {
    height: 76px;
}*/

.navbar-brand-lockup {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.navbar-brand-lockup:hover .logo-mark {
    transform: scale(1.05);
}

.brand-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    line-height: 1;
    display: block;
}

.brand-sub {
    font-size: 8.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--brand);
    display: block;
    margin-top: 4px;
}

.nav-link-custom {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    position: relative;
    padding: .4rem 0;
    transition: color .2s ease;
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.nav-link-custom:hover {
    color: var(--ink);
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
}

.btn-login {
    border-radius: 999px;
    border: 1px solid var(--mist-deep);
    padding: .5rem 1.25rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    transition: all .2s ease;
}

.btn-login:hover {
    border-color: rgba(28, 43, 58, .3);
    background: var(--mist);
    color: var(--ink);
}

.btn-demo {
    border-radius: 999px;
    padding: .6rem 1.25rem;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 8px 20px -8px rgb(23 163 74 / .55);
    transition: all .2s ease;
    border: none;
}

.btn-demo:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
    color: #fff;
}

.mobile-menu {
    border-color: var(--mist);
    background: #fff;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}
.bg-dots {
    position: absolute;
    inset: 0;
    opacity: .6;
    background-image: radial-gradient(rgb(23 163 74 / .16) 1px, #eff9f3 1px);
    background-size: 14px 14px;
    -webkit-mask-image: radial-gradient(80% 80% at 60% 30%, black, transparent);
    mask-image: radial-gradient(80% 80% at 60% 30%, black, transparent);
}




/* ---------- About / Technology Section ---------- */
.about-section-bg {
    background-image: url('../images/Mask group-9.42097c34.png');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--mist); /* fallback */
}

/* Mobile fix — iOS par fixed attachment kaam nahi karta */
@media (max-width: 991px) {
    .about-section-bg {
        background-attachment: scroll;
    }
}



.bg-dots-faint {
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: radial-gradient(rgb(28 43 58 / .08) 1px, transparent 1px);
    background-size: 16px 16px;
}

.hero-blob {
    position: absolute;
    left: -8rem;
    top: 6rem;
    height: 18rem;
    width: 18rem;
    border-radius: 50%;
    background: rgba(23, 163, 74, .1);
    filter: blur(64px);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--brand);
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 54px;  font-weight: 600;
    }
}

.hero-label {
    font-size: 14px;
}

.hero-credit {
    font-size: 15px;
}

.hero-description {
    max-width: 28rem;
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn-dark-cta {
    border-radius: .6rem;
    padding: .75rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 10px 24px -10px rgb(28 43 58/.5);
    transition: all .2s ease;
    border: none;
}

.btn-dark-cta:hover {
    transform: translateY(-2px);
    background: var(--abyss);
    color: #fff;
}

.btn-brand-cta {
    border-radius: .6rem;
    padding: .75rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 10px 24px -10px rgb(23 163 74/.6);
    transition: all .2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-brand-cta:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
    color: #fff;
}

.btn-brand-cta svg {
    transition: transform .2s ease;
}

.btn-brand-cta:hover svg {
    transform: translateX(4px);
}

/* ---------- Hero Mock Cards ---------- */
.mock-card {
    border: 1px solid var(--mist-deep);
    border-radius: .75rem;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.mock-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--mist);
    padding: .75rem 1rem;
}

.mock-card-header-simple {
    border-bottom: 1px solid var(--mist);
    padding: .75rem 1rem;
}

.mock-card-title {
    font-size: 11.5px;
}

.mock-card-clear {
    font-size: 10px;
    letter-spacing: .03em;
    text-decoration: none;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border-radius: .375rem;
    background: var(--brand-soft);
    padding: .125rem .5rem;
    font-size: 9px;
    font-weight: 700;
    color: var(--brand-deep);
}

.mock-item {
    padding: .75rem 1rem;
    border-top: 1px solid var(--mist);
    transition: background .2s ease;
}

.mock-item:hover {
    background: var(--brand-tint);
}

.mock-item:first-child {
    border-top: none;
}

.mock-item-remove {
    color: var(--mist-deep);
}

.mock-item-title {
    font-size: 10.5px;
}

.mock-item-label {
    font-size: 9px;
    letter-spacing: .03em;
}

.mock-item-desc {
    font-size: 9px;
    line-height: 1.6;
    opacity: .8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mock-toggle-row {
    padding: .75rem 1rem .25rem;
}

.mock-toggle-btn {
    font-size: 10.5px;
    text-decoration: none;
}

.mock-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--mist-deep);
}

.mock-radio-active {
    border-color: var(--brand);
}

.mock-radio-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    display: block;
}

.mock-table-head {
    font-size: 9px;
    letter-spacing: .03em;
    padding: .75rem 1rem .5rem;
}

.mock-col-class {
    width: 4rem;
}

.mock-table-body {
    border-top: 1px solid var(--mist);
}

.mock-table-row {
    padding: .6rem 1rem;
    border-top: 1px solid var(--mist);
}

.mock-table-code {
    width: 4rem;
    font-family: monospace;
    font-size: 10px;
}

.mock-table-text {
    font-size: 9px;
    line-height: 1.6;
}

/* ---------- Edge Laptop ---------- */
.edge-laptop {
    position: absolute;
    right: -6rem;
    top: 3.5rem;
    width: 460px;
    display: none;
    pointer-events: none;
}

@media (min-width: 1280px) {
    .edge-laptop {
        display: block;
    }
}

.edge-laptop-frame {
    border-radius: 1rem 1rem 0 0;
    border: 4px solid rgba(28, 43, 58, .8);
    background: var(--ink);
    padding: .5rem;
}

.edge-laptop-screen {
    height: 14rem;
    overflow: hidden;
    border-radius: .5rem;
    background: var(--abyss);
    background-image: linear-gradient(120deg, rgba(23, 163, 74, .25), rgba(14, 49, 64, .4) 60%);
}

.edge-laptop-base {
    margin: 0 auto;
    height: .75rem;
    width: 110%;
    transform: translateX(-4.5%);
    border-radius: 0 0 .75rem .75rem;
    background: rgba(28, 43, 58, .7);
}

/* ---------- Skeleton Bars (Laptop Screen) ---------- */
.skeleton-line {
    height: 12px;
}

.skeleton-line-1 {
    width: 128px;
    background: rgba(255, 255, 255, .25);
}

.skeleton-line-2 {
    width: 192px;
    background: rgba(255, 255, 255, .15);
}

.skeleton-panel {
    background: rgba(255, 255, 255, .1);
}

.skeleton-green {
    height: 10px;
    width: 96px;
    background: rgba(23, 163, 74, .7);
}

.skeleton-light {
    height: 10px;
}

.skeleton-bar-2 {
    width: 160px;
    background: rgba(255, 255, 255, .25);
}

.skeleton-bar-3 {
    width: 128px;
    background: rgba(255, 255, 255, .2);
}

.skeleton-bar-col {
    width: 16px;
    background: rgba(23, 163, 74, .6);
    border-radius: 2px 2px 0 0;
}

.skeleton-bar-col-1 { height: 23px; }
.skeleton-bar-col-2 { height: 37px; }
.skeleton-bar-col-3 { height: 27px; }
.skeleton-bar-col-4 { height: 48px; }
.skeleton-bar-col-5 { height: 33px; }
.skeleton-bar-col-6 { height: 55px; }
.skeleton-bar-col-7 { height: 42px; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(6px, -8px); }
    66% { transform: translate(-5px, 5px); }
}

.animate-float-soft {
    animation: float-soft 5s ease-in-out infinite;
}

.animate-drift {
    animation: drift 7s ease-in-out infinite;
}

@keyframes swap-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.swap-in {
    animation: swap-in .5s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes bar-grow {
    from {
        transform: scaleX(.2);
        opacity: .4;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.mock-bar {
    transform-origin: left center;
    animation: bar-grow 1.6s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes slide-fade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-enter {
    animation: slide-fade .55s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes wave-dash {
    to { stroke-dashoffset: -1200; }
}

.wave-line {
    stroke-dasharray: 260 940;
    animation: wave-dash 14s linear infinite;
}

.wave-line-slow {
    stroke-dasharray: 200 1000;
    animation: wave-dash 22s linear infinite reverse;
}

/* ==========================================================================
   Reveal on Scroll
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-scale { transform: scale(.94); }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   Tools Section
   ========================================================================== */
.section-pad {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.section-divider {
    height: 4px;
    width: 3.5rem;
}

.section-divider-sm {
    height: 4px;
    width: 3rem;
}

.section-heading {
    max-width: 48rem;
    font-size: 26px;
    letter-spacing: -.01em;
    line-height: 1.35;
}

.section-heading-sm {
    font-size: 30px;
    letter-spacing: -.01em;
    line-height: 1.3;
}

.section-subheading {
    max-width: 42rem;
    font-size: 14.5px;
    line-height: 1.7;
}

.section-body {
    max-width: 28rem;
    font-size: 14.5px;
    line-height: 1.7;
}

.section-body-sm {
    max-width: 24rem;
    font-size: 14.5px;
    line-height: 1.7;
}

.pill-btn {
    border-radius: 999px;
    border: 1px solid var(--mist-deep);
    background: #fff;
    color: var(--ink-soft);
    padding: .6rem 1.25rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: all .3s ease;
}

.pill-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 163, 74, .5);
    color: var(--brand-deep);
}

.pill-btn.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgb(23 163 74/.6);
}

.lift {
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-lg);
}

.icon-circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--mist-deep);
    color: var(--ink-soft);
    transition: all .2s ease;
    background: #fff;
}

.card-hover-target:hover .icon-circle-btn {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.product-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    flex-shrink: 0;
}

/* ==========================================================================
   Tool Laptop Mock
   ========================================================================== */
.tool-laptop-wrap {
    position: relative;
    margin: 0 auto;
    max-width: 420px;
}

.tool-laptop-frame {
    border-radius: .75rem .75rem 0 0;
    border: 5px solid var(--ink);
    border-bottom: none;
    background: var(--ink);
    padding: .375rem .375rem 0;
}

.tool-laptop-screen {
    overflow: hidden;
    border-radius: .375rem;
    background: #fff;
    display: flex;
}

.tool-sidebar {
    width: 88px;
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    gap: .5rem;
    background: var(--mist);
    padding: .5rem;
}

@media (min-width: 576px) {
    .tool-sidebar { display: flex; }
}

.tool-sidebar-item {
    border-radius: .25rem;
    padding: .25rem .375rem;
    font-size: 7px;
    font-weight: 600;
    color: var(--ink-soft);
}

.tool-sidebar-item.active {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

.tool-main {
    flex: 1;
    padding: .625rem;
}

.tool-search-bar {
    display: flex;
    align-items: center;
    gap: .375rem;
    border-radius: .375rem;
    border: 1px solid var(--mist-deep);
    background: #fff;
    padding: .375rem .5rem;
}

.tool-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    border-radius: .375rem;
    border: 1px solid var(--mist);
    background: #fff;
    padding: .375rem .5rem;
    margin-top: .375rem;
}

.tool-claim-panel {
    width: 86px;
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    gap: .25rem;
    border-left: 1px solid var(--mist);
    background: var(--brand-tint);
    padding: .5rem;
}

@media (min-width: 768px) {
    .tool-claim-panel { display: flex; }
}

.tool-laptop-base {
    margin: 0 auto;
    height: .625rem;
    width: 112%;
    transform: translateX(-5%);
    border-radius: 0 0 .5rem .5rem;
    background: rgba(28, 43, 58, .8);
}

/* ==========================================================================
   Technology Section
   ========================================================================== */
.chip-card {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    border-radius: .75rem;
    border: 1px solid var(--mist-deep);
    background: #fff;
    padding: .6rem 1rem;
    box-shadow: var(--shadow-card);
    transition: transform .3s ease, box-shadow .3s ease;
}

.chip-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-card-lg);
}

.chip-label {
    font-size: 12px;
}

.chip-label-lg {
    font-size: 15px;
}

.chip-cluster {
    position: relative;
    margin: 0 auto;
    height: 420px;
    width: 100%;
    max-width: 560px;
    display: none;
}

@media (min-width: 992px) {
    .chip-cluster { display: block; }
    .chip-wrap-mobile { display: none !important; }
}

.chip-wrap-mobile {
    max-width: 36rem;
}

.chip-pos {
    position: absolute;
}

.chip-pos-1  { left: 16%; top: 0%; }
.chip-pos-2  { left: 72%; top: 3%; }
.chip-pos-3  { left: 0%;  top: 20%; }
.chip-pos-4  { left: 55%; top: 17%; }
.chip-pos-5  { left: 27%; top: 33%; }
.chip-pos-6  { left: 80%; top: 36%; }
.chip-pos-7  { left: 3%;  top: 45%; }
.chip-pos-8  { left: 59%; top: 49%; }
.chip-pos-9  { left: 26%; top: 57%; }
.chip-pos-10 { left: 79%; top: 57%; }
.chip-pos-11 { left: 47%; top: 68%; }
.chip-pos-12 { left: 8%;  top: 74%; }
.chip-pos-13 { left: 57%; top: 80%; }

.tech-readmore {
    font-size: 13.5px;
}

.tech-readmore-arrow {
    display: inline-block;
    transition: transform .2s ease;
}

/* ==========================================================================
   Why Patel Section
   ========================================================================== */
.feature-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .5rem;
    background: var(--brand-soft);
    color: var(--brand-deep);
    transition: all .3s ease;
}

.feature-group:hover .feature-icon-wrap {
    transform: scale(1.1);
    background: var(--brand);
    color: #fff;
}

.feature-title {
    font-size: 15px;
    line-height: 1.4;
}

.feature-text {
    font-size: 13px;
    line-height: 1.7;
}

.fingerprint-img {
    width: 420px;
    max-width: 100%;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
    padding: 2rem 2rem 0;
    background: #fff;
    position: relative;
}

/* Quote icon */
.testimonial-quote-icon {
    display: block;
    margin-bottom: 0.5rem;
}

/* Slides container */
.testimonial-slides {
    position: relative;
    margin-top: 0.5rem;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: testiFadeIn 0.45s ease both;
}

@keyframes testiFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Quote text */
.testimonial-quote {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    color: var(--ink);
    margin: 0 0 1.5rem;
    min-height: 70px;
}

/* Meta row (author + controls) */
.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--mist-deep);
    padding: 1.25rem 0 1.75rem;
}

/* Author block */
.testimonial-author {
    line-height: 1.4;
}

.testimonial-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.testimonial-company {
    font-size: 12px;
    color: var(--ink-soft);
    margin: 0.15rem 0 0;
}

/* Controls block (counter + buttons) */
.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-counter {
    font-family: 'Inter', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}

.testimonial-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Nav buttons (circular, matches screenshot) */
.testi-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--brand);
    color: var(--brand);
    background: #fff;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    transition: all .2s ease;
}

.testi-nav-btn:hover {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.testi-nav-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-section-wrap {
    padding-bottom: 5rem;
    padding-top: 1rem;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--abyss);
    padding: 4rem 1.5rem;
    box-shadow: 0 40px 80px -30px rgb(11 37 49/.5);
}

@media (min-width: 576px) {
    .cta-banner { padding: 4rem 3rem; }
}

@media (min-width: 992px) {
    .cta-banner { padding: 5rem 3rem; }
}

.cta-blob {
    position: absolute;
    right: -6rem;
    top: -6rem;
    height: 18rem;
    width: 18rem;
    border-radius: 50%;
    background: rgba(23, 163, 74, .15);
    filter: blur(64px);
}

.cta-content {
    max-width: 42rem;
}

.cta-heading {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.cta-subheading {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
}

.btn-outline-cta {
    border-radius: .6rem;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: .75rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: all .2s ease;
    background: transparent;
}

.btn-outline-cta:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--abyss);
}

/* ==========================================================================
   Footer
   ========================================================================== */





/* ==========================================================================
   Footer — Matches screenshot exactly
   ========================================================================== */

footer {
    position: relative;
    background: var(--mist);
    background-image: url('../images/footer_bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
}

/* Optional soft overlay so text stays readable */
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(244, 247, 248, 0.85); /* light overlay */
    pointer-events: none;
    z-index: 0;
}

/* Make sure footer content sits above the overlay */
footer > * {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 3.5rem 0 2.5rem;
}

/* ---------- Logo ---------- */
.footer-logo {
    display: block;
    max-height: 40px;
    width: auto;
}

/* ---------- About paragraph ---------- */
.footer-about {
    max-width: 23rem;
    margin: 1.5rem 0 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--ink-soft);
}
/* ---------- LinkedIn icon ---------- */
.footer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 1.75rem;
    border-radius: 5px;
    background: #0a66c2;
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    transition: background .2s ease;
}

.footer-linkedin:hover {
    background: #004182;
    color: #ffffff;
}

/* ---------- Headings ---------- */
.footer-heading {
    margin: 0 0 1rem;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.footer-heading-gap {
    margin-top: 2rem;
}

/* ---------- Lists ---------- */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    /* margin-bottom: 0.55rem; */
    line-height: 1.5;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

/* ---------- Links ---------- */
.footer-link {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-link:hover {
    color: var(--brand-deep);
    text-decoration: none;
}

/* ---------- Location block ---------- */
.footer-location {
    margin-top: 1.75rem;
}

.footer-location:first-of-type {
    margin-top: 1rem;
}

.footer-flag {
    display: block;
    width: 42px;
    height: auto;
    margin-bottom: 0.85rem;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

.footer-location-name {
    margin: 0 0 0.5rem;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.footer-location-text {
    margin: 0 0 0.35rem;
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.footer-location-text:last-child {
    margin-bottom: 0;
}

.footer-location-link {
    display: block;
    margin: 0.35rem 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-location-link:hover {
    color: var(--brand-deep);
}

/* ---------- Bottom bar ---------- */
.footer-bottom-bar {
    border-top: 1px solid var(--mist-deep);
    background-color: #e5ebed;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.footer-copyright,
.footer-privacy {
    margin: 0;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-soft);
}

/* ---------- Anchor helper ---------- */
.anchor-anchor {
    display: block;
    height: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .footer-top {
        padding: 2.5rem 0 1.75rem;
    }
    .footer-about {
        max-width: 100%;
    }
    .footer-logo {
        max-height: 34px;
    }
    .footer-location {
        margin-top: 1.5rem;
    }
}



/* ==========================================================================
   Back to Top
   ========================================================================== */
#backToTop {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    border: none;
    box-shadow: 0 14px 30px -10px rgb(23 163 74/.7);
    transition: all .3s ease;
    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
}

#backToTop.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#backToTop:hover {
    transform: translateY(-4px);
    background: var(--brand-dark);
}

/* ==========================================================================
   Scroll Progress
   ========================================================================== */
#scrollProgress {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1060;
    height: 3px;
    background: transparent;
}

#scrollProgress .bar {
    height: 100%;
    width: 0%;
    background: var(--brand);
    transition: width .15s ease-out;
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}





/* ---------- Hero Mockup Image ---------- */
.hero-mockup-wrap {
    position: relative;
    width: 100%;
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 60px -20px rgba(18, 35, 48, 0.25),
                0 8px 20px -8px rgba(18, 35, 48, 0.1);
}



/* ---------- Technology Image ---------- */
.tech-img-wrap {
    position: relative;
    width: 100%;
}

.tech-section-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-icon-wrap i {
    font-size: 24px;
    line-height: 1;
}.feature-icon-wrap {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-icon-wrap i {
    font-size: 24px;
    line-height: 1;
}


.bg-rowww{
    background-color: #eff4f0;    border-radius: 20px;  padding: 40px;
}


.footerrrrp p{
    font-size: 15px;
}


.mrrrrr{
    margin-right: 80px;
}





/* ==========================================================================
   Careers — Work With Us
   ========================================================================== */

.careers-intro-section {
    background: var(--mist);
    padding: 4rem 0 3.5rem;
}

.careers-intro-title {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.careers-intro-subtitle {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-deep);
    margin: 0 0 1.5rem;
}

.careers-intro-text {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
    max-width: 42rem;
}

.careers-intro-text:last-child {
    margin-bottom: 0;
}

.careers-intro-link {
    color: var(--brand-deep);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.careers-intro-link:hover {
    color: var(--brand);
    text-decoration: underline;
}

/* Right image */
.careers-intro-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-intro-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    object-fit: cover;
}

/* ==========================================================================
   Careers — Current Openings
   ========================================================================== */

.openings-section {
    background: #ffffff;
    padding: 3.5rem 0 5rem;
}

.openings-title {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin: 0 0 0.75rem;
}

.openings-subtitle {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
}

/* ---------- Job Card ---------- */
.job-card {
    background: #ffffff;
    border: 1px solid var(--mist-deep);
    border-radius: 0.9rem;
    padding: 1.5rem 1.5rem 1.75rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 18px 40px -20px rgba(11, 37, 49, .18);
}

/* Card head: title + button */
.job-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.job-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

/* Apply Now button */
.job-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand);
    border-radius: 2rem;
    padding: 0.4rem 1.1rem;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--brand-deep);
    background: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

.job-apply-btn:hover {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
}

/* Job meta list */
.job-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.job-meta-item i {
    font-size: 14px;
    color: var(--ink-soft);
}

.job-meta-item-full {
    flex-basis: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .careers-intro-section {
        padding: 3rem 0 2.5rem;
    }
    .careers-intro-title,
    .openings-title {
        font-size: 22px;
    }
    .careers-intro-subtitle {
        font-size: 16px;
    }
    .openings-section {
        padding: 2.75rem 0 3.5rem;
    }
    .job-card {
        padding: 1.25rem 1.25rem 1.5rem;
    }
    .job-card-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-meta {
        gap: 0.65rem 1.25rem;
    }
}


.careers-intro-section {
    background: var(--mist);
    padding: 4rem 0 3.5rem;
}



/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
    padding: 3.5rem 0 5rem;
    background: #ffffff;
}

/* ---------- Header ---------- */
.contact-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.contact-subtitle {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
}

/* ---------- Left: Locations ---------- */
.contact-locations-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1.25rem;
}

.contact-locations {
    background: #f4f7f8;
    border-radius: 0.9rem;
    padding: 1.75rem 1.5rem;
    height: 100%;
}

.contact-location {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e2e8ec;
}

.contact-location:first-of-type {
    padding-top: 0.5rem;
}

.contact-location:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-flag {
    display: block;
    width: 46px;
    height: auto;
    margin-bottom: 0.75rem;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

.contact-location-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.contact-location-text {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 0.35rem;
}

.contact-location-text:last-child {
    margin-bottom: 0;
}

.contact-location-link {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    margin: 0.35rem 0;
    transition: color .2s ease;
}

.contact-location-link:hover {
    color: var(--brand-deep);
}

.contact-location-phone {
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: color .2s ease;
}

.contact-location-phone:hover {
    color: var(--brand-deep);
}

/* ---------- Right: Form ---------- */
.contact-form-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1.25rem;
}

.contact-form-wrap {
    background: #ffffff;
    border: 1px solid #e2e8ec;
    border-radius: 0.9rem;
    padding: 2rem 1.75rem;
}

.contact-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.contact-label-block {
    margin-bottom: 0.75rem;
}

.req {
    color: #e0524d;
}

.contact-input {
    width: 100%;
    border: 1px solid #e2e8ec;
    border-radius: 0.5rem;
    padding: 0.65rem 0.9rem;
    font-size: 13px;
    color: var(--ink);
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease;
    outline: none;
}

.contact-input::placeholder {
    color: #a8b3bc;
    font-size: 12.5px;
}

.contact-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(23, 163, 74, .12);
}

.contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6b78' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

/* Phone input */
.contact-phone-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #e2e8ec;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-phone-wrap:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(23, 163, 74, .12);
}

.contact-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: #f4f7f8;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    border-right: 1px solid #e2e8ec;
}

.contact-input-phone {
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    flex: 1;
}

.contact-input-phone:focus {
    border: none;
    box-shadow: none;
}

/* Services checkboxes */
.contact-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem 1.5rem;
}

.contact-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 12.5px;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

.contact-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: var(--brand);
    cursor: pointer;
    flex-shrink: 0;
}

.contact-check-inline {
    align-items: center;
    font-size: 12.5px;
    color: var(--ink-soft);
}

/* Submit button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 2rem;
    background: var(--brand);
    color: #ffffff;
    padding: 0.7rem 2rem;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 8px 20px -8px rgba(23, 163, 74, .55);
}

.contact-submit-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(23, 163, 74, .7);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .contact-locations {
        margin-bottom: 1rem;
    }
    .contact-form-wrap {
        padding: 1.5rem 1.25rem;
    }
    .contact-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .contact-title {
        font-size: 24px;
    }
    .contact-services {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 1.25rem 1rem;
    }
}





/* ==========================================================================
   Pricing Section — Matches screenshot exactly
   ========================================================================== */

.pricing-section {
    background: #ffffff;
    padding: 4rem 0 5rem;
}

/* ---------- Header ---------- */
.pricing-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    max-width: 42rem;
    margin: 1.5rem auto 1rem;
    color: var(--ink);
}

.pricing-subtitle {
    font-size: 13.5px;
    line-height: 1.7;
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
    color: var(--ink-soft);
}

.pricing-subtitle strong {
    color: var(--ink);
    font-weight: 700;
}

/* ---------- Pricing Card ---------- */
.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8ec;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -20px rgba(11, 37, 49, .18);
}

/* ---------- Featured (Premium) Card ---------- */
.pricing-card-featured {
    background: #0b2531;
    border-color: #0b2531;
    color: #ffffff;
    box-shadow: 0 30px 60px -25px rgba(11, 37, 49, .55);
}

.pricing-card-featured .pricing-card-name,
.pricing-card-featured .pricing-card-desc,
.pricing-card-featured .pricing-card-included,
.pricing-card-featured .pricing-card-list span {
    color: #ffffff;
}

.pricing-card-featured .pricing-card-desc {
    color: rgba(255, 255, 255, .82);
}

.pricing-card-featured .pricing-card-list i {
    color: #4ade80;
}

.pricing-card-featured .pricing-card-icon {
    background: #ffffff;
    color: #0b2531;
}

/* ---------- Card Head ---------- */
.pricing-card-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.pricing-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0b2531;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-card-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.pricing-card-badge {
    margin-left: auto;
    background: #d4e9dd;
    color: #0b2531;
    font-size: 10.5px;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

/* ---------- Description ---------- */
.pricing-card-desc {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
}

/* ---------- Included heading ---------- */
.pricing-card-included {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

/* ---------- Features List ---------- */
.pricing-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.pricing-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--ink);
}

.pricing-card-list i {
    color: #0b2531;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ---------- CTA Button ---------- */
.pricing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #17a34a;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 0.6rem;
    text-decoration: none;
    transition: all .2s ease;
    border: 2px solid #17a34a;
    width: 100%;
    margin-top: auto;
}

.pricing-cta-btn:hover {
    background: #0e8038;
    border-color: #0e8038;
    color: #ffffff;
    transform: translateY(-2px);
}

.pricing-cta-btn i {
    font-size: 14px;
}

.pricing-cta-btn-light {
    background: #ffffff;
    color: #0b2531;
    border-color: #ffffff;
}

.pricing-cta-btn-light:hover {
    background: #f4f7f8;
    color: #0b2531;
    border-color: #f4f7f8;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .pricing-title {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .pricing-section {
        padding: 2.5rem 0 3rem;
    }
    .pricing-title {
        font-size: 21px;
    }
    .pricing-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}


/* ==========================================================================
   Compare All Features
   ========================================================================== */

.compare-section {
    background: #ffffff;
    padding: 2rem 0 5rem;
}

.compare-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin: 0 0 2rem;
}

/* Wrapper (border + rounded) */
.compare-wrap {
    border: 1px solid #e2e8ec;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #ffffff;
}

/* Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    table-layout: fixed;
}

/* Header row */
.compare-table thead th {
    background: #1e7a4d;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 700;
    padding: 0.85rem 1rem;
    text-align: center;
    border: none;
}

.compare-table thead th.compare-col-feature {
    text-align: left;
    width: 55%;
    padding-left: 1.25rem;
}

.compare-table thead th.compare-col-plan {
    width: 15%;
}

/* Body rows */
.compare-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #e9eef1;
    color: var(--ink);
    vertical-align: middle;
    text-align: left;
}

.compare-table tbody td:first-child {
    padding-left: 1.25rem;
}

/* Group header rows (Data, Search & Review, Analysis, etc.) */
.compare-table tbody tr.compare-group td {
    background: #e9f7ef;
    font-weight: 700;
    font-size: 12.5px;
    color: #0b2531;
    padding: 0.65rem 1.25rem;
    border-bottom: 1px solid #d5e8dc;
    letter-spacing: 0.01em;
}

/* Center cells for Standard / Premium / ProX columns */
.compare-cell {
    text-align: center !important;
}

/* Green check */
.compare-cell .bi-check-square-fill {
    color: #17a34a;
    font-size: 15px;
}

/* Dash (not included) */
.compare-cell.compare-dash {
    color: #a8b3bc;
    font-size: 14px;
    font-weight: 500;
}

/* Hover state */
.compare-table tbody tr:hover td {
    background: #f9fbfc;
}

.compare-table tbody tr.compare-group:hover td {
    background: #e9f7ef;
}

/* Remove bottom border on last row */
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .compare-title {
        font-size: 19px;
        margin-bottom: 1.5rem;
    }
    .compare-wrap {
        overflow-x: auto;
    }
    .compare-table {
        min-width: 620px;
        font-size: 12px;
    }
    .compare-table thead th {
        padding: 0.7rem 0.65rem;
        font-size: 12px;
    }
    .compare-table tbody td {
        padding: 0.7rem 0.65rem;
    }
    .compare-table thead th.compare-col-feature {
        padding-left: 0.85rem;
    }
    .compare-table tbody td:first-child {
        padding-left: 0.85rem;
    }
}



/* ==========================================================================
   About Page
   ========================================================================== */

.about-page-section {
    background: #ffffff;
    padding: 4rem 0 5rem;
}

.about-page-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin: 1.25rem 0 1rem;
}

.about-page-text {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
    max-width: 34rem;
}

.about-page-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 0.75rem;
    object-fit: cover;
}

/* Quality Commitment */
.about-quality-card {
    background: #f4f7f8;
    border-radius: 1rem;
    padding: 2rem 1.75rem;
}

.about-quality-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 1rem 0 0.35rem;
}

.about-quality-subtitle {
    font-size: 12.5px;
    font-style: italic;
    color: var(--ink-soft);
    margin: 0 0 1.5rem;
}

.about-quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.about-quality-list i {
    color: var(--brand);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* What Sets Us Apart */
.about-apart-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 1.25rem 0 0.75rem;
}

.about-apart-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 48rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-page-title {
        font-size: 24px;
    }
    .about-quality-title {
        font-size: 18px;
    }
    .about-apart-title {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .about-page-section {
        padding: 2.5rem 0 3rem;
    }
    .about-page-title {
        font-size: 22px;
    }
    .about-quality-card {
        padding: 1.5rem 1.25rem;
    }
}



/* ==========================================================================
   What Sets Us Apart
   ========================================================================== */

.apart-section {
    background: #ffffff;
    padding: 4rem 0 5rem;
}

.apart-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin: 1.25rem 0 0.75rem;
}

.apart-subtitle {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 48rem;
    margin: 0 0 1rem;
}

/* ---------- Card ---------- */
.apart-card {
    background: #ffffff;
    border: 1px solid #e2e8ec;
    border-radius: 0.9rem;
    padding: 1.5rem 1.25rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.apart-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 18px 40px -20px rgba(11, 37, 49, .18);
}

.apart-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 0.7rem;
    background: #e9f7ef;
    color: var(--brand-deep);
    font-size: 22px;
    margin-bottom: 1rem;
    transition: all .25s ease;
}

.apart-card:hover .apart-card-icon {
    background: var(--brand);
    color: #ffffff;
    transform: scale(1.05);
}

.apart-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: var(--ink);
}

.apart-card-line {
    display: block;
}

.apart-card-line-muted {
    color: var(--ink-soft);
    font-weight: 600;
    margin-top: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .apart-title {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .apart-section {
        padding: 2.5rem 0 3.5rem;
    }
    .apart-title {
        font-size: 20px;
    }
    .apart-card {
        padding: 1.25rem 1rem;
    }
    .apart-card-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}


/* ==========================================================================
   Quality Commitment — Image
   ========================================================================== */

.about-quality-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-quality-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 20px 45px -25px rgba(11, 37, 49, .25);
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-quality-img {
        max-width: 100%;
        margin-top: 1rem;
    }
}



/* ==========================================================================
   Meet Our Team
   ========================================================================== */

.team-section {
    background: #ffffff;
    padding: 4rem 0 5rem;
}

.team-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin: 1.5rem 0 0.75rem;
}

.team-subtitle {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink-soft);
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
}

/* ---------- Team Card ---------- */
.team-card {
    background: #ffffff;
    border: 1px solid #e2e8ec;
    border-radius: 0.75rem;
    padding: 4px;
    text-align: center;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 18px 40px -20px rgba(11, 37, 49, .18);
}

/* Image placeholder box */
.team-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f4f7f8;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

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

/* Name & role */
.team-name {
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.2rem;
    line-height: 1.35;
}

.team-role {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.4;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .team-title {
        font-size: 22px;
    }
    .team-name {
        font-size: 12px;
    }
    .team-role {
        font-size: 10.5px;
    }
}

@media (max-width: 575.98px) {
    .team-section {
        padding: 2.5rem 0 3rem;
    }
    .team-title {
        font-size: 20px;
    }
    .team-card {
        padding: 0.75rem 0.6rem 0.9rem;
    }
    .team-name {
        font-size: 11.5px;
    }
    .team-role {
        font-size: 10px;
    }
}




/* ==========================================================================
   Products Page — Intro
   ========================================================================== */

.products-intro {
    background: #ffffff;
    padding: 4rem 0 3rem;
}

.products-intro-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.01em;
    margin: 1.25rem 0 1.5rem;
}

.products-intro-text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
    max-width: 38rem;
}

.products-intro-text strong {
    color: var(--ink);
    font-weight: 700;
}

.products-intro-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-intro-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

/* ==========================================================================
   Products Page — Timeline
   ========================================================================== */

.products-timeline {
    background: #ffffff;
    padding: 3rem 0 5rem;
}

.products-timeline-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    margin: 1.5rem 0 1rem;
}

.products-timeline-subtitle {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 60rem;
    margin: 0 auto;
}

/* Timeline container */
.timeline {
    position: relative;
    margin-top: 4rem;
    padding: 0 0.5rem;
}

/* Center vertical dotted line */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-image: linear-gradient(to bottom, #0b2531 40%, transparent 40%);
    background-size: 2px 12px;
    background-repeat: repeat-y;
    opacity: .55;
}

/* Row */
.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    min-height: 180px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Center icon */
.timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px dashed #c8d3da;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    z-index: 2;
}

.timeline-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 26px;
    color: #ffffff;
}

/* Icon colors */
.timeline-icon-blue  i { background: #1e6f8a; }
.timeline-icon-green i { background: #17a34a; }
.timeline-icon-teal  i { background: #0f766e; }

/* Content — half width */
.timeline-content {
    width: 44%;
    padding: 0 2rem;
}

/* Right-aligned item: content on the right side */
.timeline-right .timeline-content {
    margin-left: auto;
    text-align: left;
}

/* Left-aligned item: content on the left side */
.timeline-left .timeline-content {
    margin-right: auto;
    text-align: right;
}

/* Product name */
.timeline-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: .01em;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
}

/* Tagline */
.timeline-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 0.75rem;
}

/* Description */
.timeline-desc {
    font-size: 12.5px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0 0 1rem;
}

.timeline-desc strong {
    color: var(--ink);
    font-weight: 700;
}

/* Read more link */
.timeline-readmore {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.timeline-readmore:hover {
    color: var(--brand-deep);
    text-decoration: underline;
}

/* Buttons */
.timeline-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.timeline-right .timeline-buttons {
    justify-content: flex-start;
}

.timeline-left .timeline-buttons {
    justify-content: flex-end;
}

.timeline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand);
    border-radius: 0.4rem;
    background: #ffffff;
    color: var(--brand);
    padding: 0.55rem 1.25rem;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}

.timeline-btn:hover {
    background: var(--brand);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {

    .products-intro-title {
        font-size: 26px;
    }

    .products-timeline-title {
        font-size: 24px;
    }

    /* Move timeline to single column */
    .timeline::before {
        left: 34px;
        transform: none;
    }

    .timeline-item {
        padding-left: 90px;
        min-height: auto;
    }

    .timeline-icon {
        left: 0;
        transform: none;
        width: 60px;
        height: 60px;
    }

    .timeline-icon i {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .timeline-content {
        width: 100%;
        padding: 0;
        text-align: left !important;
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        margin: 0;
        text-align: left !important;
    }

    .timeline-left .timeline-buttons,
    .timeline-right .timeline-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {

    .products-intro {
        padding: 2.5rem 0 1.5rem;
    }

    .products-intro-title {
        font-size: 22px;
    }

    .products-timeline {
        padding: 2rem 0 3.5rem;
    }

    .products-timeline-title {
        font-size: 21px;
    }

    .timeline-item {
        padding-left: 74px;
        margin-bottom: 2.5rem;
    }

    .timeline-icon {
        width: 52px;
        height: 52px;
    }

    .timeline-icon i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .timeline-name {
        font-size: 15px;
    }

    .timeline-desc {
        font-size: 12px;
    }

    .timeline-btn {
        font-size: 11.5px;
        padding: 0.5rem 1rem;
    }
}




/* ==========================================================================
   CTA Banner — matches screenshot exactly
   ========================================================================== */

.cta-section-wrap {
    background: #ffffff;
    padding: 1rem 1rem 5rem;
}

@media (min-width: 992px) {
    .cta-section-wrap {
        padding: 1rem 2rem 5rem;
    }
}

.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #0a2531;
    padding: 4rem 1.5rem;
    box-shadow: 0 40px 80px -30px rgb(11 37 49 / .5);
    isolation: isolate;
    /*min-height: 320px;*/
}

@media (min-width: 576px) {
    .cta-banner { padding: 4.5rem 3rem;  }
}

@media (min-width: 992px) {
    .cta-banner { padding: 5.5rem 3.5rem;  }
}

/* ---------- Background image layer ---------- */
.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cta-waves.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ---------- Dark overlay (left side darker for text) ---------- */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(6 25 35 / 45%) 0%, rgb(6 25 35 / 22%) 40%, rgb(6 25 35 / 19%) 75%, rgba(6, 25, 35, 0.30) 100%);
    z-index: 0;
}

/* ---------- Content ---------- */
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 42rem;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #ffffff;
    margin: 0 0 1rem;
}

.cta-subheading {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 1.75rem;
}

/* ---------- Buttons row ---------- */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

/* Outline button (Book a Demo) — white pill */
.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #0b2531;
    padding: 0.7rem 1.6rem;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-outline-cta:hover {
    transform: translateY(-2px);
    background: #f4f7f8;
    color: #0b2531;
    border-color: #f4f7f8;
}

/* Filled button (Talk to Sales) — green pill */
.btn-brand-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #ffffff;
    padding: 0.7rem 1.6rem;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-brand-cta:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #ffffff;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .cta-heading {
        font-size: 26px;
    }
    .cta-subheading {
        font-size: 14px;
    }
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    .cta-bg {
        background-position: center right;
    }
    .cta-overlay {
        background: linear-gradient(
            90deg,
            rgba(6, 25, 35, 0.95) 0%,
            rgba(6, 25, 35, 0.85) 60%,
            rgba(6, 25, 35, 0.60) 100%
        );
    }
}

@media (max-width: 575.98px) {
    .cta-heading {
        font-size: 22px;
    }
    .cta-subheading {
        font-size: 13px;
    }
    .btn-outline-cta,
    .btn-brand-cta {
        padding: 0.65rem 1.3rem;
        font-size: 13px;
    }
    .cta-banner {
        min-height: 280px;
    }
}



/* ==========================================================================
   PAT CLEAR Product Page
   ========================================================================== */

/* ---------- Section 1: Hero ---------- */
.pc-hero {
    background: #ffffff;
    padding: 3.5rem 0 4rem;
}

.pc-hero-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: 1.25rem 0 0.35rem;
}

.pc-hero-tagline {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 1.5rem;
}

.pc-hero-text {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0 0 1.75rem;
    max-width: 38rem;
}

.pc-hero-text strong {
    color: var(--ink);
    font-weight: 700;
}

.pc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #17a34a;
    color: #ffffff;
    padding: 0.7rem 1.75rem;
    border-radius: 2rem;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 10px 24px -10px rgba(23, 163, 74, .6);
}

.pc-hero-btn:hover {
    background: #0e8038;
    color: #ffffff;
    transform: translateY(-2px);
}

.pc-hero-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

/* ---------- Section 2: How It Works ---------- */
.pc-how {
    background: #ffffff;
    padding: 2rem 0 4rem;
}

.pc-how-inner {
    background: #f4f7f8;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
}

.pc-how-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1.75rem;
}

.pc-how-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-how-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 0.5rem;
    object-fit: contain;
}

/* Steps list */
.pc-how-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pc-how-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8ec;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pc-how-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -18px rgba(11, 37, 49, .2);
}

.pc-how-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e9f7ef;
    color: #0e8038;
    font-size: 22px;
    flex-shrink: 0;
}

.pc-how-step {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.25rem;
}

.pc-how-desc {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* Buttons */
.pc-how-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.pc-btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #17a34a;
    color: #ffffff;
    padding: 0.65rem 1.6rem;
    border-radius: 2rem;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    border: 1px solid #17a34a;
}

.pc-btn-green:hover {
    background: #0e8038;
    border-color: #0e8038;
    color: #ffffff;
    transform: translateY(-2px);
}

.pc-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b2531;
    color: #ffffff;
    padding: 0.65rem 1.6rem;
    border-radius: 2rem;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    border: 1px solid #0b2531;
}

.pc-btn-dark:hover {
    background: #061a24;
    border-color: #061a24;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Section 3: Why Choose ---------- */
.pc-why {
    background: #ffffff;
    padding: 4rem 0 5rem;
}

.pc-why-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}

.pc-why-intro {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}

.pc-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pc-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pc-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e9f7ef;
    color: #0e8038;
    font-size: 20px;
    flex-shrink: 0;
}

.pc-why-step {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.35rem;
}

.pc-why-desc {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
}

.pc-why-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-why-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .pc-hero-title {
        font-size: 28px;
    }
    .pc-how-inner {
        padding: 2rem 1.5rem;
    }
    .pc-how-title,
    .pc-why-title {
        font-size: 22px;
    }
    .pc-how-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .pc-hero {
        padding: 2.5rem 0 3rem;
    }
    .pc-hero-title {
        font-size: 24px;
    }
    .pc-hero-tagline {
        font-size: 13.5px;
    }
    .pc-how-inner {
        padding: 1.75rem 1.25rem;
    }
    .pc-how-list li {
        padding: 0.85rem 1rem;
    }
    .pc-how-icon,
    .pc-why-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .pc-why {
        padding: 3rem 0 4rem;
    }
}









/* ==========================================================================
   PAT CLEAR — Hero with wave background
   ========================================================================== */

.pc-hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 3.5rem 0 4rem;
}

/* Background image layer */
.pc-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(../images/pat_razor_background_hero_section.84373652.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}
/* Ensure content sits above the background */
.pc-hero .container-xl {
    position: relative;
    z-index: 1;
}

/* Title */
.pc-hero-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: 1.25rem 0 0.35rem;
}

.pc-hero-tagline {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 1.5rem;
}

.pc-hero-text {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0 0 1.75rem;
    max-width: 38rem;
}

.pc-hero-text strong {
    color: var(--ink);
    font-weight: 700;
}

.pc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #17a34a;
    color: #ffffff;
    padding: 0.7rem 1.75rem;
    border-radius: 2rem;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 10px 24px -10px rgba(23, 163, 74, .6);
    position: relative;
    z-index: 2;
}

.pc-hero-btn:hover {
    background: #0e8038;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Illustration */
.pc-hero-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pc-hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .pc-hero-title {
        font-size: 28px;
    }
    .pc-hero-bg {
        background-position: center top;
        opacity: 0.6;
    }
}

@media (max-width: 575.98px) {
    .pc-hero {
        padding: 2.5rem 0 3rem;
    }
    .pc-hero-title {
        font-size: 24px;
    }
    .pc-hero-tagline {
        font-size: 13.5px;
    }
    .pc-hero-bg {
        opacity: 0.5;
    }
}




/* ==========================================================================
   PATENT RAZOR — Why Choose (Numbered List)
   ========================================================================== */

.pc-why-razor {
    background: #ffffff;
    padding: 4rem 0 5rem;
    border-top: 1px solid #f0f4f6;
}

.pc-why-numbered {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pc-why-numbered li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Numbered green bubble */
.pc-why-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9f7ef;
    color: #0e8038;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid #d4e9dd;
}

/* Text */
.pc-why-num-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink);
    font-weight: 500;
    margin: 0;
    padding-top: 0.55rem;
    max-width: 34rem;
}

/* ==========================================================================
   PATENT CANVAS — Jurisdiction Pills
   ========================================================================== */

.pc-jurisdiction {
    margin: 0 0 1.5rem;
}

.pc-jurisdiction-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.pc-jurisdiction-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pc-jur-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    border: 1px solid #e2e8ec;
    border-radius: 2rem;
    padding: 0.4rem 0.9rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    transition: all .2s ease;
}

.pc-jur-pill:hover {
    border-color: var(--brand);
    color: var(--brand-deep);
}

.pc-jur-pill i {
    font-size: 13px;
    color: var(--brand);
}

/* ==========================================================================
   PATENT CANVAS — Security & Ethical Considerations
   ========================================================================== */

.pc-security {
    background: #ffffff;
    padding: 2rem 0 5rem;
}

.pc-security-card {
    background: #f4f7f8;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    border: 1px solid #e2e8ec;
}

.pc-security-header {
    max-width: 52rem;
    margin: 0 auto 1.5rem;
}

.pc-security-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.4rem;
}

.pc-security-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
    margin: 0 0 1.5rem;
}

.pc-security-intro {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0;
}

/* Security items */
.pc-security-item {
    background: #ffffff;
    border: 1px solid #e2e8ec;
    border-radius: 0.75rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pc-security-item:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 18px 40px -20px rgba(11, 37, 49, .18);
}

.pc-security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e9f7ef;
    color: #0e8038;
    font-size: 22px;
    margin-bottom: 1rem;
}

.pc-security-item-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.35rem;
}

.pc-security-item-text {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* Divider */
.pc-security-divider {
    height: 1px;
    background: #e2e8ec;
    margin: 2.5rem auto;
    max-width: 32rem;
}

/* Ethical */
.pc-ethical {
    max-width: 52rem;
    margin: 0 auto;
}

.pc-ethical-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 0.75rem;
}

.pc-ethical-text {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0 0 1rem;
}

.pc-ethical-tagline {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: var(--ink);
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .pc-security-card {
        padding: 2rem 1.5rem;
    }
    .pc-security-title {
        font-size: 22px;
    }
    .pc-jurisdiction-pills {
        gap: 0.4rem;
    }
    .pc-jur-pill {
        padding: 0.35rem 0.75rem;
        font-size: 11.5px;
    }
}

@media (max-width: 575.98px) {
    .pc-security {
        padding: 1rem 0 3.5rem;
    }
    .pc-security-card {
        padding: 1.75rem 1.25rem;
    }
    .pc-security-title {
        font-size: 20px;
    }
    .pc-security-subtitle {
        font-size: 13px;
    }
    .pc-security-item {
        padding: 1.5rem 1rem;
    }
    .pc-security-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .pc-jur-pill {
        padding: 0.3rem 0.65rem;
        font-size: 11px;
    }
}


.row.paddinggg {
    padding: 15px;
}


    .privacy-policy {
            padding: 60px 0px;
     
        }
        .privacy-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0f1e33;
            margin-bottom: 30px;
        }
        .privacy-policy h2 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f1e33;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        .privacy-policy ul {
            padding-left: 22px;
            margin-bottom: 15px;
        }
        .privacy-policy li {
            color: #3d4d63;
            line-height: 1.7;
            margin-bottom: 10px;
            font-size: 0.98rem;
        }
        .privacy-policy ul ul {
            margin-top: 8px;
            margin-bottom: 8px;
        }
        @media (max-width: 600px) {
            .privacy-policy { padding: 110px 15px 60px; }
            .privacy-title { font-size: 1.7rem; }
            .privacy-policy h2 { font-size: 1.15rem; }
        }