/* =========================================================================
   EXACT COPY CSS THEME
   ========================================================================= */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #060606;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-pure, #fff);
    letter-spacing: -2px;
    margin-bottom: 2rem;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bracket {
    display: inline-block;
    color: #FF5A1F;
}

.loader-bracket:first-child {
    animation: bracketLeft 1.2s ease-in-out infinite;
}

.loader-bracket:last-child {
    animation: bracketRight 1.2s ease-in-out infinite;
}

@keyframes bracketLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
}

@keyframes bracketRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #FF5A1F, #ff8c5a);
    border-radius: 3px;
    animation: loaderFill 1.2s ease-out forwards;
}

@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Testimonial Avatars */
.rv-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #FF5A1F, #FF8C5A); }
.avatar-2 { background: linear-gradient(135deg, #6366F1, #A78BFA); }
.avatar-3 { background: linear-gradient(135deg, #10B981, #34D399); }
.avatar-4 { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.avatar-5 { background: linear-gradient(135deg, #EC4899, #F472B6); }
.avatar-6 { background: linear-gradient(135deg, #3B82F6, #60A5FA); }

/* Client Logo Styles */
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

.client-logo svg {
    display: block;
}
   :root {
    --bg-main: #060606;
    --bg-card: #0c0c0c;
    --bg-card-hover: #121212;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.12);
    
    --accent: #FF5A1F;
    --accent-hover: #ff6a35;
    
    --text-pure: #ffffff;
    --text-muted: #888888;
    --text-darker: #555555;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    --container: 1140px;
    --radius: 16px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-main);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.glow-bg {
    position: absolute;
    width: 1200px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.4) 0%, rgba(200, 50, 10, 0.15) 40%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    top: -300px;
    right: -200px;
    pointer-events: none;
}
.glow-bg.left-glow {
    top: -200px;
    left: -400px;
    right: auto;
    width: 800px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.3) 0%, rgba(0,0,0,0) 70%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Floating particles (Global) */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 90, 31, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}
.particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 25%; animation-duration: 15s; animation-delay: 2s; width: 5px; height: 5px; }
.particle:nth-child(3) { left: 40%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation-duration: 18s; animation-delay: 1s; width: 6px; height: 6px; }
.particle:nth-child(5) { left: 70%; animation-duration: 14s; animation-delay: 3s; width: 3px; height: 3px; }
.particle:nth-child(6) { left: 85%; animation-duration: 11s; animation-delay: 5s; }
.particle:nth-child(7) { left: 50%; animation-duration: 16s; animation-delay: 6s; width: 5px; height: 5px; }
.particle:nth-child(8) { left: 15%; animation-duration: 13s; animation-delay: 7s; width: 2px; height: 2px; }
@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-pure);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-white { color: var(--text-pure); }
.text-orange { color: var(--accent); }

a {
    text-decoration: none;
    color: inherit;
}

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}
.error-actions, .cs-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.pt-0 { padding-top: 0; }
.mt-2 { margin-top: 2rem; }
.w-full { width: 100%; }

/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.8rem;
    height: 52px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    margin: 0;
    box-sizing: border-box;
    vertical-align: middle;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    border-color: var(--border-light);
    color: var(--text-pure);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 90, 31, 0.4);
    color: var(--text-pure);
}
.btn-outline:hover {
    background: rgba(255, 90, 31, 0.1);
}

.btn-dark {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--border-light);
    color: var(--text-pure);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.btn-dark:hover {
    background: rgba(20, 20, 20, 0.6);
    border-color: rgba(255,255,255,0.3);
}

.sec-label {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    border-bottom: none;
    position: relative;
    z-index: 10;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-pure);
    font-weight: 600;
    font-size: 1.3rem;
}

.logo-bracket {
    color: var(--text-pure);
    font-weight: 400;
    font-family: monospace;
    font-size: 1.4rem;
    letter-spacing: -2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-pure);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: #0f0f0f;
    min-width: 180px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    z-index: 99;
    padding: 0.5rem 0;
    margin-top: 10px;
}
.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    z-index: 100;
}
.nav-dropdown-content a {
    color: var(--text-muted);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.nav-dropdown-content a:hover {
    color: var(--text-pure);
    background-color: rgba(255, 90, 31, 0.1);
}
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Hero */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.3rem 0.8rem 0.3rem 0.4rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 2.5rem;
    background: rgba(10,10,10,0.6);
}

.badge-highlight {
    background: var(--accent);
    color: var(--bg-main);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800; /* Bolder per request */
    letter-spacing: -2px;
}
.hero-title .text-orange {
    background: linear-gradient(135deg, #FF7A40 0%, #FF5A1F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
}

/* Hero Scrolling Marquee */
.marquee-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    margin-bottom: 5rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-track {
    overflow: hidden;
    width: 100%;
}

.marquee-inner {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-inner-slow {
    animation: marqueeScroll 40s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-pill {
    flex-shrink: 0;
    height: 72px;
}

.hero-pill {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    min-width: 260px;
    height: 72px;  /* Force equal height */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.fade-left {
    mask-image: linear-gradient(to right, transparent, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 100%);
}

.fade-right {
    mask-image: linear-gradient(to left, transparent, black 100%);
    -webkit-mask-image: linear-gradient(to left, transparent, black 100%);
}

.opacity-75 { opacity: 0.75; }

.hp-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
}

.hp-icon i {
    width: 20px;
    height: 20px;
}

.hp-text {
    white-space: nowrap;
}

.hp-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.hp-text span {
    font-size: 0.75rem;
    font-weight: 600;
}

.hp-dots {
    margin-left: auto;
    color: var(--text-darker);
    display: flex;
}

/* Trusted Logos */
.trusted-logos {
    border-top: none;
    border-bottom: none;
    padding: 1rem 0;
}

.trusted-logos p {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: none;
    font-weight: 500;
}

.logos-wrap {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: monospace;
    align-items: center;
}

.logo-dim { color: rgba(255,255,255,0.15); }
.logo-bright { color: rgba(255,255,255,0.8); }

/* Section Common */
.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.sec-title {
    font-size: 2.5rem;
}

.sec-desc {
    max-width: 400px;
    text-align: right;
    font-size: 0.9rem;
}

/* AI Solutions Grid (Bento style) */
.solutions-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.sol-span-5 { grid-column: span 5; }
.sol-span-7 { grid-column: span 7; }

.sol-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.sol-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8) !important;
    border-color: rgba(255, 90, 31, 0.4) !important;
    z-index: 2;
}

.sol-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.sol-icon-transparent {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
}

.sol-dots {
    display: flex;
    gap: 4px;
}
.sol-dots .dot {
    width: 6px;
    height: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
}

/* Services dots logic */
.sol-card:nth-child(1) .sol-dots .dot { background: rgba(255,255,255,0.1); }
.sol-card:nth-child(1) .sol-dots .dot:nth-child(1) { background: var(--accent); }

.sol-card:nth-child(2) .sol-dots .dot { background: rgba(255,255,255,0.1); }
.sol-card:nth-child(2) .sol-dots .dot:nth-child(-n+2) { background: var(--accent); }

.sol-card:nth-child(3) .sol-dots .dot { background: rgba(255,255,255,0.1); }
.sol-card:nth-child(3) .sol-dots .dot:nth-child(-n+3) { background: var(--accent); }

.sol-card:nth-child(4) .sol-dots .dot { background: rgba(255,255,255,0.1); }
.sol-card:nth-child(4) .sol-dots .dot:nth-child(-n+4) { background: var(--accent); }

.sol-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.sol-card p { font-size: 0.95rem; margin-bottom: 2.5rem; }

/* Chatbot Mock */
.chatbot-mockup {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: text;
}
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-body {
    padding-left: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.chat-input-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    background: rgba(0,0,0,0.2);
}
.chat-actions {
    display: flex;
    gap: 1rem;
}
.chat-actions i {
    width: 16px; height: 16px;
}
.blinking-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background-color: var(--accent);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Strategy Bar Chart Alt */
.strategy-chart-mock {
    margin-top: auto;
    height: 200px;
    display: flex;
    align-items: flex-end;
}
.bar-chart-alt {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    gap: 0.5rem;
}
.bar-container {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    border-radius: 8px 8px 0 0;
    position: relative;
    cursor: crosshair;
}
.bar-container:hover .bar-fill,
.bar-chart-alt:not(:hover) .bar-container.active-default .bar-fill {
    border-color: rgba(255, 90, 31, 0.8);
    background: rgba(255, 90, 31, 0.1);
}
.bar-container:hover .red-dot,
.bar-chart-alt:not(:hover) .bar-container.active-default .red-dot {
    opacity: 1;
    box-shadow: 0 0 15px rgba(255,51,51,0.8);
    transform: translateX(-50%) scale(1.2);
}
.bar-fill {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 8px 8px 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.bar-label {
    font-size: 0.75rem;
    color: var(--text-darker);
    margin: 0.5rem 0;
}
.red-dot {
    width: 12px;
    height: 12px;
    background: #FF3333;
    border-radius: 50%;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.2s ease;
}

/* Tools Integration */
.tools-integration-card {
    display: flex;
    flex-direction: column;
}
.tools-content-wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
}
.tools-logos-float {
    position: absolute;
    right: -20px;
    bottom: -15px;
    width: 250px;
    height: 180px;
}
.tools-logos-float .t-logo {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(-100px);
    animation: dropFall 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite both;
}

/* Base falling animation */
@keyframes dropFall {
    0%, 5% { transform: translateY(-120px); opacity: 0; }
    10% { transform: translateY(0); opacity: 1; border-color: rgba(255,90,31,0.5); box-shadow: 0 0 15px rgba(255,90,31,0.2); }
    15% { transform: translateY(-6px); border-color: rgba(255,255,255,0.05); box-shadow: 0 10px 20px rgba(0,0,0,0.8); }
    20% { transform: translateY(0); opacity: 1; }
    85% { transform: translateY(0); opacity: 1; filter: blur(0px); }
    90% { transform: translateY(20px); opacity: 0; filter: blur(4px); }
    100% { transform: translateY(20px); opacity: 0; }
}

.tools-logos-float .t-logo-4 { right: 200px; bottom: 30px; animation-delay: 0s; z-index: 5; }
.tools-logos-float .t-logo-5 { right: 140px; bottom: 30px; animation-delay: 0.5s; z-index: 6; }
.tools-logos-float .t-logo-6 { right: 90px; bottom: 30px; animation-delay: 1.0s; z-index: 7; }
.tools-logos-float .t-logo-7 { right: 40px; bottom: 10px; animation-delay: 1.5s; z-index: 8; }
.tools-logos-float .t-logo-2 { right: 130px; bottom: 80px; animation-delay: 2.0s; z-index: 9;}
.tools-logos-float .t-logo-3 { right: 60px; bottom: 70px; animation-delay: 2.5s; z-index: 10; }
.tools-logos-float .t-logo-1 { right: 80px; bottom: 120px; animation-delay: 3.0s; z-index: 11; }

/* Workflow Scrollable */
.workflow-scrollable {
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 0.5rem;
}
/* Scrollbar styles for modern look */
.workflow-scrollable::-webkit-scrollbar {
    width: 4px;
}
.workflow-scrollable::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}
.workflow-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.workflow-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.wf-item {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.wf-num { font-weight: 600; font-size: 0.9rem; }
.wf-text { font-size: 0.9rem; color: var(--text-pure); }

/* Process Section Updates */
.p-step:nth-child(1) .ps-bars .bar { background: rgba(255,255,255,0.1); }
.p-step:nth-child(1) .ps-bars .bar:nth-child(1) { background: var(--accent); }

.p-step:nth-child(2) .ps-bars .bar { background: rgba(255,255,255,0.1); }
.p-step:nth-child(2) .ps-bars .bar:nth-child(-n+2) { background: var(--accent); }

.p-step:nth-child(3) .ps-bars .bar { background: rgba(255,255,255,0.1); }
.p-step:nth-child(3) .ps-bars .bar:nth-child(-n+3) { background: var(--accent); }

.p-step:nth-child(4) .ps-bars .bar { background: rgba(255,255,255,0.1); }
.p-step:nth-child(4) .ps-bars .bar:nth-child(-n+4) { background: var(--accent); }

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: flex-start;
}

.process-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0.5rem 0 1.5rem;
    line-height: 1.1;
}
.process-title .text-orange {
    background: linear-gradient(135deg, #FF7A40 0%, #FF5A1F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-desc {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 350px;
}

.process-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(255, 90, 31, 0.4); /* slight orange border per screenshot */
    background: rgba(10, 10, 10, 0.5);
    color: var(--accent);
}
.process-btn:hover {
    border-color: rgba(255, 90, 31, 0.8);
    background: rgba(255, 90, 31, 0.05);
}

.process-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.p-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.p-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

.p-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
}
.ps-icon i {
    width: 22px;
    height: 22px;
}

.ps-bars {
    display: flex;
    gap: 3px;
}
.ps-bars .bar {
    width: 5px;
    height: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
}
.ps-bars .bar.active {
    background: var(--accent);
}

.p-content h4 { 
    font-size: 1.35rem; 
    margin-bottom: 0.5rem; 
    font-weight: 600;
}
.p-content p { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    line-height: 1.5;
}

/* Results */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.res-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.res-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

.res-card h3 { 
    font-size: 3.5rem; 
    margin-bottom: 0.5rem; 
    color: var(--text-pure); 
    font-weight: 500;
}
.res-card h5 { 
    font-size: 1.1rem; 
    margin-bottom: 1rem; 
    font-weight: 600;
}
.res-card p { 
    font-size: 0.9rem; 
    color: var(--text-muted);
    line-height: 1.5;
}

/* Pricing */
.pricing-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pr-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.pr-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

.pr-highlight {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,90,31,0.05) 100%);
    border-color: rgba(255,90,31,0.3);
}

.pr-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.pr-head h4 { 
    font-size: 1.5rem; 
    font-weight: 500;
}

.pr-toggle {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.02);
    padding: 0.3rem 0.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.05);
}
.pr-toggle span {
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}
.pr-toggle span.active {
    background: rgba(255,90,31,0.1);
    font-weight: 600;
}

.pr-price {
    font-size: 3rem;
    color: var(--text-pure);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pr-price span { 
    font-size: 1rem; 
    color: var(--text-muted); 
    font-weight: 400; 
}

.pr-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.glow-btn {
    border: 1px solid rgba(255, 90, 31, 0.4);
    background: rgba(10, 10, 10, 0.5);
    color: var(--text-pure);
    box-shadow: inset 0 0 10px rgba(255,90,31,0.1);
    margin-bottom: 3rem;
    padding: 1rem;
}
.glow-btn:hover {
    border-color: rgba(255, 90, 31, 0.8);
    background: rgba(255, 90, 31, 0.05);
}

.pr-features {
    list-style: none;
    margin-top: 1rem;
}
.pr-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.pr-features i { width: 16px; height: 16px; color: var(--text-pure); opacity: 0.8; }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

.stars { 
    display: flex;
    gap: 0.3rem; 
    margin-bottom: 1.5rem; 
}
.star-icon {
    width: 16px; 
    height: 16px; 
    fill: var(--accent); /* Solid fill */
    color: var(--accent);
}
.star-icon.dimmed {
    fill: rgba(255, 90, 31, 0.2);
    color: rgba(255, 90, 31, 0.2);
}

.rv-text { 
    font-size: 1.05rem; 
    color: var(--text-pure); 
    margin-bottom: 2.5rem; 
    font-weight: 400; 
    line-height: 1.6;
}

.rv-author { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-top: auto;
}
.rv-avatar { 
    width: 48px; 
    height: 48px; 
    background: #222; 
    border-radius: 8px; /* Slightly rounded squares instead of circles */
    background-size: cover;
    background-position: center;
}
/* Mocking some avatar gradients/colors for the clone */
.avatar-1 { background: linear-gradient(135deg, #442222, #884444); }
.avatar-2 { background: linear-gradient(135deg, #2244aa, #4488ff); }
.avatar-3 { background: linear-gradient(135deg, #336644, #55aa77); }
.avatar-4 { background: linear-gradient(135deg, #111133, #333366); }
.avatar-5 { background: linear-gradient(135deg, #aaaaaa, #dddddd); }
.avatar-6 { background: linear-gradient(135deg, #aa3333, #551111); }

.rv-author h6 { 
    font-size: 1rem; 
    margin-bottom: 0.2rem; 
    font-weight: 500;
}
.rv-author span { 
    font-size: 0.8rem; 
    font-weight: 500;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.team-card {
    background: var(--bg-card);
    border-radius: calc(var(--radius) + 8px); /* slightly more rounded for large images */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.03); 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(255, 90, 31, 0.1); /* slight orange border on hover to match theme */
}
.team-img-real {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}
.team-card:hover .team-img-real {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.team-join-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 90, 31, 0.05) 100%);
    border: 1px dashed rgba(255, 90, 31, 0.3);
    text-align: center;
    padding: 3rem;
}

.team-join-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 90, 31, 0.1) 100%);
    border: 1px dashed var(--accent);
}

.team-join-card .join-content h3 {
    font-size: 2.2rem;
    color: var(--text-pure);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-info-box {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.team-info h5 { 
    font-size: 1.2rem; 
    font-weight: 500;
    color: var(--text-pure);
    margin: 0;
}
.team-info span { 
    font-size: 0.85rem; 
    color: var(--accent); 
    font-weight: 500;
}
.team-plus {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}
/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}

.stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #FBBF24;
    fill: #FBBF24;
}

.star-icon.dimmed {
    color: rgba(255,255,255,0.15);
    fill: rgba(255,255,255,0.15);
}

.rv-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.rv-author h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-pure);
    margin: 0;
}

.rv-author span {
    font-size: 0.8rem;
}

/* FAQs */
.faqs-right {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.faq-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q h4 { 
    font-size: 1.1rem; 
    font-weight: 500;
    color: var(--text-pure);
}
.faq-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
}
.faq-icon-wrap svg {
    width: 20px;
    height: 20px;
}

.faq-a {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
    max-width: 650px;
}
.faq-item.active .faq-a { 
    display: block; 
    animation: fadeIn 0.4s ease forwards;
}

/* Icon toggling */
.faq-item .faq-icon-minus { display: none; }
.faq-item.active .faq-icon-minus { display: block; }
.faq-item.active .faq-icon-plus { display: none; }

/* FAQ Button glow */
.faq-btn {
    border: 1px solid rgba(255, 90, 31, 0.4);
    background: rgba(10, 10, 10, 0.5);
    color: var(--text-pure);
    box-shadow: inset 0 0 10px rgba(255,90,31,0.1);
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 100px;
}
.faq-btn:hover {
    border-color: rgba(255, 90, 31, 0.8);
    background: rgba(255, 90, 31, 0.05);
}

/* Contact */
/* Contact Layout */
.c-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}
.office-card {
    grid-column: 1 / 3;
}

/* Contact Cards */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}
.contact-card > svg {
    margin-bottom: auto;
    color: var(--text-pure);
    width: 24px;
    height: 24px;
}
.cc-content {
    margin-top: 3rem;
}
.cc-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-pure);
    margin-bottom: 0.5rem;
}
.cc-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.cc-content strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-pure);
}

/* Contact Form Card */
.c-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}
.c-form-actual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.form-group input, 
.form-group textarea {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    color: var(--text-pure);
    font-family: inherit;
    font-size: 0.95rem;
    padding: 1.5rem;
    width: 100%;
    resize: none;
}
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 90, 31, 0.3);
}

.contact-submit-btn {
    margin-top: auto;
    margin-bottom: 0;
}

/* Contact Section Layout */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.c-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Insights placeholder styles removed or left below */
/* Insights */
.insights-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: transparent;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}
.f-brand .brand-logo {
    font-size: 1.5rem;
    font-weight: 500;
}
.f-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
}
.f-socials {
    display: flex;
    gap: 0.75rem;
}
.f-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-pure);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.f-social-icon:hover {
    background: rgba(255, 90, 31, 0.1);
    color: var(--accent);
    border-color: rgba(255, 90, 31, 0.3);
}
.f-social-icon svg {
    width: 16px;
    height: 16px;
}

.f-links h5 {
    color: var(--text-pure);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.f-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.f-links a:hover {
    color: var(--accent);
}

.sub-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}
.sub-form:focus-within {
    border-color: rgba(255, 90, 31, 0.5);
}
.sub-form input {
    background: transparent;
    border: none;
    color: var(--text-pure);
    font-size: 0.95rem;
    font-family: inherit;
    width: 100%;
    outline: none;
}
.sub-form input::placeholder {
    color: var(--text-muted);
}
.sub-form .sub-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.sub-form .sub-btn:hover {
    color: var(--accent);
    background: rgba(255, 90, 31, 0.1);
}
.sub-form .sub-btn svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.footer-bottom {
    display: none; /* Screenshot doesn't show standard copyright line, but we can hide or rethink this */
}

/* ========================================================================= */
/* --- RESPONSIVE CSS (Mobile & Tablets) --- */
/* ========================================================================= */

@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    
    .process-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-left {
        position: static !important;
        text-align: center;
    }
    
    .process-left .sec-desc {
        text-align: center !important;
        margin: 0 auto 2rem;
    }
    
    .section-top {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    .section-top .sec-desc { text-align: left !important; }
    
    .solutions-bento {
        display: flex;
        flex-direction: column;
    }

    .contact-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .results-grid, 
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-join-card {
        grid-column: span 2 !important;
    }
    
    .pricing-deck {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 5%; }
    .hero-title { font-size: 2.8rem; letter-spacing: -1px; }
    
    .nav-links { display: none; }
    .nav-container { justify-content: space-between; gap: 1rem; }
    
    /* Marquee fix for mobile */
    .marquee-section {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .marquee-inner {
        animation: marqueeScroll 20s linear infinite;
    }
    .marquee-inner-slow {
        animation: marqueeScroll 28s linear infinite;
    }
    .marquee-pill {
        height: 60px;
    }
    .hero-pill {
        padding: 0.8rem 1.2rem;
        gap: 0.6rem;
    }
    .hero-pill .hp-text h4 {
        font-size: 0.8rem;
    }
    .hero-pill .hp-text span {
        font-size: 0.65rem;
    }
    
    .logos-wrap {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .results-grid, 
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-join-card {
        grid-column: span 1 !important;
    }

    .team-img-real {
        height: 350px;
    }
    
    /* Contact section mobile fix */
    .contact-box {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
    }

    .c-info-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .c-form-actual input,
    .c-form-actual textarea {
        font-size: 16px; /* prevent iOS zoom */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tools-integration-card .tools-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .tools-logos-float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        height: 120px;
        width: 100%;
        transform: scale(0.85);
        transform-origin: left top;
    }
    
    .form-row { grid-template-columns: 1fr; }
}

