/* ================================================================
   LOMCOS — Sections CSS (Corporate Light Theme)
   Products & Services · Process · CTA
   ================================================================ */

/* ----------------------------------------------------------------
   0. SHARED TOKENS
   ---------------------------------------------------------------- */
:root {
    --blue: #2563EB;
    --violet: #7C3AED;
    --green: #22C55E;
    --amber: #F59E0B;
    --teal: #0D9488;
    --rose: #E11D48;

    --bg-white: #FFFFFF;
    --bg-soft: #F8FAFC;
    --border: #E2E8F0;
    --text-main: #0F172A;
    --text-sub: #475569;
    --text-muted: #94A3B8;

    --radius-card: 16px;
    --shadow-card: 0 2px 12px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
    --shadow-hover: 0 8px 32px rgba(15, 23, 42, .10), 0 2px 8px rgba(15, 23, 42, .06);
}

/* ----------------------------------------------------------------
   1. SHARED SECTION PRIMITIVES
   ---------------------------------------------------------------- */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    padding: 8px 20px 8px 12px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(4px);
}

.section-pill.blue {
    background: #EFF6FF;
    border: 1.5px solid #BFDBFE;
    color: #1D4ED8;
}

.section-pill.green {
    background: #F0FDF4;
    border: 1.5px solid #BBF7D0;
    color: #166534;
}

.section-pill.light {
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    animation: pillPulse 2s ease-in-out infinite;
}

.pill-dot.gn {
    background: var(--green);
}

.pill-dot.lt {
    background: rgba(255, 255, 255, .9);
}

@keyframes pillPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-main);
    margin: 0 0 16px;
}

.section-sub {
    font-size: 1.02rem;
    color: var(--text-sub);
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
}

/* ================================================================
   2. SERVICES SECTION
   ================================================================ */
.svc-section {
    padding: 140px 0 100px;
    background: #FFFFFF;
    border-top: 1px solid var(--border);
    position: relative;
}

.svc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.svc-header {
    margin-bottom: 52px;
}

/* ── Service card grid ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* featured card spans full row */
.svc-card.svc-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Service Card base ── */
.svc-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.svc-card:hover {
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-10px);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.svc-card p {
    font-size: .93rem;
    color: var(--text-sub);
    line-height: 1.60;
    margin: 0;
}

/* Card top row (featured) */
.corporate-nav-fix {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    position: relative;
    z-index: 10;
}

.svc-carousel-nav {
    display: flex;
    gap: 12px;
    z-index: 20;
}

.svc-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #CBD5E1;
    opacity: 1;
    border-radius: 4px;
    /* Industrial sharp dots */
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    width: 24px;
    background: #2563EB;
}

.nav-prev,
.nav-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    outline: none;
}

.nav-prev:hover,
.nav-next:hover {
    border-color: #2563EB;
    color: #2563EB;
    background: #F8FAFC;
}

.nav-prev svg,
.nav-next svg {
    width: 20px;
    height: 20px;
}

/* ── Service icon ── */
.svc-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.svc-icon-wrap svg {
    width: 20px;
    height: 20px;
}

/* ================================================================
   ZOHO PROFESSIONAL SOLUTIONS (Home Page v4 Extension)
   ================================================================ */
.zoho-section-v4 {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.zoho-brand-pill {
    display: inline-flex;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    border-radius: 4px;
    /* Industrial sharp */
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.zoho-carousel-wrapper {
    position: relative;
    width: 100%;
}

.zoho-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 32px;
    padding: 40px 5%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.zoho-carousel-track::-webkit-scrollbar {
    display: none;
}

.zoho-item-v4 {
    flex: 0 0 calc(25% - 24px);
    /* 4 cards on desktop */
    min-width: 300px;
    scroll-snap-align: start;
}

@media (max-width: 1200px) {
    .zoho-item-v4 {
        flex: 0 0 calc(33.333% - 22px);
    }
}

@media (max-width: 991px) {
    .zoho-item-v4 {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 600px) {
    .zoho-item-v4 {
        flex: 0 0 85%;
    }
}

.zoho-card-v4 {
    background: #fff;
    border: 1px solid #E2E8F0;
    padding: 56px 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-radius: 4px;
}

.zoho-card-v4:hover {
    border-color: #2563EB;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.1);
    transform: translateY(-8px);
}

.zoho-card-v4 .product-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.zoho-card-v4 .product-icon i {
    font-weight: 800;
}

/* Zoho Product Color Tokens */
.zoho-card-v4.crm .product-icon {
    color: #FC6B03;
}

.zoho-card-v4.books .product-icon {
    color: #0088CC;
}

.zoho-card-v4.people .product-icon {
    color: #32A240;
}

.zoho-card-v4.creator .product-icon {
    color: #E41F1F;
}

.zoho-card-v4.analytics .product-icon {
    color: #FFB300;
}

.zoho-card-v4.inventory .product-icon {
    color: #00BFA5;
}

.zoho-card-v4 h3 {
    font-size: 1.55rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.zoho-card-v4 p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.zoho-learn-more {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #cbd5e1;
    transition: all 0.3s;
}

.zoho-card-v4:hover .zoho-learn-more {
    color: #2563EB;
    transform: translateX(8px);
}

/* ================================================================
   ENTERPRISE SOLUTIONS (Industries) CAROUSEL (Home Page v4)
   ================================================================ */
.sol-section-v4 {
    padding: 120px 0;
    background: #F8FAFC;
    /* Subtle contrast from services */
}

.sol-carousel-wrapper {
    position: relative;
    width: 100%;
}

.sol-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 32px;
    padding: 20px 5%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sol-carousel-track::-webkit-scrollbar {
    display: none;
}

.sol-item-v4 {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 320px;
    scroll-snap-align: start;
    height: auto;
}

@media (max-width: 991px) {
    .sol-item-v4 {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 600px) {
    .sol-item-v4 {
        flex: 0 0 85%;
    }
}

.sol-card-v4 {
    background: #fff;
    border: 1px solid #F1F5F9;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

.sol-card-v4:hover {
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.12);
}

.sol-content-v4 {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
}

.sol-card-number-simple {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2563EB;
    background: #EFF6FF;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 12px;
}

.sol-content-v4 h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
}

.sol-content-v4 p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.sol-v4-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2563EB;
    text-transform: uppercase;
    transition: all 0.3s;
    padding-top: 12px;
}

.sol-card-v4:hover .sol-v4-link i {
    transform: translateX(4px);
}

.corporate-btn-outline {
    display: inline-flex;
    padding: 16px 36px;
    border: 1px solid #E2E8F0;
    font-weight: 700;
    color: #0F172A;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.corporate-btn-outline:hover {
    border-color: #0F172A;
    background: #0F172A;
    color: #fff;
}

.ic-blue {
    background: #EFF6FF;
    color: #2563EB;
}

.ic-violet {
    background: #F5F3FF;
    color: #7C3AED;
}

.ic-green {
    background: #F0FDF4;
    color: #22C55E;
}

.ic-amber {
    background: #FFFBEB;
    color: #D97706;
}

.ic-teal {
    background: #F0FDFA;
    color: #0D9488;
}

.ic-rose {
    background: #FFF1F2;
    color: #E11D48;
}

/* ── Featured badge ── */
.svc-tag {
    display: inline-block;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1D4ED8;
    border-radius: 40px;
    padding: 3px 12px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ── Bullet list ── */
.svc-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-bullets li {
    font-size: .875rem;
    color: var(--text-sub);
    padding-left: 18px;
    position: relative;
}

.svc-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    opacity: .55;
}

/* ── Metrics row (featured card) ── */
.svc-metrics-row {
    display: flex;
    gap: 24px;
    padding: 16px 0 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.svc-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sm-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
}

.sm-label {
    font-size: .74rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Explore link ── */
.svc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap .18s ease;
}

.svc-cta-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.svc-cta-link:hover {
    gap: 10px;
}

.ic-blue-link {
    color: var(--blue);
}

.ic-violet-link {
    color: var(--violet);
}

.ic-green-link {
    color: var(--green);
}

.ic-amber-link {
    color: #D97706;
}

.ic-teal-link {
    color: var(--teal);
}

.ic-rose-link {
    color: var(--rose);
}

/* ── Stats bar ── */
.svc-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px 36px;
    margin-top: 40px;
}

.ssb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ssb-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.ssb-num span {
    font-size: 1.1rem;
    color: var(--blue);
}

.ssb-label {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

.ssb-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ================================================================
   3. WHY CHOOSE SECTION (BENTO GRID)
   ================================================================ */
.hp-why-choose {
    padding: 100px 0;
    background-color: var(--bg-soft);
    background-image:
        radial-gradient(circle at 2px 2px, var(--border) 1px, transparent 0);
    background-size: 40px 40px;
    border-top: 1px solid var(--border);
}

.hp-why-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 32px;
}

.why-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
    border-color: var(--blue);
    z-index: 10;
}

/* Large Card */
.why-card-large {
    grid-column: span 2;
}

.why-card-large h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    margin: 24px 0 16px;
    color: var(--text-main);
}

.why-card-large p {
    font-size: 1.05rem;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.why-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    padding: 11px 22px;
    border: 1px solid var(--border);
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease;
}

.why-link:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.why-link:hover i {
    transform: translateX(4px);
}

.why-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Blue Featured Card */
.why-card-blue {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.why-card-blue::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.why-card-blue h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    margin: 24px 0 8px;
}

.why-card-blue p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 40px;
}

.why-stats-row {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: auto;
}

.why-stat {
    display: flex;
    flex-direction: column;
}

.why-stat-num {
    font-size: 2.22rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.why-stat-lbl {
    font-size: 0.72rem;
    opacity: 0.65;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Small Cards */
.why-card-small {
    padding: 32px;
}

.why-card-small h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 20px 0 12px;
    color: var(--text-main);
}

.why-card-small p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.65;
}

/* Icons */
.why-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon-wrap i {
    font-size: 19px;
    display: flex;
}

.ic-blue {
    background: #EFF6FF;
    color: var(--blue);
}

.ic-white {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.ic-green {
    background: #F0FDF4;
    color: var(--green);
}

.ic-teal {
    background: #F0FDFA;
    color: var(--teal);
}

.ic-amber {
    background: #FFFBEB;
    color: var(--amber);
}

/* ================================================================
   4. PROCESS SECTION
   ================================================================ */
.process-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

/* Perfect UI: Sophisticated background grid */
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 52px;
    position: relative;
}

/* ── Each step ── */
.pt-step {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0);
    border: 1px solid transparent;
}

.pt-step:hover {
    background: #FFFFFF;
    border-color: var(--border);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    transform: translateY(-8px);
}

.pt-num-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.pt-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    letter-spacing: .02em;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.pt-step:hover .pt-num {
    transform: scale(1.1);
}

.pt-num.blue {
    background: #F0F7FF;
    color: #2563EB;
    border: 2px solid #D0E4FF;
}

.pt-num.violet {
    background: #F5F3FF;
    color: #7C3AED;
    border: 2px solid #DDD6FE;
}

.pt-num.amber {
    background: #FFFBEB;
    color: #D97706;
    border: 2px solid #FDE68A;
}

.pt-num.green {
    background: #F0FDF4;
    color: #16A34A;
    border: 2px solid #BBF7D0;
}

/* connector line */
.pt-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, rgba(226, 232, 240, 0.1) 100%);
    margin: 0 16px;
    position: relative;
    overflow: hidden;
}

.pt-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
    animation: flowLine 3s infinite linear;
}

@keyframes flowLine {
    to {
        left: 100%;
    }
}

.pt-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pt-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.pt-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.pt-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.pt-body p {
    font-size: .88rem;
    color: var(--text-sub);
    line-height: 1.60;
    margin: 0;
}

/* ── Process tags ── */
.pt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.pt-tags span {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-sub);
    letter-spacing: .02em;
    transition: all 0.2s ease;
}

.pt-tags span:hover {
    background: #FFFFFF;
    border-color: var(--blue);
    color: var(--blue);
}

/* ================================================================
   4. CTA SECTION — Corporate Navy
   ================================================================ */
.cta-section-corp {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 60%, #1D4ED8 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.cta-section-corp::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.cta-section-corp::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .25), transparent 70%);
    pointer-events: none;
}

.cta-corp-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Left col ── */
.cta-corp-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-corp-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.18;
    margin: 0;
}

.cta-corp-left p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.65;
    max-width: 460px;
    margin: 0;
}

/* ── CTA buttons ── */
.cta-corp-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #1D4ED8;
    border-radius: 10px;
    padding: 13px 26px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s, transform .18s, box-shadow .18s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.cta-btn-primary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
}

.cta-btn-primary:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    color: #1D4ED8;
}

.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    padding: 13px 26px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .18s, background .18s, color .18s;
}

.cta-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* ── Right col — stat cards ── */
.cta-corp-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-stat-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 18px 20px;
    backdrop-filter: blur(8px);
    transition: background .2s;
}

.cta-stat-card:hover {
    background: rgba(255, 255, 255, .11);
}

.cta-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 4px;
}

.cta-stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    margin-bottom: 10px;
}

.cta-stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, .12);
    border-radius: 99px;
    overflow: hidden;
}

.cta-stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #60A5FA, #A78BFA);
    border-radius: 99px;
    transition: width 1.2s ease;
}

/* ================================================================
   5. RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-card.svc-featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .pt-connector {
        display: none;
    }
}

@media (max-width: 768px) {

    .svc-section,
    .process-section {
        padding: 60px 0;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-card.svc-featured {
        grid-column: 1;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .svc-stats-bar {
        flex-direction: column;
        padding: 24px;
    }

    .ssb-divider {
        width: 80px;
        height: 1px;
    }

    .cta-corp-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-corp-right {
        display: none;
    }

    .cta-btn-primary,
    .cta-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .cta-corp-btns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.55rem, 5vw, 2rem);
    }

    .svc-card {
        padding: 22px 20px 18px;
    }

    .svc-stats-bar {
        padding: 20px;
    }

    .ssb-num {
        font-size: 1.4rem;
    }
}

/* ================================================================
   AMAZING SERVICES CAROUSEL (Honeymoon Corporate v4)
   ================================================================ */
.svc-section-v4 {
    padding: 140px 0;
    background: #fff;
    overflow: hidden;
}

.svc-v4-header {
    padding: 0 5%;
}

.amazing-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.svc-carousel-wrapper {
    position: relative;
    width: 100%;
}

.svc-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 32px;
    padding: 40px 5%;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.svc-carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.svc-item-v4 {
    flex: 0 0 calc(25% - 24px);
    /* 4 cards on desktop */
    min-width: 300px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .svc-item-v4 {
        flex: 0 0 calc(33.333% - 22px);
    }
}

@media (max-width: 992px) {
    .svc-item-v4 {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 600px) {
    .svc-item-v4 {
        flex: 0 0 85%;
    }
}

.svc-card-v4 {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    /* Industrial Sharpness */
    padding: 56px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    gap: 16px;
    position: relative;
    border: none;
    border-radius: 4px;
}



.svc-card-v4 h3 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.svc-v4-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 8px;
    background: transparent !important;
    /* Move color to icon itself */
}

.svc-v4-icon.blue {
    color: #2563EB;
}

.svc-v4-icon.violet {
    color: #7C3AED;
}

.svc-v4-icon.green {
    color: #10B981;
}

.svc-v4-icon.amber {
    color: #F59E0B;
}

.svc-v4-icon.rose {
    color: #EF4444;
}

.svc-v4-icon.teal {
    color: #14B8A6;
}

.svc-card-v4 p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.svc-v4-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #2563EB;
    margin-top: auto;
    align-self: flex-end;
    transition: transform 0.3s;
}

.svc-card-v4:hover .svc-v4-link {
    transform: translateX(8px);
}

.svc-carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 5%;
}

.svc-carousel-dots {
    display: flex;
    gap: 12px;
}

.svc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
    cursor: pointer;
    transition: all 0.3s;
}

.svc-dot.active {
    background: #0F172A;
    transform: scale(1.2);
}

.svc-carousel-nav {
    display: flex;
    gap: 16px;
}

.svc-carousel-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F172A;
    cursor: pointer;
    transition: all 0.3s;
}

.svc-carousel-nav button:hover {
    border-color: #0F172A;
    background: #0F172A;
    color: #fff;
}

.svc-carousel-nav button svg {
    width: 20px;
    height: 20px;
}