:root {
    --indigo: #4B0082;
    --indigo-light: #6A0DAD;
    --indigo-dark: #2D004F;
    --indigo-deep: #1A0030;
    --pink: #FFC0CB;
    --pink-hot: #FF85A1;
    --pink-light: #FFE4EC;
    --white: #FFFFFF;
    --off-white: #F9F0FF;
    --navy: #0D0018;
    --gray: #888;
    --card-bg: rgba(75, 0, 130, 0.18);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

/* ─── TOP NAVBAR ─── */
.top-bar {
    background: var(--indigo-dark);
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 192, 203, 0.2);
    position: relative;
    z-index: 1000;
}

.top-bar .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--pink);
    text-shadow: 0 0 30px rgba(255, 192, 203, 0.5);
}

.top-bar .logo span {
    color: var(--white);
}

.top-bar .cta-btn {
    background: linear-gradient(135deg, var(--pink-hot), var(--pink));
    color: var(--indigo-dark);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 28px;
    border: none;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.3s;
}

.top-bar .cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 133, 161, 0.6);
}

/* ─── BOTTOM NAVBAR (Parallelogram Blocks) ─── */
.bottom-nav {
    background: #08000F;
    position: relative;
    height: 58px;
    z-index: 999;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(75, 0, 130, 0.4);
}

.nav-blocks {
    display: flex;
    align-items: stretch;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.nav-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    margin-right: -14px;
    transform: skewX(-14deg);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
}

.nav-block:nth-child(1) {
    background: #3B0068;
    z-index: 8;
}

.nav-block:nth-child(2) {
    background: #330059;
    z-index: 7;
}

.nav-block:nth-child(3) {
    background: #2B004A;
    z-index: 6;
}

.nav-block:nth-child(4) {
    background: #24003E;
    z-index: 5;
}

.nav-block:nth-child(5) {
    background: #1D0033;
    z-index: 4;
}

.nav-block:nth-child(6) {
    background: #160028;
    z-index: 3;
}

.nav-block:hover {
    background: var(--indigo) !important;
}

.nav-block:hover .nav-label {
    color: var(--pink);
}

.nav-label {
    transform: skewX(14deg);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s;
}

.brand-right {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 4px;
    color: rgba(255, 192, 203, 0.45);
}

/* ─── HEADER / HERO ─── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(75, 0, 130, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 133, 161, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #1A0030 0%, #08000F 60%, #0D0018 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 60px,
            rgba(75, 0, 130, 0.08) 60px, rgba(75, 0, 130, 0.08) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px,
            rgba(75, 0, 130, 0.08) 60px, rgba(75, 0, 130, 0.08) 61px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 700px;
}

.hero-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--pink);
    display: block;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 9vw, 120px);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 .accent {
    color: var(--pink);
    display: block;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-hot), var(--pink));
    color: var(--indigo-dark);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 133, 161, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 13px 36px;
    border: 1px solid rgba(255, 192, 203, 0.4);
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-graphic {
    width: 500px;
    height: 500px;
    position: relative;
}

.key-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotate 20s linear infinite;
}

.key-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    border-color: rgba(75, 0, 130, 0.4);
    top: 0;
    left: 0;
}

.key-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    border-color: rgba(255, 192, 203, 0.3);
    top: 12.5%;
    left: 12.5%;
    animation-direction: reverse;
    animation-duration: 15s;
}

.key-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    border-color: rgba(75, 0, 130, 0.6);
    top: 25%;
    left: 25%;
    animation-duration: 10s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-key-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 40px rgba(255, 192, 203, 0.6));
    animation: float 4s ease-in-out infinite;
}

.hero-key-icon img {
    width: 290px;
    height: 290px;
    display: block;
    border-radius: 50%;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: 60px;
    background: linear-gradient(135deg, var(--indigo), var(--pink-hot));
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    text-align: center;
    width: 120px;
}

.hero-badge .num {
    font-family: 'Bebas Neue';
    font-size: 40px;
    color: white;
    line-height: 1;
}

.hero-badge .txt {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    justify-content: center;
    width: max-content;
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-family: 'Bebas Neue';
    font-size: 48px;
    color: var(--pink);
    line-height: 1;
}

.stat-item .lbl {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* ─── WHY CHOOSE US ─── */
.section {
    padding: 100px 60px;
}

.section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--pink);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 70px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1;
}

.section-title .pink {
    color: var(--pink);
}

.section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.25), rgba(75, 0, 130, 0.05));
    border: 1px solid rgba(255, 192, 203, 0.12);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--indigo-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 192, 203, 0.3);
    background: rgba(75, 0, 130, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.2), rgba(75, 0, 130, 0.3));
    border: 1px solid rgba(255, 192, 203, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.why-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.why-stat-bar {
    margin-top: 16px;
    height: 3px;
    background: rgba(255, 192, 203, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.why-stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink-hot), var(--pink));
    border-radius: 2px;
    animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
    from {
        width: 0
    }
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: rgba(255, 192, 203, 0.08);
}

.stat-box {
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.3), rgba(13, 0, 24, 0.8));
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 192, 203, 0.08);
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(75, 0, 130, 0.5);
    transform: scale(1.02);
}

.stat-box .big {
    font-family: 'Bebas Neue';
    font-size: 56px;
    color: var(--pink);
    line-height: 1;
}

.stat-box .sm {
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 8px;
}

/* ─── PROFESSIONAL SERVICES (Editorial Spread) ─── */
.services-section {
    padding: 100px 60px;
}

.services-editorial {
    background: #fff;
    color: #0d0d0d;
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
}

.editorial-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);
    padding-bottom: 12px;
}

.editorial-label,
.editorial-issue {
    font-size: 11px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    font-weight: 700;
}

.editorial-label {
    color: #0d0d0d;
}

.editorial-issue {
    color: #8e1538;
}

.editorial-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 13vw, 192px);
    line-height: 0.88;
    letter-spacing: 2px;
    margin: 28px 0 12px;
    color: #0d0d0d;
}

.editorial-kicker {
    max-width: 760px;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.2px;
    color: rgba(13, 13, 13, 0.86);
    margin: 0;
}

.editorial-rule {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.28);
    margin: 30px 0;
}

.editorial-columns {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 28px;
}

.editorial-service {
    grid-column: span 2;
}

.editorial-service-label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #8e1538;
    font-weight: 700;
}

.editorial-service p {
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(13, 13, 13, 0.84);
    column-count: 2;
    column-gap: 16px;
}

.editorial-pullquote {
    grid-column: span 2;
    border-left: 2px solid #111;
    border-top: 1px solid rgba(0, 0, 0, 0.22);
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
    padding: 18px 0 18px 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    line-height: 1.4;
    color: #0d0d0d;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo-deep) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
}

.cta-phone {
    font-family: 'Bebas Neue';
    font-size: 52px;
    color: var(--pink);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 30px;
    position: relative;
}

/* ─── FAQ TIMELINE ─── */
.faq-section {
    padding: 100px 60px;
    background: var(--navy);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.faq-timeline {
    position: relative;
    padding-left: 40px;
}

.faq-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--pink), var(--indigo-light), rgba(75, 0, 130, 0.1));
}

.faq-item {
    position: relative;
    margin-bottom: 36px;
}

.faq-dot {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 192, 203, 0.2), 0 0 20px rgba(255, 192, 203, 0.4);
    transition: all 0.3s;
}

.faq-item:hover .faq-dot {
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(255, 192, 203, 0.3), 0 0 30px rgba(255, 192, 203, 0.6);
}

.faq-q {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    margin-bottom: 0;
    transition: color 0.3s;
}

.faq-item:hover .faq-q {
    color: var(--pink);
}

.faq-a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding-top: 0;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-top: 10px;
}

.faq-visual {
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.2), rgba(75, 0, 130, 0.05));
    border: 1px solid rgba(255, 192, 203, 0.12);
    padding: 50px 40px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.faq-visual .big-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 24px;
}

.faq-visual h3 {
    font-family: 'Bebas Neue';
    font-size: 36px;
    color: var(--pink);
    margin-bottom: 12px;
}

.faq-visual p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ─── FEATURED SERVICES (Image Left + Grid) ─── */
.featured-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, rgba(29, 0, 51, 0.4) 0%, var(--navy) 100%);
}

.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

.featured-image {
    position: relative;
    border: 1px solid rgba(255, 192, 203, 0.15);
    overflow: hidden;
    height: 500px;
}

.featured-image img,
.featured-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-img-placeholder {
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.5), rgba(13, 0, 24, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.featured-img-placeholder .big {
    font-size: 100px;
}

.featured-img-placeholder span {
    font-family: 'Bebas Neue';
    font-size: 24px;
    color: var(--pink);
    letter-spacing: 3px;
}

.featured-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--indigo), var(--pink-hot));
    padding: 16px 24px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 10px 100%);
}

.featured-image-badge .fib-n {
    font-family: 'Bebas Neue';
    font-size: 32px;
    color: white;
    line-height: 1;
}

.featured-image-badge .fib-t {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.feat-card {
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.2), rgba(13, 0, 24, 0.6));
    border: 1px solid rgba(255, 192, 203, 0.1);
    padding: 24px 20px;
    cursor: pointer;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.feat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 192, 203, 0.35);
    box-shadow: 0 16px 40px rgba(75, 0, 130, 0.4), inset 0 0 30px rgba(255, 192, 203, 0.05);
}

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

.feat-card .fc-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.feat-card h4 {
    font-family: 'Rajdhani';
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.feat-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

/* ─── SERVICE AREA ─── */
.area-section {
    padding: 100px 60px;
    background: var(--navy);
}

.area-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.area-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 192, 203, 0.08);
    background: rgba(75, 0, 130, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Rajdhani';
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.area-list li:hover {
    border-color: rgba(255, 192, 203, 0.3);
    background: rgba(75, 0, 130, 0.25);
    color: var(--pink);
    transform: translateX(8px);
}

.area-list li::before {
    content: '●';
    color: var(--pink);
    font-size: 8px;
}

.area-desc h3 {
    font-family: 'Bebas Neue';
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.area-desc h3 span {
    color: var(--pink);
}

.area-desc p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 20px;
}

.area-points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.area-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.area-points li::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--pink);
    font-size: 13px;
    margin-top: 3px;
}

.area-desc .highlight {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.3), rgba(75, 0, 130, 0.1));
    border-left: 3px solid var(--pink);
    padding: 16px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 24px;
}

/* ─── WHAT WE DO ─── */
.what-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.15) 0%, var(--navy) 100%);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: rgba(255, 192, 203, 0.05);
}

.what-card {
    background: rgba(13, 0, 24, 0.9);
    padding: 48px 28px;
    text-align: center;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.what-card:hover {
    background: rgba(75, 0, 130, 0.35);
    border-top-color: var(--pink);
    transform: translateY(-5px);
}

.what-card .wc-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.what-card h3 {
    font-family: 'Rajdhani';
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.what-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.what-card .wc-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Bebas Neue';
    font-size: 60px;
    color: rgba(255, 192, 203, 0.05);
    line-height: 1;
}

/* ─── CONTACT ─── */
.contact-section {
    padding: 0;
    background: var(--navy);
}

.contact-map {
    height: 400px;
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.3), rgba(29, 0, 51, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.05) contrast(1.02);
}

.map-overlay {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(13, 0, 24, 0.74);
    border: 1px solid rgba(255, 192, 203, 0.25);
    padding: 12px 18px;
    backdrop-filter: blur(2px);
}

.map-overlay h3 {
    font-family: 'Rajdhani';
    font-size: 20px;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.map-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.map-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(75, 0, 130, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7
    }

    50% {
        transform: scale(1.3);
        opacity: 1
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--indigo-dark);
}

.contact-box {
    padding: 50px 40px;
    border-right: 1px solid rgba(255, 192, 203, 0.1);
    text-align: center;
    transition: background 0.3s;
}

.contact-box:last-child {
    border-right: none;
}

.contact-box:hover {
    background: rgba(75, 0, 130, 0.4);
}

.contact-box .cb-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.contact-box h4 {
    font-family: 'Rajdhani';
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-box p,
.contact-box a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Rajdhani';
    font-weight: 600;
}

.contact-box a:hover {
    color: var(--pink);
}

/* ─── FOOTER ─── */
footer {
    background: var(--indigo-deep);
    padding: 70px 60px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 192, 203, 0.1);
}

.footer-logo {
    margin: 0 auto 10px;
    width: min(100%, 460px);
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-tagline {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--pink);
}

.footer-address {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(75, 0, 130, 0.35);
    border: 1px solid rgba(255, 192, 203, 0.2);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.footer-btn:hover {
    background: rgba(75, 0, 130, 0.7);
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-3px);
}

.footer-btn .fb-icon {
    font-size: 18px;
}

.footer-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    margin: 0 auto 30px;
}

.footer-bottom {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
}

.footer-bottom a {
    color: rgba(255, 192, 203, 0.4);
    text-decoration: none;
}

/* Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 192, 203, 0.2), transparent);
    margin: 0 60px;
    width: calc(100% - 120px);
}

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {

    .section,
    .services-section,
    .faq-section,
    .featured-section,
    .area-section,
    .what-section {
        padding: 70px 30px;
    }

    .top-bar,
    .brand-right {
        padding: 10px 30px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .editorial-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .editorial-service,
    .editorial-pullquote {
        grid-column: span 1;
    }

    .editorial-service p {
        column-count: 1;
    }

    .faq-layout,
    .featured-layout,
    .area-layout {
        grid-template-columns: 1fr;
    }

    .what-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        left: 50%;
        transform: translateX(-50%);
        gap: 30px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 192, 203, 0.1);
    }
}

@media (max-width: 640px) {

    .why-grid,
    .what-grid {
        grid-template-columns: 1fr;
    }

    .editorial-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .editorial-display {
        font-size: clamp(56px, 20vw, 86px);
        letter-spacing: 1px;
    }

    .editorial-columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .editorial-pullquote {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .nav-blocks .nav-block {
        min-width: 90px;
        padding: 0 20px;
    }

    .footer-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* ════ DSP WRAPPER ════ */
.dsp-wrapper {
    position: relative;
    background: var(--navy);
}

.dsp-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 60px 0 0;
    position: relative;
    z-index: 2;
}

.dsp-label-line {
    width: 80px;
    height: 1px;
    background: rgba(255, 192, 203, 0.3);
}

.dsp-label-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--pink);
    text-transform: uppercase;
}

/* ════ PROGRESS BAR ════ */
.dsp-progress-track {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 260px;
    background: rgba(255, 192, 203, 0.1);
    z-index: 9999;
    border-radius: 3px;
    display: none;
}

.dsp-progress-track.visible {
    display: block;
}

.dsp-progress-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--pink-hot), var(--pink));
    border-radius: 3px;
    transition: height 0.15s ease;
    height: 0%;
}

.dsp-progress-dots {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dsp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 192, 203, 0.2);
    border: 1px solid rgba(255, 192, 203, 0.3);
    cursor: pointer;
    transform: translateX(-50%);
    transition: all 0.3s;
    position: relative;
}

.dsp-dot.active,
.dsp-dot:hover {
    background: var(--pink);
    box-shadow: 0 0 10px rgba(255, 192, 203, 0.6);
    transform: translateX(-50%) scale(1.3);
}

.dsp-dot-tip {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(29, 0, 51, 0.95);
    border: 1px solid rgba(255, 192, 203, 0.2);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 5px 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.dsp-dot:hover .dsp-dot-tip {
    opacity: 1;
}

/* ════ PANEL BASE ════ */
.dsp-panel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.dsp-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dsp-clip-reveal {
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 1;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.9s cubic-bezier(.77, 0, .18, 1);
    pointer-events: none;
}

.dsp-panel.revealed .dsp-clip-reveal {
    clip-path: inset(0 0 100% 0);
}

/* Panel backgrounds */
.dsp-bg1 {
    background: radial-gradient(ellipse at 70% 50%, rgba(75, 0, 130, 0.5) 0%, rgba(13, 0, 24, 0.95) 60%), linear-gradient(135deg, #1A0030, #0D0018);
}

.dsp-bg2 {
    background: linear-gradient(150deg, #08000F 0%, #2D004F 50%, #1A0030 100%);
}

.dsp-bg3 {
    background: radial-gradient(ellipse at center, rgba(75, 0, 130, 0.35) 0%, rgba(8, 0, 15, 0.98) 65%);
}

.dsp-bg4 {
    background: linear-gradient(120deg, #0D0018 0%, #2D004F 40%, #1A003A 100%);
}

.dsp-bg5 {
    background: linear-gradient(135deg, #08000F 0%, #3B0068 60%, #1D0033 100%);
}

.dsp-bg6 {
    background: linear-gradient(160deg, #1A0030 0%, #0D0018 50%, #2D004F 100%);
}

/* Common text */
.dsp-service-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dsp-service-badge::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--pink);
    flex-shrink: 0;
}

.dsp-badge-alt::before {
    display: none;
}

.dsp-service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
}

.dsp-pink {
    color: var(--pink);
}

.dsp-service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 500px;
}

.dsp-feature-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dsp-feature-list li {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 20px;
    position: relative;
    letter-spacing: 0.5px;
}

.dsp-feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--pink);
}

.dsp-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dsp-from {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.dsp-price-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--pink);
    line-height: 1;
}

.dsp-cta-btn {
    background: linear-gradient(135deg, var(--pink-hot), var(--pink));
    color: var(--indigo-dark);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 12px 28px;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.3s;
    margin-left: 8px;
}

.dsp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 133, 161, 0.5);
}

/* ════ PANEL 1 LAYOUT ════ */
.dsp-p1-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    padding: 120px 80px;
    gap: 60px;
}

.dsp-p1-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.dsp-big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(200px, 25vw, 320px);
    color: rgba(255, 192, 203, 0.04);
    line-height: 1;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.dsp-img-frame {
    width: 380px;
    height: 420px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 192, 203, 0.15);
    overflow: hidden;
}

.dsp-img-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.4), rgba(29, 0, 51, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.dsp-img-frame:hover .dsp-img-inner {
    transform: scale(1.04);
}

.dsp-img-content {
    text-align: center;
}

.dsp-img-border-deco {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 60%;
    height: 60%;
    border-bottom: 3px solid var(--pink);
    border-right: 3px solid var(--pink);
    pointer-events: none;
}

/* ════ PANEL 2 LAYOUT ════ */
.dsp-p2-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: stretch;
}

.dsp-p2-left {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.6), rgba(29, 0, 51, 0.9));
}

.dsp-p2-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
}

.dsp-p2-img-content {
    text-align: center;
}

.dsp-p2-img-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--pink);
    margin-top: 12px;
}

.dsp-p2-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: linear-gradient(135deg, var(--indigo), var(--pink-hot));
    padding: 14px 20px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 8px 100%);
}

.dsp-p2-badge-n {
    font-family: 'Bebas Neue';
    font-size: 36px;
    color: white;
    line-height: 1;
}

.dsp-p2-badge-t {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.dsp-p2-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
}

.dsp-diagonal-deco {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 49.5%, rgba(255, 192, 203, 0.06) 49.5%);
    pointer-events: none;
    z-index: 1;
}

/* ════ PANEL 3 LAYOUT ════ */
.dsp-p3-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.dsp-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: dsp-spin 30s linear infinite;
}

.r1 {
    width: 800px;
    height: 800px;
    border-color: rgba(75, 0, 130, 0.25);
}

.r2 {
    width: 580px;
    height: 580px;
    border-color: rgba(255, 192, 203, 0.15);
    animation-direction: reverse;
    animation-duration: 22s;
}

.r3 {
    width: 380px;
    height: 380px;
    border-color: rgba(75, 0, 130, 0.4);
    animation-duration: 15s;
}

.r4 {
    width: 200px;
    height: 200px;
    border-color: rgba(255, 192, 203, 0.25);
    animation-direction: reverse;
    animation-duration: 10s;
}

@keyframes dsp-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.dsp-p3-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

.dsp-p3-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 680px;
}

.dsp-p3-icon {
    font-size: 90px;
    margin: 24px 0;
    line-height: 1;
}

.dsp-p3-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.dsp-p3-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(75, 0, 130, 0.25);
    border: 1px solid rgba(255, 192, 203, 0.15);
    padding: 10px 18px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.dsp-p3-icon-sm {
    font-size: 18px;
}

/* ════ PANEL 4 LAYOUT ════ */
.dsp-p4-bg-num {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(300px, 40vw, 500px);
    color: rgba(255, 192, 203, 0.03);
    line-height: 1;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.dsp-p4-img-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.3), rgba(29, 0, 51, 0.7));
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.dsp-p4-img-content {
    text-align: center;
}

.dsp-p4-img-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--pink);
    margin-top: 16px;
}

.dsp-p4-text-block {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 0 80px;
    margin-top: auto;
    margin-bottom: 80px;
    align-self: flex-end;
}

.dsp-panel[data-panel="3"] {
    align-items: flex-end;
    padding-bottom: 0;
}

.dsp-p4-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.dsp-p4-tags span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--pink);
    border: 1px solid rgba(255, 192, 203, 0.3);
    padding: 6px 14px;
    text-transform: uppercase;
}

/* ════ PANEL 5 LAYOUT ════ */
.dsp-p5-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 100vh;
    align-items: stretch;
}

.dsp-p5-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.5), rgba(8, 0, 15, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsp-p5-img-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.dsp-p5-overlay-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 6px;
    color: rgba(255, 192, 203, 0.5);
    margin-top: 16px;
    line-height: 1.3;
}

.dsp-p5-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--pink), var(--indigo-light));
}

.dsp-p5-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.dsp-ign-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.dsp-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.dsp-step-n {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--indigo), var(--pink-hot));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue';
    font-size: 16px;
    flex-shrink: 0;
}

/* ════ PANEL 6 LAYOUT ════ */
.dsp-p6-fullbg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.dsp-p6-card {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: auto;
    padding: 80px 60px;
    background: rgba(13, 0, 24, 0.7);
    border: 1px solid rgba(255, 192, 203, 0.15);
    backdrop-filter: blur(10px);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.dsp-p6-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.dsp-p6-brands span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pink);
    border: 1px solid rgba(255, 192, 203, 0.25);
    padding: 5px 14px;
    text-transform: uppercase;
    background: rgba(75, 0, 130, 0.2);
}

.dsp-p6-num-deco {
    position: absolute;
    bottom: 40px;
    right: 60px;
    font-family: 'Bebas Neue';
    font-size: 140px;
    color: rgba(255, 192, 203, 0.05);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* ════ RESPONSIVE ════ */
@media (max-width: 900px) {
    .dsp-p1-layout {
        grid-template-columns: 1fr;
        padding: 100px 30px;
    }

    .dsp-p1-visual {
        display: none;
    }

    .dsp-p2-layout {
        grid-template-columns: 1fr;
    }

    .dsp-p2-left {
        clip-path: none;
        min-height: 300px;
    }

    .dsp-p2-right {
        padding: 50px 30px;
    }

    .dsp-p4-img-block {
        display: none;
    }

    .dsp-p4-text-block {
        padding: 0 30px;
        margin-bottom: 60px;
    }

    .dsp-p5-layout {
        grid-template-columns: 1fr;
    }

    .dsp-p5-img {
        min-height: 300px;
    }

    .dsp-p5-info {
        padding: 50px 30px;
    }

    .dsp-p6-card {
        margin: 40px 20px;
        padding: 50px 30px;
    }

    .dsp-progress-track {
        display: none !important;
    }

    .dsp-p3-layout {
        padding: 80px 20px;
    }
}