/* =========================================================
   ARPIVA TECHNOLOGIES
   WEB DEVELOPMENT SERVICE PAGE
========================================================= */

.arpiva-webdev-page {
    --wd-navy: #06183f;
    --wd-deep: #03112d;
    --wd-blue: #1976e5;
    --wd-blue-light: #69b0ff;
    --wd-cyan: #19bfe8;
    --wd-orange: #ff9f1c;
    --wd-white: #ffffff;
    --wd-text: #12213f;
    --wd-muted: #64748b;
    --wd-light: #f5f8fc;
    --wd-border: #e3ebf5;

    width: 100%;
    overflow: hidden;
}

.arpiva-webdev-page *,
.arpiva-webdev-page *::before,
.arpiva-webdev-page *::after {
    box-sizing: border-box;
}

.arpiva-webdev-page .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.arpiva-webdev-page img {
    display: block;
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.webdev-hero {
    position: relative;

    height: 620px;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background-color: var(--wd-navy);

    background-image:
        linear-gradient(
            90deg,
            rgba(3,17,45,.98) 0%,
            rgba(3,17,45,.94) 28%,
            rgba(3,17,45,.62) 57%,
            rgba(3,17,45,.08) 100%
        ),
        url("../images/web-development-hero.png");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.webdev-hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 76% 42%,
            rgba(25,118,229,.17),
            transparent 36%
        );
}

.webdev-hero .container {
    position: relative;
    z-index: 2;
}

.webdev-hero-content {
    width: min(680px, 62%);

    animation: webdevHeroIn .8s ease both;
}

@keyframes webdevHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.webdev-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;

    color: #d9e6f7;

    background: rgba(255,255,255,.055);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.7px;

    backdrop-filter: blur(8px);
}

.webdev-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 8px;

    border-radius: 50%;

    background: #42dc86;

    box-shadow: 0 0 14px rgba(66,220,134,.45);
}

.webdev-kicker {
    display: block;

    margin: 18px 0 10px;

    color: var(--wd-orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.8px;
}

.webdev-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(43px, 5.2vw, 68px);

    line-height: .99;

    font-weight: 800;

    letter-spacing: -3px;
}

.webdev-hero h1 span {
    display: block;

    margin-top: 7px;

    color: var(--wd-blue-light);
}

.webdev-hero-content > p {
    max-width: 630px;

    margin: 21px 0 0;

    color: #c3d2e7;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.webdev-hero-actions,
.webdev-final-actions {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.webdev-primary-button,
.webdev-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 49px;

    padding: 0 22px;

    border-radius: 9px;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 700;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        background .28s ease;
}

.webdev-primary-button {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #ffab27,
            #ff8500
        );

    box-shadow:
        0 13px 30px rgba(255,133,0,.22);
}

.webdev-primary-button:hover {
    color: #fff !important;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(255,133,0,.32);
}

.webdev-secondary-button {
    color: #fff !important;

    border: 1px solid rgba(255,255,255,.23);

    background: rgba(255,255,255,.055);

    backdrop-filter: blur(8px);
}

.webdev-secondary-button:hover {
    color: #fff !important;

    transform: translateY(-3px);

    background: rgba(255,255,255,.10);
}

.webdev-primary-button span,
.webdev-secondary-button span {
    font-size: 16px;

    transition: transform .25s ease;
}

.webdev-primary-button:hover span,
.webdev-secondary-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TRUST
========================================================= */

.webdev-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 17px;
}

.webdev-trust span {
    position: relative;

    padding-left: 11px;

    color: #9db2cf;

    font-size: 8px;
    font-weight: 600;
}

.webdev-trust span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--wd-orange);
}


/* =========================================================
   SCROLL
========================================================= */

.webdev-scroll {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    transform: translateX(-50%);

    color: rgba(255,255,255,.42);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.webdev-scroll i {
    width: 1px;
    height: 25px;

    display: block;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.65),
            transparent
        );
}


/* =========================================================
   SECTIONS
========================================================= */

.webdev-intro,
.webdev-capabilities,
.webdev-process,
.webdev-pricing,
.webdev-amc {
    padding: 100px 0;

    background: #fff;
}

.webdev-intelligence {
    padding: 100px 0;

    background: var(--wd-light);
}

.webdev-why {
    padding: 100px 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f
        );
}


/* =========================================================
   HEADINGS
========================================================= */

.webdev-heading {
    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.webdev-heading > span,
.webdev-label {
    display: block;

    color: var(--wd-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.6px;
}

.webdev-heading > span {
    margin-bottom: 13px;
}

.webdev-label {
    margin-bottom: 13px;
}

.webdev-heading h2 {
    margin: 0;

    color: var(--wd-navy);

    font-size: clamp(32px, 4vw, 49px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.webdev-heading h2 strong {
    display: block;

    color: var(--wd-blue);
}

.webdev-heading p {
    max-width: 720px;

    margin: 18px auto 0;

    color: var(--wd-muted);

    font-size: 13px;

    line-height: 1.8;
}

.webdev-heading-light h2 {
    color: #fff;
}

.webdev-heading-light p {
    color: #aebfd8;
}


/* =========================================================
   INTRO
========================================================= */

.webdev-intro-grid {
    display: grid;

    grid-template-columns: 1fr .75fr;

    gap: 80px;

    align-items: center;
}

.webdev-intro-content {
    max-width: 650px;
}

.webdev-intro-content h2 {
    margin: 0 0 18px;

    color: var(--wd-navy);

    font-size: clamp(31px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.webdev-intro-content h2 strong {
    display: block;

    color: var(--wd-blue);
}

.webdev-intro-content > p {
    margin: 0 0 12px;

    color: var(--wd-muted);

    font-size: 13px;

    line-height: 1.8;
}

.webdev-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 27px;
}

.webdev-stats > div {
    padding: 17px;

    border: 1px solid var(--wd-border);

    border-radius: 12px;

    background: #fbfcfe;
}

.webdev-stats strong {
    display: block;

    color: var(--wd-navy);

    font-size: 12px;
}

.webdev-stats span {
    display: block;

    margin-top: 5px;

    color: var(--wd-muted);

    font-size: 9px;
}

.webdev-intro-card {
    position: relative;

    min-height: 380px;

    padding: 42px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    border-radius: 22px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #0b3c86,
            #03122f
        );

    box-shadow:
        0 25px 60px rgba(6,24,63,.16);
}

.webdev-intro-card-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    top: -130px;
    right: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(25,191,232,.28),
            transparent 67%
        );
}

.webdev-intro-card > span,
.webdev-intro-card > strong,
.webdev-intro-card > small {
    position: relative;
    z-index: 2;
}

.webdev-intro-card > span {
    color: var(--wd-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.4px;
}

.webdev-intro-card > strong {
    margin-top: 22px;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1;

    letter-spacing: -2px;
}

.webdev-intro-card > small {
    max-width: 270px;

    margin-top: 24px;

    color: #a9c0dc;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.webdev-capability-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.webdev-capability-card {
    min-height: 235px;

    padding: 25px;

    border: 1px solid var(--wd-border);

    border-radius: 16px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.webdev-capability-card:hover {
    transform: translateY(-7px);

    border-color: rgba(25,118,229,.25);

    box-shadow:
        0 18px 40px rgba(6,24,63,.08);
}

.webdev-capability-card small {
    color: #a5b5c9;

    font-size: 9px;
    font-weight: 800;
}

.webdev-capability-card > span {
    display: block;

    margin-top: 22px;

    color: var(--wd-blue);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.webdev-capability-card h3 {
    margin: 9px 0 10px;

    color: var(--wd-navy);

    font-size: 17px;
}

.webdev-capability-card p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.webdev-process-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;
}

.webdev-process-image {
    overflow: hidden;

    border-radius: 19px;

    box-shadow:
        0 25px 60px rgba(6,24,63,.14);
}

.webdev-process-image img {
    transition: transform .7s ease;
}

.webdev-process-image:hover img {
    transform: scale(1.025);
}

.webdev-process-content h2 {
    margin: 0 0 17px;

    color: var(--wd-navy);

    font-size: clamp(31px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.webdev-process-content h2 strong {
    display: block;

    color: var(--wd-blue);
}

.webdev-process-content > p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 13px;

    line-height: 1.8;
}

.webdev-process-list {
    margin-top: 24px;
}

.webdev-process-list > div {
    display: grid;

    grid-template-columns: 34px 1fr;

    column-gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid var(--wd-border);
}

.webdev-process-list span {
    grid-row: span 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    color: #fff;

    background: var(--wd-blue);

    font-size: 8px;
    font-weight: 800;
}

.webdev-process-list strong {
    color: var(--wd-navy);

    font-size: 11px;
}

.webdev-process-list small {
    margin-top: 4px;

    color: var(--wd-muted);

    font-size: 9px;
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.webdev-intelligence-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 70px;

    align-items: center;
}

.webdev-intelligence-content h2 {
    margin: 0 0 17px;

    color: var(--wd-navy);

    font-size: clamp(32px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.webdev-intelligence-content h2 strong {
    display: block;

    color: var(--wd-blue);
}

.webdev-intelligence-content > p {
    color: var(--wd-muted);

    font-size: 13px;

    line-height: 1.8;
}

.webdev-tech-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0 18px;

    margin-top: 23px;
}

.webdev-tech-list > div {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 0;

    border-bottom: 1px solid var(--wd-border);
}

.webdev-tech-list span {
    color: var(--wd-blue);

    font-size: 8px;
    font-weight: 800;
}

.webdev-tech-list strong {
    color: var(--wd-navy);

    font-size: 10px;
}

.webdev-intelligence-image {
    overflow: hidden;

    border-radius: 19px;

    box-shadow:
        0 25px 60px rgba(6,24,63,.13);
}

.webdev-intelligence-image img {
    transition: transform .7s ease;
}

.webdev-intelligence-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   WHY ARPIVA
========================================================= */

.webdev-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.webdev-why-grid > div {
    min-height: 225px;

    padding: 25px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background: rgba(255,255,255,.045);

    transition:
        transform .3s ease,
        background .3s ease;
}

.webdev-why-grid > div:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.075);
}

.webdev-why-grid > div > span {
    color: var(--wd-orange);

    font-size: 9px;
    font-weight: 800;
}

.webdev-why-grid h3 {
    margin: 23px 0 10px;

    color: #fff;

    font-size: 17px;
}

.webdev-why-grid p {
    margin: 0;

    color: #9db1cf;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   PRICING
========================================================= */

.webdev-pricing {
    background: #f7f9fc;
}

.webdev-amc-banner {
    display: flex;

    align-items: center;

    gap: 18px;

    max-width: 820px;

    margin: -20px auto 35px;

    padding: 18px 23px;

    border: 1px solid rgba(25,118,229,.18);

    border-radius: 14px;

    background:
        linear-gradient(
            100deg,
            #eef6ff,
            #fff
        );

    box-shadow:
        0 10px 30px rgba(6,24,63,.05);
}

.webdev-amc-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1976e5,
            #19bfe8
        );

    font-size: 18px;
    font-weight: 800;
}

.webdev-amc-banner strong {
    display: block;

    color: var(--wd-navy);

    font-size: 12px;

    letter-spacing: 1px;
}

.webdev-amc-banner span {
    display: block;

    margin-top: 4px;

    color: var(--wd-muted);

    font-size: 10px;
}

.webdev-price-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    align-items: stretch;
}

.webdev-price-card {
    position: relative;

    padding: 29px 25px 25px;

    border: 1px solid var(--wd-border);

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(6,24,63,.035);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.webdev-price-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(6,24,63,.10);
}

.webdev-price-featured {
    border: 1px solid rgba(25,118,229,.38);

    box-shadow:
        0 15px 40px rgba(25,118,229,.11);
}

.webdev-popular {
    position: absolute;

    top: -12px;
    right: 20px;

    padding: 6px 10px;

    border-radius: 999px;

    color: #fff;

    background: var(--wd-blue);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}

.webdev-price-tag {
    color: var(--wd-blue);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.webdev-price-card h3 {
    margin: 9px 0 9px;

    color: var(--wd-navy);

    font-size: 21px;
}

.webdev-price-card > p {
    min-height: 52px;

    margin: 0;

    color: var(--wd-muted);

    font-size: 10px;

    line-height: 1.65;
}

.webdev-price {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 22px 0;

    padding: 16px 0;

    border-top: 1px solid var(--wd-border);
    border-bottom: 1px solid var(--wd-border);
}

.webdev-price small {
    display: block;

    margin-bottom: 5px;

    color: #9aaabd;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}

.webdev-price strong {
    display: block;

    color: var(--wd-navy);

    font-size: 23px;
    font-weight: 800;
}

.webdev-price strong span {
    font-size: 11px;
}

.webdev-price-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.webdev-price-card li {
    position: relative;

    padding: 7px 0 7px 17px;

    color: var(--wd-muted);

    font-size: 9px;
}

.webdev-price-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #9fb0c5;

    font-weight: 800;
}

.webdev-price-card li.included {
    color: var(--wd-blue);

    font-weight: 700;
}

.webdev-price-card li.included::before {
    color: var(--wd-blue);
}

.webdev-price-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 45px;

    margin-top: 20px;

    border-radius: 8px;

    color: #fff !important;

    background: var(--wd-navy);

    text-decoration: none !important;

    font-size: 10px;
    font-weight: 700;

    transition:
        background .25s ease,
        transform .25s ease;
}

.webdev-price-button:hover {
    color: #fff !important;

    background: var(--wd-blue);

    transform: translateY(-2px);
}


/* =========================================================
   PREMIUM PRICING
========================================================= */

.webdev-premium-pricing {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-top: 18px;
}

.webdev-premium-card {
    padding: 26px;

    border: 1px solid var(--wd-border);

    border-radius: 16px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.webdev-premium-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(6,24,63,.08);
}

.webdev-premium-card > span {
    color: var(--wd-orange);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.webdev-premium-card h3 {
    margin: 10px 0;

    color: var(--wd-navy);

    font-size: 19px;
}

.webdev-premium-card p {
    max-width: 560px;

    margin: 0;

    color: var(--wd-muted);

    font-size: 10px;

    line-height: 1.7;
}

.webdev-premium-price {
    display: flex;

    align-items: baseline;

    gap: 16px;

    margin: 20px 0;
}

.webdev-premium-price strong {
    color: var(--wd-navy);

    font-size: 25px;
}

.webdev-premium-price span {
    color: var(--wd-blue);

    font-size: 16px;
    font-weight: 700;
}

.webdev-premium-card > a {
    color: var(--wd-blue);

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
}

.webdev-pricing-note {
    max-width: 900px;

    margin: 28px auto 0;

    padding: 17px 20px;

    border-left: 3px solid var(--wd-orange);

    background: #fff;
}

.webdev-pricing-note strong {
    display: block;

    color: var(--wd-navy);

    font-size: 10px;
}

.webdev-pricing-note span {
    display: block;

    margin-top: 5px;

    color: var(--wd-muted);

    font-size: 8px;

    line-height: 1.7;
}


/* =========================================================
   AMC
========================================================= */

.webdev-amc {
    background: #fff;
}

.webdev-amc-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.webdev-amc-grid h2 {
    margin: 0 0 17px;

    color: var(--wd-navy);

    font-size: clamp(31px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.webdev-amc-grid h2 strong {
    display: block;

    color: var(--wd-blue);
}

.webdev-amc-grid > div:first-child p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 13px;

    line-height: 1.8;
}

.webdev-amc-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.webdev-amc-list > div {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px;

    border: 1px solid var(--wd-border);

    border-radius: 10px;

    background: #fbfcfe;
}

.webdev-amc-list span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    flex: 0 0 23px;

    border-radius: 50%;

    color: #fff;

    background: var(--wd-blue);

    font-size: 9px;
}

.webdev-amc-list strong {
    color: var(--wd-navy);

    font-size: 9px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.webdev-final-cta {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #03112d,
            #06183f
        );
}

.webdev-final-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 600px;
    height: 600px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(25,118,229,.20),
            transparent 68%
        );

    pointer-events: none;
}

.webdev-final-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto;
}

.webdev-final-content > span {
    display: block;

    margin-bottom: 13px;

    color: var(--wd-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.webdev-final-content h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(35px, 4.5vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.webdev-final-content h2 strong {
    display: block;

    color: var(--wd-blue-light);
}

.webdev-final-content p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #a9bdd8;

    font-size: 13px;

    line-height: 1.8;
}

.webdev-final-actions {
    justify-content: center;

    margin-top: 28px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .webdev-hero-content {
        width: 65%;
    }

    .webdev-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arpiva-webdev-page .container {
        width: 92%;
    }

    .webdev-hero {
        height: 700px;
        min-height: 700px;

        align-items: flex-start;

        padding-top: 55px;

        background-position: center;
    }

    .webdev-hero-content {
        width: 100%;
    }

    .webdev-hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .webdev-hero-content > p {
        font-size: 12px;
    }

    .webdev-hero-actions,
    .webdev-final-actions {
        flex-direction: column;
    }

    .webdev-primary-button,
    .webdev-secondary-button {
        width: 100%;
    }

    .webdev-scroll {
        display: none;
    }

    .webdev-intro,
    .webdev-capabilities,
    .webdev-process,
    .webdev-intelligence,
    .webdev-why,
    .webdev-pricing,
    .webdev-amc {
        padding: 75px 0;
    }

    .webdev-intro-grid,
    .webdev-process-grid,
    .webdev-intelligence-grid,
    .webdev-amc-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .webdev-capability-grid,
    .webdev-why-grid,
    .webdev-price-grid {
        grid-template-columns: 1fr;
    }

    .webdev-premium-pricing {
        grid-template-columns: 1fr;
    }

    .webdev-stats {
        grid-template-columns: 1fr;
    }

    .webdev-tech-list {
        grid-template-columns: 1fr;
    }

    .webdev-amc-list {
        grid-template-columns: 1fr;
    }

    .webdev-price-card > p {
        min-height: auto;
    }

    .webdev-amc-banner {
        align-items: flex-start;

        margin-top: -10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .webdev-hero-content {
        animation: none !important;
    }

}