/* Creatio partner page — scoped styles. See resources/views/creatio.blade.php */

.creatio-page {
    --creatio-cyan: #07ffcd;
    --creatio-purple: #6c4cff;
    --creatio-blue: #2e37bc;
    --creatio-bg: #0b0f19;
    --creatio-bg-dark: #070a10;
    --creatio-card-bg: rgba(255, 255, 255, 0.02);
    --creatio-card-border: rgba(255, 255, 255, 0.06);
    --creatio-text-muted: #8f9bb3;
    --creatio-red: #ff5c6c;
    --creatio-green: #2ee6a8;
    color: #fff;
    background-color: var(--creatio-bg);
}

.creatio-page .creatio-bg-dark {
    background: radial-gradient(circle at 80% 20%, rgba(108, 76, 255, 0.05) 0%, var(--creatio-bg-dark) 80%);
}

.creatio-page .creatio-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2rem;
    color: var(--creatio-cyan);
    font-weight: 600;
    text-decoration: none;
}

.creatio-page .creatio-card-row {
    row-gap: 1.5rem;
    margin-top: 2.5rem;
}

/* ---------- Hero ---------- */
.creatio-page .creatio-hero {
    padding: 8rem 0 5rem;
    background: radial-gradient(120% 100% at 100% 0%, rgba(108, 76, 255, 0.15) 0%, transparent 55%), radial-gradient(100% 100% at 0% 0%, rgba(7, 255, 205, 0.06) 0%, transparent 50%), var(--creatio-bg);
}

.creatio-page .creatio-eyebrow {
    display: inline-block;
    color: var(--creatio-cyan);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.creatio-page .creatio-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.creatio-page .creatio-hero-highlight {
    color: var(--creatio-cyan);
    background: linear-gradient(90deg, var(--creatio-cyan) 0%, var(--creatio-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creatio-page .creatio-hero-desc {
    font-size: 1.05rem;
    color: var(--creatio-text-muted);
    max-width: 520px;
    margin-bottom: 2rem;
}

.creatio-page .creatio-hero-btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.creatio-page .creatio-hero-btns .eva_btn {
    font-size: 1rem !important;
    padding: 0.75rem 1.75rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    white-space: nowrap !important;
}

/* Outline/white modifiers layer on top of the shared .eva_btn (padding, font, hover-fill
   animation all come from the shared component) — this design needs a secondary button
   style that doesn't exist site-wide yet, so only the new bits are defined here. */
.creatio-page .creatio-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
}

.creatio-page .creatio-btn-white {
    background: #fff;
    color: var(--creatio-blue);
}

/* Branding separator x style */
.creatio-page .creatio-x {
    color: #ef4444;
    font-weight: 300;
    margin: 0 8px;
    font-size: 1.25rem;
    display: inline-block;
}

.creatio-page .creatio-btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.creatio-page .creatio-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.creatio-page .creatio-hero-trust li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--creatio-text-muted);
}

.creatio-page .creatio-hero-trust li i {
    color: var(--creatio-cyan);
}

.creatio-page .creatio-hero-visual-wrapper {
    position: relative;
    padding: 0;
    width: 100%;
}

.creatio-page .creatio-hero-svg-illustration {
    width: 100%;
    height: auto;
    overflow: visible;
}

.creatio-page .creatio-dashboard-img-wrapper {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.creatio-page .creatio-dashboard-img-wrapper .creatio-dashboard-img {
    border-radius: 12px;
    border: 1px solid var(--creatio-card-border);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creatio-page .creatio-dashboard-img-wrapper .creatio-dashboard-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(108, 76, 255, 0.25);
}

/* Rebuilt Premium Visual Styles */
.creatio-page .creatio-mobile-mockup {
    width: 100%;
    height: 100%;
    background: #111a2e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.creatio-page .creatio-mobile-mockup .mockup-header {
    height: 6px;
    width: 30%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    align-self: center;
}

.creatio-page .creatio-mobile-mockup .mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.creatio-page .creatio-mobile-mockup .mockup-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.creatio-page .creatio-mobile-mockup .mockup-bar.long { width: 80%; }
.creatio-page .creatio-mobile-mockup .mockup-bar.short { width: 50%; }

.creatio-page .creatio-mobile-mockup .mockup-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(7, 255, 205, 0.2);
    align-self: center;
    margin-top: 15px;
    background: radial-gradient(circle, rgba(7, 255, 205, 0.1) 0%, transparent 70%);
}

.creatio-page .creatio-dashboard-wrapper {
    width: 100%;
    height: 100%;
    padding: 6px;
    box-sizing: border-box;
}

.creatio-page .creatio-dashboard-wrapper .creatio-dashboard-img {
    border-radius: 14px;
    border: 1px solid var(--creatio-card-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creatio-page .creatio-dashboard-wrapper .creatio-dashboard-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(108, 76, 255, 0.25);
}

/* White Circular Logo Badge */
.creatio-page .creatio-logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
    box-sizing: border-box;
}

.creatio-page .creatio-logo-circle:hover {
    transform: scale(1.08);
}

.creatio-page .creatio-logo-circle .circle-logo-text {
    color: #ff5c35;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: -0.3px;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-transform: uppercase;
}

/* Premium Badge Cards */
.creatio-page .creatio-badge-card {
    background: rgba(18, 26, 42, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 6px 12px 6px 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 100% !important;
    cursor: default;
}

.creatio-page .creatio-badge-card:hover {
    transform: scale(1.03) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
}

.creatio-page .creatio-badge-card .badge-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.creatio-page .creatio-badge-card .badge-text {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Badge Icon Color Themes */
.creatio-page .creatio-badge-card .badge-icon-wrap.crm-color {
    background: rgba(108, 76, 255, 0.15);
    color: #927bff;
    border: 1px solid rgba(108, 76, 255, 0.25);
    box-shadow: 0 0 10px rgba(108, 76, 255, 0.2);
}

.creatio-page .creatio-badge-card .badge-icon-wrap.ai-color {
    background: rgba(7, 255, 205, 0.15);
    color: #07ffcd;
    border: 1px solid rgba(7, 255, 205, 0.25);
    box-shadow: 0 0 10px rgba(7, 255, 205, 0.2);
}

.creatio-page .creatio-badge-card .badge-icon-wrap.integration-color {
    background: rgba(209, 40, 224, 0.15);
    color: #e25eff;
    border: 1px solid rgba(209, 40, 224, 0.25);
    box-shadow: 0 0 10px rgba(209, 40, 224, 0.2);
}

.creatio-page .creatio-badge-card .badge-icon-wrap.automation-color {
    background: rgba(255, 92, 53, 0.15);
    color: #ff7c5c;
    border: 1px solid rgba(255, 92, 53, 0.25);
    box-shadow: 0 0 10px rgba(255, 92, 53, 0.2);
}

/* Connector Lines Base Styles */
.creatio-page .creatio-connector {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.creatio-page .connector-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--creatio-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--creatio-cyan);
    z-index: 2;
}

.creatio-page .connector-line {
    position: absolute;
    background: var(--creatio-cyan);
    box-shadow: 0 0 6px rgba(7, 255, 205, 0.4);
    z-index: 1;
}

/* 1. Top CRM Line */
.creatio-page .line-top-crm {
    top: -12%;
    left: 49%;
    height: 27%;
    width: 1px;
}
.creatio-page .line-top-crm .connector-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--creatio-cyan), rgba(7, 255, 205, 0.3));
}
.creatio-page .line-top-crm .connector-dot {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

/* 2. Top Creatio Line */
.creatio-page .line-top-creatio {
    top: -12%;
    right: 25%;
    height: 30%;
    width: 1px;
}
.creatio-page .line-top-creatio .connector-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--creatio-cyan), rgba(7, 255, 205, 0.3));
}
.creatio-page .line-top-creatio .connector-dot {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

/* 3. Right CRM Line */
.creatio-page .line-right-crm {
    top: 33%;
    right: -13%;
    width: 28%;
    height: 1px;
}
.creatio-page .line-right-crm .connector-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--creatio-cyan), rgba(7, 255, 205, 0.3));
}
.creatio-page .line-right-crm .connector-dot {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

/* 4. Right AI Line */
.creatio-page .line-right-ai {
    top: 50%;
    right: -20%;
    width: 35%;
    height: 1px;
}
.creatio-page .line-right-ai .connector-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--creatio-cyan), rgba(7, 255, 205, 0.3));
}
.creatio-page .line-right-ai .connector-dot {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

/* 5. Right Integration Line */
.creatio-page .line-right-integration {
    top: 70%;
    right: -13%;
    width: 28%;
    height: 1px;
}
.creatio-page .line-right-integration .connector-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--creatio-cyan), rgba(7, 255, 205, 0.3));
}
.creatio-page .line-right-integration .connector-dot {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

/* 6. Bottom AI Line */
.creatio-page .line-bottom-ai {
    bottom: -8%;
    left: 50%;
    height: 20%;
    width: 1px;
}
.creatio-page .line-bottom-ai .connector-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--creatio-cyan), rgba(7, 255, 205, 0.3));
}
.creatio-page .line-bottom-ai .connector-dot {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 7. Bottom Automation Line */
.creatio-page .line-bottom-automation {
    bottom: -12%;
    left: 70%;
    height: 24%;
    width: 1px;
}
.creatio-page .line-bottom-automation .connector-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--creatio-cyan), rgba(7, 255, 205, 0.3));
}
.creatio-page .line-bottom-automation .connector-dot {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ---------- Trust band ---------- */
.creatio-page .creatio-trust-band {
    padding: 2.5rem 0 3rem;
    background: transparent;
}

/* The main card box */
.creatio-page .creatio-partner-stats-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Left: logos + partner text */
.creatio-page .creatio-partner-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 2.5rem;
}

.creatio-page .creatio-partner-logos {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.creatio-page .creatio-partner-logo-img {
    display: block;
    object-fit: contain;
}

.creatio-page .creatio-partner-logo-img.creatio-logo {
    height: 24px;
    width: auto;
}

.creatio-page .creatio-partner-logo-img.eva-logo {
    height: 18px;
    width: auto;
}

.creatio-page .creatio-partner-x {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
}

.creatio-page .creatio-trust-tag {
    color: var(--creatio-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Vertical divider between brand and stats */
.creatio-page .creatio-partner-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 2.5rem;
    flex-shrink: 0;
    align-self: center;
}

/* Stats row */
.creatio-page .creatio-trust-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    flex: 1;
}

.creatio-page .creatio-trust-stats .txt_box {
    padding: 0 2rem;
    text-align: center;
    height: auto !important;
    overflow: visible !important;
}

/* Thin vertical divider between stats */
.creatio-page .creatio-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-self: center;
}

.creatio-page .creatio-trust-stats .number_txt,
.creatio-page .creatio-expertise-stats .number_txt {
    font-size: 2.25rem !important;
    font-weight: 800;
    line-height: 1.1;
    color: var(--creatio-cyan);
    margin: 0 0 0.2rem 0;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(7, 255, 205, 0.25);
}

.creatio-page .creatio-trust-stats .sub_txt,
.creatio-page .creatio-expertise-stats .sub_txt {
    font-size: 0.72rem !important;
    font-weight: 500;
    color: var(--creatio-text-muted) !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Client logos row */
.creatio-page .creatio-trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 0;
}

.creatio-page .creatio-trust-logos-label {
    font-size: 0.78rem;
    color: var(--creatio-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.creatio-page .creatio-trust-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    flex: 1;
    gap: 1rem;
    opacity: 0.8;
}

.creatio-page .creatio-brand-logo {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.55);
    transition: filter 0.3s ease;
}

.creatio-page .creatio-brand-logo:hover {
    filter: brightness(0) invert(1) opacity(1);
}

/* ---------- Cards: problems / features / services ---------- */
.creatio-page .creatio-problem-card,
.creatio-page .creatio-feature-card,
.creatio-page .creatio-service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.creatio-page .creatio-problem-card:hover,
.creatio-page .creatio-feature-card:hover,
.creatio-page .creatio-service-card:hover {
    border-color: rgba(7, 255, 205, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(7, 255, 205, 0.08);
}

.creatio-page .creatio-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(7, 255, 205, 0.1);
    color: var(--creatio-cyan);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.creatio-page .creatio-problem-card h3,
.creatio-page .creatio-feature-card h3,
.creatio-page .creatio-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.creatio-page .creatio-problem-card p,
.creatio-page .creatio-feature-card p,
.creatio-page .creatio-service-card p {
    font-size: 0.9rem;
    color: var(--creatio-text-muted);
    margin: 0;
}

.creatio-page .creatio-services-row .creatio-service-card {
    padding: 1.5rem;
}

/* ---------- Before / after ---------- */
.creatio-page .creatio-ba-wrap {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.creatio-page .creatio-ba-panel {
    flex: 1;
    background: var(--creatio-card-bg);
    border: 1px solid var(--creatio-card-border);
    border-radius: 14px;
    padding: 1.75rem;
}

.creatio-page .creatio-ba-panel ul {
    list-style: none;
    margin: 1rem 0 0;
}

.creatio-page .creatio-ba-panel li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--creatio-card-border);
    font-size: 0.9rem;
}

.creatio-page .creatio-ba-panel li:last-child {
    border-bottom: none;
}

.creatio-page .creatio-ba-label {
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
}

.creatio-page .creatio-ba-label-before {
    background: rgba(255, 92, 108, 0.15);
    color: var(--creatio-red);
}

.creatio-page .creatio-ba-label-after {
    background: rgba(46, 230, 168, 0.15);
    color: var(--creatio-green);
}

.creatio-page .creatio-ba-before li i {
    color: var(--creatio-red);
}

.creatio-page .creatio-ba-after li i {
    color: var(--creatio-green);
}

.creatio-page .creatio-ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--creatio-blue);
    color: #fff;
    align-self: center;
}

/* ---------- Implementation process ---------- */
.creatio-page .creatio-process-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 2.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.creatio-page .creatio-process-step {
    flex: 1;
    min-width: 150px;
    background: var(--creatio-card-bg);
    border: 1px solid var(--creatio-card-border);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
}

.creatio-page .creatio-process-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--creatio-cyan);
    margin-bottom: 0.5rem;
}

.creatio-page .creatio-process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.creatio-page .creatio-process-step p {
    font-size: 0.8rem;
    color: var(--creatio-text-muted);
    margin: 0;
}

.creatio-page .creatio-process-connector {
    display: flex;
    align-items: center;
    color: var(--creatio-text-muted);
    padding-top: 2rem;
}

/* ---------- Industries / Integrations ---------- */
.creatio-page .creatio-ii-row {
    row-gap: 1.5rem;
}

.creatio-page .creatio-ii-panel {
    background: var(--creatio-card-bg);
    border: 1px solid var(--creatio-card-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

.creatio-page .creatio-industries-panel {
    position: relative;
    overflow: hidden;
}

.creatio-page .creatio-industries-panel::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    background-image: url('/images/svg/industry/icons/factory.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.creatio-page .creatio-ii-panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.creatio-page .creatio-ii-panel > p {
    color: var(--creatio-text-muted);
    margin-bottom: 1.5rem;
}

.creatio-page .creatio-ii-panel ul {
    list-style: none;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.creatio-page .creatio-ii-panel ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.creatio-page .creatio-ii-panel ul li i {
    color: var(--creatio-cyan);
}

.creatio-page .creatio-integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.creatio-page .creatio-integration-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--creatio-card-border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.creatio-page .creatio-integration-item i {
    color: var(--creatio-cyan);
}

/* ---------- Success stories ---------- */
.creatio-page .creatio-case-card {
    background: var(--creatio-card-bg);
    border: 1px solid var(--creatio-card-border);
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
}

.creatio-page .creatio-case-tag {
    display: inline-block;
    background: rgba(108, 76, 255, 0.15);
    color: var(--creatio-purple);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.creatio-page .creatio-case-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.creatio-page .creatio-case-card > p {
    font-size: 0.9rem;
    color: var(--creatio-text-muted);
    margin-bottom: 1.5rem;
}

.creatio-page .creatio-case-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--creatio-card-border);
    padding-top: 1.25rem;
}

.creatio-page .creatio-case-stat {
    display: flex;
    flex-direction: column;
}

.creatio-page .creatio-case-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--creatio-cyan);
}

.creatio-page .creatio-case-stat-label {
    font-size: 0.7rem;
    color: var(--creatio-text-muted);
}

/* ---------- Expertise / Testimonials ---------- */
.creatio-page .creatio-et-row {
    row-gap: 2rem;
}

.creatio-page .creatio-testimonial-panel {
    background: var(--creatio-card-bg);
    border: 1px solid var(--creatio-card-border);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}

.creatio-page .creatio-testimonial-panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.creatio-page .creatio-expertise-info {
    padding-right: 1.5rem;
}

.creatio-page .creatio-expertise-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
    margin-top: 2rem;
}

/* Custom styling for reused testimonial card on Creatio page */
.creatio-page .creatio-testimonial-panel .testmnl_card {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    box-shadow: none !important;
}

.creatio-page .creatio-testimonial-panel .rating_wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 6px !important;
    margin-bottom: 1.25rem !important;
}

.creatio-page .creatio-testimonial-panel .rating_wrapper .star {
    width: 20px !important;
    height: 20px !important;
    margin-right: 0 !important;
}

.creatio-page .creatio-testimonial-panel .rating_wrapper .star img {
    width: 100% !important;
    height: auto !important;
}

.creatio-page .creatio-testimonial-panel .qoute_txt {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    font-style: italic !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
}

.creatio-page .creatio-testimonial-panel .client_info_wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: auto !important;
}

.creatio-page .creatio-testimonial-panel .client_image {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid var(--creatio-cyan) !important;
    flex-shrink: 0 !important;
}

.creatio-page .creatio-testimonial-panel .client_image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.creatio-page .creatio-testimonial-panel .client_info {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.creatio-page .creatio-testimonial-panel .client_info .name {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    display: block !important;
}

.creatio-page .creatio-testimonial-panel .client_info .designation {
    font-size: 0.85rem !important;
    color: var(--creatio-cyan) !important;
    display: block !important;
}

.creatio-page .creatio-testimonial-panel .client_info .description {
    font-size: 0.8rem !important;
    color: var(--creatio-text-muted) !important;
    display: block !important;
}

/* Position standard quotes mark in the corner nicely */
.creatio-page .creatio-testimonial-panel .quotes_wrapper {
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    opacity: 0.08 !important;
    pointer-events: none !important;
}

.creatio-page .creatio-testimonial-panel .quotes_wrapper img {
    width: 80px !important;
    height: auto !important;
}

/* Adjust slick navigation layout */
.creatio-page .creatio-testimonial-nav {
    display: flex !important;
    gap: 0.75rem !important;
    margin-top: 2rem !important;
    border-top: 1px solid var(--creatio-card-border) !important;
    padding-top: 1.5rem !important;
}

.creatio-page .creatio-testimonial-nav span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid var(--creatio-card-border) !important;
    color: var(--creatio-text-muted) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.creatio-page .creatio-testimonial-nav span:hover {
    background: var(--creatio-cyan) !important;
    color: var(--creatio-bg-dark) !important;
    border-color: var(--creatio-cyan) !important;
    box-shadow: 0 0 15px rgba(7, 255, 205, 0.3) !important;
}

.creatio-page .testimonial_slider_wrap .slick-list {
    overflow: hidden;
}

.creatio-page .testimonial_slider_wrap .slick-slide {
    margin: 0 !important;
}

.creatio-page .testimonial_slider_wrap .slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin: 1rem 0 0;
}

.creatio-page .testimonial_slider_wrap .slick-dots li {
    margin: 0;
}

.creatio-page .testimonial_slider_wrap .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--creatio-card-border);
    color: transparent;
    font-size: 0;
    cursor: pointer;
}

.creatio-page .testimonial_slider_wrap .slick-dots li.slick-active button {
    background: var(--creatio-cyan);
}

/* ---------- Split Sections Base Styles ---------- */
.creatio-page .creatio-section-info {
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .creatio-page .creatio-section-info {
        position: sticky;
        top: 120px;
        padding-right: 2rem;
    }
}

.creatio-page .title-heading {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.creatio-page .section-desc {
    font-size: 1.05rem;
    color: var(--creatio-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ---------- Timeline (Process Flow) ---------- */
.creatio-page .creatio-timeline-container {
    position: relative;
    margin-top: 3.5rem;
}

.creatio-page .creatio-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.creatio-page .creatio-timeline-line {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.creatio-page .creatio-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    z-index: 2;
    padding: 0 10px;
}

.creatio-page .creatio-timeline-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--creatio-bg-dark);
    border: 2px solid var(--creatio-cyan);
    color: var(--creatio-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 15px rgba(7, 255, 205, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.creatio-page .creatio-timeline-item:hover .creatio-timeline-badge {
    background: var(--creatio-cyan);
    color: var(--creatio-bg-dark);
    box-shadow: 0 0 20px rgba(7, 255, 205, 0.5);
}

.creatio-page .creatio-timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.creatio-page .creatio-timeline-content p {
    font-size: 0.9rem;
    color: var(--creatio-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ---------- Final CTA ---------- */
.creatio-page .creatio-final-cta {
    padding: 5rem 0;
    background: linear-gradient(120deg, var(--creatio-blue) 0%, var(--creatio-purple) 100%);
    border-radius: 24px;
    margin: 2rem auto;
    max-width: 1320px;
}

.creatio-page .creatio-cta-heading {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.creatio-page .creatio-cta-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.creatio-page .creatio-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.creatio-page .creatio-cta-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Remove dark background peaking out from rounded input corners */
.creatio-page .creatio-cta-form-container .eva_input_container {
    background: transparent !important;
}

.creatio-page .creatio-cta-form-container .eva_input_v2 {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    height: auto !important;
    font-size: 0.95rem !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.creatio-page .creatio-cta-form-container .eva_input_v2:focus {
    border-color: var(--creatio-purple) !important;
    box-shadow: 0 0 0 3px rgba(108, 76, 255, 0.15) !important;
}

/* Custom premium select dropdown arrow styling */
.creatio-page .creatio-cta-form-container select.eva_input_v2 {
    padding-right: 2.5rem !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 20px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.creatio-page .creatio-cta-form-container textarea.eva_input_v2 {
    height: 120px !important;
}

.creatio-page .creatio-cta-form-container .eva_label.light_bg {
    color: #64748b !important;
    left: 1rem !important;
    font-size: 0.85rem !important;
    pointer-events: none;
    transition: 0.2s ease all;
}

/* Floating behavior override for white card inputs */
.creatio-page .creatio-cta-form-container .eva_input_v2:focus ~ .eva_label.light_bg,
.creatio-page .creatio-cta-form-container .eva_input_v2:not(:placeholder-shown) ~ .eva_label.light_bg,
.creatio-page .creatio-cta-form-container select.eva_input_v2 ~ .eva_label.light_bg {
    top: -10px !important;
    background: #fff !important;
    padding: 0 6px !important;
    color: var(--creatio-purple) !important;
    font-size: 0.75rem !important;
    border-radius: 4px;
}

/* Premium submit button inside white card */
.creatio-page .creatio-cta-form-container .estimate_btn {
    background: linear-gradient(135deg, var(--creatio-purple) 0%, var(--creatio-blue) 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.85rem 2.5rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #fff !important;
    width: 100% !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(108, 76, 255, 0.25) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}

.creatio-page .creatio-cta-form-container .estimate_btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(108, 76, 255, 0.4) !important;
    filter: brightness(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .creatio-page .creatio-hero { padding: 6rem 0 3rem; }
    .creatio-page .creatio-hero-title { font-size: 2.2rem; }
    .creatio-page .creatio-hero-visual-wrapper { padding: 1.5rem; margin-top: 2rem; }
    
    .creatio-page .creatio-hero-btns {
        flex-wrap: wrap !important;
        gap: 1rem;
    }
    
    .creatio-page .creatio-hero-btns .eva_btn {
        width: auto !important;
        white-space: normal !important;
    }
    
    /* Hide decorative badges in mobile grid */
    .creatio-page .creatio-badge-node { display: none; }
    .creatio-page .badge-creatio { display: flex; top: 5px; right: 15px; }

    .creatio-page .creatio-ba-wrap { flex-direction: column; }
    .creatio-page .creatio-ba-arrow { transform: rotate(90deg); align-self: center; margin: 1rem 0; }
    
    /* Responsive timeline on mobile */
    .creatio-page .creatio-timeline {
        flex-direction: column;
        gap: 2rem;
        padding-left: 2.5rem;
    }
    .creatio-page .creatio-timeline-line {
        top: 0;
        bottom: 0;
        left: 24px;
        width: 2px;
        height: auto;
    }
    .creatio-page .creatio-timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        gap: 1.5rem;
    }
    .creatio-page .creatio-timeline-badge {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .creatio-page .creatio-final-cta { border-radius: 0; margin: 0; }
}

@media (max-width: 575px) {
    .creatio-page .creatio-hero-btns .eva_btn {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }
    .creatio-page .creatio-partner-stats-card { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 1.5rem; }
    .creatio-page .creatio-partner-divider { display: none; }
    .creatio-page .creatio-trust-stats { gap: 0; flex-wrap: wrap; }
    .creatio-page .creatio-trust-stats .txt_box { padding: 0.75rem 1rem; }
    .creatio-page .creatio-stat-sep { display: none; }
    .creatio-page .creatio-expertise-stats { grid-template-columns: 1fr 1fr; }
    .creatio-page .creatio-ii-panel ul,
    .creatio-page .creatio-integrations-grid { grid-template-columns: 1fr; }
}
