:root {
    --logo-purple: #5300FC;
    --logo-violet: #B425BC;
    --logo-pink: #D326D6;
    --logo-coral: #E159A0;
    --logo-orange: #FEAB4C;
    --brand-purple: #5300FC;
    --brand-magenta: #D326D6;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-subtle: 0 4px 20px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 16px 36px rgba(83, 0, 252, 0.12);
    --brand-gradient: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    --btn-gradient: linear-gradient(90deg, #5300FC 0%, #B425BC 35%, #E159A0 70%, #FE7B42 100%);
}

html {
    font-size: 90%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*, html, body, button, input, textarea, select { 
    font-family: 'Plus Jakarta Sans', 'Ubuntu', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 85px 0;
    position: relative;
    overflow: hidden;
}

.bg-lighter {
    background-color: var(--bg-light);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

h1, h2, h3, h4, h5, h6 { 
    font-weight: 700; 
    line-height: 1.25; 
    color: #0f172a; 
}

h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    letter-spacing: -0.5px;
    color: #0f172a;
}

.section-subtitle {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 3rem auto;
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 500;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= HERO SECTION (HOMEPAGE THEME) ================= */
.hero {
    min-height: 90vh;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero .container {
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 5% !important;
    padding-right: 20px !important;
    max-width: 880px !important;
    width: 100% !important;
}

.hero-content {
    color: var(--white);
    max-width: 820px;
    background: rgba(18, 26, 38, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    margin: 80px 0;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.12rem;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 300;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--btn-gradient);
    border-radius: 12px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(83, 0, 252, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(83, 0, 252, 0.45);
}

.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff !important;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions .btn-secondary:hover {
    background: var(--brand-gradient) !important;
    border-color: transparent !important;
    transform: translateY(-3px) scale(1.02);
}

.highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

/* ================= SECTION 2: INTRODUCTION ================= */
.services-intro-section {
    background: #f8fafc;
    padding: 85px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 44px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated Top Gradient Beam on Hover */
.intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    z-index: 2;
}

.intro-card:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f9f6ff 50%, #fdf8fd 100%);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(83, 0, 252, 0.12), 0 8px 24px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.35);
}

.intro-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.intro-card .intro-lead {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
    margin: 0;
}

.intro-card .intro-body {
    font-size: 1.15rem;
    color: #0f172a;
    line-height: 1.85;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .intro-card {
        padding: 28px 22px;
        border-radius: 14px;
    }
    .intro-card .intro-lead {
        font-size: 1.18rem;
    }
    .intro-card .intro-body {
        font-size: 1.05rem;
    }
}

/* ================= SECTION 3: SERVICES SHOWCASE (OVERLAPPING CARDS) ================= */
.services-showcase-section {
    padding: 95px 0;
    background: #ffffff;
    position: relative;
}

.service-list-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 35px;
}

.service-row {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row.reverse {
    grid-template-columns: 1fr 1.55fr;
}

.service-row.reverse .service-image-column {
    order: 2;
}

.service-row.reverse .service-details-column {
    order: 1;
    margin-right: -110px;
    margin-left: 0;
}

.service-image-column {
    position: relative;
    width: 100%;
    min-height: 680px;
    max-height: 740px;
    border-radius: 0 !important;
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    z-index: 1;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.service-image-column img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    max-height: 740px;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover .service-image-column {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.service-row:hover .service-image-column img {
    transform: scale(1.04);
}

.service-details-column {
    position: relative;
    z-index: 2;
    margin-left: -110px;
    max-width: 560px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 0 !important;
    padding: 38px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.09), 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* Animated Top Gradient Beam on Content Card only */
.service-details-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    z-index: 2;
}

.service-row:hover .service-details-column {
    background: linear-gradient(145deg, #ffffff 0%, #f9f6ff 50%, #fdf8fd 100%);
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(83, 0, 252, 0.12), 0 8px 24px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.35);
}

.service-row:hover .service-details-column::before {
    opacity: 1;
    transform: scaleX(1);
}

.service-details-column .service-category {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #5300FC;
    background: rgba(83, 0, 252, 0.08);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(83, 0, 252, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    width: fit-content;
}

.service-details-column h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.service-details-column p {
    font-size: 0.98rem;
    color: #0f172a;
    line-height: 1.65;
    margin-bottom: 14px;
    font-weight: 450;
}

.pain-points-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #5300FC;
    border-radius: 0 !important;
    padding: 12px 16px;
    margin: 10px 0 14px 0;
}

.pain-header {
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pain-item {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.35;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    color: #0f172a;
    font-weight: 600;
}

.service-benefits li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5300FC, #D326D6);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(83, 0, 252, 0.25);
}

.service-actions {
    margin-top: auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.96rem;
    color: #ffffff !important;
    background: var(--btn-gradient);
    border: none;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(83, 0, 252, 0.2);
    cursor: pointer;
}

.service-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(83, 0, 252, 0.35);
}

/* ================= SECTION 4 & 6: WHY WEBARCLIGHT & BUSINESS OUTCOMES ================= */
.deliverables-section,
.business-outcomes-section {
    background: #f8fafc;
    padding: 95px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.business-outcomes-section {
    background: #ffffff;
    border-top: none;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
    align-items: stretch;
}

.get-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 320px;
    width: 100%;
    box-sizing: border-box;
}

/* Animated Top Gradient Beam on Card Hover */
.get-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.get-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(83, 0, 252, 0.12), 0 8px 24px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.35);
}

.get-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.get-card i {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(83, 0, 252, 0.07);
    border: 1px solid rgba(83, 0, 252, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: #5300FC;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.get-card:hover i {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 8px 22px rgba(83, 0, 252, 0.3);
}

.get-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.get-card:hover h4 {
    color: #5300FC;
}

.get-card p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

.tech-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    font-size: 0.82rem;
    background: rgba(83, 0, 252, 0.06);
    color: #5300FC;
    border: 1px solid rgba(83, 0, 252, 0.16);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(83, 0, 252, 0.28);
}

/* ================= SECTION 6: BUSINESS OUTCOMES (CARDS) ================= */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
    align-items: stretch;
}

.outcome-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 34px 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 220px;
    box-sizing: border-box;
}

/* Animated Top Gradient Beam on Outcome Card Hover */
.outcome-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.outcome-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(83, 0, 252, 0.12), 0 8px 20px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.35);
}

.outcome-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.outcome-card i {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(83, 0, 252, 0.07);
    border: 1px solid rgba(83, 0, 252, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #5300FC;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-card:hover i {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 8px 22px rgba(83, 0, 252, 0.28);
}

.outcome-card h4 {
    font-size: 1.28rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.outcome-card:hover h4 {
    color: #5300FC;
}

.outcome-card p {
    font-size: 0.98rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* ================= SECTION 5: HOW WE WORK (PROCESS) ================= */
.process-section {
    padding: 95px 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(96, 0, 237, 0.05) 0%, rgba(254, 171, 76, 0.03) 50%, transparent 80%), #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 30px;
    text-align: center;
    width: calc(33.333% - 20px);
    min-width: 290px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Animated Top Gradient Beam on Process Card Hover */
.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(83, 0, 252, 0.12), 0 8px 24px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.35);
}

.process-step:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.process-icon-wrap {
    position: relative;
    margin-bottom: 22px;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(83, 0, 252, 0.07);
    border: 1px solid rgba(83, 0, 252, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #5300FC;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .process-icon {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 8px 22px rgba(83, 0, 252, 0.3);
}

.process-step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(83, 0, 252, 0.3);
}

.process-step h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: #5300FC;
}

.process-step p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}

/* ================= CASE STUDIES SECTION ================= */
.service-case-studies {
    padding: 95px 0;
    background: #ffffff;
    position: relative;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
    align-items: stretch;
}

.case-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 32px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

/* Animated Top Gradient Beam on Hover */
.case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(83, 0, 252, 0.12), 0 8px 24px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.35);
}

.case-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.case-card .client-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #5300FC;
    background: rgba(83, 0, 252, 0.07);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(83, 0, 252, 0.16);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
    width: fit-content;
    transition: all 0.3s ease;
}

.case-card:hover .client-tag {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(83, 0, 252, 0.25);
}

.case-card h3 {
    font-size: 1.45rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.case-card:hover h3 {
    color: #5300FC;
}

.case-card p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.65;
    margin: 0 0 22px 0;
}

.case-result {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #5300FC;
    padding: 20px 22px;
    margin-top: auto;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.case-card:hover .case-result {
    background: rgba(83, 0, 252, 0.04);
    border-color: rgba(83, 0, 252, 0.2);
    border-left-color: #D326D6;
}

.case-result strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #5300FC;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.case-result p {
    margin: 0 !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.55;
}

/* ================= SLIDER SYSTEM ================= */
.slider-container { 
    position: relative; 
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.slider-container .slides { 
    display: grid; 
    width: 100%;
}

.slider-container .slide { 
    grid-area: 1 / 1; 
    opacity: 0; 
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 
    visibility: hidden; 
    z-index: 1; 
    width: 100%;
}

.slider-container .slide.active { 
    opacity: 1; 
    visibility: visible; 
    z-index: 2; 
}

.slider-nav { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 16px; 
    margin-top: 35px;
}

.slider-arrows button { 
    background: #ffffff; 
    border: 1px solid rgba(83, 0, 252, 0.15); 
    width: 46px; 
    height: 46px; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1rem;
}

.slider-arrows button:hover { 
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%); 
    color: #ffffff; 
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(83, 0, 252, 0.35);
}

.slider-dots { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.slider-dots .dot { 
    width: 10px; 
    height: 10px; 
    background-color: #cbd5e1; 
    border-radius: 10px; 
    border: none;
    cursor: pointer; 
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); 
}

.slider-dots .dot.active { 
    width: 30px; 
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 35%, #D326D6 70%, #FEAB4C 100%); 
    border-radius: 10px;
}

/* ================= TECH STACK SECTION ================= */
.tech-stack-section {
    padding: 95px 0;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ================= TECH SCROLL / MARQUEE TICKER ================= */
.tech-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 18px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: scroll-left 50s linear infinite;
}

.tech-scroll:hover .tech-track {
    animation-play-state: paused;
}

.tech-track span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 16px 28px;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    border: 1.5px solid rgba(83, 0, 252, 0.16);
    box-shadow: 0 10px 30px rgba(83, 0, 252, 0.07);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.tech-track span i {
    font-size: 20px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    display: inline-block;
    transition: transform 0.3s ease;
}

.tech-track span:hover {
    background: #ffffff;
    border-color: rgba(83, 0, 252, 0.4);
    box-shadow: 0 16px 36px rgba(83, 0, 252, 0.16), 0 4px 14px rgba(211, 38, 214, 0.12);
    transform: translateY(-5px) scale(1.04);
    color: #5300FC;
}

.tech-track span:hover i {
    transform: scale(1.2) rotate(6deg);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tech-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 20px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.tech-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 34px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Animated Top Gradient Beam on Tech Item Hover */
.tech-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(83, 0, 252, 0.12), 0 8px 20px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.35);
}

.tech-item:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.tech-icon-circle {
    width: 72px;
    height: 72px;
    background: rgba(83, 0, 252, 0.07);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2.3rem;
    color: #5300FC;
    border: 1px solid rgba(83, 0, 252, 0.14);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-item:hover .tech-icon-circle {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(83, 0, 252, 0.3);
}

.tech-item span {
    font-weight: 800;
    font-size: 1.05rem;
    color: #0f172a;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.tech-item:hover span {
    color: #5300FC;
}

/* ================= PRICING / COST ESTIMATION SECTION ================= */
.cost-estimation-section {
    background: #ffffff;
    padding: 95px 0;
    position: relative;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
    align-items: stretch;
}

.cost-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 30px;
    text-align: center;
    border: 1.5px solid #e2e8f0;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

/* Animated Top Gradient Beam on Cost Card Hover */
.cost-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.cost-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(83, 0, 252, 0.14), 0 8px 24px rgba(211, 38, 214, 0.08);
    border-color: rgba(83, 0, 252, 0.4);
}

.cost-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.cost-card h3 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.cost-card:hover h3 {
    color: #5300FC;
}

.cost-card p {
    font-size: 0.98rem;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 22px;
    line-height: 1.55;
    flex-grow: 1;
}

.cost-range {
    font-size: 1.75rem;
    font-weight: 700;
    color: #5300FC;
    background: rgba(83, 0, 252, 0.05);
    border: 1px solid rgba(83, 0, 252, 0.12);
    padding: 12px 18px;
    border-radius: 12px;
    margin: 0 0 24px 0;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.3px;
    transition: all 0.35s ease;
}

.cost-card:hover .cost-range {
    background: linear-gradient(135deg, rgba(83, 0, 252, 0.1), rgba(211, 38, 214, 0.1));
    border-color: rgba(83, 0, 252, 0.3);
    transform: scale(1.02);
}

.cost-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff !important;
    background: var(--btn-gradient);
    border: none;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(83, 0, 252, 0.25);
    cursor: pointer;
    margin-top: auto;
}

.cost-card .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(83, 0, 252, 0.4);
}

.cost-note {
    text-align: center;
    max-width: 820px;
    margin: 45px auto 0 auto;
    font-size: 0.92rem;
    color: #0f172a;
    font-weight: 500;
    line-height: 1.65;
}

/* ================= STATS SECTION ================= */
/* ================= STATS / IMPACT SECTION ================= */
.stats-section {
    background: #f8fafc;
    padding: 95px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

.achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.achievement-card:hover {
    transform: translateY(-6px);
    border-color: #5300FC;
    box-shadow: 0 16px 36px rgba(83, 0, 252, 0.09), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    letter-spacing: -1px;
}

.achievement-number .symbol {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 50%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-left: 4px;
}

.achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 22px;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.achievement-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(83, 0, 252, 0.06);
    color: #5300FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
}

.achievement-card:hover .achievement-icon {
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 50%, #FEAB4C 100%);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(83, 0, 252, 0.25);
}

/* ================= SECTION 7: FINAL CTA (FULL WIDTH & BRAND ICON COLORS) ================= */
.final-roadmap-cta {
    background: #090e1a;
    padding: 110px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.final-roadmap-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 15%;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83, 0, 252, 0.35) 0%, rgba(211, 38, 214, 0.15) 50%, transparent 75%);
    filter: blur(100px);
    pointer-events: none;
    animation: floatAmbient1 14s ease-in-out infinite alternate;
}

.final-roadmap-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 15%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 38, 214, 0.3) 0%, rgba(254, 171, 76, 0.12) 50%, transparent 75%);
    filter: blur(100px);
    pointer-events: none;
    animation: floatAmbient2 16s ease-in-out infinite alternate;
}

.final-roadmap-cta .container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.roadmap-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.final-roadmap-cta h2 {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.25;
    padding-bottom: 0;
}

.final-roadmap-cta h2::after {
    display: none !important;
}

.roadmap-lead {
    font-size: 1.18rem;
    line-height: 1.75;
    margin: 0 auto 40px;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 780px;
}

.final-cta-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-mega-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    color: #ffffff !important;
    padding: 16px 42px;
    border-radius: 50px;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(83, 0, 252, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-mega-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(83, 0, 252, 0.5);
    color: #ffffff !important;
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.btn-secondary-cta:hover {
    background: rgba(83, 0, 252, 0.18) !important;
    border-color: rgba(83, 0, 252, 0.6) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(83, 0, 252, 0.3);
    color: #ffffff !important;
}

.cta-trust-line {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-trust-line .dot-sep {
    color: rgba(255, 255, 255, 0.2);
}

.cta-trust-line i {
    font-size: 0.92rem;
    color: #D326D6;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.whatsapp-float i {
    font-size: 2.1rem;
    color: #ffffff;
    line-height: 1;
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 1024px) {
    html { font-size: 88%; }
    .container, .container-wide { padding: 0 24px; }
    h2 { font-size: 2.35rem; }

    .service-row,
    .service-row.reverse {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        gap: 0;
        width: 100%;
    }
    
    .service-image-column,
    .service-row.reverse .service-image-column {
        order: 1 !important;
        width: calc(100% - 44px) !important;
        align-self: flex-start;
        min-height: 440px;
        max-height: 500px;
        border-radius: 0 !important;
        overflow: hidden;
    }

    .service-image-column img,
    .service-row.reverse .service-image-column img {
        min-height: 440px;
        max-height: 500px;
    }
    
    .service-details-column,
    .service-row.reverse .service-details-column {
        order: 2 !important;
        width: calc(100% - 44px) !important;
        align-self: flex-end;
        margin-top: -85px !important;
        margin-left: 44px !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
        padding: 38px 32px;
    }
    
    .process-step {
        width: calc(33.333% - 16px);
    }

    .deliverables-grid,
    .outcomes-grid,
    .case-study-grid,
    .cost-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .tech-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    section { padding: 60px 0; }
    .container, .container-wide { padding: 0 20px; }

    .deliverables-grid,
    .outcomes-grid,
    .case-study-grid,
    .cost-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tech-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .get-card,
    .outcome-card,
    .case-card,
    .cost-card,
    .stat-item {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .hero-content {
        margin: 30px 0;
        padding: 32px 22px;
        border-radius: 14px;
        max-width: 100% !important;
        width: 100% !important;
    }
    .hero-content h1 { font-size: 1.95rem; line-height: 1.3; }
    .hero-content p { font-size: 1rem; line-height: 1.6; }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 13px 20px;
    }

    .intro-card {
        padding: 28px 20px;
        border-radius: 16px;
        margin: 0;
    }
    .intro-card .intro-lead { font-size: 1.18rem; }
    .intro-card .intro-body { font-size: 1rem; line-height: 1.65; }

    .service-list-container { gap: 65px; margin-top: 25px; }
    
    .service-row,
    .service-row.reverse {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0 !important;
    }

    .service-image-column,
    .service-row.reverse .service-image-column {
        order: 1 !important;
        width: 100% !important;
        align-self: center;
        min-height: 280px;
        max-height: 340px;
        border-radius: 14px 14px 0 0 !important;
        overflow: hidden;
    }

    .service-image-column img,
    .service-row.reverse .service-image-column img {
        min-height: 280px;
        max-height: 340px;
    }
    
    .service-details-column,
    .service-row.reverse .service-details-column {
        order: 2 !important;
        width: calc(100% - 20px) !important;
        align-self: center;
        margin-top: -45px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 16px !important;
        padding: 28px 20px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }
    
    .service-details-column h3 { font-size: 1.45rem; }
    .service-details-column p { font-size: 0.95rem; }
    .service-benefits li { font-size: 0.95rem; }
    .service-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .pain-grid { grid-template-columns: 1fr; }
    
    .process-step {
        width: 100%;
        max-width: 100%;
        padding: 28px 20px;
    }

    .final-roadmap-cta { padding: 75px 0; }
    .final-roadmap-cta h2 { font-size: 2.1rem; }
    .roadmap-lead { font-size: 1.02rem; margin-bottom: 28px; }
    .final-cta-btns { flex-direction: column; width: 100%; gap: 12px; margin-bottom: 24px; }
    .btn-mega-cta, .btn-secondary-cta { width: 100%; font-size: 1rem; justify-content: center; text-align: center; }
    .cta-trust-line .dot-sep { display: none; }
    .cta-trust-line { flex-direction: column; gap: 8px; }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float i { font-size: 1.85rem; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.7rem; }
    section { padding: 48px 0; }
    .container, .container-wide { padding: 0 15px; }

    .hero-content {
        padding: 24px 16px;
        margin: 20px 0;
    }
    .hero-content h1 { font-size: 1.7rem; }
    .hero-content p { font-size: 0.95rem; }

    .service-list-container { gap: 50px; }

    .service-image-column,
    .service-row.reverse .service-image-column {
        width: 100% !important;
        min-height: 220px;
        max-height: 260px;
        border-radius: 12px 12px 0 0 !important;
    }

    .service-image-column img,
    .service-row.reverse .service-image-column img {
        min-height: 220px;
        max-height: 260px;
    }
    
    .service-details-column,
    .service-row.reverse .service-details-column {
        width: 100% !important;
        margin-top: -30px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 14px !important;
        padding: 22px 16px;
    }

    .tech-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .tech-item { padding: 18px 10px; }
    .tech-icon-circle {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .stat-item { padding: 24px 16px; }
    .stat-icon-pill {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
        margin-bottom: 14px;
    }
    .stat-item .counter-number { font-size: 2.2rem; }

    .cost-card { padding: 26px 18px; }
    .cost-range { font-size: 1.5rem; padding: 10px 14px; margin-bottom: 20px; }

    .final-roadmap-cta h2 { font-size: 1.7rem; }
    .roadmap-lead { font-size: 0.95rem; }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-float i { font-size: 1.65rem; }
}