/* #region hero */
:root {
    --v2-webdev-purple-dark: #32145f;
    --v2-webdev-purple: #5b2aa3;
    --v2-webdev-purple-light: #8a68c9;
    --v2-webdev-lavender: #eee9f8;
    --v2-webdev-coral: #ff5757;
    --v2-webdev-ink: #191522;
    --v2-webdev-muted: #6e6677;
    --v2-webdev-white: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.v2-webdev-hero {
    position: relative;
    min-height: min(860px, 94svh);
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(91, 42, 163, .13),
            transparent 30%
        ),
        radial-gradient(
            circle at 94% 92%,
            rgba(255, 87, 87, .045),
            transparent 24%
        ),
        #fbfafc;

    padding: 3rem 0 4rem;
}


.v2-webdev-hero-container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, .88fr)
        minmax(570px, 1.12fr);

    align-items: center;
    gap: 25px;
}


/* =========================================================
   CONTENT
========================================================= */

.v2-webdev-hero-content {
    position: relative;
    z-index: 20;
    max-width: 660px;
}


.v2-webdev-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 21px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: var(--v2-webdev-purple);
}


.v2-webdev-hero-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--v2-webdev-coral);
}


.v2-webdev-hero-headline {
    margin: 0;

    font-size: clamp(45px, 4.35vw, 72px);
    line-height: .98;

    letter-spacing: -.047em;
    font-weight: 800;

    color: var(--v2-webdev-ink);
}


.v2-webdev-hero-headline span {
    display: block;

    margin-top: 9px;

    color: var(--v2-webdev-purple);
}


.v2-webdev-hero-subheading {
    max-width: 610px;

    margin: 27px 0 17px;

    font-size: clamp(19px, 1.4vw, 22px);
    line-height: 1.43;

    font-weight: 600;

    color: #40394a;
}


.v2-webdev-hero-body {
    max-width: 625px;

    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: var(--v2-webdev-muted);
}


.v2-webdev-hero-body--secondary {
    margin-top: 10px;
}


.v2-webdev-hero-cta-wrap {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 31px;
}


.v2-webdev-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 53px;

    padding: 0 23px;

    border-radius: 8px;

    color: var(--v2-webdev-white);
    background: var(--v2-webdev-purple-dark);

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    box-shadow:
        0 13px 30px rgba(50, 20, 95, .18);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.v2-webdev-hero-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 36px rgba(50, 20, 95, .23);
}


.v2-webdev-hero-cta-note {
    font-size: 11px;
    color: #807888;
}


/* =========================================================
   VISUAL
========================================================= */

.v2-webdev-hero-visual {
    position: relative;

    height: 680px;
    min-width: 0;
}


/* atmospheric glow */

.v2-webdev-hero-glow {
    position: absolute;

    width: 590px;
    height: 590px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(91, 42, 163, .17) 0%,
            rgba(91, 42, 163, .07) 42%,
            transparent 72%
        );
}


/* subtle architectural grid */

.v2-webdev-hero-grid {
    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    opacity: .22;

    background-image:
        linear-gradient(
            rgba(91, 42, 163, .12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(91, 42, 163, .12) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        radial-gradient(
            circle,
            black 20%,
            transparent 73%
        );
}


/* =========================================================
   ORBITS
========================================================= */

.v2-webdev-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid rgba(91, 42, 163, .13);

    transform: translate(-50%, -50%);
}


.v2-webdev-orbit--one {
    width: 570px;
    height: 400px;

    transform:
        translate(-50%, -50%)
        rotate(-18deg);
}


.v2-webdev-orbit--two {
    width: 455px;
    height: 550px;

    transform:
        translate(-50%, -50%)
        rotate(36deg);

    border-color:
        rgba(91, 42, 163, .09);
}


.v2-webdev-orbit--three {
    width: 365px;
    height: 365px;

    border-color:
        rgba(255, 87, 87, .14);
}


/* =========================================================
   CONNECTIONS
========================================================= */

.v2-webdev-connections {
    position: absolute;

    inset: 25px;

    z-index: 2;
}


.v2-webdev-connections svg {
    width: 100%;
    height: 100%;
}


.v2-webdev-connections path {
    stroke:
        rgba(91, 42, 163, .16);

    stroke-width: 1;

    stroke-dasharray: 5 8;
}


.v2-webdev-connections circle {
    fill:
        var(--v2-webdev-purple);
}


/* =========================================================
   CENTRAL BROWSER
========================================================= */

.v2-webdev-browser {
    position: absolute;

    z-index: 6;

    left: 50%;
    top: 50%;

    width: 365px;
    height: 305px;

    transform:
        translate(-50%, -50%)
        perspective(1000px)
        rotateY(-7deg)
        rotateX(3deg);

    border-radius: 13px;

    background: #ffffff;

    border:
        1px solid rgba(91, 42, 163, .14);

    box-shadow:
        0 35px 80px rgba(44, 20, 84, .18),
        0 10px 25px rgba(44, 20, 84, .07);
}


.v2-webdev-browser::before {
    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 17px;

    border:
        1px solid rgba(91, 42, 163, .08);

    pointer-events: none;
}


/* browser top */

.v2-webdev-browser-top {
    height: 36px;

    display: flex;
    align-items: center;

    padding: 0 13px;

    border-bottom:
        1px solid rgba(40, 24, 70, .07);

    background: #faf9fc;

    border-radius:
        13px 13px 0 0;
}


.v2-webdev-browser-dots {
    display: flex;
    gap: 5px;
}


.v2-webdev-browser-dots i {
    width: 6px;
    height: 6px;

    display: block;

    border-radius: 50%;

    background: #d7d2df;
}


.v2-webdev-browser-address {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    width: 145px;

    padding: 5px 10px;

    border-radius: 5px;

    background: #f0edf5;

    text-align: center;

    font-size: 7px;
    font-weight: 700;

    color: #82798e;
}


/* browser body */

.v2-webdev-browser-body {
    position: relative;

    height: calc(100% - 36px);

    overflow: hidden;

    border-radius:
        0 0 13px 13px;
}


/* mini nav */

.v2-webdev-browser-nav {
    height: 43px;

    display: grid;

    grid-template-columns:
        1fr
        30px
        30px
        42px;

    align-items: center;

    gap: 7px;

    padding: 0 18px;
}


.v2-webdev-brand {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;

    color: var(--v2-webdev-purple-dark);
}


.v2-webdev-browser-nav > span:not(.v2-webdev-brand) {
    height: 3px;

    border-radius: 5px;

    background: #e7e2ed;
}


.v2-webdev-nav-button {
    height: 15px !important;

    border-radius: 4px !important;

    background:
        var(--v2-webdev-purple) !important;
}


/* mini website hero */

.v2-webdev-browser-hero {
    position: relative;

    height: 150px;

    display: flex;
    align-items: center;

    padding: 0 22px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #f4effb 0%,
            #faf9fc 65%
        );
}


.v2-webdev-mini-copy {
    position: relative;

    z-index: 2;
}


.v2-webdev-mini-copy small {
    display: block;

    margin-bottom: 7px;

    font-size: 6px;
    font-weight: 800;
    letter-spacing: .12em;

    color: var(--v2-webdev-purple);
}


.v2-webdev-mini-copy strong {
    display: block;

    font-size: 22px;
    line-height: .98;
    letter-spacing: -.045em;

    color: var(--v2-webdev-ink);
}


.v2-webdev-mini-copy em {
    display: block;

    width: 38px;
    height: 4px;

    margin-top: 12px;

    border-radius: 4px;

    background:
        var(--v2-webdev-coral);
}


.v2-webdev-mini-lines {
    display: flex;

    flex-direction: column;

    gap: 4px;

    margin-top: 11px;
}


.v2-webdev-mini-lines i {
    display: block;

    width: 75px;
    height: 3px;

    border-radius: 4px;

    background: #dcd6e5;
}


.v2-webdev-mini-lines i:nth-child(2) {
    width: 55px;
}


.v2-webdev-mini-lines i:nth-child(3) {
    width: 65px;
}


/* mini visual */

.v2-webdev-mini-visual {
    position: absolute;

    right: 24px;
    top: 50%;

    width: 125px;
    height: 125px;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(91,42,163,.22),
            rgba(91,42,163,.05) 55%,
            transparent 70%
        );
}


.v2-webdev-mini-ring {
    position: absolute;

    inset: 17px;

    border-radius: 50%;

    border:
        1px solid rgba(91,42,163,.25);

    transform: rotate(35deg);

    box-shadow:
        0 0 0 13px rgba(91,42,163,.04);
}


.v2-webdev-mini-cross {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 38px;
    font-weight: 300;

    color: var(--v2-webdev-purple);
}


/* browser cards */

.v2-webdev-browser-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    padding: 13px 18px;
}


.v2-webdev-browser-cards div {
    height: 35px;

    border-radius: 6px;

    background:
        #f0edf5;
}


/* =========================================================
   NODES
========================================================= */

.v2-webdev-node {
    position: absolute;

    z-index: 9;

    width: 128px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 11px;

    border-radius: 11px;

    border:
        1px solid rgba(91,42,163,.10);

    background:
        rgba(255,255,255,.86);

    box-shadow:
        0 15px 35px rgba(42,21,79,.09);

    backdrop-filter: blur(14px);
}


.v2-webdev-node-icon {
    flex: 0 0 auto;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    font-size: 8px;
    font-weight: 800;

    color:
        var(--v2-webdev-purple);

    background:
        var(--v2-webdev-lavender);
}


.v2-webdev-node strong {
    display: block;

    font-size: 11px;
    line-height: 1.2;

    color:
        var(--v2-webdev-ink);
}


.v2-webdev-node small {
    display: block;

    margin-top: 3px;

    font-size: 8px;

    color: #8b8292;
}


.v2-webdev-node--design {
    left: 7%;
    top: 12%;
}


.v2-webdev-node--development {
    right: 3%;
    top: 19%;
}


.v2-webdev-node--seo {
    right: 0%;
    bottom: 29%;
}


.v2-webdev-node--conversion {
    left: 7%;
    bottom: 28%;
}


.v2-webdev-node--marketing {
    left: 35%;
    bottom: 3%;
}


/* =========================================================
   CODE CARD
========================================================= */

.v2-webdev-code-card {
    position: absolute;

    z-index: 10;

    left: 1%;
    top: 42%;

    width: 132px;

    padding: 11px 12px;

    border-radius: 9px;

    background:
        rgba(28,20,48,.94);

    box-shadow:
        0 18px 38px rgba(32,18,58,.18);

    transform:
        rotate(-3deg);
}


.v2-webdev-code-dot {
    display: block;

    width: 6px;
    height: 6px;

    margin-bottom: 9px;

    border-radius: 50%;

    background:
        var(--v2-webdev-coral);

    box-shadow:
        0 0 0 5px rgba(255,87,87,.08);
}


.v2-webdev-code-lines {
    display: flex;

    flex-direction: column;

    gap: 4px;

    margin-bottom: 9px;
}


.v2-webdev-code-lines i {
    display: block;

    height: 3px;

    border-radius: 4px;

    background:
        rgba(255,255,255,.18);
}


.v2-webdev-code-lines i:nth-child(1) {
    width: 72%;
}


.v2-webdev-code-lines i:nth-child(2) {
    width: 48%;
}


.v2-webdev-code-lines i:nth-child(3) {
    width: 61%;
}


.v2-webdev-code-card strong {
    display: block;

    font-size: 9px;

    color: white;
}


.v2-webdev-code-card small {
    display: block;

    margin-top: 3px;

    font-size: 7px;

    color: rgba(255,255,255,.48);
}


/* =========================================================
   STATUS
========================================================= */

.v2-webdev-status {
    position: absolute;

    z-index: 10;

    right: 1%;
    bottom: 7%;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    border-radius: 9px;

    background:
        rgba(255,255,255,.76);

    border:
        1px solid rgba(91,42,163,.09);

    box-shadow:
        0 12px 30px rgba(42,21,79,.07);

    backdrop-filter: blur(12px);
}


.v2-webdev-status-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #5dba78;

    box-shadow:
        0 0 0 5px rgba(93,186,120,.09);
}


.v2-webdev-status strong {
    display: block;

    font-size: 10px;

    color:
        var(--v2-webdev-ink);
}


.v2-webdev-status small {
    display: block;

    margin-top: 2px;

    font-size: 8px;

    color: #89818f;
}


/* =========================================================
   DATA DOTS
========================================================= */

.v2-webdev-data-dot {
    position: absolute;

    z-index: 12;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--v2-webdev-coral);

    box-shadow:
        0 0 0 7px rgba(255,87,87,.07);
}


.v2-webdev-data-dot--one {
    left: 27%;
    top: 24%;
}


.v2-webdev-data-dot--two {
    right: 24%;
    top: 31%;
}


.v2-webdev-data-dot--three {
    right: 27%;
    bottom: 23%;
}


.v2-webdev-data-dot--four {
    left: 25%;
    bottom: 32%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .v2-webdev-hero-container {
        width: min(1180px, calc(100% - 50px));

        grid-template-columns:
            minmax(0, .9fr)
            minmax(500px, 1.1fr);
    }

    .v2-webdev-hero-visual {
        height: 620px;
    }

    .v2-webdev-node {
        transform: scale(.92);
    }

    .v2-webdev-browser {
        transform:
            translate(-50%, -50%)
            perspective(1000px)
            rotateY(-5deg)
            rotateX(3deg)
            scale(.92);
    }
}


/* =========================================================
   MOBILE / STACKED
========================================================= */

@media (max-width: 960px) {

    .v2-webdev-hero {
        padding: 4rem 0 3rem;
    }

    .v2-webdev-hero-container {
        grid-template-columns: 1fr;
    }

    .v2-webdev-hero-content {
        max-width: 760px;
    }

    .v2-webdev-hero-visual {
        height: 610px;
        margin-top: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .v2-webdev-hero {
        min-height: auto;
        padding: 3rem 0 0;
    }

    .v2-webdev-hero-container {
        width: min(100% - 32px, 540px);
    }

    .v2-webdev-hero-headline {
        font-size: clamp(38px, 11vw, 52px);
    }

    .v2-webdev-hero-subheading {
        font-size: 18px;
    }

    .v2-webdev-hero-body {
        font-size: 15px;
    }

    .v2-webdev-hero-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .v2-webdev-hero-visual {
        height: 500px;
        margin-top: 10px;
    }

    .v2-webdev-hero-glow {
        width: 420px;
        height: 420px;
    }

    .v2-webdev-hero-grid {
        width: 390px;
        height: 390px;
        background-size: 32px 32px;
    }

    .v2-webdev-orbit--one {
        width: 420px;
        height: 310px;
    }

    .v2-webdev-orbit--two {
        width: 350px;
        height: 420px;
    }

    .v2-webdev-orbit--three {
        width: 280px;
        height: 280px;
    }

    .v2-webdev-browser {
        width: 300px;
        height: 250px;

        transform:
            translate(-50%, -50%)
            scale(.9);
    }

    .v2-webdev-browser-hero {
        height: 122px;
    }

    .v2-webdev-mini-copy strong {
        font-size: 18px;
    }

    .v2-webdev-mini-visual {
        width: 95px;
        height: 95px;
        right: 17px;
    }

    .v2-webdev-node {
        width: 100px;
        padding: 9px;

        transform: scale(.78);
    }

    .v2-webdev-node--design {
        left: -2%;
        top: 7%;
    }

    .v2-webdev-node--development {
        right: -7%;
        top: 17%;
    }

    .v2-webdev-node--seo {
        right: -8%;
        bottom: 25%;
    }

    .v2-webdev-node--conversion {
        left: -7%;
        bottom: 25%;
    }

    .v2-webdev-node--marketing {
        left: 34%;
        bottom: 1%;
    }

    .v2-webdev-code-card {
        left: -5%;
        top: 40%;

        transform:
            rotate(-3deg)
            scale(.78);
    }

    .v2-webdev-status {
        right: -2%;
        bottom: 8%;

        transform: scale(.8);
        transform-origin: bottom right;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .v2-webdev-hero-visual {
        height: 450px;
    }

    .v2-webdev-browser {
        width: 275px;
        height: 230px;

        transform:
            translate(-50%, -50%)
            scale(.82);
    }

    .v2-webdev-node {
        transform: scale(.68);
    }

    .v2-webdev-code-card {
        transform:
            rotate(-3deg)
            scale(.68);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .v2-webdev-hero-cta {
        transition: none;
    }

}

/* #endregion hero */



/* #region custom dev difference */
/* =========================================================
   CUSTOM DEV DIFFERENCE SECTION
   Premium Comparison Layout
   ========================================================= */

:root {
    --v2-cdev-coral: #ff5757;
    --v2-cdev-purple: #54249a;
    --v2-cdev-purple-dark: #32145f;
    --v2-cdev-ink: #181321;
    --v2-cdev-muted: #686172;
    --v2-cdev-border: rgba(84, 36, 154, 0.08);
}


.v2-cdev-diff {
    position: relative;
    background: #fbfafc;
    padding: 100px 0;
    overflow: hidden;
}

.v2-cdev-diff-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* =========================================================
   HEADER
========================================================= */

.v2-cdev-diff-header {
    max-width: 800px;
    margin-bottom: 55px;
}

.v2-cdev-diff-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-cdev-purple);
}

.v2-cdev-diff-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-cdev-coral);
}

.v2-cdev-diff-headline {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-cdev-ink);
}

.v2-cdev-diff-headline-highlight {
    color: var(--v2-cdev-purple);
}

.v2-cdev-diff-body {
    max-width: 700px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-cdev-muted);
}


/* =========================================================
   COMPARISON GRID
========================================================= */

.v2-cdev-diff-comparison {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

/* VS Badge */
.v2-cdev-diff-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--v2-cdev-purple-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(50, 20, 95, 0.25);
    border: 3px solid #ffffff;
}


/* =========================================================
   PANEL BASE
========================================================= */

.v2-cdev-diff-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--v2-cdev-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.v2-cdev-diff-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(50, 20, 95, 0.10);
}

.v2-cdev-diff-panel--custom {
    border-top: 5px solid var(--v2-cdev-coral);
    background: linear-gradient(180deg, #fffafa 0%, #ffffff 30%);
}

.v2-cdev-diff-panel--templates {
    border-top: 5px solid #c0bcc7;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 30%);
    opacity: 0.9;
}


/* =========================================================
   PANEL HEADER
========================================================= */

.v2-cdev-diff-panel-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--v2-cdev-border);
}

.v2-cdev-diff-panel-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-cdev-diff-panel--custom .v2-cdev-diff-panel-icon {
    background: rgba(255, 87, 87, 0.10);
    color: #e64a4a;
}

.v2-cdev-diff-panel--templates .v2-cdev-diff-panel-icon {
    background: rgba(120, 116, 128, 0.10);
    color: #787480;
}

.v2-cdev-diff-panel-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.v2-cdev-diff-panel-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    align-self: flex-start;
}

.v2-cdev-diff-panel-tag--custom {
    background: rgba(255, 87, 87, 0.12);
    color: #e64a4a;
}

.v2-cdev-diff-panel-tag--templates {
    background: rgba(120, 116, 128, 0.12);
    color: #787480;
}

.v2-cdev-diff-panel-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--v2-cdev-ink);
    margin: 0;
    letter-spacing: -0.01em;
}


/* =========================================================
   PANEL DESCRIPTION
========================================================= */

.v2-cdev-diff-panel-description {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-cdev-muted);
    line-height: 1.65;
    margin: 0 0 22px;
    flex-grow: 1;
}


/* =========================================================
   PANEL LIST
========================================================= */

.v2-cdev-diff-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v2-cdev-diff-panel-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-cdev-ink);
    line-height: 1.5;
}

.v2-cdev-diff-panel-check,
.v2-cdev-diff-panel-x {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.v2-cdev-diff-panel-check {
    background: rgba(6, 168, 138, 0.12);
    color: #06A88A;
}

.v2-cdev-diff-panel-x {
    background: rgba(255, 87, 87, 0.10);
    color: #e64a4a;
}


/* =========================================================
   CONCLUSION
========================================================= */

.v2-cdev-diff-conclusion {
    background: #ffffff;
    border: 1px solid var(--v2-cdev-border);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.v2-cdev-diff-conclusion-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-cdev-muted);
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .v2-cdev-diff-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .v2-cdev-diff-vs {
        position: static;
        transform: none;
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 0.85rem;
    }

    .v2-cdev-diff-panel {
        padding: 26px 24px 22px;
    }
}

@media (max-width: 640px) {
    .v2-cdev-diff {
        padding: 50px 0;
    }

    .v2-cdev-diff-container {
        width: min(100% - 32px, 540px);
    }

    .v2-cdev-diff-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .v2-cdev-diff-panel-title {
        font-size: 1.2rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-cdev-diff-panel {
        transition: none;
    }

    .v2-cdev-diff-panel:hover {
        transform: none;
        box-shadow: none;
    }
}

/* #endregion custom dev difference */


/* #region web dev services */
/* =========================================================
   WEBSITE DEVELOPMENT SERVICES SECTION
   Bento Grid Layout
   ========================================================= */

:root {
    --v2-wds-coral: #ff5757;
    --v2-wds-purple: #54249a;
    --v2-wds-purple-dark: #32145f;
    --v2-wds-teal: #06A88A;
    --v2-wds-blue: #0064D9;
    --v2-wds-gold: #e6a817;
    --v2-wds-ink: #181321;
    --v2-wds-muted: #686172;
    --v2-wds-border: rgba(84, 36, 154, 0.08);
}


.v2-wds {
    position: relative;
    background: #f8f6fa;
    padding: 100px 0;
    overflow: hidden;
}

/* Subtle grid pattern */
.v2-wds::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(84, 36, 154, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(84, 36, 154, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.v2-wds-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* =========================================================
   HEADER
========================================================= */

.v2-wds-header {
    max-width: 750px;
    margin-bottom: 55px;
}

.v2-wds-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wds-purple);
}

.v2-wds-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wds-coral);
}

.v2-wds-headline {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-wds-ink);
}

.v2-wds-headline-highlight {
    color: var(--v2-wds-purple);
}

.v2-wds-body {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-wds-muted);
}


/* =========================================================
   BENTO GRID
========================================================= */

.v2-wds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.v2-wds-card--large {
    grid-column: span 2;
}

.v2-wds-card--horizontal {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
}

.v2-wds-card--horizontal .v2-wds-card-top {
    flex-shrink: 0;
    margin-bottom: 0;
    min-width: 180px;
}

.v2-wds-card--horizontal .v2-wds-card-description {
    margin: 0;
    flex: 1;
}


/* =========================================================
   CARD BASE
========================================================= */

.v2-wds-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--v2-wds-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.v2-wds-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.5;
}

.v2-wds-card--featured::before {
    background: linear-gradient(90deg, var(--v2-wds-coral), var(--v2-wds-purple));
}

.v2-wds-card--accent-coral::before {
    background: var(--v2-wds-coral);
}

.v2-wds-card--accent-purple::before {
    background: var(--v2-wds-purple);
}

.v2-wds-card--accent-teal::before {
    background: var(--v2-wds-teal);
}

.v2-wds-card--accent-blue::before {
    background: var(--v2-wds-blue);
}

.v2-wds-card--accent-gold::before {
    background: var(--v2-wds-gold);
}

.v2-wds-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(50, 20, 95, 0.10);
    border-color: rgba(84, 36, 154, 0.15);
}

.v2-wds-card--featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6fa 100%);
    border-top: 4px solid var(--v2-wds-coral);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.v2-wds-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.v2-wds-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-wds-card--featured .v2-wds-card-icon {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.v2-wds-card--accent-coral .v2-wds-card-icon {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.v2-wds-card--accent-purple .v2-wds-card-icon {
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-wds-purple);
}

.v2-wds-card--accent-teal .v2-wds-card-icon {
    background: rgba(6, 168, 138, 0.1);
    color: var(--v2-wds-teal);
}

.v2-wds-card--accent-blue .v2-wds-card-icon {
    background: rgba(0, 100, 217, 0.1);
    color: var(--v2-wds-blue);
}

.v2-wds-card--accent-gold .v2-wds-card-icon {
    background: rgba(230, 168, 23, 0.12);
    color: #d4a017;
}

.v2-wds-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--v2-wds-ink);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.v2-wds-card-description {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-wds-muted);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .v2-wds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-wds-card--large {
        grid-column: span 2;
    }

    .v2-wds-card--horizontal {
        grid-column: span 2;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .v2-wds-card--horizontal .v2-wds-card-top {
        min-width: auto;
    }
}

@media (max-width: 640px) {
    .v2-wds {
        padding: 50px 0;
    }

    .v2-wds-container {
        width: min(100% - 32px, 540px);
    }

    .v2-wds-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v2-wds-card--large,
    .v2-wds-card--horizontal {
        grid-column: span 1;
    }

    .v2-wds-card {
        padding: 22px 20px;
    }

    .v2-wds-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .v2-wds-card-title {
        font-size: 1.05rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wds-card {
        transition: none;
    }

    .v2-wds-card:hover {
        transform: none;
        box-shadow: none;
    }
}
/* #endregion web dev services */
/* #endregion web dev process */
/* =========================================================
   WEBSITE DEV PROCESS SECTION
   Horizontal Stepper Layout
   ========================================================= */

:root {
    --v2-wdp-coral: #ff5757;
    --v2-wdp-purple: #54249a;
    --v2-wdp-purple-dark: #32145f;
    --v2-wdp-ink: #181321;
    --v2-wdp-muted: #686172;
    --v2-wdp-border: rgba(84, 36, 154, 0.08);
    --v2-wdp-bg: #ffffff;
}


.v2-wdp {
    position: relative;
    background: var(--v2-wdp-bg);
    padding: 100px 0;
    overflow: hidden;
}

.v2-wdp-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.v2-wdp-header {
    max-width: 750px;
    margin-bottom: 55px;
}

.v2-wdp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wdp-purple);
}

.v2-wdp-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wdp-coral);
}

.v2-wdp-headline {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-wdp-ink);
}

.v2-wdp-headline-highlight {
    color: var(--v2-wdp-purple);
}

.v2-wdp-body {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-wdp-muted);
}


/* =========================================================
   STEPPER LAYOUT
========================================================= */

.v2-wdp-stepper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* =========================================================
   STEP NAVIGATION TRACK
========================================================= */

.v2-wdp-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(84, 36, 154, 0.2) transparent;
}

.v2-wdp-nav::-webkit-scrollbar {
    height: 4px;
}

.v2-wdp-nav::-webkit-scrollbar-track {
    background: transparent;
}

.v2-wdp-nav::-webkit-scrollbar-thumb {
    background-color: rgba(84, 36, 154, 0.2);
    border-radius: 4px;
}

.v2-wdp-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    padding: 0 10px;
    position: relative;
    flex: 1;
    min-width: 90px;
    transition: all 0.3s ease;
}

.v2-wdp-nav-btn::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(84, 36, 154, 0.12);
    z-index: 0;
}

.v2-wdp-nav-btn:first-child::before {
    left: 50%;
    width: 50%;
}

.v2-wdp-nav-btn:last-child::before {
    left: 0;
    width: 50%;
}

.v2-wdp-nav-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(84, 36, 154, 0.2);
    color: var(--v2-wdp-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.v2-wdp-nav-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--v2-wdp-muted);
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
    max-width: 100px;
}

/* Active State */
.v2-wdp-nav-btn--active .v2-wdp-nav-circle {
    background: var(--v2-wdp-coral);
    border-color: var(--v2-wdp-coral);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 87, 87, 0.35);
}

.v2-wdp-nav-btn--active .v2-wdp-nav-label {
    color: var(--v2-wdp-ink);
    font-weight: 800;
}

.v2-wdp-nav-btn:hover .v2-wdp-nav-circle {
    border-color: var(--v2-wdp-purple);
}

.v2-wdp-nav-btn--active:hover .v2-wdp-nav-circle {
    border-color: var(--v2-wdp-coral);
}


/* =========================================================
   STEP CONTENT PANELS
========================================================= */

.v2-wdp-content {
    position: relative;
    background: #f8f6fa;
    border-radius: 16px;
    padding: 40px;
    min-height: 200px;
}

.v2-wdp-panel {
    animation: v2WdpFadeIn 0.4s ease;
}

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

.v2-wdp-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 750px;
}

.v2-wdp-panel-number {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--v2-wdp-coral);
    text-transform: uppercase;
}

.v2-wdp-panel-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--v2-wdp-ink);
    margin: 0;
    letter-spacing: -0.01em;
}

.v2-wdp-panel-description {
    font-size: 1rem;
    font-weight: 500;
    color: var(--v2-wdp-muted);
    line-height: 1.75;
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .v2-wdp {
        padding: 80px 0;
    }

    .v2-wdp-nav {
        gap: 5px;
    }

    .v2-wdp-nav-btn {
        padding: 0 5px;
        min-width: 80px;
    }

    .v2-wdp-nav-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 640px) {
    .v2-wdp {
        padding: 50px 0;
    }

    .v2-wdp-container {
        width: min(100% - 32px, 540px);
    }

    .v2-wdp-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .v2-wdp-stepper {
        gap: 30px;
    }

    .v2-wdp-content {
        padding: 24px 20px;
    }

    .v2-wdp-panel-title {
        font-size: 1.4rem;
    }

    .v2-wdp-panel-description {
        font-size: 0.9rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wdp-panel {
        animation: none;
    }

    .v2-wdp-nav-btn,
    .v2-wdp-nav-circle,
    .v2-wdp-nav-label {
        transition: none;
    }
}
/* #endregion web dev process */



/* #endregion web dev features */
/* =========================================================
   WEBSITE DEV FEATURES SECTION
   Four-Column Feature Category Grid
   ========================================================= */

:root {
    --v2-wdf-coral: #ff5757;
    --v2-wdf-purple: #54249a;
    --v2-wdf-teal: #06A88A;
    --v2-wdf-blue: #0064D9;
    --v2-wdf-ink: #181321;
    --v2-wdf-muted: #686172;
    --v2-wdf-border: rgba(84, 36, 154, 0.08);
}


.v2-wdf {
    position: relative;
    background: #f8f6fa;
    padding: 100px 0;
    overflow: hidden;
}

.v2-wdf-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.v2-wdf-header {
    max-width: 750px;
    margin-bottom: 55px;
}

.v2-wdf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wdf-purple);
}

.v2-wdf-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wdf-coral);
}

.v2-wdf-headline {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-wdf-ink);
}

.v2-wdf-headline-highlight {
    color: var(--v2-wdf-purple);
}

.v2-wdf-body {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-wdf-muted);
}


/* =========================================================
   FEATURE GRID
========================================================= */

.v2-wdf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* =========================================================
   CARD BASE
========================================================= */

.v2-wdf-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--v2-wdf-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.v2-wdf-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.5;
}

.v2-wdf-card--technical .v2-wdf-card-accent {
    background: var(--v2-wdf-purple);
}

.v2-wdf-card--ux .v2-wdf-card-accent {
    background: var(--v2-wdf-coral);
}

.v2-wdf-card--marketing .v2-wdf-card-accent {
    background: var(--v2-wdf-blue);
}

.v2-wdf-card--healthcare .v2-wdf-card-accent {
    background: var(--v2-wdf-teal);
}

.v2-wdf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(50, 20, 95, 0.10);
    border-color: rgba(84, 36, 154, 0.15);
}


/* =========================================================
   CARD HEADER
========================================================= */

.v2-wdf-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--v2-wdf-border);
}

.v2-wdf-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-wdf-card--technical .v2-wdf-card-icon {
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-wdf-purple);
}

.v2-wdf-card--ux .v2-wdf-card-icon {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.v2-wdf-card--marketing .v2-wdf-card-icon {
    background: rgba(0, 100, 217, 0.1);
    color: var(--v2-wdf-blue);
}

.v2-wdf-card--healthcare .v2-wdf-card-icon {
    background: rgba(6, 168, 138, 0.1);
    color: var(--v2-wdf-teal);
}

.v2-wdf-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--v2-wdf-ink);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}


/* =========================================================
   CARD LIST
========================================================= */

.v2-wdf-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v2-wdf-card-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--v2-wdf-muted);
    line-height: 1.4;
}

.v2-wdf-card-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.v2-wdf-card--technical .v2-wdf-card-check {
    background: rgba(84, 36, 154, 0.08);
    color: var(--v2-wdf-purple);
}

.v2-wdf-card--ux .v2-wdf-card-check {
    background: rgba(255, 87, 87, 0.08);
    color: #e64a4a;
}

.v2-wdf-card--marketing .v2-wdf-card-check {
    background: rgba(0, 100, 217, 0.08);
    color: var(--v2-wdf-blue);
}

.v2-wdf-card--healthcare .v2-wdf-card-check {
    background: rgba(6, 168, 138, 0.08);
    color: var(--v2-wdf-teal);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .v2-wdf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .v2-wdf {
        padding: 50px 0;
    }

    .v2-wdf-container {
        width: min(100% - 32px, 540px);
    }

    .v2-wdf-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v2-wdf-card {
        padding: 22px 20px 20px;
    }

    .v2-wdf-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .v2-wdf-card-title {
        font-size: 1rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wdf-card {
        transition: none;
    }

    .v2-wdf-card:hover {
        transform: none;
        box-shadow: none;
    }
}
/* #endregion web dev features */


/* #endregion web dev redesign */
/* =========================================================
   WEBSITE DEV REDESIGN SECTION
   Split Diagnostic Layout
   ========================================================= */

:root {
    --v2-wdr-coral: #ff5757;
    --v2-wdr-purple: #54249a;
    --v2-wdr-teal: #06A88A;
    --v2-wdr-blue: #0064D9;
    --v2-wdr-orange: #e67e22;
    --v2-wdr-rose: #e64a7a;
    --v2-wdr-indigo: #4f46e5;
    --v2-wdr-red: #dc2626;
    --v2-wdr-ink: #181321;
    --v2-wdr-muted: #686172;
    --v2-wdr-border: rgba(84, 36, 154, 0.08);
}


.v2-wdr {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.v2-wdr-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.v2-wdr-header {
    max-width: 750px;
    margin-bottom: 55px;
}

.v2-wdr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wdr-purple);
}

.v2-wdr-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wdr-coral);
}

.v2-wdr-headline {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-wdr-ink);
}

.v2-wdr-headline-highlight {
    color: var(--v2-wdr-coral);
}

.v2-wdr-body {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-wdr-muted);
}


/* =========================================================
   REDESIGN CONTENT GRID
========================================================= */

.v2-wdr-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}


/* =========================================================
   LEFT: PROBLEM STATEMENT
========================================================= */

.v2-wdr-problem {
    background: linear-gradient(135deg, #32145f 0%, #54249a 100%);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
}

.v2-wdr-problem::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 87, 87, 0.15);
    pointer-events: none;
}

.v2-wdr-problem-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.v2-wdr-problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 87, 87, 0.15);
    color: var(--v2-wdr-coral);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-wdr-problem-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.v2-wdr-problem-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   RIGHT: DIAGNOSTIC SIGNS GRID
========================================================= */

.v2-wdr-signs {
    background: #f8f6fa;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--v2-wdr-border);
}

.v2-wdr-signs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.v2-wdr-sign-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-wdr-ink);
    line-height: 1.5;
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--v2-wdr-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-wdr-sign-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(50, 20, 95, 0.08);
}

.v2-wdr-sign-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.v2-wdr-sign-bullet--coral {
    background: #e64a4a;
}

.v2-wdr-sign-bullet--purple {
    background: #54249a;
}

.v2-wdr-sign-bullet--teal {
    background: #06A88A;
}

.v2-wdr-sign-bullet--blue {
    background: #0064D9;
}

.v2-wdr-sign-bullet--orange {
    background: #e67e22;
}

.v2-wdr-sign-bullet--rose {
    background: #e64a7a;
}

.v2-wdr-sign-bullet--indigo {
    background: #4f46e5;
}

.v2-wdr-sign-bullet--red {
    background: #dc2626;
}


/* =========================================================
   BOTTOM SOLUTION
========================================================= */

.v2-wdr-solution {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fffaf5;
    border: 1px solid rgba(255, 87, 87, 0.15);
    border-radius: 14px;
    padding: 24px 28px;
}

.v2-wdr-solution-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(6, 168, 138, 0.12);
    color: var(--v2-wdr-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-wdr-solution-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-wdr-muted);
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .v2-wdr-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .v2-wdr-problem {
        min-height: auto;
    }

    .v2-wdr-signs-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .v2-wdr {
        padding: 50px 0;
    }

    .v2-wdr-container {
        width: min(100% - 32px, 540px);
    }

    .v2-wdr-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .v2-wdr-problem,
    .v2-wdr-signs,
    .v2-wdr-solution {
        padding: 20px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wdr-sign-item {
        transition: none;
    }

    .v2-wdr-sign-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* #endregion web dev redesign */


/* #endregion web dev integration */
/* =========================================================
   WEBSITE DEV INTEGRATION SECTION
   Split Ecosystem Layout
   ========================================================= */

:root {
    --v2-wdi-coral: #ff5757;
    --v2-wdi-purple: #54249a;
    --v2-wdi-purple-dark: #32145f;
    --v2-wdi-ink: #181321;
    --v2-wdi-muted: #686172;
    --v2-wdi-border: rgba(84, 36, 154, 0.08);
}


.v2-wdi {
    position: relative;
    background: #f8f6fa;
    padding: 100px 0;
    overflow: hidden;
}

.v2-wdi-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.v2-wdi-content {
    position: sticky;
    top: 40px;
}

.v2-wdi-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wdi-purple);
}

.v2-wdi-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wdi-coral);
}

.v2-wdi-headline {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-wdi-ink);
}

.v2-wdi-headline-highlight {
    color: var(--v2-wdi-purple);
}

.v2-wdi-body {
    max-width: 520px;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-wdi-muted);
}


/* Statement */
.v2-wdi-statement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--v2-wdi-border);
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 20px;
}

.v2-wdi-statement-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 87, 87, 0.1);
    color: var(--v2-wdi-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-wdi-statement-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-wdi-muted);
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   RIGHT SERVICE LIST
========================================================= */

.v2-wdi-services {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Vertical connecting line */
.v2-wdi-services-line {
    position: absolute;
    left: 25px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,87,87,0.2) 0%, rgba(84,36,154,0.2) 50%, rgba(255,87,87,0.2) 100%);
    z-index: 0;
}


/* Service Card */
.v2-wdi-service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--v2-wdi-border);
    border-radius: 14px;
    padding: 20px 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.v2-wdi-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(50, 20, 95, 0.08);
    border-color: rgba(84, 36, 154, 0.15);
}

.v2-wdi-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.v2-wdi-service-icon--seo {
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-wdi-purple);
}

.v2-wdi-service-icon--ads {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.v2-wdi-service-icon--gbp {
    background: rgba(230, 168, 23, 0.12);
    color: #d4a017;
}

.v2-wdi-service-icon--maps {
    background: rgba(0, 100, 217, 0.1);
    color: #0064D9;
}

.v2-wdi-service-icon--geo {
    background: rgba(6, 168, 138, 0.1);
    color: var(--v2-wdi-teal);
}

.v2-wdi-service-icon--smb {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}


.v2-wdi-service-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v2-wdi-service-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--v2-wdi-ink);
    margin: 0;
    letter-spacing: -0.01em;
}

.v2-wdi-service-description {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-wdi-muted);
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .v2-wdi-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2-wdi-content {
        position: static;
    }

    .v2-wdi-services-line {
        left: 24px;
    }
}

@media (max-width: 640px) {
    .v2-wdi {
        padding: 50px 0;
    }

    .v2-wdi-container {
        width: min(100% - 32px, 540px);
        gap: 30px;
    }

    .v2-wdi-headline {
        font-size: clamp(26px, 7vw, 34px);
    }

    .v2-wdi-service-card {
        padding: 16px;
        gap: 12px;
    }

    .v2-wdi-service-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .v2-wdi-service-title {
        font-size: 0.95rem;
    }

    .v2-wdi-service-description {
        font-size: 0.85rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wdi-service-card {
        transition: none;
    }

    .v2-wdi-service-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* #endregion web dev integration */


/* #endregion web-dev-why-choose*/
/* =========================================================
   WEBSITE DEV WHY CHOOSE SECTION
   Grid with Featured Results Banner Layout
   ========================================================= */

:root {
    --v2-wdw-coral: #ff5757;
    --v2-wdw-purple: #54249a;
    --v2-wdw-purple-dark: #32145f;
    --v2-wdw-teal: #06A88A;
    --v2-wdw-gold: #e6a817;
    --v2-wdw-ink: #181321;
    --v2-wdw-muted: #686172;
    --v2-wdw-border: rgba(84, 36, 154, 0.08);
}


.v2-wdw {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.v2-wdw-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.v2-wdw-header {
    max-width: 750px;
    margin-bottom: 55px;
}

.v2-wdw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wdw-purple);
}

.v2-wdw-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wdw-coral);
}

.v2-wdw-headline {
    margin: 0;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-wdw-ink);
}

.v2-wdw-headline-highlight {
    color: var(--v2-wdw-purple);
}


/* =========================================================
   CARD GRIDS
========================================================= */

.v2-wdw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.v2-wdw-grid--top {
    margin-bottom: 40px;
}

.v2-wdw-grid--bottom {
    margin-top: 40px;
}


/* =========================================================
   CARD BASE
========================================================= */

.v2-wdw-card {
    background: #f8f6fa;
    border-radius: 16px;
    padding: 30px 28px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--v2-wdw-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.v2-wdw-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.5;
}

.v2-wdw-card--expertise .v2-wdw-card-accent {
    background: var(--v2-wdw-purple);
}

.v2-wdw-card--integration .v2-wdw-card-accent {
    background: var(--v2-wdw-teal);
}

.v2-wdw-card--custom .v2-wdw-card-accent {
    background: var(--v2-wdw-gold);
}

.v2-wdw-card--transparency .v2-wdw-card-accent {
    background: var(--v2-wdw-coral);
}

.v2-wdw-card--technical .v2-wdw-card-accent {
    background: #4f46e5;
}

.v2-wdw-card--partnership .v2-wdw-card-accent {
    background: var(--v2-wdw-teal);
}

.v2-wdw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(50, 20, 95, 0.10);
    border-color: rgba(84, 36, 154, 0.15);
    background: #ffffff;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.v2-wdw-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.v2-wdw-card--expertise .v2-wdw-card-icon {
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-wdw-purple);
}

.v2-wdw-card--integration .v2-wdw-card-icon {
    background: rgba(6, 168, 138, 0.1);
    color: var(--v2-wdw-teal);
}

.v2-wdw-card--custom .v2-wdw-card-icon {
    background: rgba(230, 168, 23, 0.12);
    color: #d4a017;
}

.v2-wdw-card--transparency .v2-wdw-card-icon {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.v2-wdw-card--technical .v2-wdw-card-icon {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.v2-wdw-card--partnership .v2-wdw-card-icon {
    background: rgba(6, 168, 138, 0.1);
    color: var(--v2-wdw-teal);
}

.v2-wdw-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--v2-wdw-ink);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.v2-wdw-card-description {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-wdw-muted);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}


/* =========================================================
   PROVEN RESULTS BANNER
========================================================= */

.v2-wdw-results {
    background: linear-gradient(135deg, #32145f 0%, #54249a 100%);
    border-radius: 16px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}

.v2-wdw-results-bg {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 87, 87, 0.12);
    pointer-events: none;
}

.v2-wdw-results-content {
    position: relative;
    z-index: 1;
}

.v2-wdw-results-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.v2-wdw-results-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 87, 87, 0.15);
    color: var(--v2-wdw-coral);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-wdw-results-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.v2-wdw-results-body {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px;
}

.v2-wdw-results-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v2-wdw-results-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v2-wdw-results-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.v2-wdw-results-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .v2-wdw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .v2-wdw-results-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .v2-wdw {
        padding: 50px 0;
    }

    .v2-wdw-container {
        width: min(100% - 32px, 540px);
    }

    .v2-wdw-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v2-wdw-card {
        padding: 22px 20px;
    }

    .v2-wdw-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .v2-wdw-card-title {
        font-size: 1.05rem;
    }

    .v2-wdw-results {
        padding: 24px 20px;
    }

    .v2-wdw-results-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .v2-wdw-results-value {
        font-size: 1.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wdw-card {
        transition: none;
    }

    .v2-wdw-card:hover {
        transform: none;
        box-shadow: none;
        background: #f8f6fa;
    }
}

/* #endregion web dev why choose */


/* #endregion web-dev-small-business*/
/* =========================================================
   WEBSITE DEV SMALL BUSINESS SECTION
   Single Card Split Layout
   ========================================================= */

:root {
    --v2-wdsb-coral: #ff5757;
    --v2-wdsb-purple: #54249a;
    --v2-wdsb-purple-dark: #32145f;
    --v2-wdsb-ink: #181321;
    --v2-wdsb-muted: #686172;
    --v2-wdsb-border: rgba(84, 36, 154, 0.08);
}


.v2-wdsb {
    position: relative;
    background: #f8f6fa;
    padding: 100px 0;
    overflow: hidden;
}

.v2-wdsb-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   MAIN CARD
========================================================= */

.v2-wdsb-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--v2-wdsb-border);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(50, 20, 95, 0.06);
    transition: box-shadow 0.3s ease;
}

.v2-wdsb-card:hover {
    box-shadow: 0 16px 32px rgba(50, 20, 95, 0.10);
}

.v2-wdsb-card-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    align-items: stretch;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.v2-wdsb-content {
    padding: 40px 40px 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--v2-wdsb-border);
}

.v2-wdsb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wdsb-purple);
}

.v2-wdsb-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wdsb-coral);
}

.v2-wdsb-headline {
    margin: 0 0 18px;
    font-size: clamp(28px, 2.8vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-wdsb-ink);
}

.v2-wdsb-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-wdsb-muted);
    margin: 0;
}


/* =========================================================
   RIGHT FEATURE LIST
========================================================= */

.v2-wdsb-features {
    padding: 40px 48px 40px 40px;
    background: linear-gradient(135deg, #faf9fc 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
}

.v2-wdsb-features-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--v2-wdsb-ink);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.v2-wdsb-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex-grow: 1;
}

.v2-wdsb-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-wdsb-ink);
    line-height: 1.5;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(84, 36, 154, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.v2-wdsb-feature-item:hover {
    background: #ffffff;
    border-color: rgba(84, 36, 154, 0.12);
}

.v2-wdsb-feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(6, 168, 138, 0.12);
    color: #06A88A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .v2-wdsb-card-inner {
        grid-template-columns: 1fr;
    }

    .v2-wdsb-content {
        border-right: none;
        border-bottom: 1px solid var(--v2-wdsb-border);
        padding: 32px 28px;
    }

    .v2-wdsb-features {
        padding: 32px 28px;
    }
}

@media (max-width: 640px) {
    .v2-wdsb {
        padding: 50px 0;
    }

    .v2-wdsb-container {
        width: min(100% - 32px, 540px);
    }

    .v2-wdsb-content,
    .v2-wdsb-features {
        padding: 24px 20px;
    }

    .v2-wdsb-headline {
        font-size: clamp(24px, 6vw, 30px);
    }

    .v2-wdsb-feature-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .v2-wdsb-feature-item {
        padding: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wdsb-card,
    .v2-wdsb-feature-item {
        transition: none;
    }
}

/* #endregion web dev small business */



/* #region web-dev-faq */
/* =========================================================
   WEBSITE DEV FAQ SECTION
   Split Sticky Layout with Accordion
   ========================================================= */

:root {
    --v2-wdfaq-coral: #ff5757;
    --v2-wdfaq-purple: #54249a;
    --v2-wdfaq-purple-dark: #32145f;
    --v2-wdfaq-ink: #181321;
    --v2-wdfaq-muted: #686172;
    --v2-wdfaq-border: rgba(84, 36, 154, 0.08);
    --v2-wdfaq-bg: #ffffff;
}


.v2-wdfaq {
    position: relative;
    background: var(--v2-wdfaq-bg);
    padding: 100px 0;
    overflow: hidden;
}

.v2-wdfaq-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}


/* =========================================================
   LEFT HEADER
========================================================= */

.v2-wdfaq-header {
    position: sticky;
    top: 40px;
}

.v2-wdfaq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-wdfaq-purple);
}

.v2-wdfaq-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-wdfaq-coral);
}

.v2-wdfaq-headline {
    margin: 0 0 18px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-wdfaq-ink);
}

.v2-wdfaq-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-wdfaq-muted);
    margin: 0 0 24px;
    max-width: 420px;
}

.v2-wdfaq-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    background: var(--v2-wdfaq-purple-dark);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 16px rgba(50, 20, 95, 0.15);
}

.v2-wdfaq-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(50, 20, 95, 0.20);
}

.v2-wdfaq-cta svg {
    transition: transform 0.2s ease;
}

.v2-wdfaq-cta:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   ACCORDION
========================================================= */

.v2-wdfaq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* Accordion Item */
.v2-wdfaq-item {
    background: #f8f6fa;
    border: 1px solid var(--v2-wdfaq-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.v2-wdfaq-item:hover {
    border-color: rgba(84, 36, 154, 0.15);
}

.v2-wdfaq-item--active {
    background: #ffffff;
    border-color: rgba(84, 36, 154, 0.2);
    box-shadow: 0 8px 20px rgba(50, 20, 95, 0.06);
}


/* Question Button */
.v2-wdfaq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    text-align: left;
    transition: background 0.2s ease;
}

.v2-wdfaq-question:hover {
    background: rgba(84, 36, 154, 0.03);
}

.v2-wdfaq-question-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-wdfaq-ink);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.v2-wdfaq-item--active .v2-wdfaq-question-text {
    color: var(--v2-wdfaq-purple);
}

.v2-wdfaq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(84, 36, 154, 0.08);
    color: var(--v2-wdfaq-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.v2-wdfaq-item--active .v2-wdfaq-icon {
    transform: rotate(180deg);
    background: var(--v2-wdfaq-coral);
    color: #ffffff;
}

/* Answer */
.v2-wdfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.v2-wdfaq-item--active .v2-wdfaq-answer {
    max-height: 600px; /* enough for long answers */
}

.v2-wdfaq-answer-inner {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--v2-wdfaq-muted);
}

.v2-wdfaq-answer-inner p {
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .v2-wdfaq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2-wdfaq-header {
        position: static;
    }
}

@media (max-width: 640px) {
    .v2-wdfaq {
        padding: 50px 0;
    }

    .v2-wdfaq-container {
        width: min(100% - 32px, 540px);
        gap: 30px;
    }

    .v2-wdfaq-headline {
        font-size: clamp(24px, 6vw, 30px);
    }

    .v2-wdfaq-question {
        padding: 16px 18px;
    }

    .v2-wdfaq-question-text {
        font-size: 0.95rem;
    }

    .v2-wdfaq-answer-inner {
        padding: 0 18px 16px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-wdfaq-answer {
        transition: none;
    }

    .v2-wdfaq-icon,
    .v2-wdfaq-cta,
    .v2-wdfaq-cta svg {
        transition: none;
    }
}

/* #endregion web dev faq */


