/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Typography */
    --font-family-primary: 'Inter', sans-serif;
    
    /* Colors */
    --color-indigo: #4F46E5;
    --color-indigo-dark: #3730A3;
    --color-indigo-light-bg: #E0E7FF;
    --color-green: #10B981;
    --color-green-dark: #059669;
    --color-green-light-bg: #D1FAE5;
    --color-white: #FFFFFF;
    --color-navy: #1F2937;
    --color-slate-light: #F3F4F6;
    --color-text-primary: #1F2937;
    --color-text-secondary: #6B7280;
    --color-border: #E5E7EB;
    --color-slate: #F9FAFB;
    
    /* Spacing */
    --spacing-16: 16px;
    --spacing-32: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family-primary);
    background-color: var(--color-slate-light);
    color: var(--color-text-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-wrapper {
    width: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.10) 0%, transparent 50%),
        linear-gradient(135deg, #FAFBFC 0%, #F3F4F6 100%);
    background-size: 200% 200%;
    animation: breathingGradient 10s ease-in-out infinite;
}

.hero-container {
    padding: 0 24px 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

@keyframes breathingGradient {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.02);
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-wrapper {
        animation: none;
        background-position: 0% 50%;
    }
}

.zoho-primary-pill {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 12px;
    background-color: var(--color-indigo-light-bg);
    color: var(--color-indigo);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-h1 .text-highlight {
    color: var(--color-indigo);
}

.hero-subtitle {
    font-size: 24px; /* FIXED: Reduced from 32px to match screenshot */
    font-weight: 500; /* FIXED: Reduced from 600 to match screenshot */
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.hero-body {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-32);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary {
    background-color: var(--color-indigo);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
}

.btn-primary:hover {
    background-color: #4F46E5;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.btn-primary:focus {
    outline: 2px solid var(--color-indigo);
    outline-offset: 2px;
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-text-primary);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: all 300ms ease;
}

.btn-secondary:hover {
    border-color: var(--color-indigo);
    color: var(--color-text-primary); /* Black/navy text on hover, not indigo */
    background-color: var(--color-indigo-light-bg);
}

.btn-secondary:focus {
    outline: 2px solid var(--color-indigo);
    outline-offset: 2px;
}

/* ============================================
   TICKER SECTION
   ============================================ */

.ticker_section {
    background-color: var(--color-navy);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
}

.ticker_track {
    overflow: hidden;
}

.ticker_content {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    will-change: transform;
}

.ticker_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker_icon_left {
    font-size: 16px;
    color: var(--color-indigo);
}

.ticker_separator {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.section_dark {
    background-color: var(--color-navy);
}

.social_proof {
    padding: 64px 24px;
}

.container_center {
    max-width: 1200px;
    margin: 0 auto;
}

.pill_container {
    margin-bottom: 48px;
}

.text_center {
    text-align: center;
}

.pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pill_dark {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.social-proof-carousel-wrapper {
    width: 100%;
    background-color: var(--color-slate);
    padding: 0;
}

.logo-carousel {
    overflow: hidden;
}

.logo-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    padding: 10px 14px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .logo-carousel .swiper-slide {
        height: 72px;
        padding: 12px 16px;
    }
}

.logo-carousel img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

/* ============================================
   FIRST SECTION - TWO COLUMNS
   ============================================ */

.section-wrapper {
    background-color: #F9FAFB;
}

.section-light-wrapper {
    background-color: var(--color-white);
}

.section-container {
    padding: 96px 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Single column variation for About page sections */
.section-container > .container_center {
    grid-column: 1 / -1;
}

/* ============================================
   LEFT COLUMN
   ============================================ */

.left-column {
    display: flex;
    flex-direction: column;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 12px;
    background-color: var(--color-indigo-light-bg);
    color: var(--color-indigo);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.section-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-16);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-h2 .text-highlight {
    color: var(--color-indigo);
}

.section-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-32);
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   RIGHT COLUMN - CARDS GRID
   ============================================ */

.right-column {
    display: flex;
    flex-direction: column;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background-color: #FAFBFC;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.08), 
                0 4px 8px -2px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
    border-color: rgba(79, 70, 229, 0.1);
}

.feature-card:hover .card-icon {
    background-color: var(--color-indigo);
}

.feature-card:hover .card-icon i {
    color: var(--color-white);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--color-indigo-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-icon i {
    font-size: 24px;
    color: var(--color-indigo);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Note: card-h3 class is used on H4 elements for proper semantic hierarchy */

.card-body {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ============================================
   OUR DIFFERENTIATORS SECTION
   ============================================ */

.differentiators-section {
    background-color: var(--color-slate-light);
    padding: 96px 24px;
}

.differentiators-container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    margin-bottom: 16px;
}

.differentiators-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS CAROUSEL SECTION
   ============================================ */

.testimonials-wrapper {
    width: 100%;
    background: linear-gradient(to bottom, #EEF2FF 0%, #E0E7FF 100%);
    padding: 96px 0;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.carousel-wrapper {
    position: relative;
}

.carousel-container {
    overflow: visible;
    border-radius: 24px;
    position: relative;
}

.carousel-track {
    display: flex;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
}

.quote-mark {
    font-size: 80px;
    line-height: 1;
    color: rgba(79, 70, 229, 0.2);
    font-family: Georgia, serif;
}

.testimonial-text-area {
    flex: 1;
}

.testimonial-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-indigo);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.testimonial-label i {
    font-size: 16px;
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.6;
    color: var(--color-text-primary);
    font-style: italic;
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.avatar-indigo {
    background-color: #E0E7FF;
    color: #4F46E5;
}

.avatar-blue {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.avatar-purple {
    background-color: #EDE9FE;
    color: #6B21A8;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.author-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-controls {
    display: flex;
    gap: 12px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-indigo-light-bg);
    background-color: var(--color-white);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn i {
    font-size: 24px;
}

.carousel-btn:hover {
    border-color: var(--color-indigo);
    background-color: var(--color-indigo);
    color: white;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background-color: var(--color-indigo);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background-color: rgba(79, 70, 229, 0.4);
}

/* ============================================
   ZOHO VS PIPEDRIVE COMPARISON SECTION
   ============================================ */

.comparison-wrapper {
    width: 100%;
    background-color: var(--color-white);
    padding: 96px 0;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 64px;
}

.comparison-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comparison-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

/* Zoho card hover - blue border */
.comparison-card:first-child:hover {
    border-color: var(--color-indigo);
}

/* Pipedrive card hover - green border */
.comparison-card:last-child:hover {
    border-color: var(--color-green);
}

.comparison-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    width: fit-content;
}

.badge-blue {
    background-color: var(--color-indigo-light-bg);
    color: var(--color-indigo);
}

.badge-green {
    background-color: var(--color-green-light-bg);
    color: var(--color-green);
}

.comparison-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.comparison-section {
    margin-bottom: 24px;
}

.comparison-section:last-of-type {
    margin-bottom: 0;
    flex: 1;
}

.comparison-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.comparison-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-primary);
    font-weight: 500;
}

.comparison-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 32px;
    border: 2px solid;
}

.btn-zoho {
    background-color: transparent;
    color: var(--color-indigo);
    border-color: var(--color-indigo);
}

.btn-zoho:hover {
    background-color: var(--color-indigo);
    color: var(--color-white);
}

.btn-pipedrive {
    background-color: transparent;
    color: var(--color-green);
    border-color: var(--color-green);
}

.btn-pipedrive:hover {
    background-color: var(--color-green);
    color: var(--color-white);
}

/* ============================================
   4-STEP METHODOLOGY SECTION
   ============================================ */

.methodology-wrapper {
    width: 100%;
    background-color: var(--color-slate-light);
    padding: 96px 0;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.methodology-left {
    position: sticky;
    top: 40px;
}

.methodology-timeline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 24px;
}

.methodology-timeline i {
    font-size: 18px;
    color: var(--color-green);
}

.methodology-timeline-bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.methodology-timeline-bar::after {
    content: "";
    display: block;
    width: 65%;
    height: 100%;
    background-color: var(--color-indigo);
    border-radius: 2px;
}

.methodology-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.methodology-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.06);
    line-height: 1;
}

.step-content {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-indigo-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-icon i {
    font-size: 24px;
    color: var(--color-indigo);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content:hover .step-icon {
    background-color: var(--color-indigo);
}

.step-content:hover .step-icon i {
    color: var(--color-white);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */

.case-studies-wrapper {
    width: 100%;
    background-color: var(--color-navy);
    padding: 96px 0;
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 64px;
}

.pill-light {
    background-color: rgba(224, 231, 255, 0.1);
    border: 1px solid rgba(224, 231, 255, 0.2);
    color: #A5B4FC;
}

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

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.case-study-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-indigo);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.3);
}

.case-study-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 32px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.case-study-section {
    margin-bottom: 24px;
}

.case-study-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.case-study-result {
    color: #A5B4FC;
}

.case-study-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.case-study-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

/* ============================================
   COMPARISON TABLE SECTION
   ============================================ */

.comparison-table-wrapper {
    width: 100%;
    background-color: var(--color-white);
    padding: 96px 0;
}

.comparison-table-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.comparison-table-header {
    text-align: center;
    margin-bottom: 64px;
}

.comparison-table {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.table-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:not(.table-header-row):hover {
    background-color: #F9FAFB;
}

.table-header-row {
    background-color: #F3F4F6;
}

.table-cell {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.5;
}

.table-header {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text-primary);
}

.header-zoho {
    color: var(--color-indigo);
}

.header-pipedrive {
    color: var(--color-green);
}

.cell-feature {
    font-weight: 600;
    color: var(--color-text-primary);
    background-color: #FAFBFC;
}

.cell-zoho {
    color: var(--color-indigo);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cell-pipedrive {
    color: var(--color-green);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.table-row:not(.table-header-row):hover .cell-zoho {
    background-color: rgba(224, 231, 255, 0.3);
}

.table-row:not(.table-header-row):hover .cell-pipedrive {
    background-color: rgba(209, 250, 229, 0.4);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-wrapper {
    width: 100%;
    background-color: var(--color-slate-light);
    padding: 96px 0;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-choose-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.why-choose-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-wrapper {
    width: 100%;
    background-color: var(--color-white);
    padding: 96px 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.blog-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-cta {
    flex-shrink: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

.blog-image-placeholder {
    height: 240px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 16px;
}

.blog-category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-primary);
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-indigo);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 10px;
}

.blog-link i {
    font-size: 16px;
}

/* ============================================
   CTA SECTION - Split Design with Dashboard Preview
   ============================================ */

.cta-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
    padding: 96px 0;
}

.cta-container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.cta-content {
    display: flex;
    flex-direction: column;
}

.pill-light {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 12px;
    background-color: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(165, 180, 252, 0.3);
    color: #C7D2FE;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    width: fit-content;
}

.cta-h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-checkmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.cta-check-item i {
    font-size: 20px;
    color: #10B981;
}

.cta-button {
    width: fit-content;
    background-color: var(--color-white);
    color: var(--color-indigo);
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-button i {
    font-size: 24px;
}

.cta-button:hover {
    background-color: #F0F0FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Right Preview Area */
.cta-preview {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.preview-card {
    position: absolute;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 32px;
    left: 0;
    right: 64px;
    transform: rotate(2deg);
}

.card-2 {
    top: 160px;
    left: 64px;
    right: 0;
    transform: rotate(-1deg);
}

.preview-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.preview-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.preview-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    background-color: #F3F4F6;
    padding: 4px 12px;
    border-radius: 12px;
}

.preview-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.stat-indigo {
    color: var(--color-indigo);
}

.stat-green {
    color: var(--color-green);
}

.preview-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-indigo-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.preview-subtitle {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

.preview-tasks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-task {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: #F9FAFB;
    border-radius: 8px;
}

.task-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-red {
    background-color: #EF4444;
}

.dot-yellow {
    background-color: #F59E0B;
}

.dot-green {
    background-color: #10B981;
}

.task-text {
    font-size: 14px;
    color: var(--color-text-primary);
}

/* ===================================
   PIPELINE BOARD STYLES (DESKTOP)
   =================================== */

.hero_visual {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: visible;
    display: none;
    margin-top: 64px;
}

@media (min-width: 992px) {
    .hero_visual {
        display: block;
    }
}

.pipeline_wrapper {
    display: flex;
    height: 580px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Floating Cards */
.floating_card {
    position: absolute;
    background-color: var(--color-white);
    padding: 35px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    min-width: 180px;
    animation: floating-y 3s ease-in-out infinite;
}

@media (min-width: 1200px) {
    .floating_card {
        display: flex;
    }
}

.float_top_right {
    top: -90px;
    right: -150px;
    animation-delay: 0s;
}

.float_bottom_left {
    bottom: -50px;
    left: -40px;
    animation-delay: -1.5s;
}

.float_icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.icon_green_bg {
    background-color: #ECFDF5;
    color: #10B981;
}

.icon_blue_bg {
    background-color: #EFF6FF;
    color: #3B82F6;
}

.float_content {
    display: flex;
    flex-direction: column;
}

.float_label {
    font-size: 9px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 0.5px;
}

.float_text {
    font-size: 11px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.3;
}

.float_value {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
}

@keyframes floating-y {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Sidebar */
.pipeline_sidebar {
    width: 60px;
    background-color: #0F172A;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    flex-shrink: 0;
}

.sidebar_icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 20px;
}

.sidebar_icon:hover {
    color: #F3F4F6;
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar_icon.active {
    color: #FFFFFF;
    background-color: var(--color-indigo);
}

.sidebar_spacer {
    flex-grow: 1;
}

/* Board Area */
.pipeline_board {
    flex-grow: 1;
    min-width: 0;
    background-color: #F3F4F6;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.board_header {
    height: 50px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-shrink: 0;
}

.board_title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.drag_hint {
    font-size: 10px;
    color: #9CA3AF;
    margin-left: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.board_actions {
    display: flex;
    gap: 16px;
}

.board_action_btn {
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #10B981;
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.board_period {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* Columns */
.board_columns {
    display: flex;
    padding: 16px;
    gap: 12px;
    overflow-x: hidden;
    height: 100%;
    align-items: stretch;
}

.board_column {
    flex: 1 1 0;
    min-width: 140px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding-right: 8px;
}

.board_column:last-child {
    border-right: none;
}

.column_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #4B5563;
    border-bottom: 3px solid #E5E7EB;
    margin-bottom: 12px;
}

.col_count {
    background-color: #E5E7EB;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
}

.board_column.drag_over .column_header {
    border-bottom-color: var(--color-indigo);
}

.board_column.drag_over {
    background-color: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
}

.board_column_body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100px;
    overflow-y: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.board_column_body::-webkit-scrollbar {
    display: none;
}

/* Deal Cards */
.deal_card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 10px;
    padding-left: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
    user-select: none;
    position: relative;
}

.deal_card:active {
    cursor: grabbing;
}

.card_grab_handle {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 14px;
    display: none;
}

.deal_card:hover .card_grab_handle {
    display: block;
}

.deal_card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px) scale(1.02);
    border-color: #6366F1;
    z-index: 10;
}

.card_dropped {
    animation: dropPulse 0.5s ease-out;
}

@keyframes dropPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(1);
    }
}

.card_tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}

.tag_blue {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.tag_purple {
    background-color: #F3E8FF;
    color: #7E22CE;
}

.card_title {
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.card_value {
    font-size: 12px;
    color: #4B5563;
    margin-bottom: 8px;
}

.card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #9CA3AF;
}

.icon_yellow { color: #F59E0B; }
.icon_green { color: #10B981; }
.icon_blue { color: #3B82F6; }
.icon_gray { color: #9CA3AF; }
.icon_red { color: #EF4444; }

.card_actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #F3F4F6;
    justify-content: flex-end;
}

.action_btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn_won {
    background-color: #ECFDF5;
    color: #059669;
}

.btn_won:hover {
    background-color: #10B981;
    color: white;
}

.btn_lost {
    background-color: #FEF2F2;
    color: #DC2626;
}

.btn_lost:hover {
    background-color: #EF4444;
    color: white;
}

/* ===================================
   MOBILE SALES CHART STYLES
   =================================== */

.mobile_sales_chart {
    display: block;
    width: 100%;
    max-width: 400px;
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 28px 28px 40px 28px;
    margin: 48px auto 0;
}

@media (min-width: 992px) {
    .mobile_sales_chart {
        display: none;
    }
}

.chart_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.chart_info {
    flex: 1;
}

.chart_title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.chart_dropdown {
    font-size: 13px;
    color: #4B5563;
    background-color: #F9FAFB;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: all 0.2s;
}

.chart_dropdown:hover {
    background-color: #F3F4F6;
    border-color: #D1D5DB;
}

.donut_layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
}

.donut_wrapper {
    width: 140px;
    height: 140px;
    position: relative;
    flex-shrink: 0;
}

.donut_svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.donut_segment {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.donut_segment:hover {
    stroke-width: 24;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
    z-index: 10;
}

.donut_number {
    font-size: 36px;
    font-weight: 800;
    fill: #111827;
}

.donut_label {
    font-size: 12px;
    font-weight: 600;
    fill: #6B7280;
    text-transform: uppercase;
}

.chart_legend_side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.legend_item {
    font-size: 13px;
    font-weight: 600;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot_blue {
    background-color: #4F46E5;
}

.dot_orange {
    background-color: #F59E0B;
}

.dot_pink {
    background-color: #EC4899;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    font-size: 20px;
    color: var(--color-indigo);
}

/* Who We Are Section */
.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.who-we-are-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.body-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.who-we-are-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Stat Cards Grid */
.stat-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--color-indigo);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background-color: var(--color-indigo-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-indigo);
    font-size: 24px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* Blue CTA Card - Base */
.cta-card-blue {
    background: linear-gradient(135deg, var(--color-indigo) 0%, #5B51D8 100%);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-card-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.3);
}

/* Horizontal CTA Card variant (services page etc.) */
.cta-card-blue.cta-card-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-card-content i {
    font-size: 32px;
    color: var(--color-white);
}

.cta-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.cta-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-card-arrow {
    font-size: 24px;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.cta-card-blue:hover .cta-card-arrow {
    transform: translateX(4px);
}

/* Partner Cards */
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
}

.partner-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--color-indigo);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.partner-card-pipedrive:hover {
    border-color: var(--color-green);
}

.partner-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.partner-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.checklist-item i {
    font-size: 20px;
    color: var(--color-indigo);
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item-green i {
    color: var(--color-green);
}

/* Services Bar */
.services-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--color-navy);
    border-radius: 12px;
    padding: 32px 24px;
    margin-top: 48px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.service-item i {
    font-size: 24px;
    color: var(--color-indigo);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--color-indigo);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-indigo-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-indigo);
    font-size: 28px;
    margin-bottom: 16px;
}

.service-icon-purple {
    background-color: #EDE9FE;
    color: #7C3AED;
}

.service-icon-pink {
    background-color: #FCE7F3;
    color: #EC4899;
}

.service-icon-teal {
    background-color: #CCFBF1;
    color: #14B8A6;
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--color-indigo);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.service-badge-purple {
    background-color: #7C3AED;
}

.service-badge-pink {
    background-color: #EC4899;
}

.service-badge-teal {
    background-color: #14B8A6;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-indigo);
    font-weight: 700;
}

/* About Page Methodology Timeline (scoped) */
.methodology-about-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-top: 64px;
    position: relative;
}

.methodology-about-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--color-indigo) 0%, var(--color-indigo) 100%);
    z-index: 0;
}

.methodology-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

.step-number {
    display: none;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border: 3px solid var(--color-indigo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-indigo);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.methodology-step:hover .step-icon-circle {
    background-color: var(--color-indigo);
    color: var(--color-white);
    transform: scale(1.1);
}

.methodology-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.result-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.result-card-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--color-indigo-light-bg);
    color: var(--color-indigo);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.result-card-badge-green {
    background-color: var(--color-green-light-bg);
    color: var(--color-green);
}

.result-card:hover {
    border-color: var(--color-indigo);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.result-company {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.result-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-list li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    padding-left: 24px;
    position: relative;
}

.result-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
}

/* Large Testimonial */
.testimonial-large {
    background: linear-gradient(135deg, var(--color-indigo) 0%, #5B51D8 100%);
    border-radius: 16px;
    padding: 64px;
    text-align: center;
    position: relative;
}

.testimonial-large .testimonial-quote {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.testimonial-large .testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 32px;
    font-weight: 500;
}

.testimonial-large .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--color-white);
    font-size: 16px;
}

.testimonial-large .testimonial-author strong {
    font-weight: 700;
}

.testimonial-large .testimonial-author span {
    opacity: 0.8;
    font-size: 14px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--color-indigo);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-indigo-light-bg);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-indigo);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.team-skill-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-indigo-light-bg);
    color: var(--color-indigo);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 8px;
}

.team-expertise {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-expertise li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-indigo-light-bg);
    border-radius: 50%;
    color: var(--color-indigo);
    font-size: 20px;
    transition: all 0.3s ease;
}

.team-linkedin:hover {
    background-color: var(--color-indigo);
    color: var(--color-white);
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-h1 {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .section-h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 24px;
    }
    
    .hero-h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-body {
        font-size: 18px;
    }
    
    .section-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 64px 24px;
    }
    
    .section-h2 {
        font-size: 32px;
    }
    
    .differentiators-h2 {
        font-size: 32px;
    }
    
    .testimonials-h2 {
        font-size: 32px;
    }
    
    .comparison-h2 {
        font-size: 32px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .methodology-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .methodology-left {
        position: static;
        text-align: center;
    }
    
    .methodology-left .section-pill {
        margin-left: auto;
        margin-right: auto;
    }
    
    .methodology-left .btn-primary {
        width: 100%;
    }
    
    .methodology-timeline {
        justify-content: center;
    }
    
    .methodology-step {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .step-number {
        display: none;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .table-row {
        grid-template-columns: 150px 1fr 1fr;
    }
    
    .table-cell {
        padding: 16px;
        font-size: 14px;
    }
    
    .why-choose-h2 {
        font-size: 32px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .blog-header-left {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .blog-header-left .section-pill {
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-cta {
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cta-h2 {
        font-size: 40px;
    }
    
    .cta-preview {
        min-height: 400px;
    }
    
    .testimonial-card {
        padding: 32px;
    }
    
    .testimonial-quote {
        font-size: 20px;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-body {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .section-h2 {
        font-size: 28px;
    }
    
    .differentiators-h2 {
        font-size: 28px;
        margin-bottom: 48px;
    }
    
    .testimonials-h2 {
        font-size: 28px;
        margin-bottom: 48px;
    }
    
    .comparison-h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .comparison-subtitle {
        font-size: 16px;
    }
    
    .comparison-card {
        padding: 24px;
    }
    
    .methodology-left {
        text-align: center;
    }
    
    .methodology-left .section-pill {
        margin-left: auto;
        margin-right: auto;
    }
    
    .methodology-left .btn-primary {
        width: 100%;
    }
    
    .methodology-timeline {
        justify-content: center;
    }
    
    .methodology-step {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .step-number {
        display: none;
    }
    
    .step-content {
        padding: 24px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .case-study-card {
        padding: 24px;
    }
    
    .case-study-title {
        font-size: 20px;
    }
    
    .table-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .table-cell {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .table-header {
        font-size: 15px;
    }
    
    .cell-feature {
        background-color: #F3F4F6;
        font-weight: 700;
        border-top: 2px solid rgba(0, 0, 0, 0.1);
    }
    
    .why-choose-h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .why-choose-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .blog-image-placeholder {
        height: 200px;
    }
    
    .blog-header-left {
        text-align: center;
        align-items: center;
    }
    
    .blog-header-left .section-pill {
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .cta-h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .cta-checkmarks {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .cta-preview {
        min-height: 350px;
    }
    
    .card-1 {
        right: 48px;
    }
    
    .card-2 {
        left: 48px;
    }
    
    .preview-card {
        padding: 20px;
    }
    
    .testimonial-header {
        margin-bottom: 48px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-content {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    /* About Page - Tablet */
    .trust-indicators {
        gap: 24px;
    }
    
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stat-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .methodology-about-timeline {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .methodology-about-timeline::before {
        display: none;
    }
    
    .methodology-step {
        flex: 0 0 calc(50% - 16px);
        margin-bottom: 32px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-large {
        padding: 48px 32px;
    }
    
    .testimonial-large .testimonial-text {
        font-size: 20px;
    }
    
    .quote-mark {
        font-size: 60px;
    }
    
    .testimonial-quote {
        font-size: 18px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .carousel-controls {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 24px;
        padding: 0;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    /* About Page - Mobile */
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-step {
        flex: 0 0 100%;
    }
    
    .step-icon-circle {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-large {
        padding: 32px 24px;
    }
    
    .testimonial-large .testimonial-text {
        font-size: 18px;
    }
    
    .cta-card-blue.cta-card-horizontal {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cta-card-horizontal .cta-card-content {
        flex-direction: column;
    }
}


/* Final CTA Section */
.final-cta-section {
    padding: 96px 0;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.final-cta-left {
    color: var(--color-white);
}

.final-cta-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

.final-cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.final-cta-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.final-cta-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-white);
}

.final-cta-check-item i {
    font-size: 24px;
    color: var(--color-green);
    flex-shrink: 0;
}

.final-cta-right {
    display: flex;
    justify-content: center;
}

.form-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
}

.form-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.form-card-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.form-card-button {
    width: 100%;
    background-color: var(--color-indigo);
    color: var(--color-white);
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-card-button:hover {
    background-color: var(--color-indigo-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.25);
}

/* Responsive - Final CTA */
@media (max-width: 768px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .final-cta-h2 {
        font-size: 32px;
    }
}

