:root {
    --lime: #C8FF00;
    --pink: #FF3CAC;
    --violet: #7C3AED;
    --ink: #0F0F1A;
    --ivory: #F7F3EC;
    --lav: #F0ECFF;
    --lavd: #E4DDFF;
    --gray: #6b7280;
    --white: #fff;
    --card-radius: 20px;
    --pill-radius: 999px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #F0ECFF 34%,
            #E4DDFF 68%,
            #ffffff 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Banner */
.top-banner {
    background-color: #0F0F1A;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #7C3AED;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7C3AED;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    background-color: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-appointment {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background-color: #7C3AED;
    border-color: #7C3AED;
    color: #ffffff;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-buttons {
        display: none;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 12px;
        padding: 8px 15px;
    }

    .navbar {
        padding: 12px 15px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 16px;
    }
}

/* Hero Section */
.page-home .hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    padding: 60px 30px;
    background: linear-gradient(180deg, #F7F3EC 0%, #F0ECFF 80%, #E4DDFF 100%);
}

.page-home .hero-bg-pattern {
    position: absolute;
    bottom: 400px;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(200, 255, 0, 0.12) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 80% 30%, rgba(255, 60, 172, 0.1) 0%, transparent 70%);
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.page-home .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: transparent;
    z-index: 2;
}

.page-home .hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-home .hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.page-home .hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-home .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-home .hero-btn-primary {
    background-color: #C8FF00;
    color: #000;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 255, 0, 0.4);
    letter-spacing: 0.3px;
}

.page-home .hero-btn-primary:hover {
    background-color: #A8E000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 255, 0, 0.5);
}

.page-home .hero-btn-primary:active {
    transform: translateY(0);
}

.page-home .hero-btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.page-home .hero-btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-home .hero-btn-secondary:active {
    transform: translateY(0);
}

/* Hero Video Mockup */
.page-home .hero-video-mockup {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
}

.page-home .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Companies Section */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.companies-section {
    width: 100%;
    padding: 20px 30px;
    background: #0F0F1A;
    overflow: hidden;
}

.companies-marquee {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 1500px;
    overflow: hidden;
    mask-image: linear-gradient(90deg,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

.companies-track {
    display: flex;
    animation: scrollLeft 50s linear infinite;
}

.companies-group {
    display: flex;
    list-style: none;
    gap: 90px;
    flex-shrink: 0;
    width: fit-content;
    padding: 0 60px;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 200px;
    height: 120px;
}

.company-logo img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    filter: grayscale(100%) invert(1) opacity(0.7);
    transition: all 0.3s ease;
}

/* Stacked Feature Cards */
.feature-stack-section {
    width: 100%;
    padding: 60px 30px 0px;
    background: linear-gradient(180deg, #F0ECFF 0%, #F7F3EC 100%);
}

.feature-stack {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 70px;
}

.feature-panel {
    --panel-scale: 1;
    position: sticky;
    top: 95px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 44px;
    align-items: center;
    min-height: 620px;
    margin-bottom: 36px;
    padding: 64px;
    border-radius: 28px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(20, 20, 43, 0.18);
    transform: scale(var(--panel-scale));
    transform-origin: center top;
    transition: transform 0.08s linear;
}

.feature-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.feature-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 15, 26, 0.6) 0%, rgba(15, 15, 26, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.feature-panel-one {
    z-index: 1;
    color: #ffffff;
}

.feature-panel-one {
    background: linear-gradient(135deg, #1A0A3E 0%, #0F0F1A 60%, #0A1A2A 100%);
}

.feature-panel-one::before {}

.feature-panel-one::after {
    background:
        radial-gradient(circle at 30% 50%, rgba(200, 255, 0, 0.18) 0%, transparent 55%),
        linear-gradient(135deg, rgba(15, 15, 26, 0.85) 0%, rgba(30, 15, 60, 0.75) 100%);
}

.feature-panel-two {
    z-index: 2;
}

.feature-panel-two {
    background: linear-gradient(135deg, #2D0A4E 0%, #0F0F1A 60%, #1A0A3E 100%);
}

.feature-panel-two::before {}

.feature-copy,
.feature-video-wrap {
    position: relative;
    z-index: 2;
}

.feature-copy {
    max-width: 500px;
}

.feature-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.feature-copy h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.feature-copy p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.feature-panel-one .feature-kicker {
    color: rgba(200, 255, 0, 0.8);
}

.feature-panel-one .feature-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.feature-panel-one .feature-button {
    background-color: #C8FF00;
    color: #0F0F1A;
    border: none;
    box-shadow: 0 8px 24px rgba(200, 255, 0, 0.3);
}

.feature-panel-one .feature-button:hover {
    background-color: #A8E000;
    color: #0F0F1A;
}

.feature-button {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.feature-video-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.feature-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Solutions Slider */
.solutions-section {
    width: 100%;
    padding: 70px 0 110px;
    background: linear-gradient(180deg, #F7F3EC 0%, #F0ECFF 80%, #E4DDFF 100%);
    overflow: hidden;
}

.solutions-container {
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.solutions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
    padding: 0 30px;
}

.solutions-kicker {
    margin-bottom: 18px;
    color: #0F0F1A;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.solutions-kicker span {
    color: #727583;
    margin-left: 6px;
}

.solutions-title {
    max-width: 720px;
    color: #0F0F1A;
    font-size: 50px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.solutions-nav {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.solutions-arrow {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1.5px solid #0F0F1A;
    border-radius: 50%;
    background: #ffffff;
    color: #0F0F1A;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.solutions-arrow:hover {
    background: #0F0F1A;
    color: #C8FF00;
}

.solutions-arrow:disabled {
    opacity: 0.38;
    cursor: default;
}

.solutions-arrow:disabled:hover {
    background: #ffffff;
    color: #0F0F1A;
}

.solutions-slider {
    display: flex;
    gap: 12px;
    width: 100vw;
    margin-left: 32px;
    padding-left: max(30px, calc((100vw - 1400px) / 2 + 30px));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.solutions-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.solutions-slider::-webkit-scrollbar {
    display: none;
}

.solutions-slider img {
    pointer-events: none;
    user-select: none;
}

.solution-card {
    position: relative;
    flex: 0 0 430px;
    min-height: 500px;
    padding: 24px;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    scroll-snap-align: start;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0) 52%, rgba(15, 15, 26, 0.08) 52.2%, rgba(200, 255, 0, 0.35) 100%),
        repeating-linear-gradient(45deg, rgba(15, 15, 26, 0.06) 0 1px, rgba(255, 255, 255, 0) 1px 6px),
        #EDE8FF;
    color: #0F0F1A;
    transition: flex-basis 0.35s ease, box-shadow 0.35s ease;
}

.solution-card.is-expanded {
    flex-basis: 800px;
    box-shadow: 0 18px 50px rgba(15, 15, 26, 0.14);
}

.solution-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.solution-eyebrow {
    margin-bottom: 12px;
    color: #0F0F1A;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.solution-card h3 {
    max-width: 310px;
    color: #0F0F1A;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom:10px;
}

.solution-toggle {
    position: relative;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border: 1.5px solid #0F0F1A;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.solution-toggle::before,
.solution-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.7px;
    background: #0F0F1A;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.solution-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.solution-toggle:hover {
    background: rgba(255, 255, 255, 0.45);
}

.solution-card.is-expanded .solution-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.solution-poster {
    position: absolute;
    left: 74px;
    right: 74px;
    bottom: 74px;
    z-index: 1;
    display: grid;
    place-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.45);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.solution-poster img {
    width: 100%;
    max-height: 210px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

.solution-expanded {
    position: absolute;
    inset: 150px 0 0 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 28px;
    align-items: center;
    padding: 0 0 24px 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.solution-card.is-expanded .solution-poster {
    opacity: 0;
    transform: translateY(20px);
}

.solution-card.is-expanded .solution-expanded {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.solution-expanded-copy {
    align-self: end;
    padding-bottom: 26px;
}

.solution-expanded-copy p {
    max-width: 340px;
    margin-bottom: 30px;
    color: #0F0F1A;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 32px;
    border-radius: 32px;
    background: #0F0F1A;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
}

.solution-expanded-img {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 13px 0 0 13px;
    background: rgba(255, 255, 255, 0.42);
    overflow: hidden;
}

.solution-expanded-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: left top;
    display: block;
    border-radius: 7px 0 0 7px;
}

/* Benefits Section */
.benefits-section {
    width: 100%;
    padding: 90px 30px 110px;
    background: linear-gradient(180deg, #F0ECFF 0%, #E4DDFF 100%);
    overflow: hidden;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 42px;
}

.benefits-kicker {
    grid-column: 1 / -1;
    color: #7C3AED;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.benefits-title {
    color: #0F0F1A;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
}

.benefits-intro {
    color: #4a5568;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    perspective: 1200px;
}

.benefit-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    min-height: 300px;
    padding: 26px;
    border: 1px solid rgba(15, 15, 26, 0.08);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(240, 236, 255, 0.9), rgba(255, 255, 255, 0.97));
    box-shadow: 0 16px 40px rgba(15, 15, 26, 0.07);
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transform-style: preserve-3d;
    transition: opacity 0.6s ease, transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.52) 42%, rgba(255, 255, 255, 0) 72%);
    transform: translateX(-120%);
    pointer-events: none;
    z-index: 0;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle at top right, rgba(200, 255, 0, 0.15) 0%, transparent 60%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    border-radius: 0 18px 0 0;
}

.benefits-section.is-in-view .benefit-card {
    opacity: 1;
    transform: translateY(0);
}

.benefits-section.is-in-view .benefit-card::before {
    animation: benefitSheen 1.1s ease forwards;
    animation-delay: var(--benefit-delay, 0ms);
}

.benefit-card:hover,
.benefits-section.is-in-view .benefit-card:hover {
    border-color: rgba(200, 255, 0, 0.35);
    transform: translateY(-14px) scale(1.15) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    box-shadow: 0 30px 70px rgba(15, 15, 26, 0.18), 0 12px 24px rgba(200, 255, 0, 0.12);
    z-index: 5;
    transition-delay: 0ms;
}

.benefit-card:hover .benefit-icon,
.benefit-card:hover .benefit-number,
.benefit-card:hover h3,
.benefit-card:hover p,
.benefit-card:hover span {
    transform: translateZ(22px);
}

.benefit-card .benefit-icon,
.benefit-card .benefit-number,
.benefit-card h3,
.benefit-card p,
.benefit-card span {
    position: relative;
    z-index: 1;
    transition: transform 0.16s ease-out;
}

.benefit-card:nth-child(1) {
    --benefit-delay: 0ms;
    transition-delay: 0ms;
}

.benefit-card:nth-child(2) {
    --benefit-delay: 90ms;
    transition-delay: 70ms;
}

.benefit-card:nth-child(3) {
    --benefit-delay: 180ms;
    transition-delay: 140ms;
}

.benefit-card:nth-child(4) {
    --benefit-delay: 270ms;
    transition-delay: 210ms;
}

.benefit-card:nth-child(5) {
    --benefit-delay: 360ms;
    transition-delay: 280ms;
}

.benefit-card:nth-child(6) {
    --benefit-delay: 450ms;
    transition-delay: 350ms;
}

@keyframes benefitSheen {
    100% {
        transform: translateX(120%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .benefit-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .benefit-card::before {
        display: none;
    }

    .benefit-card:hover,
    .benefit-card:hover .benefit-icon,
    .benefit-card:hover .benefit-number,
    .benefit-card:hover h3,
    .benefit-card:hover p,
    .benefit-card:hover span {
        transform: none;
    }
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: #0F0F1A;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.benefit-number {
    display: block;
    margin-bottom: 8px;
    color: #7C3AED;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: #0F0F1A;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.benefit-card p {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.benefit-card span {
    display: inline-block;
    margin-top: 12px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
}

.benefit-card-wide {
    grid-column: span 2;
    min-height: 190px;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.benefit-card-wide .benefit-number {
    margin-bottom: 0;
    font-size: 46px;
}

/* Featured Employees */
.featured-employees-section {
    width: 100%;
    padding: 96px 30px;
    background: linear-gradient(180deg, #E4DDFF 0%, #ffffff 100%);
    overflow: visible;
}

.featured-employees-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-employees-header {
    max-width: 820px;
    margin-bottom: 48px;
}

.featured-employees-kicker {
    margin-bottom: 16px;
    color: #7C3AED;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.featured-employees-title {
    color: #0F0F1A;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.featured-employees-intro {
    max-width: 700px;
    color: #4a5568;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.employee-visual-wall {
    position: relative;
    min-height: 520px;
    perspective: 1200px;
}

.employee-photo-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --base-rotate: 0deg;
    position: absolute;
    width: clamp(190px, 17vw, 290px);
    aspect-ratio: 0.82;
    border: 8px solid #ffffff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 55px rgba(15, 15, 26, 0.14);
    cursor: pointer;
    outline: none;
    transform: translate(-50%, -50%) rotate(var(--base-rotate));
    transform-style: preserve-3d;
    transition: transform 0.16s ease-out, box-shadow 0.16s ease-out;
}

.employee-photo-card:hover,
.employee-photo-card:focus-visible {
    z-index: 10;
    transform: translate(-50%, -50%) scale(1.12) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(var(--base-rotate));
    box-shadow: 0 34px 80px rgba(15, 15, 26, 0.22), 0 16px 30px rgba(200, 255, 0, 0.2);
}

.employee-photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    pointer-events: none;
    user-select: none;
}

.employee-tooltip {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: min(310px, 118%);
    padding: 18px;
    border: 1px solid rgba(15, 15, 26, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(15, 15, 26, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 76%, 28px) scale(0.94);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.employee-photo-card:hover .employee-tooltip,
.employee-photo-card:focus-visible .employee-tooltip {
    opacity: 1;
    transform: translate3d(-50%, 92%, 34px) scale(1);
    pointer-events: auto;
}

.employee-tooltip span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #7C3AED;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.employee-tooltip h3 {
    margin-bottom: 8px;
    color: #0F0F1A;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.employee-tooltip p {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
}

.employee-hire-btn {
    display: inline-block;
    padding: 6px 14px;
    background: #0F0F1A;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.employee-hire-btn:hover {
    background: #C8FF00;
    color: #0F0F1A;
    transform: translateY(-1px);
}

.employee-card-one {
    --base-rotate: 1deg;
    left: 12%;
    top: 42%;
}

.employee-card-two {
    --base-rotate: -3deg;
    left: 33%;
    top: 50%;
}

.employee-card-three {
    --base-rotate: 5deg;
    left: 52%;
    top: 40%;
}

.employee-card-four {
    --base-rotate: -2deg;
    left: 71%;
    top: 51%;
    aspect-ratio: 0.8;
}

.employee-card-five {
    --base-rotate: 2deg;
    left: 90%;
    top: 42%;
}

/* =============================================
   Blog / Resources Section
   ============================================= */

.blog-section {
    width: 100%;
    padding: 96px 0 110px;
    background: linear-gradient(180deg, #F7F3EC 0%, #F0ECFF 50%, #F7F3EC 100%);
}

.blog-container {
    max-width: none;
    margin: 0 auto;
}

/* Header row */
.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 56px;
    padding: 0 30px;
}

.blog-kicker {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0F0F1A;
    margin-bottom: 18px;
}

.blog-count {
    color: #FF3CAC;
}

.blog-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -1.5px;
    color: #0F0F1A;
    text-transform: uppercase;
}

/* Nav arrows — exactly like screenshot circles */
.blog-nav {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    padding-bottom: 6px;
}

.blog-arrow {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1.5px solid #0F0F1A;
    background: #ffffff;
    color: #0F0F1A;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease, transform 0.18s ease;
    line-height: 1;
    user-select: none;
}

.blog-arrow:hover {
    background: #0F0F1A;
    color: #C8FF00;
    transform: scale(1.06);
}

.blog-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Slider — full-width scroll container */
.blog-slider {
    display: flex;
    gap: 24px;
    margin-left: 32px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 12px;
    cursor: grab;
}

.blog-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-slider a,
.blog-slider img {
    user-select: none;
    -webkit-user-drag: none;
}

/* Left spacer — aligned via JS to match header left edge */
.blog-slider-spacer {
    flex: 0 0 0px;
    pointer-events: none;
}

/* Cards */
.blog-card {
    flex: 0 0 430px;
    min-height: 500px;
    min-width: 0;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 15, 26, 0.08);
    box-shadow: 0 4px 20px rgba(15, 15, 26, 0.06);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
    will-change: transform;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(15, 15, 26, 0.13);
    border-color: rgba(200, 255, 0, 0.35);
}

/* Last card gets right margin for spacer effect */
.blog-card:last-child {
    margin-right: 30px;
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Cover image */
.blog-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a1a2e;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(20, 20, 36, 0) 40%,
            rgba(20, 20, 36, 0.45) 100%);
    pointer-events: none;
}

/* Text body */
.blog-card-body {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: #0F0F1A;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: #7C3AED;
}

.blog-card-excerpt {
    font-size: 14px;
    font-weight: 400;
    color: #5a6672;
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tag pills */
.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid rgba(15, 15, 26, 0.07);
}

.blog-tag {
    font-size: 12px;
    font-weight: 700;
    color: #0F0F1A;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.blog-tag+.blog-tag::before {
    content: '·';
    margin-right: 8px;
    color: #a0aec0;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .blog-title {
        font-size: 44px;
    }

    .blog-card {
        flex-basis: 390px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 72px 0 90px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 36px;
    }

    .blog-title {
        font-size: 38px;
    }

    .blog-nav {
        padding-bottom: 0;
    }

    .blog-card {
        flex-basis: min(86vw, 560px);
        min-height: 560px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .blog-card {
        flex-basis: 86vw;
        min-height: 520px;
    }
}

/* Testimonials */
.testimonials-section {
    width: 100%;
    padding: 92px 0 120px;
    background: linear-gradient(180deg, #F7F3EC 0%, #F0ECFF 80%, #E4DDFF 100%);
}

.testimonials-container {
    max-width: none;
    margin: 0 auto;
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
    padding: 0 30px;
}

.testimonials-kicker {
    margin-bottom: 16px;
    color: #7C3AED;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.testimonials-title {
    max-width: 760px;
    color: #0F0F1A;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
}

.testimonials-nav {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.testimonials-arrow {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1.5px solid #0F0F1A;
    border-radius: 50%;
    background: #ffffff;
    color: #0F0F1A;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.testimonials-arrow:hover {
    background: #0F0F1A;
    color: #C8FF00;
}

.testimonials-arrow:disabled {
    opacity: 0.38;
    cursor: default;
}

.testimonials-arrow:disabled:hover {
    background: #ffffff;
    color: #0F0F1A;
}

.testimonials-slider {
    display: flex;
    gap: 32px;
    margin-left: 32px;
    padding-left: 0 !important;
    overflow-x: visible;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 50px;
    padding-top: 50px;
    margin-top: -50px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    perspective: 1200px;
}

.slider-spacer {
    flex: 0 0 calc((100vw - 1400px) / 2 + 30px);
}

@media (max-width: 1400px) {
    .slider-spacer {
        flex: 0 0 30px;
    }
}

.testimonials-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    flex: 0 0 1000px;
    background: transparent;
    scroll-snap-align: start;
    transform-style: preserve-3d;
    transition: transform 0.16s ease-out;
}

.testimonial-card:hover {
    z-index: 5;
}

.mp-client-testimonials__layout {
    display: flex;
    position: relative;
    z-index: 2;
    height: 100%;
    gap: 8px;
}

.mp-client-testimonials__quote-block {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A0A3E 100%);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(15, 15, 26, 0.12);
    transition: box-shadow 0.16s ease-out, border-color 0.16s ease-out;
    border: 1px solid transparent;
}

.testimonial-card:hover .mp-client-testimonials__quote-block {
    border-color: rgba(200, 255, 0, 0.35);
    box-shadow: 0 30px 70px rgba(15, 15, 26, 0.18), 0 12px 24px rgba(200, 255, 0, 0.12);
}

.mp-client-testimonials__logo-img {
    margin-bottom: 32px;
}

.mp-client-testimonials__quote {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 48px;
    position: relative;
}

.mp-client-testimonials__quote::before {
    content: '“';
    color: #C8FF00;
    font-size: 60px;
    line-height: 1;
    position: absolute;
    left: -32px;
    top: -16px;
    font-family: serif;
}

.mp-client-testimonials__quote-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mp-client-testimonials__quote-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #C8FF00;
    display: grid;
    place-items: center;
}

.mp-client-testimonials__author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-placeholder {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.mp-client-testimonials__quote-author cite {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.mp-client-testimonials__quote-author b {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.mp-client-testimonials__quote-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.mp-client-testimonials__stats-block {
    width: 320px;
    background: linear-gradient(135deg, #F0ECFF 0%, #E4DDFF 100%);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 15px 5px rgba(94, 94, 95, 0.3);
    transition: box-shadow 0.16s ease-out;
}

.testimonial-card:hover .mp-client-testimonials__stats-block {
    box-shadow: 0 30px 70px rgba(15, 15, 26, 0.10);
}

.mp-client-testimonials__stats-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle at top right, rgba(200, 255, 0, 0.15) 0%, transparent 60%);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    z-index: 1;
}

.mp-client-testimonials__stats-block-number {
    position: relative;
    z-index: 2;
    font-size: 56px;
    font-weight: 800;
    color: #0F0F1A;
    margin-bottom: 16px;
    line-height: 1;
}

.mp-client-testimonials__stats-block-text {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #0F0F1A;
    line-height: 1.4;
    font-weight: 500;
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-video-mockup {
        max-width: 100%;
    }

    .feature-panel {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 54px 42px;
    }

    .feature-copy h2 {
        font-size: 46px;
    }

    .feature-video-wrap {
        aspect-ratio: 16 / 9;
    }

    .solutions-title {
        font-size: 42px;
    }

    .solution-card {
        flex-basis: 390px;
    }

    .solution-card.is-expanded {
        flex-basis: 720px;
    }

    .solution-expanded-img img {
        height: 320px;
    }

    .benefits-header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefits-title {
        font-size: 42px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-employees-title {
        font-size: 42px;
    }

    .employee-visual-wall {
        min-height: 470px;
    }

    .employee-photo-card {
        width: clamp(170px, 20vw, 245px);
    }

    .testimonials-title {
        font-size: 42px;
    }

    .testimonial-quote-block blockquote {
        font-size: 30px;
    }

    .testimonial-stat-number {
        font-size: 50px;
    }

    .companies-group {
        gap: 80px;
        padding: 0 60px;
    }

    .company-logo {
        min-width: 170px;
        height: 100px;
    }

    .company-logo img {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .page-home .hero-title {font-size:48px !important;}
    .hero {
        padding: 40px 20px;
    }

    .hero-content {
        margin-bottom: 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-cta {
        gap: 15px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-video-mockup {
        border-radius: 15px;
    }

    .feature-stack-section {
        padding: 60px 20px 0px;
    }

    .feature-stack {
        padding-bottom: 70px;
    }

    .feature-panel {
        top: 86px;
        gap: 30px;
        padding: 42px 28px;
        border-radius: 22px;
    }

    .feature-panel::after {
        background: linear-gradient(180deg, rgba(15, 15, 26, 0.78) 0%, rgba(15, 15, 26, 0.48) 100%);
    }

    .feature-panel-one::after {
        background:
            radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 40%, rgba(255, 255, 255, 0) 70%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
    }

    .feature-copy h2 {
        font-size: 36px;
    }

    .feature-copy p {
        font-size: 16px;
    }

    .solutions-section {
        padding: 58px 0 90px;
    }

    .solutions-container {
        padding: 0;
    }

    .solutions-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 36px;
        padding: 0 20px;
    }

    .solutions-slider {
        padding-left: 20px;
    }

    .solutions-title {
        font-size: 38px;
    }

    .solutions-arrow {
        width: 56px;
        height: 56px;
    }

    .solution-card,
    .solution-card.is-expanded {
        flex-basis: min(86vw, 560px);
        min-height: 560px;
    }

    .solution-card h3 {
        max-width: 340px;
        font-size: 24px;
    }

    .solution-poster {
        left: 42px;
        right: 42px;
        bottom: 56px;
    }

    .solution-expanded {
        grid-template-columns: 1fr;
        inset: 145px 0 0 0;
        gap: 18px;
        padding: 0 20px 24px;
    }

    .solution-expanded-copy {
        align-self: start;
        padding-bottom: 0;
    }

    .solution-expanded-copy p {
        max-width: none;
        margin-bottom: 18px;
        font-size: 16px;
    }

    .solution-cta {
        min-height: 52px;
        padding: 0 26px;
        font-size: 15px;
    }

    .solution-expanded-img {
        border-radius: 13px;
    }

    .solution-expanded-img img {
        height: 230px;
        border-radius: 7px;
    }

    .benefits-section {
        padding: 70px 20px 86px;
    }

    .benefits-title {
        font-size: 36px;
    }

    .benefits-intro {
        font-size: 16px;
    }

    .benefit-card {
        min-height: 260px;
    }

    .benefit-card-wide {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .featured-employees-section {
        padding: 72px 20px 92px;
    }

    .featured-employees-title {
        font-size: 36px;
    }

    .featured-employees-intro {
        font-size: 16px;
    }

    .employee-visual-wall {
        display: flex;
        gap: 18px;
        min-height: auto;
        overflow-x: auto;
        overflow-y: visible;
        padding: 12px 0 170px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        perspective: none;
    }

    .employee-visual-wall::-webkit-scrollbar {
        display: none;
    }

    .employee-photo-card {
        position: relative;
        left: auto;
        top: auto;
        flex: 0 0 245px;
        width: 245px;
        transform: rotate(var(--base-rotate));
        scroll-snap-align: start;
    }

    .employee-photo-card:hover,
    .employee-photo-card:focus-visible {
        transform: scale(1.06) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(var(--base-rotate));
    }

    .testimonials-section {
        padding: 74px 20px 92px;
    }

    .testimonials-header {
        margin-bottom: 34px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }

    .testimonial-quote-block,
    .testimonial-quote-secondary {
        min-height: auto;
        padding: 34px;
        grid-column: auto;
    }

    .testimonial-quote-block blockquote,
    .testimonial-quote-secondary blockquote {
        font-size: 26px;
        margin: 36px 0;
    }

    .companies-section {
        padding: 40px 20px;
    }

    .companies-group {
        gap: 60px;
        padding: 0 30px;
    }

    .company-logo {
        min-width: 140px;
        height: 90px;
    }

    .company-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 16px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px !important;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-video-mockup {
        border-radius: 12px;
    }

    .feature-stack-section {
        padding: 44px 16px 30px;
    }

    .feature-stack {
        padding-bottom: 10vh;
    }

    .feature-panel {
        top: 78px;
        gap: 24px;
        padding: 32px 20px;
        border-radius: 18px;
        margin-bottom: 24px;
    }

    .feature-copy h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .feature-copy p {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .feature-button {
        width: 100%;
        padding: 14px 22px;
    }

    .feature-video-wrap {
        border-radius: 14px;
    }

    .solutions-section {
        padding: 44px 0 70px;
    }

    .solutions-container {
        padding: 0;
    }

    .solutions-kicker {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .solutions-title {
        font-size: 30px;
        line-height: 1.04;
    }

    .solutions-header {
        padding: 0 16px;
    }

    .solutions-slider {
        padding-left: 16px;
    }

    .solutions-nav {
        gap: 10px;
    }

    .solutions-arrow {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .solution-card,
    .solution-card.is-expanded {
        flex-basis: 86vw;
        min-height: 520px;
        padding: 20px;
    }

    .solution-toggle {
        width: 44px;
        height: 44px;
    }

    .solution-card h3 {
        font-size: 22px;
    }

    .solution-poster {
        left: 24px;
        right: 24px;
        bottom: 48px;
    }

    .solution-expanded {
        inset: 150px 0 0 0;
    }

    .solution-expanded-img img {
        height: 190px;
    }

    .benefits-section {
        padding: 56px 16px 70px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-title {
        font-size: 30px;
    }

    .benefit-card,
    .benefit-card-wide {
        grid-column: auto;
        min-height: auto;
        padding: 22px;
        border-radius: 14px;
    }

    .benefit-number {
        font-size: 42px;
    }

    .benefit-card-wide .benefit-number {
        font-size: 42px;
    }

    .featured-employees-section {
        padding: 56px 16px 72px;
    }

    .featured-employees-header {
        margin-bottom: 30px;
    }

    .featured-employees-title {
        font-size: 30px;
    }

    .employee-visual-wall {
        padding-bottom: 180px;
    }

    .employee-photo-card {
        flex-basis: 220px;
        width: 220px;
        border-width: 6px;
        border-radius: 20px;
    }

    .employee-tooltip {
        width: 260px;
    }

    .testimonials-section {
        padding: 60px 0 76px;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-card {
        flex-basis: 90vw;
    }

    .mp-client-testimonials__layout {
        flex-direction: column;
    }

    .mp-client-testimonials__quote-block {
        padding: 32px;
    }

    .mp-client-testimonials__quote {
        font-size: 18px;
    }

    .mp-client-testimonials__stats-block {
        width: 100%;
        padding: 32px;
    }

    .mp-client-testimonials__stats-block-number {
        font-size: 44px;
    }

    .companies-section {
        padding: 30px 16px;
    }

    .companies-group {
        gap: 40px;
        padding: 0 20px;
    }

    .company-logo {
        min-width: 110px;
        height: 70px;
    }

    .company-logo img {
        max-height: 45px;
    }
}

/* =============================================
   FAQ Section
   ============================================= */

.faq-section {
    position: relative;
    width: 100%;
    padding: 110px 30px 130px;
    background: linear-gradient(180deg, #F7F3EC 0%, #F0ECFF 50%, #E4DDFF 100%);
    overflow: hidden;
}

/* Ambient blobs */
.faq-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.faq-bg-blur-one {
    width: 520px;
    height: 520px;
    top: 100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 60, 172, 0.12) 0%, rgba(255, 60, 172, 0) 70%);
}

.faq-bg-blur-two {
    width: 400px;
    height: 400px;
    bottom: 60px;
    left: -80px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, rgba(200, 255, 0, 0) 70%);
}

.faq-container {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #7C3AED;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.faq-title {
    color: #0F0F1A;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.faq-subtitle {
    color: #4a5568;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.faq-contact-link {
    color: #7C3AED;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(124, 58, 237, 0.35);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-contact-link:hover {
    color: #5B21B6;
    border-color: #5B21B6;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Card */
.faq-card {
    position: relative;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 15, 26, 0.08);
    border-radius: 20px;
    box-shadow:
        0 4px 20px rgba(15, 15, 26, 0.06),
        0 1px 4px rgba(15, 15, 26, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
    transform: translateY(0px);
}

.faq-card:hover {
    box-shadow:
        0 12px 40px rgba(15, 15, 26, 0.11),
        0 4px 12px rgba(200, 255, 0, 0.08);
    border-color: rgba(200, 255, 0, 0.2);
    transform: translateY(-3px);
}

.faq-card--open {
    border-color: rgba(200, 255, 0, 0.28);
    box-shadow:
        0 12px 48px rgba(15, 15, 26, 0.1),
        0 4px 16px rgba(200, 255, 0, 0.1);
    transform: translateY(-2px);
}

.faq-card--open::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7C3AED, #FF3CAC);
    border-radius: 20px 0 0 20px;
}

/* Question button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px 28px 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 19px;
    font-weight: 700;
    color: #0F0F1A;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #7C3AED;
}

.faq-card--open .faq-question {
    color: #7C3AED;
    padding-bottom: 18px;
}

/* Plus/Minus icon */
.faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 15, 26, 0.18);
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.35s ease;
}

.faq-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    background: #0F0F1A;
    border-radius: 2px;
    transition: transform 0.35s ease, background 0.25s ease, opacity 0.25s ease;
}

.faq-icon span:nth-child(1) {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon span:nth-child(2) {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-card--open .faq-icon {
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    border-color: transparent;
    transform: rotate(45deg);
}

.faq-card--open .faq-icon span {
    background: #ffffff;
}

/* Answer panel – grid rows trick for smooth height animation */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card--open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 36px 28px 36px;
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.faq-answer-inner strong {
    color: #0F0F1A;
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 20px 100px;
    }

    .faq-title {
        font-size: 34px;
    }

    .faq-question {
        font-size: 16px;
        padding: 22px 20px 22px 24px;
    }

    .faq-card--open .faq-question {
        padding-bottom: 14px;
    }

    .faq-answer-inner p {
        padding: 0 24px 22px 24px;
        font-size: 15px;
    }
}

/* =============================================
   CTA / Contact Section - Modern 2-Step Redesign
   ============================================= */
.cta-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F0ECFF 100%);
    overflow: hidden;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    left: -200px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.07) 0%, rgba(200, 255, 0, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.07) 0%, rgba(200, 255, 0, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-card-new {
    position: relative;
    display: flex;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A0A3E 60%, #2D0A4E 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(15, 15, 26, 0.4),
        0 1px 3px rgba(15, 15, 26, 0.2);

}

/* Left Side: Form Panel */
.cta-form-panel {
    flex: 1.1;
    background-color: #ffffff;
    background-image: radial-gradient(circle at top right, rgba(200, 255, 0, 0.15) 0%, transparent 60%);
    background-repeat: no-repeat;
    background-position: top right;
    padding: 64px 72px;
    position: relative;
    z-index: 2;
}

.cta-logo-wrap {
    margin-bottom: 32px;
}

.logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 255, 0, 0.12);
    color: #C8FF00;
}

.cta-panel-title {
    font-size: 40px;
    font-weight: 850;
    color: #0F0F1A;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cta-panel-subtitle {
    font-size: 18px;
    color: rgba(15, 15, 26, 0.6);
    line-height: 1.5;
    margin-bottom: 40px;
}

.cta-multistep-form {
    display: grid;
}

/* Step Header */
.cta-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.step-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(15, 15, 26, 0.1);
    border-radius: 2px;
    margin-right: 24px;
    overflow: hidden;
}

.step-progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #7C3AED, #FF3CAC);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.step-counter {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

/* Step Animations */
.form-step {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.form-step.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: stepFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Minimal Fields */
.minimal-field {
    margin-bottom: 48px;
}

.minimal-field label {
    display: block;
    font-size: 13px;
    font-weight: 750;
    color: rgba(15, 15, 26, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.minimal-field input,
.minimal-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(15, 15, 26, 0.15);
    font-size: 32px;
    font-weight: 500;
    color: #0F0F1A;
    padding: 8px 0;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: none;
    color-scheme: light;
}

.minimal-field input::placeholder,
.minimal-field textarea::placeholder {
    color: rgba(15, 15, 26, 0.3);
    font-weight: 400;
}

.minimal-field input:focus,
.minimal-field textarea:focus {
    outline: none;
    border-bottom-color: #C8FF00;
}

/* Services Grid (Chips) */
.services-field {
    margin-bottom: 24px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.chip {
    padding: 14px 24px;
    background: rgba(15, 15, 26, 0.03);
    border: 1px solid rgba(15, 15, 26, 0.1);
    color: #0F0F1A;
    border-radius: 100px;
    font-size: 15.5px;
    font-weight: 650;
    color: #131A15;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.chip:hover {
    background: rgba(15, 15, 26, 0.05);
    border-color: rgba(15, 15, 26, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 15, 26, 0.08);
}

.chip.is-selected {
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25);
    transform: translateY(-2px);
}

/* Footer & Buttons */
.form-step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 32px;
}

.step-dots {
    display: flex;
    gap: 10px;
}

.sdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 15, 26, 0.1);
    transition: background 0.3s ease;
}

.sdot.active {
    background: #7C3AED;
}

.step-nav-btns {
    display: flex;
    gap: 16px;
}

.cta-btn-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #ffffff;
    font-size: 17px;
    font-weight: 750;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.3);
}

.cta-btn-ghost {
    padding: 18px 24px;
    background: transparent;
    color: rgba(15, 15, 26, 0.6);
    font-size: 16px;
    font-weight: 650;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cta-btn-ghost:hover {
    color: #ffffff;
}

/* Right Side: Visual Testimonial Panel */
.cta-visual-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 64px;
    min-height: 700px;
    line-height: 1.6;
}

.cta-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.4) 0%, rgba(15, 15, 26, 0.95) 100%);
    z-index: 1;
}

.cta-visual-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
}

.cta-visual-text {
    text-align: left;
}

.cta-visual-heading {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-visual-subtext {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 8px;
}

.cta-visual-phone {
    font-size: 32px;
    font-weight: 700;
    color: #C8FF00;
    line-height: 1.2;
}

/* =============================================
   Responsive Breakpoints
   ============================================= */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-card-new {
        flex-direction: column;
        border-radius: 24px;
    }

    .cta-form-panel {
        padding: 48px 32px;
    }

    .cta-visual-panel {
        min-height: 520px;
        padding: 48px 32px;
    }

    .cta-meta-grid {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cta-panel-title {
        font-size: 28px;
    }

    .cta-visual-panel {
        padding: 40px 24px;
    }

    .cta-quote {
        font-size: 22px;
        margin-bottom: 32px;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-meta-grid {
        grid-template-columns: 1fr;
    }

    .meta-item:nth-child(3) {
        grid-row: auto;
    }

    .meta-brand-wrap {
        justify-content: flex-start;
        padding-top: 12px;
    }
}




/* =============================================
   Semrush-Style Footer
   ============================================= */
.site-footer {
    width: 100%;
    font-family: inherit;
    position: relative;
    z-index: 1;
    display: grid;
}

.footer-top-wrap {
    background: linear-gradient(180deg, #E4DDFF 0%, #F7F3EC 40%, #ffffff 100%);
    position: relative;
    z-index: 2;
    grid-area: 1 / 1;
    margin-bottom: 22vw;
    padding: 80px 30px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-cta {
    flex: 0 0 320px;
}

.footer-cta h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #0F0F1A;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-cta p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.5;
}

.footer-btn {
    background: #C8FF00;
    color: #0F0F1A;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #90C800;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(200, 255, 0, 0.4);
}

.footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0F0F1A;
    margin-bottom: 20px;
}

.footer-col .mt-4 {
    margin-top: 32px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #7C3AED;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 15, 26, 0.08);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #0F0F1A;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #C8FF00;
}

.footer-meta-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-copyright {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
}

.brand-adobe-text {
    font-family: inherit;
}

.meta-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    font-weight: 500;
}

.meta-nav a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.meta-nav a:hover {
    color: #7C3AED;
}

.lang-dropdown {
    color: #0F0F1A;
    cursor: pointer;
    font-weight: 600;
}

/* Giant Pattern Brand Bottom */
.footer-giant-brand {
    box-sizing: border-box;
    height: 22vw;
    position: sticky;
    top: calc(100vh - 22vw);
    z-index: 1;
    grid-area: 1 / 1;
    align-self: start;
    width: 100%;
    padding: 4vw;
    overflow: hidden;
    background: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px,
            transparent 8px),
        linear-gradient(135deg, #C8FF00 0%, #e2f798 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.brand-text {
    font-size: 12.5vw;
    font-weight: 900;
    color: #0F0F1A;
    margin: 0;
    line-height: 0.72;
    letter-spacing: -4px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    transform: translateY(2.5%);
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-meta-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-text {
        font-size: 21vw;
        letter-spacing: -2px;
    }
}

/* ==============================================
   ABOUT PAGE STYLES
   ============================================== */

/* ── HERO ────────────────────────────────────── */

.page-about .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45)),
        url('../images/about-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-about .hero-content {
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.page-about .hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #ffffff;
    color: #7C3AED;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.page-about .hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.page-about .hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fff;
}

.page-about .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.page-about .btn-primary {
    background: #7C3AED;
    color: #fff;
    padding: 15px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
}

.page-about .btn-primary:hover {
    background: var(--lime);
    color: #000;
}

.page-about .btn-secondary {
    background: #fff;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    padding: 15px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
}

.page-about .btn-secondary:hover {
    background: var(--ink);
    color: #fff;
}

@media(max-width:768px) {

    .page-about .hero {
        min-height: 80vh;
    }

    .page-about .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-about .btn-primary,
    .page-about .btn-secondary {
        width: 250px;
        text-align: center;
    }

}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
        transform: translateX(-50%) translateY(0)
    }

    50% {
        opacity: .8;
        transform: translateX(-50%) translateY(6px)
    }
}

/* ── COMPANIES MARQUEE (exact home) ─────────── */

.page-about .companies-section {
    width: 100%;
    padding: 20px 30px;
    background: #0F0F1A;
    overflow: hidden
}

.page-about .companies-marquee {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1500px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.page-about .companies-track {
    display: flex;
    animation: scrollLeft 50s linear infinite
}

.page-about .companies-group {
    display: flex;
    list-style: none;
    gap: 90px;
    flex-shrink: 0;
    width: fit-content;
    padding: 0 60px
}

.page-about .company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 200px;
    height: 120px
}

.page-about .company-logo img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    filter: grayscale(100%) invert(1) opacity(.7);
    transition: all .3s
}

@keyframes scrollLeft {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── STORY ───────────────────────────────────── */

.page-about .story-section {
    background: var(--ivory);
    padding: 130px 0 0;
    overflow: hidden
}

.page-about .story-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--violet);
    padding: 0 6vw;
    display: block;
    margin-bottom: 16px
}

.page-about .story-intro-line {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1;
    color: var(--ink);
    padding: 0 6vw;
    margin-bottom: 90px
}

.page-about .story-intro-line em {
    font-style: normal;
    color: var(--violet)
}

.page-about .story-chapters {
    border-top: 1px solid rgba(15, 15, 26, .08)
}

.page-about .story-chapter {
    display: grid;
    grid-template-columns: 18vw 1fr 38%;
    border-bottom: 1px solid rgba(15, 15, 26, .08);
    min-height: 320px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.page-about .story-chapter.vis {
    opacity: 1;
    transform: translateY(0)
}

.page-about .story-chapter:nth-child(2) {
    transition-delay: .1s
}

.page-about .story-chapter:nth-child(3) {
    transition-delay: .2s
}

.page-about .story-chapter:nth-child(4) {
    transition-delay: .3s
}

.page-about .sc-num {
    display: flex;
    align-items: flex-start;
    padding: 48px 0 48px 6vw;
    font-size: clamp(72px, 10vw, 160px);
    font-weight: 900;
    letter-spacing: -5px;
    line-height: .85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(15, 15, 26, .1);
    user-select: none;
    transition: -webkit-text-stroke-color .6s .4s;
}

.page-about .story-chapter.vis .sc-num {
    -webkit-text-stroke-color: var(--violet)
}

.page-about .sc-body {
    padding: 48px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(15, 15, 26, .06);

}

.page-about .sc-year {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 20px
}

.page-about .sc-heading {
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
    color: var(--ink);
    max-width: 480px
}

.page-about .sc-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
    margin-top: 18px;
    max-width: 440px
}

.page-about .sc-tag {
    display: inline-block;
    margin-top: 28px;
    background: var(--lavd);
    color: var(--violet);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: .5px;
    align-self: flex-start
}

/* RIGHT COLUMN — image + stats */

.page-about .sc-right {
    padding: 40px 5vw 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.page-about .sc-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    min-height: 160px
}

.page-about .sc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.7)
}

.page-about .sc-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(15, 15, 26, .85) 0%, transparent 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
}

.page-about .sc-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.page-about .sc-stat {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.page-about .sc-stat-n {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--ink)
}

.page-about .sc-stat-n sup {
    font-size: 14px
}

.page-about .sc-stat-l {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px
}

/* ── MARQUEE STRIP (text only) ───────────────── */

.page-about .story-marquee-wrap {
    background: #0F0F1A;
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 100px
}

.page-about .story-marquee {
    display: inline-flex;
    animation: marqueeRun 28s linear infinite
}

.page-about .story-marquee-inner {
    display: inline-flex;
    gap: 0
}

.page-about .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4)
}

.page-about .marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0
}

@keyframes marqueeRun {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── MISSION / VISION (sticky scroll morph) ─── */

.page-about .mv-section {
    background: var(--ink);
    position: relative
}

.page-about .mv-sticky-wrap {
    display: flex;
    align-items: flex-start
}

.page-about .mv-left {
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 6vw;
    overflow: hidden;
}

.page-about .mbc1 {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 255, 0, .1), transparent 70%);
    pointer-events: none
}

.page-about .mbc2 {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 60, 172, .08), transparent 70%);
    pointer-events: none
}

.page-about .mv-tab-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 48px
}

.page-about .mv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    transition: all .4s;
    cursor: pointer
}

.page-about .mv-dot.act {
    background: var(--lime);
    transform: scale(1.5)
}

.page-about .mv-display-text {
    position: relative
}

.page-about .mv-panel {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
    pointer-events: none;
    width: 100%
}

.page-about .mv-panel.act {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.page-about .mv-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.page-about .mv-tag.m {
    color: var(--lime)
}

.page-about .mv-tag.v {
    color: var(--pink)
}

.page-about .mv-tag.val {
    color: #a78bfa
}

.page-about .mv-big {
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff
}

.page-about .mv-sub {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .5);
    margin-top: 24px;
    max-width: 400px
}

.page-about .values-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px 0 0
}

.page-about .val-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .04);
    cursor: default;
    transition: all .3s
}

.page-about .val-pill:hover {
    border-color: var(--lime);
    color: var(--lime);
    background: rgba(200, 255, 0, .05);
    transform: translateY(-2px)
}

.page-about .val-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0
}

.page-about .mv-right {
    flex: 1;
    padding: 15vh 6vw;
    display: flex;
    flex-direction: column
}

.page-about .mv-trigger-block {
    min-height: 100vh;
    display: flex;
    align-items: center
}

.page-about .mv-photo-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden
}

.page-about .mv-photo-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(.6) contrast(1.05)
}

.page-about .mv-photo-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 15, 26, .8);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    letter-spacing: .5px
}

/* ── SERVICES ACCORDION ──────────────────────── */

.page-about .services-section {
    background: var(--ivory);
    padding: 120px 0
}

.page-about .svc-header {
    padding: 0 6vw;
    margin-bottom: 80px
}

.page-about .svc-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--violet);
    display: block;
    margin-bottom: 20px
}

.page-about .svc-title {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: .95;
    color: var(--ink)
}

.page-about .svc-title em {
    font-style: normal;
    color: var(--violet)
}

.page-about .svc-list {
    border-top: 1px solid rgba(15, 15, 26, .1)
}

.page-about .svc-row {
    border-bottom: 1px solid rgba(15, 15, 26, .1);
    overflow: hidden
}

.page-about .svc-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 6vw;
    cursor: pointer;
    transition: background .25s;
    user-select: none;
    gap: 24px
}

.page-about .svc-row-head:hover {
    background: rgba(124, 58, 237, .03)
}

.page-about .svc-row.open .svc-row-head {
    background: rgba(124, 58, 237, .04)
}

.page-about .svc-row-left {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1
}

.page-about .svc-idx {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(15, 15, 26, .2);
    min-width: 28px
}

.page-about .svc-row.open .svc-idx {
    color: var(--violet)
}

.page-about .svc-name {
    font-size: clamp(17px, 2.8vw, 34px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    transition: color .25s
}

.page-about .svc-row.open .svc-name {
    color: var(--violet)
}

.page-about .svc-count {
    font-size: 12px;
    font-weight: 600;
    color: rgba(15, 15, 26, .35);
    background: rgba(15, 15, 26, .06);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap
}

.page-about .svc-row.open .svc-count {
    background: var(--lavd);
    color: var(--violet)
}

.page-about .svc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 15, 26, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .35s;
    font-size: 20px;
    color: var(--ink)
}

.page-about .svc-row.open .svc-arrow {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
    transform: rotate(45deg)
}

.page-about .svc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s cubic-bezier(.16, 1, .3, 1)
}

.page-about .svc-body-inner {
    padding: 8px 6vw 48px calc(6vw + 28px + 32px)
}

.page-about .svc-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 580px;
    margin-bottom: 28px
}

.page-about .pill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.page-about .s-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid rgba(15, 15, 26, .08);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: all .2s;
    cursor: default;
    white-space: nowrap
}

.page-about .s-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lavd);
    flex-shrink: 0;
    transition: background .2s
}

.page-about .s-pill:hover {
    border-color: var(--violet);
    color: var(--violet);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, .1)
}

.page-about .s-pill:hover::before {
    background: var(--violet)
}

/* ── CTA SECTION (exact home page) ──────────── */

.page-about .cta-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #F0ECFF 100%);
    overflow: hidden;
    z-index: 1;
}

.page-about .cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    left: -200px;
    background: radial-gradient(circle, rgba(200, 255, 0, .07) 0%, rgba(200, 255, 0, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.page-about .cta-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(200, 255, 0, .07) 0%, rgba(200, 255, 0, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.page-about .cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px
}

.page-about .cta-card-new {
    position: relative;
    display: flex;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A0A3E 60%, #2D0A4E 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 15, 26, .4), 0 1px 3px rgba(15, 15, 26, .2);
}

/* FORM PANEL (white, left) */

.page-about .cta-form-panel {
    flex: 1.1;
    background: #fff;
    background-image: radial-gradient(circle at top right, rgba(200, 255, 0, .15) 0%, transparent 60%);
    background-repeat: no-repeat;
    background-position: top right;
    padding: 64px 72px;
    position: relative;
    z-index: 2;
}

.page-about .cta-logo-wrap {
    margin-bottom: 32px
}

.page-about .cta-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px
}

.page-about .step-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(15, 15, 26, .1);
    border-radius: 2px;
    margin-right: 24px;
    overflow: hidden
}

.page-about .step-progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #7C3AED, #FF3CAC);
    border-radius: 2px;
    transition: width .4s ease
}

.page-about .step-counter {
    font-size: 14px;
    font-weight: 700;
    color: rgba(15, 15, 26, .4);
    letter-spacing: 2px
}

.page-about .cta-panel-title {
    font-size: 40px;
    font-weight: 800;
    color: #0F0F1A;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 12px
}

.page-about .cta-panel-subtitle {
    font-size: 18px;
    color: rgba(15, 15, 26, .6);
    line-height: 1.5;
    margin-bottom: 40px
}

.page-about .cta-multistep-form {
    display: grid
}

.page-about .form-step {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.page-about .form-step.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: stepFadeIn .5s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.page-about .minimal-field {
    margin-bottom: 48px
}

.page-about .minimal-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(15, 15, 26, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px
}

.page-about .minimal-field input,
.page-about .minimal-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(15, 15, 26, .15);
    font-size: 32px;
    font-weight: 500;
    color: #0F0F1A;
    padding: 8px 0;
    font-family: inherit;
    transition: all .3s;
    resize: none;
    color-scheme: light;
}

.page-about .minimal-field input::placeholder,
.page-about .minimal-field textarea::placeholder {
    color: rgba(15, 15, 26, .3);
    font-weight: 400
}

.page-about .minimal-field input:focus,
.page-about .minimal-field textarea:focus {
    outline: none;
    border-bottom-color: #C8FF00
}

.page-about .minimal-field textarea {
    font-size: 22px
}

.page-about .services-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(15, 15, 26, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px
}

.page-about .services-field {
    margin-bottom: 24px
}

.page-about .chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px
}

.page-about .chip {
    padding: 14px 24px;
    background: rgba(15, 15, 26, .03);
    border: 1px solid rgba(15, 15, 26, .1);
    border-radius: 100px;
    font-size: 15.5px;
    font-weight: 600;
    color: #0F0F1A;
    cursor: pointer;
    transition: all .25s;
    user-select: none;
    font-family: inherit
}

.page-about .chip:hover {
    background: rgba(15, 15, 26, .05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 15, 26, .08)
}

.page-about .chip.is-selected {
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(124, 58, 237, .25);
    transform: translateY(-2px)
}

.page-about .form-step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 32px
}

.page-about .step-dots {
    display: flex;
    gap: 10px
}

.page-about .sdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 15, 26, .1);
    transition: background .3s
}

.page-about .sdot.active {
    background: #7C3AED
}

.page-about .step-nav-btns {
    display: flex;
    gap: 16px
}

.page-about .cta-btn-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit
}

.page-about .cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(124, 58, 237, .3)
}

.page-about .cta-btn-ghost {
    padding: 18px 24px;
    background: transparent;
    color: rgba(15, 15, 26, .6);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: color .2s;
    font-family: inherit
}

.page-about .cta-btn-ghost:hover {
    color: #0F0F1A
}

.page-about .cta-btn-submit {
    background: linear-gradient(135deg, #C8FF00, #a0c800);
    color: #0F0F1A
}

/* VISUAL PANEL (dark photo, right) */

.page-about .cta-visual-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 64px;
    min-height: 700px;
    line-height: 1.6
}

.page-about .cta-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 26, .4) 0%, rgba(15, 15, 26, .95) 100%);
    z-index: 1
}

.page-about .cta-visual-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%
}

.page-about .cta-visual-heading {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.page-about .cta-visual-subtext {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
    margin-bottom: 8px
}

.page-about .cta-visual-phone {
    font-size: 32px;
    font-weight: 700;
    color: #C8FF00;
    line-height: 1.2
}

/* ── FOOTER (exact home) ─────────────────────── */

.page-about .site-footer {
    width: 100%;
    font-family: inherit;
    position: relative;
    z-index: 1;
    display: grid
}

.page-about .footer-top-wrap {
    background: linear-gradient(180deg, #E4DDFF 0%, #F7F3EC 40%, #fff 100%);
    position: relative;
    z-index: 2;
    grid-area: 1/1;
    margin-bottom: 22vw;
    padding: 80px 30px 40px
}

.page-about .footer-container {
    max-width: 1400px;
    margin: 0 auto
}

.page-about .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px
}

.page-about .footer-cta {
    flex: 0 0 320px
}

.page-about .footer-cta h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #0F0F1A;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.page-about .footer-cta p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.5
}

.page-about .footer-btn {
    background: #C8FF00;
    color: #0F0F1A;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit
}

.page-about .footer-btn:hover {
    background: #90C800;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(200, 255, 0, .4)
}

.page-about .footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.page-about .footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0F0F1A;
    margin-bottom: 20px
}

.page-about .footer-col .mt-4 {
    margin-top: 32px
}

.page-about .footer-col ul {
    list-style: none
}

.page-about .footer-col ul li {
    margin-bottom: 12px
}

.page-about .footer-col ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

.page-about .footer-col ul li a:hover {
    color: #7C3AED
}

.page-about .footer-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 15, 26, .08)
}

.page-about .footer-socials {
    display: flex;
    gap: 20px
}

.page-about .footer-socials a {
    color: #0F0F1A;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s
}

.page-about .footer-socials a:hover {
    color: #C8FF00
}

.page-about .footer-meta-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.page-about .meta-copyright {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500
}

.page-about .meta-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    font-weight: 500
}

.page-about .meta-nav a {
    color: #4a5568;
    text-decoration: none;
    transition: color .2s
}

.page-about .meta-nav a:hover {
    color: #7C3AED
}

.page-about .lang-dropdown {
    color: #0F0F1A;
    cursor: pointer;
    font-weight: 600
}

.page-about .footer-giant-brand {
    box-sizing: border-box;
    height: 22vw;
    position: sticky;
    top: calc(100vh - 22vw);
    z-index: 1;
    grid-area: 1/1;
    align-self: start;
    width: 100%;
    padding: 4vw;
    overflow: hidden;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 8px),
        linear-gradient(135deg, #C8FF00 0%, #e2f798 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.page-about .brand-text {
    font-size: 12.5vw;
    font-weight: 900;
    color: #0F0F1A;
    margin: 0;
    line-height: .72;
    letter-spacing: -4px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    transform: translateY(2.5%)
}

/* ── SCROLL REVEAL ────────────────────────────── */

.page-about [data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease
}

.page-about [data-reveal].vis {
    opacity: 1;
    transform: translateY(0)
}

/* ── RESPONSIVE ──────────────────────────────── */

@media(max-width:1100px) {

    .page-about .story-chapter {
        grid-template-columns: 14vw 1fr 36%
    }

    .page-about .mv-sticky-wrap {
        flex-direction: column
    }

    .page-about .mv-left {
        position: relative;
        height: auto;
        padding: 80px 6vw 60px
    }

    .page-about .mv-right {
        padding: 0 6vw 80px
    }

    .page-about .mv-trigger-block {
        min-height: auto;
        padding: 40px 0
    }

}

@media(max-width:992px) {

    .page-about .footer-top {
        flex-direction: column
    }

    .page-about .footer-links-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-about .cta-section {
        padding: 80px 0
    }

    .page-about .cta-card-new {
        flex-direction: column;
        border-radius: 24px
    }

    .page-about .cta-form-panel {
        padding: 48px 32px
    }

    .page-about .cta-visual-panel {
        min-height: 420px;
        padding: 40px 32px
    }

    .page-about .cta-visual-heading {
        font-size: 36px
    }

    .page-about .cta-visual-subtext {
        font-size: 18px
    }

    .page-about .cta-visual-phone {
        font-size: 24px
    }

    .page-about .story-chapter {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto
    }

    .page-about .sc-num {
        display: none
    }

    .page-about .sc-body {
        border-left: none;
        padding: 36px 5vw 36px 6vw
    }

    .page-about .sc-right {
        padding: 36px 6vw 36px 5vw
    }

    .page-about .companies-marquee {
        width: 100%
    }

}

@media(max-width:768px) {

    .page-about .hamburger {
        display: flex
    }

    .page-about .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: left .3s;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
        z-index: 999
    }

    .page-about .nav-menu.active {
        left: 0
    }

    .page-about .nav-buttons {
        display: none
    }

    .page-about .nav-link::after {
        display: none
    }

    .page-about .navbar-container {
        padding: 0 15px
    }

    .page-about .logo-text {
        font-size: 18px
    }

    .page-about .hero-photo {
        width: 100%;
        opacity: .18
    }

    .page-about .hero-photo-mask {
        width: 100%;
        background: linear-gradient(180deg, transparent 10%, var(--lav) 75%)
    }

    .page-about .hero-bottom {
        flex-direction: column;
        gap: 28px
    }

    .page-about .hero-stats-row {
        gap: 24px;
        flex-wrap: wrap
    }

    .page-about .hero-title {
        letter-spacing: -2px
    }

    .page-about .story-chapter {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .page-about .sc-right {
        padding: 0 6vw 36px
    }

    .page-about .sc-body {
        padding: 36px 6vw
    }

    .page-about .sc-img-wrap {
        min-height: 200px
    }

    .page-about .sc-stats {
        gap: 20px
    }

    .page-about .svc-row-head {
        padding: 24px 5vw
    }

    .page-about .svc-body-inner {
        padding: 8px 5vw 36px
    }

    .page-about .svc-name {
        font-size: clamp(15px, 4.5vw, 24px)
    }

    .page-about .svc-row-left {
        gap: 16px
    }

    .page-about .mv-big {
        font-size: clamp(28px, 7vw, 48px)
    }

    .page-about .cta-form-panel {
        padding: 36px 20px
    }

    .page-about .cta-panel-title {
        font-size: 28px
    }

    .page-about .minimal-field input {
        font-size: 22px
    }

    .page-about .cta-visual-panel {
        padding: 32px 20px;
        min-height: 320px
    }

    .page-about .cta-visual-heading {
        font-size: 26px
    }

}

@media(max-width:600px) {

    .page-about .footer-links-grid {
        grid-template-columns: 1fr
    }

    .page-about .footer-meta-links {
        flex-direction: column;
        align-items: flex-start
    }

    .page-about .brand-text {
        font-size: 21vw;
        letter-spacing: -2px
    }

    .page-about .hero-stats-row {
        gap: 16px
    }

    .page-about .companies-group {
        gap: 50px;
        padding: 0 30px
    }

    .page-about .company-logo {
        min-width: 120px;
        height: 80px
    }

    .page-about .svc-body-inner {
        padding-left: 5vw
    }

    .page-about .sc-stats {
        gap: 16px
    }

}

@media(prefers-reduced-motion:reduce) {

    .page-about *,
    .page-about *::before,
    .page-about *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

}


/* ==============================================
   SERVICES PAGE STYLES
   ============================================== */

/* HERO */
.text-decoration-none{text-decoration:none;}
.page-services .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.page-services .hero-content {
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2
}

.page-services .hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff;
    color: #7C3AED;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08)
}

.page-services .hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px
}

.page-services .hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fff
}

.page-services .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px
}

.page-services .btn-primary {
    background: #7C3AED;
    color: #fff;
    padding: 15px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s
}

.page-services .btn-primary:hover {
    background: var(--lime);
    color: #000
}

.page-services .btn-secondary {
    background: #fff;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    padding: 15px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s
}

.page-services .btn-secondary:hover {
    background: var(--ink);
    color: #fff
}

/* COMPANIES MARQUEE */

.page-services .companies-section {
    width: 100%;
    padding: 20px 30px;
    background: #0F0F1A;
    overflow: hidden
}

.page-services .companies-marquee {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1500px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%)
}

.page-services .companies-track {
    display: flex;
    animation: scrollLeft 50s linear infinite
}

.page-services .companies-group {
    display: flex;
    list-style: none;
    gap: 90px;
    flex-shrink: 0;
    width: fit-content;
    padding: 0 60px
}

.page-services .company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 200px;
    height: 120px
}

.page-services .company-logo img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    filter: grayscale(100%) invert(1) opacity(.7);
    transition: all .3s
}

@keyframes scrollLeft {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── STICKY FILTER BAR ── */

.page-services .filter-bar-wrap {
    position: sticky;
    top: 70px;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid rgba(15, 15, 26, .08);
    box-shadow: 0 4px 16px rgba(15, 15, 26, .06);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-services .filter-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    margin: 40px 0px;
}

.page-services .filter-bar::-webkit-scrollbar {
    display: none
}

.page-services .filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(15, 15, 26, .12);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.page-services .filter-pill:hover {
    border-color: #7C3AED;
    color: #7C3AED
}

.page-services .filter-pill.active {
    background: #7C3AED;
    border-color: #7C3AED;
    color: #fff
}

.page-services .filter-pill svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

/* ── SERVICES MAIN SECTION ── */

.page-services .services-main {
    background: var(--ivory);
    padding: 0 0 100px
}

/* Category Section */

.page-services .cat-section {
    padding: 100px 0 0;
    scroll-margin-top: 130px
}

.page-services .cat-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px
}

.page-services .cat-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(15, 15, 26, .08)
}

.page-services .cat-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-services .cat-icon-wrap svg {
    width: 34px;
    height: 34px
}

.page-services .cat-header-text {}

.page-services .cat-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
    display: block
}

.page-services .cat-title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 14px
}

.page-services .cat-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 620px
}

/* Card Grid */

.page-services .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.page-services .service-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(15, 15, 26, .07);
    transition: all .3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.page-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    background: var(--cat-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.page-services .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 15, 26, .1);
    border-color: transparent;
}

.page-services .service-card:hover::before {
    transform: scaleX(1)
}

.page-services .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cat-bg);
    flex-shrink: 0;
}

.page-services .card-icon svg {
    width: 22px;
    height: 22px
}

.page-services .card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3
}

.page-services .card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray);
    flex: 1
}

.page-services .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cat-accent-text);
    background: var(--cat-bg);
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    cursor: pointer;
    font-family: inherit;
    transition: all .25s;
    align-self: flex-start;
    margin-top: 4px;
}

.page-services .card-btn:hover {
    background: var(--cat-accent);
    color: #fff;
    transform: translateX(2px)
}

.page-services .card-btn svg {
    width: 13px;
    height: 13px;
    transition: transform .2s
}

.page-services .card-btn:hover svg {
    transform: translateX(2px)
}

/* Accent vars per category */

.page-services .cat-tech {
    --cat-accent: #7C3AED;
    --cat-accent-text: #7C3AED;
    --cat-bg: #EFF6FF
}

.page-services .cat-marketing {
    --cat-accent: #FF3CAC;
    --cat-accent-text: #cc2080;
    --cat-bg: #EFF6FF
}

.page-services .cat-content {
    --cat-accent: #2563EB;
    --cat-accent-text: #2563EB;
    --cat-bg: #EFF6FF
}

.page-services .cat-design {
    --cat-accent: #16A34A;
    --cat-accent-text: #16A34A;
    --cat-bg: #F0FDF4
}

.page-services .cat-admin {
    --cat-accent: #EA580C;
    --cat-accent-text: #EA580C;
    --cat-bg: #FFF7ED
}

.page-services .cat-it {
    --cat-accent: #9333EA;
    --cat-accent-text: #9333EA;
    --cat-bg: #FAF5FF
}

/* text marquee strip */

.page-services .story-marquee-wrap {
    background: #0F0F1A;
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap
}

.page-services .story-marquee {
    display: inline-flex;
    animation: marqueeRun 28s linear infinite
}

.page-services .story-marquee-inner {
    display: inline-flex;
    gap: 0
}

.page-services .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4)
}

.page-services .marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0
}

@keyframes marqueeRun {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* CTA */

.page-services .cta-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #F0ECFF 100%);
    overflow: hidden;
    z-index: 1
}

.page-services .cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    left: -200px;
    background: radial-gradient(circle, rgba(200, 255, 0, .07) 0%, rgba(200, 255, 0, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1
}

.page-services .cta-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(200, 255, 0, .07) 0%, rgba(200, 255, 0, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1
}

.page-services .cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px
}

.page-services .cta-card-new {
    position: relative;
    display: flex;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A0A3E 60%, #2D0A4E 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 15, 26, .4), 0 1px 3px rgba(15, 15, 26, .2)
}

.page-services .cta-form-panel {
    flex: 1.1;
    background: #fff;
    background-image: radial-gradient(circle at top right, rgba(200, 255, 0, .15) 0%, transparent 60%);
    background-repeat: no-repeat;
    background-position: top right;
    padding: 64px 72px;
    position: relative;
    z-index: 2
}

.page-services .cta-logo-wrap {
    margin-bottom: 32px
}

.page-services .cta-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px
}

.page-services .step-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(15, 15, 26, .1);
    border-radius: 2px;
    margin-right: 24px;
    overflow: hidden
}

.page-services .step-progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #7C3AED, #FF3CAC);
    border-radius: 2px;
    transition: width .4s ease
}

.page-services .step-counter {
    font-size: 14px;
    font-weight: 700;
    color: rgba(15, 15, 26, .4);
    letter-spacing: 2px
}

.page-services .cta-panel-title {
    font-size: 40px;
    font-weight: 800;
    color: #0F0F1A;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 12px
}

.page-services .cta-panel-subtitle {
    font-size: 18px;
    color: rgba(15, 15, 26, .6);
    line-height: 1.5;
    margin-bottom: 40px
}

.page-services .cta-multistep-form {
    display: grid
}

.page-services .form-step {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.page-services .form-step.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: stepFadeIn .5s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.page-services .minimal-field {
    margin-bottom: 48px
}

.page-services .minimal-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(15, 15, 26, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px
}

.page-services .minimal-field input,
.page-services .minimal-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(15, 15, 26, .15);
    font-size: 32px;
    font-weight: 500;
    color: #0F0F1A;
    padding: 8px 0;
    font-family: inherit;
    transition: all .3s;
    resize: none;
    color-scheme: light
}

.page-services .minimal-field input::placeholder,
.page-services .minimal-field textarea::placeholder {
    color: rgba(15, 15, 26, .3);
    font-weight: 400
}

.page-services .minimal-field input:focus,
.page-services .minimal-field textarea:focus {
    outline: none;
    border-bottom-color: #C8FF00
}

.page-services .minimal-field textarea {
    font-size: 22px
}

.page-services .services-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(15, 15, 26, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px
}

.page-services .services-field {
    margin-bottom: 24px
}

.page-services .chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px
}

.page-services .chip {
    padding: 14px 24px;
    background: rgba(15, 15, 26, .03);
    border: 1px solid rgba(15, 15, 26, .1);
    border-radius: 100px;
    font-size: 15.5px;
    font-weight: 600;
    color: #0F0F1A;
    cursor: pointer;
    transition: all .25s;
    user-select: none;
    font-family: inherit
}

.page-services .chip:hover {
    background: rgba(15, 15, 26, .05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 15, 26, .08)
}

.page-services .chip.is-selected {
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(124, 58, 237, .25);
    transform: translateY(-2px)
}

.page-services .form-step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 32px
}

.page-services .step-dots {
    display: flex;
    gap: 10px
}

.page-services .sdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 15, 26, .1);
    transition: background .3s
}

.page-services .sdot.active {
    background: #7C3AED
}

.page-services .step-nav-btns {
    display: flex;
    gap: 16px
}

.page-services .cta-btn-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit
}

.page-services .cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(124, 58, 237, .3)
}

.page-services .cta-btn-ghost {
    padding: 18px 24px;
    background: transparent;
    color: rgba(15, 15, 26, .6);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: color .2s;
    font-family: inherit
}

.page-services .cta-btn-ghost:hover {
    color: #0F0F1A
}

.page-services .cta-btn-submit {
    background: linear-gradient(135deg, #C8FF00, #a0c800);
    color: #0F0F1A
}

.page-services .cta-visual-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 64px;
    min-height: 700px;
    line-height: 1.6
}

.page-services .cta-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 26, .4) 0%, rgba(15, 15, 26, .95) 100%);
    z-index: 1
}

.page-services .cta-visual-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%
}

.page-services .cta-visual-heading {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.page-services .cta-visual-subtext {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
    margin-bottom: 8px
}

.page-services .cta-visual-phone {
    font-size: 32px;
    font-weight: 700;
    color: #C8FF00;
    line-height: 1.2
}

/* FOOTER */

.page-services .site-footer {
    width: 100%;
    font-family: inherit;
    position: relative;
    z-index: 1;
    display: grid
}

.page-services .footer-top-wrap {
    background: linear-gradient(180deg, #E4DDFF 0%, #F7F3EC 40%, #fff 100%);
    position: relative;
    z-index: 2;
    grid-area: 1/1;
    margin-bottom: 22vw;
    padding: 80px 30px 40px
}

.page-services .footer-container {
    max-width: 1400px;
    margin: 0 auto
}

.page-services .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px
}

.page-services .footer-cta {
    flex: 0 0 320px
}

.page-services .footer-cta h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #0F0F1A;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.page-services .footer-cta p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.5
}

.page-services .footer-btn {
    background: #C8FF00;
    color: #0F0F1A;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit
}

.page-services .footer-btn:hover {
    background: #90C800;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(200, 255, 0, .4)
}

.page-services .footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.page-services .footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0F0F1A;
    margin-bottom: 20px
}

.page-services .footer-col .mt-4 {
    margin-top: 32px
}

.page-services .footer-col ul {
    list-style: none
}

.page-services .footer-col ul li {
    margin-bottom: 12px
}

.page-services .footer-col ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

.page-services .footer-col ul li a:hover {
    color: #7C3AED
}

.page-services .footer-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 15, 26, .08)
}

.page-services .footer-socials {
    display: flex;
    gap: 20px
}

.page-services .footer-socials a {
    color: #0F0F1A;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s
}

.page-services .footer-socials a:hover {
    color: #C8FF00
}

.page-services .footer-meta-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.page-services .meta-copyright {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500
}

.page-services .meta-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    font-weight: 500
}

.page-services .meta-nav a {
    color: #4a5568;
    text-decoration: none;
    transition: color .2s
}

.page-services .meta-nav a:hover {
    color: #7C3AED
}

.page-services .lang-dropdown {
    color: #0F0F1A;
    cursor: pointer;
    font-weight: 600
}

.page-services .footer-giant-brand {
    box-sizing: border-box;
    height: 22vw;
    position: sticky;
    top: calc(100vh - 22vw);
    z-index: 1;
    grid-area: 1/1;
    align-self: start;
    width: 100%;
    padding: 4vw;
    overflow: hidden;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 8px), linear-gradient(135deg, #C8FF00 0%, #e2f798 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.page-services .brand-text {
    font-size: 12.5vw;
    font-weight: 900;
    color: #0F0F1A;
    margin: 0;
    line-height: .72;
    letter-spacing: -4px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    transform: translateY(2.5%)
}

/* REVEAL */

.page-services [data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease
}

.page-services [data-reveal].vis {
    opacity: 1;
    transform: translateY(0)
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .page-services .card-grid {
        grid-template-columns: repeat(3, 1fr)
    }

}

@media(max-width:992px) {

    .page-services .card-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-services .footer-top {
        flex-direction: column
    }

    .page-services .footer-links-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-services .cta-section {
        padding: 80px 0
    }

    .page-services .cta-card-new {
        flex-direction: column;
        border-radius: 24px
    }

    .page-services .cta-form-panel {
        padding: 48px 32px
    }

    .page-services .cta-visual-panel {
        min-height: 420px;
        padding: 40px 32px
    }

    .page-services .cta-visual-heading {
        font-size: 36px
    }

    .page-services .cta-visual-subtext {
        font-size: 18px
    }

    .page-services .cta-visual-phone {
        font-size: 24px
    }

    .page-services .cat-header {
        flex-direction: column;
        gap: 16px
    }

}

@media(max-width:768px) {

    .page-services .hamburger {
        display: flex
    }

    .page-services .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: left .3s;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
        z-index: 999
    }

    .page-services .nav-menu.active {
        left: 0
    }

    .page-services .nav-buttons {
        display: none
    }

    .page-services .nav-link::after {
        display: none
    }

    .page-services .navbar-container {
        padding: 0 15px
    }

    .page-services .logo-text {
        font-size: 18px
    }

    .page-services .filter-bar {
        padding: 0 16px
    }

    .page-services .filter-pill {
        padding: 12px 18px;
        font-size: 13px
    }

    .page-services .card-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-services .cat-section {
        padding: 72px 0 0;
        scroll-margin-top: 116px
    }

    .page-services .cta-form-panel {
        padding: 36px 20px
    }

    .page-services .cta-panel-title {
        font-size: 28px
    }

    .page-services .minimal-field input {
        font-size: 22px
    }

    .page-services .cta-visual-panel {
        padding: 32px 20px;
        min-height: 320px
    }

    .page-services .cta-visual-heading {
        font-size: 26px
    }

    .page-services .hero {
        min-height: 80vh
    }

    .page-services .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .page-services .btn-primary,
    .page-services .btn-secondary {
        width: 250px;
        text-align: center
    }

}

@media(max-width:560px) {

    .page-services .card-grid {
        grid-template-columns: 1fr
    }

    .page-services .footer-links-grid {
        grid-template-columns: 1fr
    }

    .page-services .footer-meta-links {
        flex-direction: column;
        align-items: flex-start
    }

    .page-services .brand-text {
        font-size: 21vw;
        letter-spacing: -2px
    }

    .page-services .companies-group {
        gap: 50px;
        padding: 0 30px
    }

    .page-services .company-logo {
        min-width: 120px;
        height: 80px
    }

}

@media(prefers-reduced-motion:reduce) {

    .page-services *,
    .page-services *::before,
    .page-services *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

}


/* ==============================================
   PHPDEV PAGE STYLES
   ============================================== */

/* ── BREADCRUMB ── */

.page-phpdev .breadcrumb-bar {
    background: #F7F3EC;
    padding: 14px 30px;
    border-bottom: 1px solid rgba(15, 15, 26, .07)
}

.page-phpdev .breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray)
}

.page-phpdev .breadcrumb-inner a {
    color: var(--gray);
    text-decoration: none;
    transition: color .2s
}

.page-phpdev .breadcrumb-inner a:hover {
    color: var(--violet)
}

.page-phpdev .breadcrumb-inner span {
    color: var(--ink);
    font-weight: 600
}

.page-phpdev .bc-sep {
    color: rgba(15, 15, 26, .3)
}

/* ── HERO — split layout ── */

.page-phpdev .hero {
    background: linear-gradient(135deg, #0F0F1A 0%, #1a0a3e 60%, #2D0A4E 100%);
    padding: 100px 30px;
    position: relative;
    overflow: hidden
}

.page-phpdev .hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    top: -250px;
    right: -250px;
    background: radial-gradient(circle, rgba(200, 255, 0, .07) 0%, transparent 70%);
    pointer-events: none
}

.page-phpdev .hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    align-items: center
}

.page-phpdev .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(200, 255, 0, .1);
    border: 1px solid rgba(200, 255, 0, .18);
    color: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.page-phpdev .hero h1 {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 24px
}

.page-phpdev .hero h1 em {
    font-style: normal;
    color: var(--lime)
}

.page-phpdev .hero-sub {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .6);
    max-width: 520px;
    margin-bottom: 40px
}

.page-phpdev .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.page-phpdev .btn-primary {
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s
}

.page-phpdev .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, .35)
}

.page-phpdev .btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .18);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s;
    cursor: pointer;
    font-family: inherit
}

.page-phpdev .btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05)
}

.page-phpdev .hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px
}

.page-phpdev .hero-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65)
}

/* Pricing card in hero */

.page-phpdev .hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(12px)
}

.page-phpdev .hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px
}

.page-phpdev .hero-card-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px
}

.page-phpdev .hero-card-rate {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1
}

.page-phpdev .hero-card-rate span {
    font-size: 18px;
    color: rgba(255, 255, 255, .4);
    font-weight: 500
}

.page-phpdev .hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(200, 255, 0, .12);
    border: 1px solid rgba(200, 255, 0, .2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: var(--lime);
    white-space: nowrap
}

.page-phpdev .hero-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 0 0 24px
}

.page-phpdev .hero-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px
}

.page-phpdev .hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    font-weight: 500
}

.page-phpdev .hcl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(200, 255, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.page-phpdev .hcl-dot svg {
    width: 10px;
    height: 10px;
    stroke: var(--lime)
}

.page-phpdev .hero-card-cta {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    width: 100%;
    transition: all .3s
}

.page-phpdev .hero-card-cta:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.page-phpdev .hero-card-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    margin-top: 12px
}

/* ── WHY SECTION — alternating card grid ── */

.page-phpdev .why-section {
    background: var(--white);
    padding: 100px 30px
}

.page-phpdev .section-inner {
    max-width: 1400px;
    margin: 0 auto
}

.page-phpdev .section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 12px;
    display: block
}

.page-phpdev .section-title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 16px;
}

.page-phpdev .section-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray);
    max-width: 560px;
    margin-bottom: 64px
}

.page-phpdev .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(15, 15, 26, .05);
    border-radius: 24px;
    overflow: hidden
}

.page-phpdev .why-grid.why-grid-5 {
    grid-template-columns: repeat(5, 1fr)
}

.page-phpdev .why-card {
    background: var(--white);
    padding: 36px 32px;
    transition: background .3s
}

.page-phpdev .why-card:hover {
    background: var(--lav)
}

.page-phpdev .why-card-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--violet);
    margin-bottom: 16px;
    text-transform: uppercase
}

.page-phpdev .why-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2
}

.page-phpdev .why-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray)
}

/* ── SERVICES OVERVIEW (list of 6) ── */

.page-phpdev .overview-section {
    background: var(--ivory);
    padding: 100px 30px
}

.page-phpdev .overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px
}

.page-phpdev .overview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 26px;
    border: 1px solid rgba(15, 15, 26, .07);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all .3s
}

.page-phpdev .overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 15, 26, .08);
    border-color: rgba(124, 58, 237, .2)
}

.page-phpdev .overview-num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--lav);
    color: var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900
}

.page-phpdev .overview-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink)
}

.page-phpdev .overview-foot {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray);
    max-width: 720px
}

/* ── SERVICES — tabbed layout ── */

/* ═══════════════════════════════════════════
   SERVICES SLIDER SECTION
═══════════════════════════════════════════ */
.services-section {
    background: linear-gradient(180deg, #F0ECFF 0%, #E4DDFF 100%);
    padding: 100px 30px;
}

.services-section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0F0F1A;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 16px;
}

.services-section .section-desc {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

/* ── SLIDER OUTER ── */
.slider-outer {
    overflow: hidden;
    padding: 12px 4px 16px;
}

/* ── TRACK ── */
.slider-track {
    display: flex;
        flex-wrap: wrap;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ═══════════════════════════════════════════
   CARD
═══════════════════════════════════════════ */
.sl-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    overflow: hidden;
    min-width: calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    box-shadow: 0 2px 16px rgba(15, 15, 26, 0.06);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: default;
}

.sl-card:hover {
    border-color: rgba(124, 58, 237, 0.22);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.13);
    transform: translateY(-6px);
}

/* ── ICON ── */
.sl-card-icon {

    display:none !important;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #EDE9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 22px 22px 0;
    flex-shrink: 0;
}

.sl-card-icon svg {
    width: 22px;
    height: 22px;
}

  /* nikita start */

.sl-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
/* ── IMAGE ── */
.sl-card-img {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    flex-shrink: 0;
}


/* nikita stop */

/* ── IMAGE ── */
.sl-card-img {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    flex-shrink: 0;
}

.sl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sl-card:hover .sl-card-img img {
    transform: scale(1.06);
}

.sl-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.55) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 12px 14px;
}

.sl-img-tag {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(124, 58, 237, 0.85);
    border-radius: 6px;
    padding: 3px 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

/* ── CARD BODY ── */
.sl-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sl-card-heading {
    font-size: 17px;
    font-weight: 800;
    color: #0F0F1A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sl-card-para {
    font-size: 13.5px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* ── LIST ── */
.sl-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    padding-top: 16px;
}

.sl-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    line-height: 1.45;
}

.sl-chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #EDE9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.sl-chk svg {
    width: 11px;
    height: 11px;
}

/* ═══════════════════════════════════════════
   CONTROLS  —  prev | dots | next  (inline)
═══════════════════════════════════════════ */
.sl-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

/* ARROWS */
.sl-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(124, 58, 237, 0.3);
    background: #ffffff;
    color: #7C3AED;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.22s;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
}

.sl-arrow svg {
    width: 17px;
    height: 17px;
}

.sl-arrow:hover {
    background: #7C3AED;
    border-color: #7C3AED;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.28);
}

/* DOTS */
.sl-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: block;
}

.sl-dot.active {
    background: #7C3AED;
    width: 26px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
    .sl-card {
        min-width: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 70px 16px;
    }

    .services-section .section-title {
        font-size: 26px;
    }

    .sl-card {
        min-width: 100%;
        max-width: 100%;
    }

    .slider-track {
        gap: 16px;
    }
}

/* ── PROCESS ── */

.page-phpdev .process-section {
    background: var(--white);
    padding: 100px 30px
}

.page-phpdev .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative
}

.page-phpdev .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--pink));
    z-index: 0
}

.page-phpdev .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px
}

.page-phpdev .ps-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--violet);
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px var(--ivory)
}

.page-phpdev .process-step:nth-child(3) .ps-num {
    background: var(--violet);
    color: #fff
}

.page-phpdev .ps-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px
}

.page-phpdev .ps-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray)
}

/* ── WHO SECTION — audience cards ── */

.page-phpdev .who-section {
    background: linear-gradient(180deg, #F0ECFF 0%, #E4DDFF 100%);
    padding: 100px 30px
}

.page-phpdev .who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px
}

.page-phpdev .who-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(15, 15, 26, .07);
    transition: all .3s
}

.page-phpdev .who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 15, 26, .1)
}

.page-phpdev .who-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--lav);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px
}

.page-phpdev .who-icon svg {
    width: 24px;
    height: 24px
}

.page-phpdev .who-label {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    margin-top: 30px;
}

.page-phpdev .who-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray)
}

/* ── TESTIMONIALS ── */

.page-phpdev .testi-section {
    background: var(--white);
    padding: 100px 30px
}

.page-phpdev .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px
}

.page-phpdev .testi-card {
    background: var(--ivory);
    border-radius: 22px;
    padding: 36px 30px;
    border: 1px solid rgba(15, 15, 26, .06);
    transition: all .3s
}

.page-phpdev .testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 15, 26, .08)
}

.page-phpdev .testi-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 16px
}

.page-phpdev .testi-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 24px
}

.page-phpdev .testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.page-phpdev .testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0
}

.page-phpdev .testi-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink)
}

.page-phpdev .testi-role {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px
}

/* ── CTA SECTION ── */

.page-phpdev .cta-section {
    padding: 100px 30px;
    background: linear-gradient(180deg, #fff 0%, #F0ECFF 100%)
}

.page-phpdev .cta-card {
    display: flex;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A0A3E 60%, #2D0A4E 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 15, 26, .35)
}

.page-phpdev .cta-visual {
    flex: 1;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    min-height: 680px
}

.page-phpdev .cta-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 26, .3) 0%, rgba(15, 15, 26, .93) 100%);
    z-index: 1
}

.page-phpdev .cta-visual-content {
    position: relative;
    z-index: 2;
    color: #fff
}

.page-phpdev .cta-visual-heading {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px
}

.page-phpdev .cta-visual-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 8px
}

.page-phpdev .cta-visual-phone {
    font-size: 28px;
    font-weight: 700;
    color: var(--lime)
}

.page-phpdev .cta-form-panel {
    flex: 1.1;
    background: #fff;
    background-image: radial-gradient(circle at top right, rgba(200, 255, 0, .12) 0%, transparent 55%);
    background-repeat: no-repeat;
    padding: 60px 56px
}

.page-phpdev .step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px
}

.page-phpdev .step-bar {
    flex: 1;
    height: 4px;
    background: rgba(15, 15, 26, .1);
    border-radius: 2px;
    margin-right: 20px;
    overflow: hidden
}

.page-phpdev .step-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #7C3AED, #FF3CAC);
    border-radius: 2px;
    transition: width .4s
}

.page-phpdev .step-count {
    font-size: 13px;
    font-weight: 700;
    color: rgba(15, 15, 26, .4);
    letter-spacing: 2px
}

.page-phpdev .form-title {
    font-size: 36px;
    font-weight: 800;
    color: #0F0F1A;
    letter-spacing: -1px;
    margin-bottom: 8px;
    line-height: 1.15
}

.page-phpdev .form-sub {
    font-size: 17px;
    color: rgba(15, 15, 26, .5);
    margin-bottom: 40px;
    line-height: 1.5
}

.page-phpdev .multistep {
    display: grid
}

.page-phpdev .fstep {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.page-phpdev .fstep.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: stepIn .45s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(18px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.page-phpdev .min-field {
    margin-bottom: 44px
}

.page-phpdev .min-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(15, 15, 26, .45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px
}

.page-phpdev .min-field input,
.page-phpdev .min-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(15, 15, 26, .13);
    font-size: 28px;
    font-weight: 500;
    color: #0F0F1A;
    padding: 8px 0;
    font-family: inherit;
    transition: all .3s;
    resize: none
}

.page-phpdev .min-field input::placeholder,
.page-phpdev .min-field textarea::placeholder {
    color: rgba(15, 15, 26, .28);
    font-weight: 400
}

.page-phpdev .min-field input:focus,
.page-phpdev .min-field textarea:focus {
    outline: none;
    border-bottom-color: #C8FF00
}

.page-phpdev .min-field textarea {
    font-size: 20px
}

.page-phpdev .chips-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(15, 15, 26, .45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px
}

.page-phpdev .chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px
}

.page-phpdev .chip {
    padding: 12px 20px;
    background: rgba(15, 15, 26, .03);
    border: 1px solid rgba(15, 15, 26, .09);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #0F0F1A;
    cursor: pointer;
    transition: all .25s;
    user-select: none;
    font-family: inherit
}

.page-phpdev .chip:hover {
    background: rgba(15, 15, 26, .05);
    transform: translateY(-1px)
}

.page-phpdev .chip.sel {
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(124, 58, 237, .22);
    transform: translateY(-1px)
}

.page-phpdev .step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(15, 15, 26, .07)
}

.page-phpdev .dots {
    display: flex;
    gap: 8px
}

.page-phpdev .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(15, 15, 26, .1);
    transition: background .3s
}

.page-phpdev .dot.on {
    background: #7C3AED
}

.page-phpdev .nav-btns {
    display: flex;
    gap: 14px;
    align-items: center
}

.page-phpdev .btn-next {
    padding: 16px 36px;
    background: linear-gradient(135deg, #7C3AED, #FF3CAC);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s
}

.page-phpdev .btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(124, 58, 237, .28)
}

.page-phpdev .btn-back {
    padding: 16px 20px;
    background: transparent;
    color: rgba(15, 15, 26, .5);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color .2s
}

.page-phpdev .btn-back:hover {
    color: #0F0F1A
}

.page-phpdev .btn-submit {
    background: linear-gradient(135deg, #C8FF00, #a0c800);
    color: #0F0F1A
}

/* ── FOOTER ── */

.page-phpdev .site-footer {
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid
}

.page-phpdev .footer-top-wrap {
    background: linear-gradient(180deg, #E4DDFF 0%, #F7F3EC 40%, #fff 100%);
    position: relative;
    z-index: 2;
    grid-area: 1/1;
    margin-bottom: 22vw;
    padding: 80px 30px 40px
}

.page-phpdev .footer-container {
    max-width: 1400px;
    margin: 0 auto
}

.page-phpdev .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px
}

.page-phpdev .footer-cta {
    flex: 0 0 300px
}

.page-phpdev .footer-cta h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: #0F0F1A;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.page-phpdev .footer-cta p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.5
}

.page-phpdev .footer-btn {
    background: #C8FF00;
    color: #0F0F1A;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit
}

.page-phpdev .footer-btn:hover {
    background: #90C800;
    transform: translateY(-2px)
}

.page-phpdev .footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.page-phpdev .footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0F0F1A;
    margin-bottom: 20px
}

.page-phpdev .footer-col .mt-4 {
    margin-top: 32px
}

.page-phpdev .footer-col ul {
    list-style: none
}

.page-phpdev .footer-col ul li {
    margin-bottom: 12px
}

.page-phpdev .footer-col ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

.page-phpdev .footer-col ul li a:hover {
    color: #7C3AED
}

.page-phpdev .footer-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 15, 26, .08)
}

.page-phpdev .footer-socials {
    display: flex;
    gap: 20px
}

.page-phpdev .footer-socials a {
    color: #0F0F1A;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s
}

.page-phpdev .footer-socials a:hover {
    color: #C8FF00
}

.page-phpdev .footer-meta-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.page-phpdev .meta-copyright {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500
}

.page-phpdev .meta-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    font-weight: 500
}

.page-phpdev .meta-nav a {
    color: #4a5568;
    text-decoration: none;
    transition: color .2s
}

.page-phpdev .meta-nav a:hover {
    color: #7C3AED
}

.page-phpdev .footer-giant-brand {
    box-sizing: border-box;
    height: 22vw;
    position: sticky;
    top: calc(100vh - 22vw);
    z-index: 1;
    grid-area: 1/1;
    align-self: start;
    width: 100%;
    padding: 4vw;
    overflow: hidden;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 8px), linear-gradient(135deg, #C8FF00 0%, #e2f798 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.page-phpdev .brand-text {
    font-size: 12.5vw;
    font-weight: 900;
    color: #0F0F1A;
    margin: 0;
    line-height: .72;
    letter-spacing: -4px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    transform: translateY(2.5%)
}

/* ── REVEAL ── */

.page-phpdev [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.page-phpdev [data-reveal].vis {
    opacity: 1;
    transform: translateY(0)
}

/* ── RESPONSIVE ── */

@media(max-width:1100px) {

    .page-phpdev .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .page-phpdev .hero-card {
        max-width: 440px
    }

    .page-phpdev .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-phpdev .why-grid.why-grid-5 {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-phpdev .overview-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-phpdev .services-layout {
        grid-template-columns: 1fr
    }

    .page-phpdev .services-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
        margin-bottom: 32px;
        gap: 8px
    }

    .page-phpdev .snav-btn {
        font-size: 13px;
        padding: 10px 14px
    }

    .page-phpdev .sp-items {
        grid-template-columns: 1fr
    }

    .page-phpdev .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px
    }

    .page-phpdev .process-steps::before {
        display: none
    }

    .page-phpdev .who-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .page-phpdev .testi-grid {
        grid-template-columns: 1fr 1fr
    }

    .page-phpdev .cta-card {
        flex-direction: column
    }

    .page-phpdev .cta-visual {
        min-height: 380px;
        padding: 48px 40px
    }

    .page-phpdev .cta-form-panel {
        padding: 48px 40px
    }

}

@media(max-width:768px) {

    .page-phpdev .hamburger {
        display: flex
    }

    .page-phpdev .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: left .3s;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
        z-index: 999
    }

    .page-phpdev .nav-menu.active {
        left: 0
    }

    .page-phpdev .nav-buttons {
        display: none
    }

    .page-phpdev .nav-link::after {
        display: none
    }

    .page-phpdev .why-grid,
    .page-phpdev .why-grid.why-grid-5 {
        grid-template-columns: 1fr
    }

    .page-phpdev .overview-grid {
        grid-template-columns: 1fr
    }

    .page-phpdev .process-steps {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .page-phpdev .who-grid {
        grid-template-columns: 1fr
    }

    .page-phpdev .testi-grid {
        grid-template-columns: 1fr
    }

    .page-phpdev .cta-form-panel {
        padding: 36px 24px
    }

    .page-phpdev .form-title {
        font-size: 26px
    }

    .page-phpdev .min-field input {
        font-size: 22px
    }

    .page-phpdev .cta-visual {
        min-height: 300px;
        padding: 36px 24px
    }

    .page-phpdev .cta-visual-heading {
        font-size: 26px
    }

    .page-phpdev .footer-top {
        flex-direction: column
    }

    .page-phpdev .footer-links-grid {
        grid-template-columns: repeat(2, 1fr)
    }

}

@media(max-width:560px) {

    .page-phpdev .footer-links-grid {
        grid-template-columns: 1fr
    }

    .page-phpdev .footer-meta-links {
        flex-direction: column;
        align-items: flex-start
    }

    .page-phpdev .brand-text {
        font-size: 21vw;
        letter-spacing: -2px
    }

    .page-phpdev .sp-items {
        grid-template-columns: 1fr
    }

}

@media(prefers-reduced-motion:reduce) {

    .page-phpdev *,
    .page-phpdev *::before,
    .page-phpdev *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

}


/* ==============================================
   BLOG PAGE STYLES
   ============================================== */

/* HERO */
.blog-hero {
    background: var(--ink);
    padding: 90px 30px 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, .25) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 255, 0, .1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--lime);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--pill-radius);
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.hero-heading {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px
}

.hero-heading em {
    font-style: normal;
    color: var(--lime)
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 40px
}

/* SEARCH BAR */
.search-wrap {
    display: flex;
    gap: 0;
    max-width: 520px;
    margin-bottom: 0
}

.search-input {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-right: none;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    padding: 14px 20px;
    border-radius: var(--pill-radius) 0 0 var(--pill-radius);
    outline: none;
    transition: border-color .2s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, .35)
}

.search-input:focus {
    border-color: rgba(124, 58, 237, .6)
}

.search-btn {
    background: var(--violet);
    border: none;
    color: #fff;
    padding: 14px 24px;
    border-radius: 0 var(--pill-radius) var(--pill-radius) 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    transition: background .2s;
    white-space: nowrap;
}

.search-btn:hover {
    background: #6d28d9
}

/* HERO STATS */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.stat-item {}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    display: block
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
    margin-top: 2px
}

/* FILTER PILLS */
.filter-section {
    background: #fff;
    border-bottom: 1px solid rgba(15, 15, 26, .07);
    padding: 0 30px;
    position: sticky;
    top: 70px;
    z-index: 900;
}

.filter-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 18px 0;
    white-space: nowrap
}

.filter-inner::-webkit-scrollbar {
    display: none
}

.fpill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--pill-radius);
    border: 1.5px solid rgba(15, 15, 26, .1);
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.fpill:hover {
    border-color: var(--violet);
    color: var(--violet)
}

.fpill.active {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff
}

/* MAIN LAYOUT */
.blog-main {
    background: var(--ivory);
    padding: 0 30px 100px
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto
}

/* FEATURED POST */
.featured-wrap {
    padding-top: 60px;
    margin-bottom: 60px
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 28px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(15, 15, 26, .1)
}

.featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(15, 15, 26, .06);
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    color: inherit;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 15, 26, .1)
}

.featured-img {
    position: relative;
    overflow: hidden;
    min-height: 420px
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.featured-card:hover .featured-img img {
    transform: scale(1.04)
}

.featured-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 15, 26, .08), transparent)
}

.feat-cat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--violet);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--pill-radius);
}

.featured-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.featured-meta-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 1px
}

.meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gray);
    flex-shrink: 0
}

.featured-meta-date {
    font-size: 13px;
    color: var(--gray)
}

.featured-meta-read {
    font-size: 13px;
    color: var(--gray)
}

.featured-title {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--ink)
}

.featured-excerpt {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 28px;
    flex: 1
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.author-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink)
}

.author-role {
    font-size: 12px;
    color: var(--gray)
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--pill-radius);
    font-size: 13px;
    font-weight: 700;
    transition: all .25s;
}

.read-btn:hover {
    background: var(--violet)
}

.read-btn svg {
    width: 14px;
    height: 14px;
    transition: transform .2s
}

.read-btn:hover svg {
    transform: translateX(3px)
}

/* POST GRID + SIDEBAR */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start
}

/* POST GRID */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.post-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(15, 15, 26, .06);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15, 15, 26, .1)
}

.post-thumb {
    position: relative;
    overflow: hidden;
    height: 200px
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s
}

.post-card:hover .post-thumb img {
    transform: scale(1.06)
}

.post-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--pill-radius);
}

.cat-remote {
    background: rgba(124, 58, 237, .9);
    color: #fff
}

.cat-hiring {
    background: rgba(255, 60, 172, .9);
    color: #fff
}

.cat-productivity {
    background: rgba(22, 163, 74, .9);
    color: #fff
}

.cat-marketing {
    background: #ffffff00;
    color: #fff
}

.cat-tech {
    background: #ffffff00;
    color: #fff
}

.cat-insights {
    background: rgba(147, 51, 234, .9);
    color: #fff
}

.post-body {
    padding: 22px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.post-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -.3px
}

.post-excerpt {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
    flex: 1
}

.post-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 15, 26, .06);
    margin-top: 4px
}

.post-author-mini {
    display: flex;
    align-items: center;
    gap: 8px
}

.post-author-mini img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover
}

.post-author-info {}

.post-author-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2
}

.post-date {
    font-size: 11px;
    color: var(--gray)
}

.post-read-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--violet);
    background: var(--lav);
    padding: 4px 10px;
    border-radius: var(--pill-radius)
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 130px
}

.sidebar-widget {
    background: #fff;
    border-radius: var(--card-radius);
    border: 1px solid rgba(15, 15, 26, .06);
    overflow: hidden
}

.widget-head {
    padding: 18px 22px 16px;
    border-bottom: 1px solid rgba(15, 15, 26, .05);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
}

.widget-body {
    padding: 20px 22px
}

/* Popular posts widget */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.pop-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 15, 26, .05);
    text-decoration: none;
    color: inherit;
    transition: opacity .2s;
}

.pop-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.pop-item:hover {
    opacity: .7
}

.pop-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--lavd);
    line-height: 1;
    flex-shrink: 0;
    width: 28px
}

.pop-text {}

.pop-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 4px
}

.pop-meta {
    font-size: 11px;
    color: var(--gray)
}

/* Categories widget */
.cat-list {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background .2s;
}

.cat-item:hover {
    background: var(--ivory)
}

.cat-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px
}

.cat-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

.cat-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    background: rgba(15, 15, 26, .06);
    padding: 3px 9px;
    border-radius: var(--pill-radius)
}

/* Newsletter widget */
.newsletter-widget {
    background: var(--ink);
    border-radius: var(--card-radius);
    overflow: hidden;
    padding: 28px 22px
}

.nl-icon {
    font-size: 28px;
    margin-bottom: 12px
}

.nl-title {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 8px
}

.nl-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 20px
}

.nl-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.nl-input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    padding: 11px 16px;
    border-radius: 10px;
    outline: none;
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, .3)
}

.nl-input:focus {
    border-color: rgba(200, 255, 0, .5)
}

.nl-btn {
    background: var(--lime);
    color: var(--ink);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    letter-spacing: .3px;
}

.nl-btn:hover {
    background: #b0e000
}

.nl-fine {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    margin-top: 8px
}

/* Related services widget */
.services-widget {}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.svc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    background: var(--ivory);
    text-decoration: none;
    color: inherit;
    transition: all .2s;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.svc-link:hover {
    background: var(--lav);
    color: var(--violet)
}

.svc-link svg {
    width: 14px;
    height: 14px;
    color: var(--gray);
    transition: transform .2s
}

.svc-link:hover svg {
    transform: translateX(3px);
    color: var(--violet)
}

/* LOAD MORE */
.load-more-wrap {
    text-align: center;
    margin-top: 48px
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--ink);
    color: var(--ink);
    padding: 14px 36px;
    border-radius: var(--pill-radius);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: all .3s;
}

.load-more-btn:hover {
    background: var(--ink);
    color: #fff
}

/* TEXT MARQUEE */
.story-marquee-wrap {
    background: var(--ink);
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap
}

.story-marquee {
    display: inline-flex;
    animation: marqueeRun 30s linear infinite
}

.story-marquee-inner {
    display: inline-flex;
    gap: 0
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35)
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0
}

@keyframes marqueeRun {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* FOOTER */
.site-footer {
    width: 100%;
    font-family: inherit;
    position: relative;
    z-index: 1;
    display: grid
}

.footer-top-wrap {
    background: linear-gradient(180deg, #E4DDFF 0%, #F7F3EC 40%, #fff 100%);
    position: relative;
    z-index: 2;
    grid-area: 1/1;
    margin-bottom: 22vw;
    padding: 80px 30px 40px
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px
}

.footer-cta {
    flex: 0 0 320px
}

.footer-cta h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #0F0F1A;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.footer-cta p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.5
}

.footer-btn {
    background: var(--lime);
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit
}

.footer-btn:hover {
    background: #90C800;
    transform: translateY(-2px)
}

.footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0F0F1A;
    margin-bottom: 20px
}

.footer-col .mt-4 {
    margin-top: 32px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #7C3AED
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 15, 26, .08)
}

.footer-socials {
    display: flex;
    gap: 20px
}

.footer-socials a {
    color: #0F0F1A;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s
}

.footer-socials a:hover {
    color: var(--lime)
}

.footer-meta-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.meta-copyright {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500
}

.meta-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    font-weight: 500
}

.meta-nav a {
    color: #4a5568;
    text-decoration: none;
    transition: color .2s
}

.meta-nav a:hover {
    color: #7C3AED
}

.lang-dropdown {
    color: #0F0F1A;
    cursor: pointer;
    font-weight: 600
}

.footer-giant-brand {
    box-sizing: border-box;
    height: 22vw;
    position: sticky;
    top: calc(100vh - 22vw);
    z-index: 1;
    grid-area: 1/1;
    align-self: start;
    width: 100%;
    padding: 4vw;
    overflow: hidden;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 8px), linear-gradient(135deg, #C8FF00 0%, #e2f798 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.brand-text {
    font-size: 12.5vw;
    font-weight: 900;
    color: #0F0F1A;
    margin: 0;
    line-height: .72;
    letter-spacing: -4px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    transform: translateY(2.5%)
}

/* REVEAL */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

[data-reveal].vis {
    opacity: 1;
    transform: translateY(0)
}

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 56px
}

.pag-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid rgba(15, 15, 26, .12);
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    font-family: inherit;
    transition: all .2s;
    text-decoration: none
}

.pag-btn:hover {
    border-color: var(--violet);
    color: var(--violet)
}

.pag-btn.active {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff
}

.pag-ellipsis {
    color: var(--gray);
    font-size: 14px;
    padding: 0 4px
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .content-layout {
        grid-template-columns: 1fr
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .featured-card {
        grid-template-columns: 1fr
    }

    .featured-img {
        min-height: 280px
    }

    .featured-body {
        padding: 32px 28px
    }

    .hero-stats {
        gap: 24px
    }

    .footer-top {
        flex-direction: column
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: left .3s;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
        z-index: 999
    }

    .nav-menu.active {
        left: 0
    }

    .nav-buttons {
        display: none
    }

    .blog-hero {
        padding: 60px 20px 50px
    }

    .blog-main {
        padding: 0 16px 80px
    }

    .posts-grid {
        grid-template-columns: 1fr
    }

    .sidebar {
        grid-template-columns: 1fr
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px
    }

    .featured-body {
        padding: 24px 20px
    }
}

@media(max-width:560px) {
    .footer-links-grid {
        grid-template-columns: 1fr
    }

    .footer-meta-links {
        flex-direction: column;
        align-items: flex-start
    }

    .brand-text {
        font-size: 21vw;
        letter-spacing: -2px
    }
}

/* ------------------------------------------------------conatct us page--------------------------------------  */
  .contact-wrap {
      padding: 12px 24px 80px;
      position: relative;
      overflow: hidden;
  }

  /* ===== top navbar ===== */
  .site-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 26px 48px;
      max-width: 1180px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
  }

  .site-nav .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 1.25rem;
      color: #26251f;
      text-decoration: none;
  }

  .site-nav .logo .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #7c3aed;;
      display: inline-block;
  }

  .site-nav .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .site-nav .nav-links a {
      color: var(--ink);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      opacity: 0.75;
      transition: opacity 0.15s ease;
  }

  .site-nav .nav-links a:hover {
      opacity: 1;
  }

  .site-nav .nav-links a.active {
      opacity: 1;
      color: #7c3aed;
      font-weight: 600;
  }

  .site-nav .btn-nav {
      background: #26251f;
      color: #fff;
      text-decoration: none;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
      transition: background 0.15s ease;
  }

  .site-nav .btn-nav:hover {
      background: #7c3aed;
      color: #fff;
  }

  /* ===== hero header ===== */
  .hero-header {
      text-align: center;
      max-width: 640px;
      margin: 24px auto 56px;
      position: relative;
      z-index: 2;
  }

  .contact-wrap .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #1a1a1a;
      background: #7c3aed26;
      padding: 7px 16px;
      border-radius: 999px;
      margin-bottom: 22px;
  }

  .hero-header h1 {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 2.9rem;
      line-height: 1.15;
      color: #26251f;
      margin-bottom: 16px;
  }

  .hero-header h1 em {
      font-style: italic;
      color:#7c3aed;
  }

  .hero-header p {
      font-size: 1.02rem;
      color: #8a8478;
      line-height: 1.7;
  }

  @media (max-width: 640px) {
      .site-nav {
          padding: 22px 24px;
      }

      .site-nav .nav-links {
          display: none;
      }

      .hero-header h1 {
          font-size: 2.1rem;
      }
  }

  /* soft decorative blobs */
  .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.35;
      z-index: 0;
  }

  .blob-1 {
      width: 340px;
      height: 340px;
      background: #7c3aed;
      top: -100px;
      left: -100px;
  }

  .blob-2 {
      width: 300px;
      height: 300px;
      background: #7c3aed;
      bottom: -120px;
      right: -80px;
  }

  .contact-card {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 28px;
      box-shadow: 0 40px 80px -20px rgba(38, 37, 31, 0.18);
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      overflow: hidden;
  }

  /* ===== left panel ===== */
  .info-panel {
      background: #26251f;
      color: #fff;
      padding: 52px 44px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
  }

  .info-panel::before {
      content: "";
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: #7c3aed;
      opacity: 0.18;
  }

  .info-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color:#ffffff;
      margin-bottom: 16px;
  }

  .info-title {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 14px;
  }

  .info-desc {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.7;
      max-width: 280px;
  }

  .info-list {
      list-style: none;
      padding: 0;
      margin: 40px 0 0;
      position: relative;
      z-index: 1;
  }

  .info-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
  }

  .info-list li:last-child {
      margin-bottom: 0;
  }

  .info-ico {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
  }

  .info-list strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 2px;
  }

  .info-list span {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
  }

  .social-row {
      display: flex;
      gap: 10px;
      margin-top: 44px;
      position: relative;
      z-index: 1;
  }

  .social-row a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 0.85rem;
      transition: background 0.2s ease;
  }

  .social-row a:hover {
      background:  #7c3aed;
      border-color:  #7c3aed;
  }

  /* ===== right panel: form ===== */
  .form-panel {
      padding: 52px 48px;
      max-width: 567px;
  }

  .form-title {
      font-family: 'Fraunces', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: #26251f;
      margin-bottom: 8px;
  }

  .form-sub {
      font-size: 0.9rem;
      color: #8a8478;
      margin-bottom: 32px;
  }

  .field {
      margin-bottom: 20px;
      position: relative;
  }

  .field label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: #26251f;
      margin-bottom: 7px;
  }

  .field input,
  .field textarea {
      width: 100%;
      border: 1.5px solid #e6ddd0;
      background: #fdfbf8;
      border-radius: 10px;
      padding: 12px 15px;
      font-size: 0.9rem;
      font-family: 'Inter', sans-serif;
      color: #26251f;
      transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }

  .field input::placeholder,
  .field textarea::placeholder {
      color: #b0a99b;
  }

  .field input:focus,
  .field textarea:focus {
      outline: none;
      border-color: #7c3aed;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(196, 98, 45, 0.1);
  }

  .field textarea {
      min-height: 120px;
      resize: vertical;
  }

  .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  .btn-send {
      background: #7c3aed;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px 0;
      width: 100%;
      font-weight: 600;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s ease, transform 0.1s ease;
  }

  .btn-send:hover {
      background: #7c3aed;
      color: #fff;
  }

  .btn-send:active {
      transform: scale(0.99);
  }

  .btn-send:disabled {
      opacity: 0.65;
      cursor: not-allowed;
  }

  .success-msg {
      background: #eef4ea;
      border: 1px solid #d3e3ca;
      color: #3f5c34;
      border-radius: 10px;
      padding: 12px 15px;
      font-size: 0.85rem;
      margin-bottom: 20px;
  }

  @media (max-width: 860px) {
      .contact-card {
          grid-template-columns: 1fr;
      }

      .info-panel {
          padding: 40px 32px;
      }

      .form-panel {
          padding: 40px 32px;
      }

      .field-row {
          grid-template-columns: 1fr;
      }
  }
/*  career page */