/* ============================================================
   DYNAMIC POINT GROUP — Global Stylesheet
   Brand: High-End Luxury | Deep Purple · Magenta · Black
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --dp-black: #0a0a0f;
    --dp-black-soft: #111118;
    --dp-purple-deep: #2b0a4e;
    --dp-purple: #4a1280;
    --dp-purple-mid: #6b21a8;
    --dp-magenta: #c0186c;
    --dp-magenta-bright: #e91e8c;
    --dp-magenta-glow: #ff2d9b;
    --dp-white: #ffffff;
    --dp-off-white: #f5f0fa;
    --dp-grey-light: #c8b8d8;
    --dp-grey-mid: #7a6a8a;

    --gradient-hero: linear-gradient(
        135deg,
        #0a0a0f 0%,
        #1a052e 45%,
        #2b0a4e 100%
    );
    --gradient-card: linear-gradient(160deg, #1a052e 0%, #0a0a0f 100%);
    --gradient-cta: linear-gradient(90deg, #c0186c 0%, #6b21a8 100%);
    --gradient-accent: linear-gradient(90deg, #e91e8c, #6b21a8);

    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-card:
        0 8px 40px rgba(192, 24, 108, 0.12), 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(192, 24, 108, 0.25);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1280px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--dp-black);
    color: var(--dp-off-white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol {
    list-style: none;
}
button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}
input,
select,
textarea {
    font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}
h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dp-grey-light);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dp-magenta);
    display: block;
    margin-bottom: 0.75rem;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Layout Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-pad {
    padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-pad-sm {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.text-center {
    text-align: center;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.items-center {
    align-items: center;
}
.justify-between {
    justify-content: space-between;
}
.gap-sm {
    gap: 1rem;
}
.gap-md {
    gap: 2rem;
}
.gap-lg {
    gap: 3rem;
}

/* ---------- Dividers & Ornaments ---------- */
.magenta-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-cta);
    border-radius: 99px;
    margin: 1.25rem auto 2rem;
}
.magenta-line.left {
    margin-left: 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--dp-white);
    box-shadow: 0 4px 24px rgba(192, 24, 108, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(192, 24, 108, 0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--dp-white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
    border-color: var(--dp-magenta);
    color: var(--dp-magenta);
    background: rgba(192, 24, 108, 0.07);
}

.btn-outline-magenta {
    background: transparent;
    color: var(--dp-magenta-bright);
    border: 1.5px solid var(--dp-magenta);
}
.btn-outline-magenta:hover {
    background: var(--dp-magenta);
    color: var(--dp-white);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 24, 108, 0.15);
    padding: 0.85rem 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dp-white);
    flex-shrink: 0;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav__logo-text span:first-child {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dp-white);
    letter-spacing: 0.03em;
}
.nav__logo-text span:last-child {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dp-magenta);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav__links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dp-grey-light);
    transition: color var(--transition);
    position: relative;
}
.nav__links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: var(--dp-magenta);
    transition: right var(--transition);
}
.nav__links a:hover {
    color: var(--dp-white);
}
.nav__links a:hover::after {
    right: 0;
}

.nav__cta {
    flex-shrink: 0;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dp-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- Mobile Nav ---------- */
.nav__mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.nav__mobile.active {
    opacity: 1;
    pointer-events: all;
}
.nav__mobile a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dp-white);
    transition: color var(--transition);
}
.nav__mobile a:hover {
    color: var(--dp-magenta);
}
.nav__mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--dp-grey-light);
    cursor: pointer;
    transition: color var(--transition);
}
.nav__mobile-close:hover {
    color: var(--dp-magenta);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    padding-top: 250px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}
.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(26, 5, 46, 0.85) 50%,
        rgba(43, 10, 78, 0.75) 100%
    );
}
.hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(192, 24, 108, 0.25) 0%,
        transparent 70%
    );
    top: -150px;
    right: -100px;
}
.hero__orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(107, 33, 168, 0.3) 0%,
        transparent 70%
    );
    bottom: -100px;
    left: -80px;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(192, 24, 108, 0.4);
    border-radius: var(--radius-xl);
    background: rgba(192, 24, 108, 0.1);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dp-magenta-bright);
    margin-bottom: 2rem;
}
.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dp-magenta-bright);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero__title {
    color: var(--dp-white);
    margin-bottom: 1.75rem;
}
.hero__title em {
    font-style: normal;
    display: block;
}

.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--dp-grey-light);
    max-width: 640px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dp-white);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.hero__stat-value span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dp-grey-mid);
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    right: clamp(1.25rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dp-grey-mid);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 1;
}
.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--dp-magenta), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0% {
        opacity: 1;
        transform: scaleY(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scaleY(0.5) translateY(20px);
    }
}

/* ---------- Marquee / Ticker ---------- */
.ticker {
    background: var(--dp-purple-deep);
    border-top: 1px solid rgba(192, 24, 108, 0.2);
    border-bottom: 1px solid rgba(192, 24, 108, 0.2);
    padding: 0.85rem 0;
    overflow: hidden;
    position: relative;
}
.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}
.ticker__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dp-grey-light);
    white-space: nowrap;
}
.ticker__item span {
    color: var(--dp-magenta);
    font-size: 1.2rem;
}
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ---------- Services / Products ---------- */
.services {
    background: var(--dp-black);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-cta);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 0;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(192, 24, 108, 0.35);
    box-shadow: var(--shadow-card);
}
.service-card:hover::before {
    opacity: 0.07;
}

.service-card--featured {
    border-color: rgba(192, 24, 108, 0.4);
    background: linear-gradient(160deg, #1f0540 0%, #0a0a0f 100%);
}
.service-card--featured .service-card__badge {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    background: var(--gradient-cta);
    border-radius: var(--radius-xl);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dp-white);
    margin-bottom: 1.25rem;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(192, 24, 108, 0.12);
    border: 1px solid rgba(192, 24, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.service-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--dp-magenta-bright);
    fill: none;
    stroke-width: 1.5;
}

.service-card__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dp-white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--dp-grey-light);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.service-card__deliverables {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.service-card__deliverable {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--dp-grey-light);
}
.service-card__deliverable::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(192, 24, 108, 0.15);
    border: 1px solid rgba(192, 24, 108, 0.4);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23e91e8c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dp-magenta-bright);
    position: relative;
    z-index: 1;
    transition: gap var(--transition);
}
.service-card__link:hover {
    gap: 0.75rem;
}
.service-card__link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

/* ---------- Benefits Comparison ---------- */
.benefits {
    background: var(--dp-black-soft);
    position: relative;
    overflow: hidden;
}
.benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(192, 24, 108, 0.4),
        transparent
    );
}

.benefits__table {
    margin-top: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.benefits__header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(43, 10, 78, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.benefits__col-head {
    padding: 1.5rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dp-grey-mid);
}
.benefits__col-head.highlight {
    background: rgba(192, 24, 108, 0.12);
    color: var(--dp-magenta-bright);
    border-left: 1px solid rgba(192, 24, 108, 0.2);
    border-right: 1px solid rgba(192, 24, 108, 0.2);
    text-align: center;
}

.benefits__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}
.benefits__row:last-child {
    border-bottom: none;
}
.benefits__row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.benefits__cell {
    padding: 1.25rem 2rem;
    font-size: 0.88rem;
    color: var(--dp-grey-light);
    display: flex;
    align-items: center;
}
.benefits__cell.center {
    justify-content: center;
}
.benefits__cell.highlight {
    background: rgba(192, 24, 108, 0.05);
    border-left: 1px solid rgba(192, 24, 108, 0.12);
    border-right: 1px solid rgba(192, 24, 108, 0.12);
    justify-content: center;
}

.check {
    color: var(--dp-magenta-bright);
    font-size: 1.1rem;
}
.cross {
    color: var(--dp-grey-mid);
    font-size: 1.1rem;
}

/* ---------- Values Strip ---------- */
.values {
    background: linear-gradient(
        135deg,
        var(--dp-purple-deep) 0%,
        var(--dp-black) 100%
    );
    position: relative;
    overflow: hidden;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.value-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 10, 15, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cta);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.value-card:hover {
    border-color: rgba(192, 24, 108, 0.25);
}
.value-card:hover::after {
    transform: scaleX(1);
}

.value-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(192, 24, 108, 0.15);
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}
.value-card:hover .value-card__number {
    color: rgba(192, 24, 108, 0.3);
}

.value-card__title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--dp-white);
    margin-bottom: 0.6rem;
}

.value-card__desc {
    font-size: 0.82rem;
    color: var(--dp-grey-mid);
    line-height: 1.65;
}

/* ---------- Case Study ---------- */
.case-study {
    background: var(--dp-black);
    position: relative;
    overflow: hidden;
}

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

.case-study__visual {
    position: relative;
}
.case-study__img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}
.case-study__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10, 10, 15, 0.7) 100%
    );
}
.case-study__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-study__accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    background: var(--gradient-cta);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}
.case-study__accent-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dp-white);
    line-height: 1;
}
.case-study__accent-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 0 0.5rem;
    margin-top: 0.4rem;
}

.case-study__content {
}

.case-study__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(192, 24, 108, 0.12);
    border: 1px solid rgba(192, 24, 108, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dp-magenta-bright);
    margin-bottom: 1.5rem;
}

.case-study__title {
    color: var(--dp-white);
    margin-bottom: 1.5rem;
}

.case-study__body {
    margin-bottom: 2.5rem;
}

.case-study__results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}
.case-study__result-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dp-white);
    line-height: 1;
    margin-bottom: 0.3rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.case-study__result-label {
    font-size: 0.75rem;
    color: var(--dp-grey-mid);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- Team / Culture ---------- */
.team {
    background: var(--dp-black-soft);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.team-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: default;
}
.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover .team-card__img {
    transform: scale(1.05);
}
.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 15, 0.9) 0%,
        rgba(10, 10, 15, 0.2) 60%,
        transparent 100%
    );
}
.team-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
}
.team-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dp-white);
    margin-bottom: 0.3rem;
}
.team-card__role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dp-magenta-bright);
}

/* ---------- Culture Gallery ---------- */
.culture {
    background: var(--dp-black);
}

.culture__mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
    margin-top: 3.5rem;
}

.culture__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.culture__item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}
.culture__item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}
.culture__item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}
.culture__item:nth-child(4) {
    grid-column: 6 / 9;
    grid-row: 2 / 3;
}
.culture__item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}

.culture__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: transform 0.6s ease;
}
.culture__item:nth-child(1) .culture__photo {
    aspect-ratio: auto;
    height: 100%;
}
.culture__item:hover .culture__photo {
    transform: scale(1.04);
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--dp-black);
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.6;
}

.cta-section__orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(192, 24, 108, 0.2) 0%,
        transparent 65%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-section__title {
    color: var(--dp-white);
    margin-bottom: 1.25rem;
}
.cta-section__sub {
    margin-bottom: 3rem;
    font-size: 1.05rem;
}
.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 0 2.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand p {
    font-size: 0.88rem;
    color: var(--dp-grey-mid);
    max-width: 280px;
    margin: 1.25rem 0 1.75rem;
    line-height: 1.75;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}
.footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dp-grey-mid);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer__social-link:hover {
    border-color: var(--dp-magenta);
    color: var(--dp-magenta);
    background: rgba(192, 24, 108, 0.08);
}

.footer__col-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dp-white);
    margin-bottom: 1.5rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__links a {
    font-size: 0.88rem;
    color: var(--dp-grey-mid);
    transition: color var(--transition);
}
.footer__links a:hover {
    color: var(--dp-magenta-bright);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--dp-grey-mid);
}
.footer__contact-icon {
    width: 16px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--dp-magenta);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
}
.footer__copy {
    font-size: 0.8rem;
    color: var(--dp-grey-mid);
}
.footer__legal {
    display: flex;
    gap: 2rem;
}
.footer__legal a {
    font-size: 0.8rem;
    color: var(--dp-grey-mid);
    transition: color var(--transition);
}
.footer__legal a:hover {
    color: var(--dp-white);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--dp-black));
}

/* ---------- Apply Page ---------- */
.apply-section {
    background: var(--dp-black);
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.apply-info__perks {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.apply-perk {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.apply-perk__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(192, 24, 108, 0.1);
    border: 1px solid rgba(192, 24, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.apply-perk__text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dp-white);
    margin-bottom: 0.2rem;
}
.apply-perk__text p {
    font-size: 0.82rem;
    color: var(--dp-grey-mid);
}

/* ---------- Form ---------- */
.form-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-grid .full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dp-grey-light);
}
.form-label .required {
    color: var(--dp-magenta);
    margin-left: 0.2rem;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--dp-white);
    font-size: 0.9rem;
    width: 100%;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--dp-magenta);
    box-shadow: 0 0 0 3px rgba(192, 24, 108, 0.15);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--dp-grey-mid);
}

.form-select {
    cursor: pointer;
}
.form-select option {
    background: var(--dp-black-soft);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--gradient-cta);
    color: var(--dp-white);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(192, 24, 108, 0.4);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(192, 24, 108, 0.55);
}
.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--dp-grey-mid);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

/* ---------- Success Toast / Notification ---------- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    background: linear-gradient(135deg, #1a0533, #2b0a4e);
    border: 1px solid rgba(192, 24, 108, 0.5);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    max-width: 380px;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(192, 24, 108, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.toast__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(192, 24, 108, 0.2);
    border: 1.5px solid var(--dp-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.toast__content {
}
.toast__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dp-white);
    margin-bottom: 0.25rem;
}
.toast__msg {
    font-size: 0.8rem;
    color: var(--dp-grey-light);
    line-height: 1.5;
}
.toast__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: var(--dp-grey-mid);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}
.toast__close:hover {
    color: var(--dp-white);
}

/* ---------- Legal / Content Pages ---------- */
.legal-body {
    max-width: 800px;
    margin: 0 auto;
}
.legal-body h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--dp-white);
    margin: 3rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.legal-body h3 {
    font-size: 1.15rem;
    color: var(--dp-off-white);
    margin: 2rem 0 0.75rem;
}
.legal-body p {
    margin-bottom: 1.25rem;
    color: var(--dp-grey-light);
    font-size: 0.92rem;
}
.legal-body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.legal-body ul li {
    color: var(--dp-grey-light);
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}
.legal-body a {
    color: var(--dp-magenta-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(192, 24, 108, 0.08);
    border: 1px solid rgba(192, 24, 108, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    color: var(--dp-magenta-bright);
    margin-bottom: 2.5rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .case-study__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .case-study__img-wrap {
        aspect-ratio: 16/9;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .benefits__header,
    .benefits__row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .culture__mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .culture__item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    .culture__item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: auto;
    }
    .culture__item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    .culture__item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: auto;
    }
    .culture__item:nth-child(5) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .apply-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav__links,
    .nav__cta {
        display: none;
    }
    .nav__hamburger {
        display: flex;
    }
    .nav__mobile {
        display: flex;
    }

    .hero__stats {
        gap: 2rem;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .benefits__header,
    .benefits__row {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }
    .benefits__cell {
        padding: 1rem 1rem;
        font-size: 0.8rem;
    }
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid .full {
        grid-column: 1;
    }
    .case-study__results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .culture__mosaic {
        grid-template-columns: 1fr;
    }
    .culture__item {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .team__grid {
        grid-template-columns: 1fr;
    }
    .hero__actions {
        flex-direction: column;
    }
    .btn {
        justify-content: center;
    }
    .case-study__accent {
        width: 120px;
        height: 120px;
    }
    .case-study__accent-num {
        font-size: 2rem;
    }
}
