/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette */
    --primary-blue: #1E6CFA;
    --primary-pink: #FF2D84;
    --primary-purple: #8A2BE2;
    --accent-electric: #4A9FFF;
    --background-dark: #020103;
    --background-deeper: #010006;
    --card-background: #141414;
    --card-overlay: rgba(20, 20, 20, 0.65);
    --text-primary: #FFFFFF;
    --text-secondary: #ECECEC;
    --text-subtle: rgba(255, 255, 255, 0.7);
    --border-subtle: #262626;
    --border-strong: rgba(255, 255, 255, 0.4);

    /* Typography scale */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-size-display: clamp(3rem, 6vw, 4.5rem);
    --font-size-xxl: clamp(2.25rem, 4.5vw, 3.5rem);
    --font-size-xl: clamp(2rem, 3.5vw, 2.75rem);
    --font-size-lg: clamp(1.375rem, 2.5vw, 1.875rem);
    --font-size-md: 1.25rem;
    --font-size-base: 1rem;
    --font-size-sm: 0.938rem;
    --font-size-xs: 0.813rem;

    --line-height-tight: 1.15;
    --line-height-comfortable: 1.5;

    /* Layout */
    --content-max-width: 1200px;
    --page-padding: clamp(20px, 4vw, 48px);
    --section-padding: clamp(96px, 12vw, 160px);
    --card-radius: 16px;
    --pill-radius: 999px;
    --shadow-soft: 0 18px 60px rgba(8, 12, 38, 0.45);
    --shadow-card: 0 16px 48px rgba(8, 12, 38, 0.35);

    /* Gradients */
    --gradient-hero: radial-gradient(circle at 20% -20%, rgba(255, 45, 132, 0.5) 0%, rgba(1, 0, 6, 0.85) 45%, rgba(1, 0, 6, 1) 100%);
    --gradient-magenta-blue: linear-gradient(135deg, rgba(255, 45, 132, 0.9) 0%, rgba(30, 108, 250, 0.9) 100%);
    --gradient-blue-soft: radial-gradient(circle at 85% 20%, rgba(74, 159, 255, 0.55) 0%, rgba(1, 0, 6, 0.2) 55%, rgba(1, 0, 6, 0.95) 100%);
    --gradient-pink-soft: radial-gradient(circle at 0% 20%, rgba(255, 45, 132, 0.6) 0%, rgba(1, 0, 6, 0.2) 50%, rgba(1, 0, 6, 0.95) 100%);
}

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    background-color: var(--background-deeper);
    background-image:
        var(--gradient-hero),
        radial-gradient(circle at 80% 0%, rgba(74, 159, 255, 0.35) 0%, rgba(2, 1, 3, 0) 55%),
        radial-gradient(circle at 0% 45%, rgba(255, 45, 132, 0.35) 0%, rgba(2, 1, 3, 0) 60%);
    background-repeat: no-repeat;
    background-size: 120vw 120vh, 80vw 80vh, 70vw 70vh;
    background-position: center top, right -20vh, left 30vh;
    color: var(--text-primary);
    line-height: var(--line-height-comfortable);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--font-size-display);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-xxl);
    line-height: 1.2;
}

h3 {
    font-size: var(--font-size-xl);
    line-height: 1.25;
}

h4 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-blue);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

.layout-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--pill-radius);
    border: 1px solid var(--border-strong);
    background: rgba(0, 0, 0, 0.55);
    font-size: var(--font-size-xs);
    letter-spacing: 0.48em;
    text-transform: uppercase;
}

.surface-glass {
    background: var(--card-overlay);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--card-radius);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-electric) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header.scrolled {
    background: linear-gradient(
        to top,
        rgba(10, 12, 18, 0.02),
        rgba(10, 12, 18, 0.15)
    );
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.nav-group {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-group--left {
    justify-content: flex-start;
}

.nav-group--right {
    justify-content: flex-end;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-pill:hover {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.nav-pill-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-pill-link:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-pill-caret {
    font-size: 0.65em;
    margin-left: 2px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.nav-logo img {
    width: clamp(200px, 20vw, 300px);
    height: auto;
    transition: width 0.3s ease;
}

.header.scrolled .nav-logo img {
    width: clamp(120px, 12vw, 160px);
}

.hero-section {
    position: relative;
    height: clamp(640px, 100vh, 960px);
    margin-bottom: clamp(48px, 6vw, 96px);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    z-index: -1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lead Section */
.lead-section {
    position: relative;
    padding: var(--section-padding) 0 calc(var(--section-padding) * 0.8);
    overflow: hidden;
}

.lead-section::before {
    content: '';
    position: absolute;
    inset: -35% auto auto -22%;
    width: clamp(520px, 52vw, 760px);
    height: clamp(520px, 52vw, 780px);
    background: radial-gradient(72% 72% at 30% 52%, rgba(255, 45, 132, 0.65) 0%, rgba(115, 0, 64, 0.24) 52%, rgba(2, 1, 3, 0) 100%);
    filter: blur(8px);
    opacity: 0.95;
    pointer-events: none;
}

.lead-section::after {
    content: '';
    position: absolute;
    inset: 10% -20% auto auto;
    width: clamp(420px, 42vw, 700px);
    height: clamp(420px, 42vw, 700px);
    background: var(--gradient-blue-soft);
    filter: blur(12px);
    opacity: 0.8;
    pointer-events: none;
}

.lead-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
    z-index: 1;
}

.lead-copy {
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.lead-copy::before {
    content: '';
    position: absolute;
    left: clamp(-280px, -12vw, -160px);
    top: clamp(-120px, -6vw, -60px);
    width: clamp(480px, 52vw, 700px);
    height: clamp(480px, 52vw, 680px);
    background: radial-gradient(65% 60% at 42% 55%, rgba(255, 45, 132, 0.85) 0%, rgba(255, 45, 132, 0.4) 38%, rgba(70, 0, 35, 0.25) 62%, rgba(2, 1, 3, 0) 100%);
    filter: blur(6px);
    opacity: 0.92;
    transform: rotate(-8deg);
    pointer-events: none;
    z-index: -1;
}

.lead-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: clamp(20px, 3vw, 32px);
}

.lead-heading-intro {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 35px);
    font-style: normal;
    font-weight: 500;
    line-height: 84px;
    letter-spacing: -1.771px;
}

.lead-heading-highlight {
    display: block;
    color: var(--primary-pink);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.5rem, 9vw, 82px);
    font-style: normal;
    font-weight: 500;
    line-height: 84px;
    letter-spacing: -4.149px;
}

.lead-body {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: -0.002px;
    opacity: 0.9;
    margin-bottom: clamp(24px, 4vw, 40px);
}

.lead-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.gradient-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px 12px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    background-image:
        linear-gradient(180deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 1) 100%),
        linear-gradient(90deg, rgba(255, 45, 132, 1) 0%, rgba(30, 108, 250, 1) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.35);
    text-decoration: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 45, 132, 0.35);
}

.gradient-button__label {
    display: inline-block;
}

.gradient-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff2d84;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 45, 132, 0.35);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: var(--pill-radius);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-magenta-blue);
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 45, 132, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(255, 45, 132, 0.45);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 45, 132, 0.25);
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translate(4px, -4px);
}

.lead-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead-visual-orbit {
    position: absolute;
    width: clamp(320px, 32vw, 420px);
    height: clamp(320px, 32vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 108, 250, 0.12) 0%, rgba(30, 108, 250, 0) 70%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: blur(2px);
    animation: pulseOrbit 6s ease-in-out infinite;
}

.lead-node {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-magenta-blue);
    box-shadow: 0 0 18px rgba(255, 45, 132, 0.65);
}

.lead-node--top {
    top: 6%;
    left: 20%;
}

.lead-node--right {
    right: 12%;
    bottom: 18%;
}

.lead-node--bottom {
    left: 30%;
    bottom: 4%;
}

.lead-illustration {
    position: relative;
    width: clamp(320px, 40vw, 520px);
    height: auto;
    filter: drop-shadow(0 28px 80px rgba(30, 108, 250, 0.35));
    animation: fadeInRight 1.1s ease-out;
}

@keyframes pulseOrbit {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0 120px;
    position: relative;
    background: #020103;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -200px;
    width: 800px;
    height: 1200px;
    background: radial-gradient(ellipse at center, rgba(30, 108, 250, 0.18) 0%, rgba(30, 108, 250, 0.08) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.solutions-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 14px;
    margin: 0 auto 24px auto;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 6.3px;
    color: #1e6cfa;
    text-align: center;
    text-transform: uppercase;
}

.section-heading {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 28px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 20px;
    line-height: 1.55;
    color: var(--text-secondary);
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
    opacity: 0.95;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 36px);
    margin-top: clamp(32px, 4vw, 48px);
}

.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: clamp(28px, 3.2vw, 36px);
    border-radius: 24px;
    border: 1px solid transparent;
    background-image:
        linear-gradient(180deg, rgba(14, 14, 24, 0.95) 0%, rgba(14, 14, 24, 0.75) 100%),
        linear-gradient(135deg, rgba(255, 45, 132, 0.65) 0%, rgba(30, 108, 250, 0.65) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 28px 60px rgba(10, 14, 40, 0.32);
    text-align: left;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 45, 132, 0.85), rgba(30, 108, 250, 0.85));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(135% 140% at 22% 18%, rgba(255, 45, 132, 0.48), rgba(5, 6, 12, 0.94) 55%);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 72px rgba(30, 108, 250, 0.35);
}

.solution-card:hover::before {
    opacity: 0.38;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: -0.1px;
}

/* Expertise Section */
.expertise-section {
    padding: 100px 0 120px;
    position: relative;
    background: #020103;
    overflow: hidden;
}

.expertise-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -300px;
    width: 900px;
    height: 1200px;
    background: radial-gradient(ellipse at center, rgba(255, 45, 132, 0.15) 0%, rgba(255, 45, 132, 0.08) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.expertise-section .container {
    position: relative;
    z-index: 1;
}

.expertise-shell {
    margin-top: clamp(48px, 6vw, 72px);
    padding: clamp(32px, 4vw, 52px);
    border-radius: 28px;
    background: rgba(4, 5, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(8, 12, 38, 0.45);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

.expertise-shell::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(30, 108, 250, 0.35) 0%, rgba(255, 45, 132, 0.35) 100%);
    opacity: 0.35;
    pointer-events: none;
    z-index: -2;
}

.expertise-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 108, 250, 0.16) 0%, rgba(255, 45, 132, 0) 45%);
    z-index: -1;
    pointer-events: none;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 60px);
}

.expertise-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: clamp(4px, 2vw, 28px);
    position: relative;
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: clamp(-8px, 3vw, -24px);
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.4;
}

.expertise-card:nth-child(2n)::after {
    display: none;
}

.expertise-card:nth-last-child(-n+2)::after {
    height: 45%;
    bottom: auto;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(30, 108, 250, 0.14);
    border: 1px solid rgba(30, 108, 250, 0.35);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 38px rgba(30, 108, 250, 0.3);
}

.expertise-icon img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 12px rgba(30, 108, 250, 0.7));
}

.expertise-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.expertise-copy {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-subtle);
    max-width: 420px;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(30, 108, 250, 0.18) 0%, rgba(10, 6, 26, 0.85) 55%, rgba(255, 45, 132, 0.2) 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(30, 108, 250, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 45, 132, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-text {
    max-width: 440px;
}

.contact-heading {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -2px;
}

.contact-panel {
    background: rgba(4, 5, 12, 0.88);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 24px 72px rgba(8, 12, 38, 0.45);
    backdrop-filter: blur(18px);
}

.form-heading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--text-primary);
    opacity: 0.85;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
    opacity: 0.6;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-primary);
    padding: 12px 0;
    font-size: 18px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-bottom-color: var(--primary-pink);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.submit-arrow {
    position: absolute;
    right: 0;
    background: var(--gradient-magenta-blue);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(255, 45, 132, 0.35);
}

.submit-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 18px 42px rgba(255, 45, 132, 0.45);
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: var(--section-padding) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    width: clamp(420px, 50vw, 720px);
    height: clamp(420px, 45vw, 680px);
    filter: blur(6px);
    opacity: 0.65;
    pointer-events: none;
}

.stats-section::before {
    top: -15%;
    left: -20%;
    background: radial-gradient(circle, rgba(74, 159, 255, 0.25) 0%, rgba(1, 0, 6, 0) 70%);
}

.stats-section::after {
    right: -18%;
    bottom: -30%;
    background: radial-gradient(circle, rgba(255, 45, 132, 0.35) 0%, rgba(1, 0, 6, 0) 65%);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.stats-heading {
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: clamp(28px, 5vw, 48px);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px, 4vw, 48px);
    justify-content: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 190px;
    max-width: 220px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: clamp(3rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, rgba(30, 108, 250, 1) 0%, rgba(138, 43, 226, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: -0.01em;
    text-transform: none;
}

.stats-image {
    position: relative;
}

.phone-mockup {
    width: min(520px, 100%);
    height: auto;
    margin-left: auto;
    display: block;
    filter: drop-shadow(0 32px 80px rgba(30, 108, 250, 0.35));
}

/* Approach Section */
.approach-section {
    padding: 120px 0;
    background: #020103;
    position: relative;
    overflow: hidden;
}

.approach-steps {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 7vw, 72px);
}

.approach-row {
    display: grid;
    grid-template-columns: 0.28fr 0.72fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
}

.approach-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}

.approach-copy-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.approach-copy-body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: -0.15px;
}

.approach-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.approach-image img {
    width: clamp(520px, 55vw, 680px);
    height: auto;
    filter: drop-shadow(0 30px 70px rgba(18, 20, 38, 0.45));
}

.approach-image-glow {
    display: none;
}

/* Case Studies Section */
.case-studies-section {
    padding: 120px 0;
    background: #020103;
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    inset: -12% 12% auto -18%;
    width: clamp(820px, 75vw, 1100px);
    height: clamp(720px, 75vw, 1100px);
    background: radial-gradient(ellipse at center, rgba(255, 45, 132, 0.4) 0%, rgba(16, 0, 12, 0.05) 52%, rgba(2, 2, 6, 0) 78%);
    pointer-events: none;
}

.case-studies-section::after {
    content: '';
    position: absolute;
    inset: 18% -22% -38% auto;
    width: clamp(620px, 60vw, 940px);
    height: clamp(620px, 62vw, 940px);
    background: radial-gradient(ellipse at center, rgba(30, 108, 250, 0.45) 0%, rgba(10, 12, 28, 0) 70%);
    pointer-events: none;
}

.case-studies-section::before {
    filter: blur(6px);
}

.case-studies-section::after {
    filter: blur(12px);
}

.case-studies-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(0, 0, 0, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ff2d84;
    margin-bottom: 24px;
}

.case-studies-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #ffffff;
    max-width: 720px;
    margin: 0 0 20px;
    text-align: left;
}

.case-studies-title span {
    color: var(--primary-pink);
}

.case-studies-description {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 640px;
    margin: 0 0 clamp(40px, 5vw, 56px);
    text-align: left;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    grid-auto-rows: 1fr;
}

.case-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: clamp(28px, 3vw, 36px);
    border-radius: 0 36px 0 0;
    background: transparent;
    overflow: hidden;
    min-height: 100%;
}

.case-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: clamp(56px, 7vw, 72px);
}

.case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
    background: linear-gradient(90deg, rgba(30, 108, 250, 0.95), rgba(255, 45, 132, 0.95)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.85;
    pointer-events: none;
}

.case-card-button {
    position: absolute;
    left: clamp(28px, 3vw, 36px);
    bottom: 5%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 38px 14px 34px;
    border-radius: 9999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.28s ease, color 0.28s ease, filter 0.28s ease;
    z-index: 1;
}

.case-card-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(90deg, rgba(30, 108, 250, 1), rgba(255, 45, 132, 1));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.28s ease;
}

.case-card-button__label {
    position: relative;
    z-index: 1;
    letter-spacing: inherit;
}

.case-card-button__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.95);
    transition: transform 0.28s ease, background 0.28s ease;
}

.case-card-button__icon img {
    width: 100%;
    height: 100%;
}

.case-card-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    filter: drop-shadow(0 18px 40px rgba(255, 45, 132, 0.28));
}

.case-card-button:hover::before {
    background: linear-gradient(90deg, rgba(255, 45, 132, 1), rgba(30, 108, 250, 1));
}

.case-card-button:hover .case-card-button__icon {
    transform: translateX(4px);
}

/* Clients Section */
.clients-section {
    padding: 120px 0;
    background: #020103;
    position: relative;
}

.clients-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.clients-heading {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.clients-subheading {
    font-size: 1rem;
    color: var(--text-subtle);
    opacity: 0.85;
    max-width: 420px;
}

.clients-visual {
    position: relative;
    padding: clamp(20px, 3vw, 32px);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(30, 108, 250, 0.12) 0%, rgba(255, 45, 132, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 84px rgba(8, 12, 38, 0.4);
}

.clients-visual::after {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.35);
    filter: blur(48px);
    z-index: -1;
}

.clients-logos {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 100px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(4, 5, 12, 0.95) 0%, rgba(2, 1, 3, 1) 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: -10% auto auto -20%;
    width: clamp(320px, 40vw, 520px);
    height: clamp(320px, 40vw, 520px);
    background: radial-gradient(circle, rgba(255, 45, 132, 0.4) 0%, rgba(1, 0, 6, 0) 70%);
    filter: blur(18px);
    opacity: 0.6;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    inset: auto -20% -35% auto;
    width: clamp(320px, 42vw, 560px);
    height: clamp(320px, 42vw, 560px);
    background: radial-gradient(circle, rgba(30, 108, 250, 0.38) 0%, rgba(1, 0, 6, 0) 65%);
    filter: blur(20px);
    opacity: 0.5;
    pointer-events: none;
}

.footer-top {
    margin-bottom: clamp(48px, 6vw, 72px);
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 520px;
}

.footer-graphic {
    max-width: clamp(220px, 30vw, 340px);
    height: auto;
    margin-bottom: clamp(24px, 4vw, 32px);
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-subtle);
    opacity: 0.85;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #F9FAFB;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    font-size: 16px;
    color: var(--text-primary);
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
}

.social-icon:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Birdeye Chat Widget */
.birdeye-chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 45, 132, 0.4);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 45, 132, 0.6);
}

.chat-widget {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--card-background);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-widget.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 500;
}

.chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.chat-body {
    padding: 20px;
    min-height: 200px;
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lead-grid,
    .contact-content,
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: clamp(24px, 8vw, 40px);
    }
    
    .approach-copy {
        align-items: center;
    }
    
    .approach-copy-body {
        max-width: 100%;
    }
    
    .approach-image {
        width: min(520px, 100%);
        margin: 0 auto;
    }
    
    .clients-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .clients-subheading {
        margin: 0 auto;
    }

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

    .approach-step.reverse .step-content,
    .approach-step.reverse .step-image {
        order: initial;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        gap: 16px;
        flex-direction: column;
    }

    .nav-group {
        width: 100%;
        justify-content: center;
    }

    .nav-pill {
        gap: 14px;
        padding: 10px 18px;
    }

    .nav-logo img {
        width: clamp(130px, 38vw, 180px);
    }
    
    .lead-grid {
        text-align: center;
    }

    .lead-copy {
        margin: 0 auto;
    }

    .lead-heading,
    .section-heading {
        font-size: 32px;
    }
    
    .lead-heading-highlight {
        display: inline;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .stats-heading {
        font-size: 36px;
    }
    
    .solutions-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pe-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        height: clamp(480px, 75vh, 680px);
    }
    
    .lead-actions {
        flex-direction: column;
    }
    
    .expertise-shell {
        padding: 28px clamp(20px, 6vw, 32px);
    }
    
    .expertise-card {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }
    
    .expertise-card::after {
        display: none;
    }
    
    .stats-text {
        text-align: center;
    }
    
    .stats-grid {
        justify-items: center;
    }

    .contact-panel {
        margin: 0 auto;
    }

    .clients-visual {
        margin: 0 auto;
    }

    .approach-step {
        text-align: center;
        padding: 28px clamp(20px, 6vw, 36px);
        gap: 36px;
    }

    .approach-step .step-content {
        align-items: center;
    }
    
    .chat-widget {
        width: calc(100vw - 48px);
    }
}