@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #4B34D9;
    --secondary: #00D2D3;
    --dark: #1D2124;
    --light: #F9F9F9;
    --text: #5A5A5A;
    --heading: #232323;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --radius-full: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--heading);
    font-weight: 800;
    line-height: 1.2;
}

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

section {
    padding: 100px 0;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), #8E2DE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9375rem;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(75, 52, 217, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(75, 52, 217, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--heading);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 2rem;
}

/* Markia Components (Modernized) */
.markia-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e8e8f0;
    position: relative;
    overflow: hidden;
}

.markia-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), #8E2DE2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1.5px;
    border-radius: inherit;
}

.markia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(75, 52, 217, 0.15);
}

.markia-card:hover::after {
    opacity: 1;
}

.markia-card > * {
    position: relative;
    z-index: 1;
}

/* Modern Page Hero */
.page-hero {
    position: relative;
    overflow: hidden;
    padding-top: 150px !important;
    padding-bottom: 70px !important;
    background: var(--white) !important;
    clip-path: ellipse(400% 100% at 50% 0%);
    color: var(--text) !important;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/herobg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    z-index: 1;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--heading) !important;
}

/* Hero Elements */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 0; /* Removed padding to let image reach the bottom */
    background: var(--white);
    overflow: hidden;
    clip-path: ellipse(400% 100% at 50% 0%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* Changed to 0 */
    opacity: 0.5; /* Increased opacity for better visibility */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    z-index: 1; /* Overlay on top of image */
}

/* Ensure content is above background */
.hero .container {
    position: relative;
    z-index: 10;
}

.hero-circle-btn {
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    bottom: -75px;
    right: 50px;
    box-shadow: 0 15px 30px rgba(75, 52, 217, 0.4);
    animation: bounceSlow 3s infinite;
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Footer */
footer {
    background: #0B1426; /* Navy Blue */
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.footer-link {
    display: block;
    color: #A0A5AA;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: #A0A5AA;
    font-size: 0.875rem;
}

/* About Refinement (Markia style) */
.about-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.experience-badge {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: var(--primary);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
}

.experience-badge h2 {
    font-size: 3.5rem;
    line-height: 1;
    color: white;
}

/* Animations */
[class*="reveal"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Reveals */
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
.reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; }
.reveal-5 { transition-delay: 0.5s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =============================================
   SPLIT SERVICES SECTION (DigiPlus Style)
   ============================================= */

.services-split {
    padding: 0;
    overflow: hidden;
}

.services-split-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 600px;
}

/* --- Left Dark Panel --- */
.services-left-panel {
    background: #1a1a2a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 70px 50px;
}

.services-left-content {
    position: relative;
    z-index: 2;
}

.services-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.services-left-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 3rem;
}

.services-accent {
    color: var(--primary);
    font-style: normal;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(75, 52, 217, 0.4);
}

.services-cta-btn i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.services-cta-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

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

/* Globe background decoration */
.services-globe-bg {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.06);
    z-index: 1;
    box-shadow:
        inset 0 0 0 40px rgba(255,255,255,0.02),
        inset 0 0 0 80px rgba(255,255,255,0.015),
        inset 0 0 0 120px rgba(255,255,255,0.01),
        inset 0 0 0 160px rgba(255,255,255,0.008);
    background: radial-gradient(circle at 60% 40%, rgba(75,52,217,0.08) 0%, transparent 70%);
}

.services-globe-bg::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}

.services-globe-bg::after {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}

/* --- Right Cards Grid --- */
.services-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
}

.svc-card {
    position: relative;
    padding: 3rem 2.5rem 2.5rem;
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #fff;
    overflow: hidden;
    transition: background 0.3s ease;
}

.svc-card:nth-child(2),
.svc-card:nth-child(4) {
    border-right: none;
}

.svc-card:nth-child(3),
.svc-card:nth-child(4) {
    border-bottom: none;
}

.svc-card:hover {
    background: #fafafa;
}

/* Icon area */
.svc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.svc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--heading);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.svc-card:hover .svc-icon-wrap {
    background: var(--heading);
    color: #fff;
    border-color: var(--heading);
}

.svc-icon-ghost {
    font-size: 4.5rem;
    color: #e8e8e8;
    line-height: 1;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.svc-card:hover .svc-icon-ghost {
    color: #d5d5d5;
}

/* Card body */
.svc-card-body {
    flex: 1;
}

.svc-title {
    font-size: 1.05rem;
    color: var(--heading);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.svc-title strong {
    font-weight: 800;
}

.svc-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

.svc-desc {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Arrow button */
.svc-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    color: var(--heading);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    flex-shrink: 0;
}

.svc-arrow-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
    .services-split-inner {
        grid-template-columns: 1fr;
    }
    .services-left-panel {
        padding: 60px 30px;
    }
    .services-globe-bg {
        width: 250px;
        height: 250px;
        bottom: -50px;
        right: -50px;
    }
}

@media (max-width: 600px) {
    .services-right-grid {
        grid-template-columns: 1fr;
    }
    .svc-card {
        border-right: none;
    }
    .svc-card:nth-child(4) {
        border-bottom: 1px solid var(--glass-border);
    }
}

/* =============================================
   WHO WE ARE — SPLIT SECTION (DigiPlus Style)
   ============================================= */

.about-split {
    padding: 0;
    overflow: hidden;
}

.about-split-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 580px;
}

/* --- Left Dark Panel --- */
.about-left-panel {
    background: #1a1a2a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.about-left-content {
    position: relative;
    z-index: 2;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.about-left-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.about-left-desc {
    font-size: 0.9375rem;
    color: #9a9ab0;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

/* Feature icons row */
.about-features {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 1.75rem 0 1.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    flex: 1;
}

.about-feature-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-feature-item strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.about-feature-item span {
    font-size: 0.8rem;
    color: #9a9ab0;
}

.about-feature-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(75, 52, 217, 0.2);
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA Button */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(75, 52, 217, 0.35);
}

.about-cta-btn i {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.about-cta-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

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

/* Wave / decorative bg */
.about-wave-bg {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    z-index: 1;
}

.about-wave-bg::before {
    content: '';
    position: absolute;
    inset: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}

.about-wave-bg::after {
    content: '';
    position: absolute;
    inset: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}

/* --- Right Image Panel --- */
.about-right-panel {
    position: relative;
    overflow: hidden;
}

.about-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Yellow/primary accent block — top right corner */
.about-accent-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 130px;
    background: var(--primary);
    border-radius: 0 0 0 60px;
    z-index: 2;
}

/* Overlay caption card — bottom left */
.about-overlay-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 3;
    max-width: 280px;
}

.about-overlay-card strong {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .about-split-inner {
        grid-template-columns: 1fr;
    }
    .about-left-panel {
        padding: 60px 30px;
    }
    .about-right-panel {
        min-height: 350px;
    }
    .about-left-heading {
        font-size: 2rem;
    }
}

/* =============================================
   SERVICES — TRENDY 2025 REDESIGN
   ============================================= */

.svc2-section {
    padding: 0;
    overflow: hidden;
}

.svc2-inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 620px;
}

/* --- Left Aurora Panel --- */
.svc2-left {
    background: #0d0d1a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 50px;
}

/* Animated aurora orbs */
.svc2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    pointer-events: none;
}

.svc2-orb-1 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #4B34D9, transparent 70%);
    top: -60px; left: -60px;
    animation: orbDrift 8s ease-in-out infinite alternate;
}

.svc2-orb-2 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, #8E2DE2, transparent 70%);
    bottom: -40px; right: -40px;
    animation: orbDrift 10s ease-in-out infinite alternate-reverse;
}

.svc2-orb-3 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, #00D2D3, transparent 70%);
    top: 50%; left: 55%;
    transform: translate(-50%, -50%);
    animation: orbDrift 6s ease-in-out infinite alternate;
    opacity: 0.2;
}

@keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 20px) scale(1.08); }
}

.svc2-left-content {
    position: relative;
    z-index: 2;
}

/* Eyebrow */
.svc2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a89fff;
    margin-bottom: 1.75rem;
}

.svc2-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}

/* Heading */
.svc2-heading {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.svc2-em {
    font-style: normal;
    background: linear-gradient(135deg, #7c6fff, #c084fc, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA Button */
.svc2-cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 0.75rem 0.75rem 0.75rem 1.75rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.svc2-cta-icon {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.25rem;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 0 12px rgba(75,52,217,0.6);
}

.svc2-cta:hover {
    background: rgba(75,52,217,0.2);
    border-color: rgba(75,52,217,0.5);
    box-shadow: 0 0 20px rgba(75,52,217,0.2);
}

.svc2-cta:hover .svc2-cta-icon {
    transform: rotate(45deg);
}

/* --- Right Bento Grid --- */
.svc2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f8f8fc;
}

/* Cards */
.svc2-card {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    border-right: 1px solid #e4e4f0;
    border-bottom: 1px solid #e4e4f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.svc2-card:nth-child(2),
.svc2-card:nth-child(4) { border-right: none; }

.svc2-card:nth-child(3),
.svc2-card:nth-child(4) { border-bottom: none; }

/* Glow layer */
.svc2-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(75,52,217,0.04), rgba(142,45,226,0.04));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.svc2-card:hover .svc2-card-glow { opacity: 1; }

/* Gradient border on hover */
.svc2-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), #8E2DE2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1.5px;
}
.svc2-card:hover::after { opacity: 1; }

/* --- Card Top: Icon + Ghost side by side --- */
.svc2-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Small outlined circle icon */
.svc2-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #d0d0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--heading);
    background: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.svc2-card:hover .svc2-icon-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(75,52,217,0.3);
    transform: translateY(-2px);
}

/* Large ghost/watermark icon */
.svc2-icon-ghost {
    font-size: 4rem;
    color: #ebebf5;
    line-height: 1;
    transition: color 0.3s ease;
}
.svc2-card:hover .svc2-icon-ghost {
    color: rgba(75,52,217,0.1);
}

/* --- Card Body: text content --- */
.svc2-card-body {
    flex: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}

.svc2-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--heading);
}

.svc2-title strong {
    font-weight: 800;
    display: block;
    font-size: 1.05rem;
}

.svc2-sub {
    font-weight: 400;
    color: var(--primary);
    font-size: 0.95rem;
}

.svc2-desc {
    font-size: 0.83rem;
    color: #999;
    line-height: 1.6;
}

/* --- Circle Arrow button at the bottom --- */
.svc2-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #d8d8ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    align-self: flex-start;
    flex-shrink: 0;
}
.svc2-card:hover .svc2-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 4px 14px rgba(75,52,217,0.35);
}

/* Responsive */
@media (max-width: 900px) {
    .svc2-inner { grid-template-columns: 1fr; }
    .svc2-left { padding: 60px 30px; }
}

@media (max-width: 560px) {
    .svc2-grid { grid-template-columns: 1fr; }
    .svc2-card { border-right: none; border-bottom: 1px solid #e4e4f0; }
    .svc2-card:last-child { border-bottom: none; }
}

/* =============================================
   PROFESSIONAL SERVICES — Bento Box
   ============================================= */
.bento-section {
    padding: 140px 0;
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.05) 0%, #fdfdfd 50%, rgba(75, 52, 217, 0.05) 100%);
}
.bento-section .ps-eyebrow {
    color: var(--primary);
    background: rgba(75, 52, 217, 0.08);
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
}
.ps-header {
    text-align: center;
    margin-bottom: 4rem;
}
.ps-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary); /* Vibrant colorful border */
    box-shadow: 0 25px 50px rgba(75, 52, 217, 0.15); /* Colorful shadow */
}

.bento-wide {
    grid-column: span 2;
}
.bento-tall {
    grid-row: span 2;
}

.bento-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(75, 52, 217, 0.1), transparent 60%);
    opacity: 0;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
.bento-card:hover .bento-bg-glow {
    opacity: 1;
    transform: scale(1.5); /* Expands the color wash */
}

.bento-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1rem;
    background: rgba(75,52,217,0.05);
    border-radius: 16px;
    border: 1px solid rgba(75,52,217,0.1);
    align-self: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-icon {
    background: linear-gradient(135deg, var(--primary), #8E2DE2); /* Colorful fill */
    color: #fff;
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg); /* Playful interactive pop */
    box-shadow: 0 10px 20px rgba(75, 52, 217, 0.3);
}

.bento-content h3 {
    font-size: 1.5rem;
    color: var(--heading);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.bento-card:hover h3 {
    color: var(--primary); /* Text becomes colorful on hover */
}
.bento-wide .bento-content h3 {
    font-size: 2rem;
}

.bento-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bento-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: gap 0.3s;
}
.bento-card:hover .bento-link {
    gap: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-wide {
        grid-column: span 1;
    }
    .bento-tall {
        grid-row: span 1;
    }
}

/* MOMENTS SHOWCASE — OLD (kept for reference, overridden below) */
.moments-section { padding: 96px 0 120px; background: linear-gradient(180deg, #f6fcff 0%, #e3f4ff 100%); }
.moments-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.moments-header h2 { font-size: 2.4rem; font-weight: 800; color: var(--heading); line-height: 1.3; margin-bottom: 1rem; }
.moments-header p { color: #6b808d; font-size: 1rem; line-height: 1.7; }
.moments-showcase { position: relative; border-radius: 24px; overflow: hidden; max-height: 520px; }
.moments-main-img img { width: 100%; height: 520px; object-fit: cover; display: block; border-radius: 24px; }
.moments-float {
    position: absolute; background: #fff; border-radius: 14px;
    padding: 0.85rem 1.25rem; display: flex; align-items: center; gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); animation: floatBob 4s ease-in-out infinite;
}
.moments-float i { font-size: 1.5rem; color: var(--primary); }
.moments-float strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--heading); }
.moments-float span { font-size: 0.75rem; color: #888; }
.moments-float--1 { top: 12%; left: 3%; animation-delay: 0s; }
.moments-float--2 { top: 12%; right: 3%; animation-delay: 0.8s; }
.moments-float--3 { bottom: 12%; left: 3%; animation-delay: 1.4s; }
.moments-float--4 { bottom: 12%; right: 3%; animation-delay: 0.4s; }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =============================================
   BOLD SHOWCASE — Editorial Brutalism 2025
   ============================================= */
.showcase-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* ── Full Bleed Image ── */
.showcase-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.showcase-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    filter: saturate(0.7) brightness(0.55);
    transition: transform 8s ease;
}
.showcase-section:hover .showcase-img { transform: scale(1.04); }

/* Hard-diagonal dark + purple gradient overlay */
.showcase-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(75,52,217,0.55) 0%, transparent 55%),
        linear-gradient(to top, #000 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}

/* ── Giant Heading Block ── */
.showcase-heading-wrap {
    position: relative; z-index: 2;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 5vw 3rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.showcase-heading {
    margin: 0;
    display: flex;
    flex-direction: column;
    line-height: 0.88;
    gap: 0;
}

.showcase-line {
    display: block;
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 0.92;
}

/* Outline / ghost text variant */
.showcase-line--outline {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
}

/* ── Right Sub-column ── */
.showcase-sub-col {
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-bottom: 0.25rem;
    flex-shrink: 0;
}

.showcase-sub-text {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
}

.showcase-cta-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    text-decoration: none; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #0a0a0a; background: #fff;
    padding: 1rem 2rem; border-radius: 0;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.showcase-cta-btn i { font-size: 1.1rem; transition: transform 0.3s; }
.showcase-cta-btn:hover { background: var(--primary); color: #fff; }
.showcase-cta-btn:hover i { transform: translateX(4px); }

/* ── Bottom Stats Bar ── */
.showcase-stats-bar {
    position: relative; z-index: 3;
    background: #0a0a0a;
    display: flex;
    align-items: stretch;
    border-top: 3px solid var(--primary);
    flex-shrink: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.showcase-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 2rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
.showcase-stat:hover { background: rgba(75,52,217,0.12); }

.showcase-stat-num {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}
.showcase-stat-num em {
    font-style: normal;
    color: var(--primary);
    font-size: 0.7em;
}

.showcase-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.showcase-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
    display: none; /* handled by border-right on .showcase-stat */
}

.showcase-cta-pill {
    display: flex;
    align-items: center;
    padding: 0 3rem;
    flex-shrink: 0;
    border-left: 1px solid rgba(255,255,255,0.06);
}
.showcase-cta-pill a {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}
.showcase-cta-pill a:hover { color: #fff; }
.showcase-cta-pill i { font-size: 1rem; }

/* Responsive */
@media (max-width: 900px) {
    .showcase-section { min-height: 70vh; }
    .showcase-heading-wrap { flex-direction: column; align-items: flex-start; padding: 0 6vw 2rem; }
    .showcase-sub-col { max-width: 100%; }
    .showcase-stats-bar { flex-wrap: wrap; }
    .showcase-stat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .showcase-cta-pill { display: none; }
}
@media (max-width: 560px) {
    .showcase-stat { min-width: 100%; }
    .showcase-line { font-size: clamp(3rem, 14vw, 5rem); }
}

/* =============================================
   CASE STUDIES / PROVEN RESULTS 2025
   ============================================= */
.cs-section {
    padding: 120px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('images/15.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cs-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.cs-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    background: rgba(75,52,217,0.08);
    border-radius: 100px;
}
.cs-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.cs-card {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.cs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06), 0 0 0 1px rgba(75,52,217,0.1);
    border-color: rgba(75,52,217,0.3);
}

/* Tag */
.cs-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1.5rem;
}
.cs-tag::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.cs-card:hover .cs-tag::before {
    transform: scale(1.5);
    box-shadow: 0 0 8px rgba(75,52,217,0.5);
}

/* Typography */
.cs-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--heading);
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s;
}
.cs-card:hover h3 {
    color: var(--primary);
}
.cs-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2rem;
    flex: 1; /* Pushes metrics to bottom */
}

/* Metrics block */
.cs-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8f0;
    transition: border-color 0.3s;
}
.cs-card:hover .cs-metrics {
    border-color: rgba(75,52,217,0.15);
}
.cs-metric-num {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #2b1d7d 0%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-position 0.4s;
    transform-origin: left bottom;
}
.cs-card:hover .cs-metric-num {
    transform: scale(1.08) translateY(-2px);
    background-position: right center;
}
.cs-metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .cs-grid { grid-template-columns: 1fr; }
    .cs-section { padding: 80px 0; }
    .cs-card { padding: 2rem; }
}
/* =============================================
   VS SECTION (Typography Style)
   ============================================= */
.vs-section {
    padding: 140px 0;
    background: #fff;
}
.vs-header {
    text-align: center;
    margin-bottom: 5rem;
}
.vs-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    background: rgba(75,52,217,0.08);
    border-radius: 100px;
}
.vs-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.vs-typo-list {
    list-style: none;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.vs-typo-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    border: 1px solid #e8e8f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    border-radius: 24px;
    background: #fff;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    z-index: 1;
}

/* Glowing top border effect */
.vs-typo-list li::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #f0f0f5;
    transition: all 0.4s ease;
    z-index: 2;
}

.vs-typo-list li:hover::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.vs-typo-list li:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(75, 52, 217, 0.12);
}

.vs-trad {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #a0a0a0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
/* Add a subtle red X using a pseudo-element for the old way */
.vs-trad::before {
    content: '✕';
    font-size: 0.9rem;
    color: #ff6b6b;
    opacity: 0.6;
    font-weight: 800;
}

.vs-trad s {
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(0,0,0,0.15);
}

.vs-eco {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--heading);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.vs-eco::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="%234B34D9" d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"/></svg>') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vs-typo-list li:hover .vs-eco {
    color: var(--primary);
}
.vs-typo-list li:hover .vs-eco::before {
    transform: scale(1.15) rotate(5deg);
}

@media (max-width: 768px) {
    .vs-typo-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 650px) {
    .vs-typo-list li {
        padding: 2rem;
        gap: 1.2rem;
    }
    .vs-eco::before {
        width: 24px; height: 24px;
    }
}

/* =============================================
   PROCESS / HOW IT WORKS 2025
   ============================================= */
.process-section {
    padding: 120px 0;
    background: #0B1426; /* Navy blue */
    color: #fff;
    overflow: hidden;
}
.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}
.process-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a89fff;
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    background: rgba(168,159,255,0.1);
    border-radius: 100px;
}
.process-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    margin: 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px; /* Half of the icon circle */
    left: 40px;
    right: calc(100% / 4 + 40px);
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-icon-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #0B1426; /* Navy blue */
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800;
    color: rgba(255,255,255,0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 0 0 6px #0B1426; /* Navy blue */
}
.process-step:hover .process-icon-wrap {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: inset 0 0 0 6px #0B1426, 0 0 30px rgba(75,52,217,0.4); /* Navy blue punch-out */
    transform: scale(1.05);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s;
}
.process-step:hover h3 { color: #a89fff; }

.process-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
    .process-grid::before { display: none; }
}
@media (max-width: 560px) {
    .process-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-section { padding: 80px 0; }
}


/* =============================================
   WHO WE ARE — Compact Clean 2025
   ============================================= */
.wwa-section {
    background: linear-gradient(135deg, rgba(13,13,26,0.92) 0%, rgba(18,18,58,0.92) 60%, rgba(26,10,46,0.92) 100%), url('images/4.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    margin: 0;
}

.wwa-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── Left ── */
.wwa-left {
    display: flex;
    flex-direction: column;
}

.wwa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #a89fff;
    margin-bottom: 1.25rem;
}
.wwa-eyebrow::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1px;
    background: #a89fff;
    flex-shrink: 0;
}

.wwa-heading {
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.wwa-heading em {
    font-style: italic;
    color: #a89fff;
}

.wwa-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 460px;
}

/* Pills */
.wwa-pills {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.wwa-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid var(--primary);
    transition: background 0.2s;
}
.wwa-pill:hover { background: rgba(75,52,217,0.1); }

.wwa-pill-icon {
    width: 34px; height: 34px;
    background: rgba(75,52,217,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #a89fff;
    font-size: 1rem;
}
.wwa-pill strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}
.wwa-pill span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* CTA */
.wwa-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: #a89fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(168,159,255,0.3);
    padding-bottom: 0.3rem;
    align-self: flex-start;
    transition: color 0.2s, gap 0.2s;
}
.wwa-cta:hover { color: #fff; gap: 1rem; }
.wwa-cta i { font-size: 0.9rem; }



/* Responsive */
@media (max-width: 900px) {
    .wwa-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 560px) {
    .wwa-section { padding: 60px 0; }
    .wwa-heading { font-size: 1.8rem; }
}

/* =============================================
   INDUSTRIES — Bold Dark Row List 2025
   ============================================= */
.ind-section {
    padding: 0;
    background: #fcfcfd;
}

/* Header area — contained */
.ind-section > .container {
    padding-top: 80px;
    padding-bottom: 3rem;
}

.ind-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.ind-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.9rem;
}
.ind-eyebrow::before {
    content: '';
    display: inline-block;
    width: 1.4rem; height: 1px;
    background: var(--primary);
}

.ind-heading {
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ind-sub {
    max-width: 300px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
    flex-shrink: 0;
}

/* ── Full-width list ── */
.ind-list {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 80px;
}

/* Each row */
.ind-row {
    display: grid;
    grid-template-columns: 80px 68px 1fr auto 48px;
    align-items: center;
    gap: 2rem;
    padding: 1.6rem 5vw;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    cursor: default;
    position: relative;
    transition: background 0.35s ease;
    overflow: hidden;
}
.ind-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ic, var(--primary));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.ind-row:hover::before { opacity: 0.04; }
.ind-row:hover .ind-row-icon {
    background: var(--ic, var(--primary));
    box-shadow: 0 0 24px rgba(0,0,0,0.08), 0 0 0 1px var(--ic, var(--primary));
    border-color: transparent;
}
.ind-row:hover .ind-row-icon i { color: #fff; }
.ind-row:hover .ind-row-num { color: var(--ic, var(--primary)); }
.ind-row:hover .ind-row-arrow {
    transform: translateX(4px);
    color: var(--ic, var(--primary));
}

/* Number */
.ind-row-num {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.25);
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s;
    text-align: right;
}

/* Icon circle */
.ind-row-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.ind-row-icon i {
    font-size: 1.35rem;
    color: rgba(0,0,0,0.4);
    transition: color 0.3s;
}

/* Title + desc */
.ind-row-body { flex: 1; }
.ind-row-body h3 {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 700;
    color: var(--heading);
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.ind-row-body p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Tag */
.ind-row-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 100px;
    white-space: nowrap;
    transition: border-color 0.3s, color 0.3s;
}
.ind-row:hover .ind-row-tag {
    border-color: var(--ic, var(--primary));
    color: var(--ic, var(--primary));
}

/* Arrow */
.ind-row-arrow {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.2);
    transition: transform 0.3s, color 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .ind-row {
        grid-template-columns: 44px 52px 1fr auto;
        padding: 1.4rem 4vw;
        gap: 1.2rem;
    }
    .ind-row-arrow { display: none; }
}
@media (max-width: 560px) {
    .ind-row {
        grid-template-columns: 36px 44px 1fr;
        gap: 0.9rem;
    }
    .ind-row-tag { display: none; }
    .ind-section > .container { padding-top: 56px; }
}

/* PRICING */
.pricing-section { padding: 100px 0; background: #fff; }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.toggle-label { font-size: 0.95rem; color: #888; font-weight: 600; }
.toggle-label--active { color: var(--primary); }
.pricing-toggle { position: relative; display: inline-block; width: 52px; height: 28px; }
.pricing-toggle input { opacity: 0; width: 0; height: 0; }
.pricing-toggle-slider { position: absolute; inset: 0; background: #ddd; border-radius: 28px; cursor: pointer; transition: 0.3s; }
.pricing-toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: #fff; left: 4px; bottom: 4px; transition: 0.3s; }
.pricing-toggle input:checked + .pricing-toggle-slider { background: var(--primary); }
.pricing-toggle input:checked + .pricing-toggle-slider::before { transform: translateX(24px); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1.5rem; }
.pricing-card { border: 1px solid #e8e8f0; border-radius: 20px; padding: 2.5rem; position: relative; background: #fff; transition: all 0.3s; }
.pricing-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(75,52,217,0.1); }
.pricing-card--popular { background: var(--primary); border-color: var(--primary); }
.pricing-card--popular h4, .pricing-card--popular h2, .pricing-card--popular .pricing-period, .pricing-card--popular .pricing-list li { color: #fff; }
.pricing-card--popular .pricing-list li.pricing-no { color: rgba(255,255,255,0.4); }
.pricing-popular-badge { position: absolute; top: -1px; right: 2rem; background: #fff; color: var(--primary); font-size: 0.7rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 0 0 10px 10px; letter-spacing: 1px; }
.pricing-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.pricing-card-info h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem; }
.pricing-card--popular .pricing-card-info h4 { color: rgba(255,255,255,0.8); }
.pricing-card-info h2 { font-size: 2.2rem; color: var(--heading); margin: 0; }
.pricing-card--popular .pricing-card-info h2 { color: #fff; }
.pricing-card-info h2 span { font-size: 1rem; font-weight: 400; }
.pricing-card-icon { font-size: 2.5rem; color: rgba(75,52,217,0.12); }
.pricing-card--popular .pricing-card-icon { color: rgba(255,255,255,0.2); }
.pricing-period { color: #888; font-size: 0.875rem; margin-bottom: 1.75rem; }
.pricing-list { list-style: none; margin-bottom: 2rem; display: grid; gap: 0.85rem; }
.pricing-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text); }
.pricing-list li i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.pricing-card--popular .pricing-list li i { color: #fff; }
.pricing-list li.pricing-no { color: #bbb; }
.pricing-list li.pricing-no i { color: #ccc; }
.pricing-card-btn-wrap { margin-top: auto; }
.pricing-arrow-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid #d0d0e8; display: flex; align-items: center; justify-content: center; color: var(--heading); font-size: 1rem; text-decoration: none; transition: all 0.3s; }
.pricing-arrow-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }
.pricing-arrow-btn--white { background: #fff; border-color: #fff; color: var(--primary); }
.pricing-note { text-align: center; margin-top: 2.5rem; color: #888; font-size: 0.9rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* CTA BANNER */
.cta-banner-section { position: relative; z-index: 1; background: #0d0d1a; padding: 80px 0; overflow: hidden; }
.cta-banner-wrap { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-banner-left h2 { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1.3; margin-top: 0.75rem; }
.cta-stats-grid { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.cta-stat-item { text-align: center; position: relative; }
.cta-stat-number { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.cta-stat-number span { font-size: 2rem; color: var(--primary); }
.cta-stat-item h4 { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; margin-top: 0.5rem; }
.cta-stat-shape { position: absolute; top: -10px; right: -15px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); opacity: 0.6; }
.cta-banner-color { position: absolute; right: 0; top: 0; bottom: 0; width: 38%; background: var(--primary); opacity: 0.07; clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%); z-index: 0; }

/* EXPERT / WHO WE ARE */
.expert-section { padding: 100px 0; background: #fff; }
.expert-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.expert-img-wrap { display: flex; flex-direction: column; gap: 1rem; }
.expert-img-top { display: flex; gap: 1.5rem; align-items: flex-start; }
.expert-img-top > img { width: 55%; border-radius: 16px; object-fit: cover; height: 280px; flex-shrink: 0; }
.expert-skills { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.expert-skill-item { text-align: center; }
.expert-skill-ring { width: 80px; height: 80px; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; background: conic-gradient(var(--primary) 0% var(--pct), #e8e8f0 var(--pct) 100%); }
.expert-skill-ring span { font-size: 0.8rem; font-weight: 800; color: var(--heading); background: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.expert-skill-item p { font-size: 0.78rem; color: #888; font-weight: 600; }
.expert-img-bottom img { width: 100%; border-radius: 16px; object-fit: cover; height: 200px; }
.expert-heading { font-size: 2.4rem; font-weight: 800; color: var(--heading); line-height: 1.25; margin: 0.75rem 0 0.5rem; }
.expert-highlight { color: var(--primary); }
.expert-sub { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 1.25rem; }
.expert-desc { color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.expert-list { list-style: none; display: grid; gap: 0.85rem; }
.expert-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; }
.expert-list li i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) { .expert-inner { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testi-section { padding: 100px 0; background: #0d0d1a; }
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.testi-header p { color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 440px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2rem; transition: all 0.3s; }
.testi-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(75,52,217,0.4); }
.testi-reviewer { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.875rem; flex-shrink: 0; }
.testi-reviewer-info h4 { color: #fff; font-size: 1rem; margin-bottom: 0.25rem; }
.testi-stars { display: flex; align-items: center; gap: 0.2rem; }
.testi-stars i { color: #F5A623; font-size: 0.85rem; }
.testi-stars span { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-left: 0.4rem; }
.testi-body { margin-bottom: 1rem; }
.testi-quote { font-size: 2rem; color: var(--primary); display: block; margin-bottom: 0.5rem; line-height: 1; }
.testi-body p { color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; font-size: 0.9rem; }
.testi-role { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 600; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-section { padding: 100px 0; background: #fff; }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.faq-left h2 { font-size: 2.4rem; font-weight: 800; color: var(--heading); margin: 0.75rem 0 1rem; }
.faq-left > p { color: var(--text); line-height: 1.7; margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid #e8e8f0; }
.faq-item summary { padding: 1.4rem 0; cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--heading); display: flex; justify-content: space-between; align-items: center; list-style: none; gap: 1rem; transition: color 0.3s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--primary); }
.faq-icon { font-size: 0.9rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item > p { padding: 0 0 1.25rem; color: var(--text); line-height: 1.7; font-size: 0.9rem; }
.faq-img { width: 100%; border-radius: 20px; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
@media (max-width: 900px) { .faq-inner { grid-template-columns: 1fr; } .faq-right { display: none; } }

/* SUBSCRIBE */
.subscribe-section { padding: 0 0 80px; }
.subscribe-wrap { background: var(--primary); border-radius: 24px; padding: 4rem 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.subscribe-left h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-top: 0.5rem; }
.subscribe-right { flex: 1; min-width: 280px; }
.subscribe-form { position: relative; display: flex; align-items: center; margin-bottom: 1rem; }
.subscribe-form input { width: 100%; padding: 1.1rem 5rem 1.1rem 1.5rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25); outline: none; font-size: 0.95rem; background: rgba(255,255,255,0.15); color: #fff; }
.subscribe-form input::placeholder { color: rgba(255,255,255,0.6); }
.subscribe-btn { position: absolute; right: 6px; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; transition: all 0.3s; }
.subscribe-btn:hover { background: #0d0d1a; color: #fff; }
.subscribe-right > p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.subscribe-right > p a { color: #fff; font-weight: 700; text-decoration: underline; }
@media (max-width: 768px) { .subscribe-wrap { flex-direction: column; padding: 2.5rem 1.5rem; } }

/* =============================================
   MODERN TYPOGRAPHY (Inner Pages)
   ============================================= */
.section-subtitle {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(75, 52, 217, 0.08);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

/* =============================================
   TRENDY CTA 2025
   ============================================= */
.trendy-cta {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #050505 0%, #170b2b 50%, #0d0d1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.trendy-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(75, 52, 217, 0) 70%);
    transform: translate(-50%, -50%);
    opacity: 0.15;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.trendy-cta-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.trendy-eyebrow {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #a89fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.trendy-cta h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.trendy-cta p {
    font-size: 1.2rem;
    color: #999;
    margin: 0 auto 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.trendy-cta .btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trendy-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary), #8E2DE2);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(75, 52, 217, 0.4);
}

.trendy-btn-primary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.trendy-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(75, 52, 217, 0.6);
    color: #fff;
}

.trendy-btn-primary:hover i {
    transform: translateX(5px);
}

.trendy-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.trendy-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .trendy-cta-inner {
        padding: 4rem 2rem;
        border-radius: 30px;
    }
    .trendy-btn-primary, .trendy-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   HERO TEXT ANIMATION (TECHFOSOFT STYLE)
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-anim {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.3s; }
.hero-anim-3 { animation-delay: 0.5s; }
.hero-anim-4 { animation-delay: 0.7s; }
.hero-anim-5 { animation-delay: 0.9s; }
.hero-anim-6 { animation-delay: 1.1s; }

/* =============================================
   MOBILE RESPONSIVENESS FIXES (2025)
   ============================================= */

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.4rem;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1002;
    position: relative;
    backdrop-filter: blur(5px);
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--glass);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        overflow-y: auto;
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        margin: 0;
        padding: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        text-align: center;
        padding: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        margin-top: 1rem;
    }
}

/* Hero Section Extracted Classes for Mobile */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 8rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-top: 0;
}

.hero-subtitle {
    font-size: clamp(3rem, 7vw, 7rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-content {
        text-align: center;
    }
    .section-subtitle.hero-anim {
        text-align: center !important;
    }
    /* Ensure the avatar stack container centers nicely on mobile */
    .hero-content > div:last-child > div[style*="display: flex"] {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .hero-content > div:last-child > p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer Mobile Fixes */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col img {
        margin: 0 auto 1.5rem !important;
    }
}

/* =============================================
   INLINE STYLE OVERRIDES FOR MOBILE
   ============================================= */
@media (max-width: 900px) {
    /* Override inline 2-column grids */
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.5fr"],
    div[style*="grid-template-columns: 1.5fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.2fr"],
    div[style*="minmax(400px"],
    div[style*="minmax(350px"],
    div[style*="minmax(300px"],
    div[style*="minmax(280px"],
    div[style*="minmax(220px"],
    div[style*="minmax(150px"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Specific fixes for blog/contact markia-card grids to avoid squishing */
    .markia-card[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix any massive inline fonts on inner pages */
    h2[style*="font-size: 3rem"],
    h2[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    h3[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    h1[style*="font-size: 4rem"] {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    h1[style*="font-size: 5rem"] {
        font-size: 3rem !important;
    }
    
    /* Ensure page-hero doesn't have extreme padding on mobile */
    .page-hero[style*="padding-top: 180px"] {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
    }
    
    /* Fix asymmetrical bento grids */
    .bento-large {
        grid-column: span 1 !important;
    }
}

/* =============================================
   FLOATING WIDGETS (WhatsApp & Scroll Top)
   ============================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.progress-wrap {
    position: fixed;
    right: 35px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(75, 52, 217, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background: #fff;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--primary);
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover i {
    transform: translate(-50%, -65%);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

@media (max-width: 900px) {
    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .progress-wrap {
        bottom: 20px;
        right: 22.5px;
        width: 45px;
        height: 45px;
    }
}
