```css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #05070d;
    --bg-soft: #0a0d16;
    --card: #0d111c;
    --border: rgba(255, 255, 255, 0.09);
    --text: #f5f7fb;
    --muted: #9ba4b7;
    --accent: #7c5cff;
    --accent-2: #24d6c9;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 13, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #aeb6c7;
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links .nav-cta {
    padding: 11px 18px;
    border-radius: 8px;
    background: white;
    color: #080a10;
    font-weight: 700;
}

.nav-links .nav-cta:hover {
    background: var(--accent-2);
}

.menu-btn {
    display: none;
    background: transparent;
    border: 0;
    color: white;
    font-size: 27px;
    cursor: pointer;
}


/* GENERAL */

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--accent-2);
    margin-bottom: 18px;
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 14px var(--accent-2);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.section-heading h2 span,
.hero-content h1 span,
.cta-content h2 span {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
    max-width: 650px;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 15px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: white;
    color: #080a10;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: white;
    background: rgba(255,255,255,0.025);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}


/* HERO */

.hero {
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -250px;
    top: 40px;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    max-width: 720px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.99;
    letter-spacing: -4px;
    margin-bottom: 28px;
}

.hero-content > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.hero-trust {
    display: flex;
    gap: 42px;
    margin-top: 45px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-size: 19px;
}

.hero-trust small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}


/* DASHBOARD */

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    width: min(500px, 100%);
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        rgba(20, 25, 40, 0.95),
        rgba(8, 11, 19, 0.98)
    );
    box-shadow:
        0 40px 100px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
    z-index: 2;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd2df;
    font-size: 12px;
}

.dashboard-top > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-2);
}

.live {
    color: var(--accent-2);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 32px;
}

.dashboard-title span {
    color: var(--muted);
    font-size: 12px;
}

.dashboard-title strong {
    font-size: 22px;
}

.chart {
    height: 175px;
    margin-top: 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px dashed rgba(255,255,255,0.06);
}

.line-1 { top: 30%; }
.line-2 { top: 55%; }
.line-3 { top: 80%; }

.chart-bars {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: space-around;
    padding: 0 10px;
}

.chart-bars i {
    width: 7%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(
        to top,
        rgba(124,92,255,0.25),
        rgba(36,214,201,0.9)
    );
}

.chart-bars i:nth-child(1) { height: 25%; }
.chart-bars i:nth-child(2) { height: 35%; }
.chart-bars i:nth-child(3) { height: 30%; }
.chart-bars i:nth-child(4) { height: 48%; }
.chart-bars i:nth-child(5) { height: 55%; }
.chart-bars i:nth-child(6) { height: 72%; }
.chart-bars i:nth-child(7) { height: 91%; }

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.metric {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255,255,255,0.025);
}

.metric span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.metric strong {
    display: block;
    margin-top: 4px;
    font-size: 19px;
}

.metric small {
    color: var(--accent-2);
    font-size: 10px;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(36,214,201,0.15);
    border-radius: 10px;
    background: rgba(36,214,201,0.035);
}

.ai-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(124,92,255,0.2);
    color: white;
}

.ai-status strong {
    font-size: 11px;
}

.ai-status p {
    color: var(--muted);
    font-size: 9px;
}

.check {
    margin-left: auto;
    color: var(--accent-2);
}

.floating-card {
    position: absolute;
    z-index: 4;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(10,13,22,0.92);
    backdrop-filter: blur(12px);
    font-size: 11px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.floating-card span {
    color: var(--accent-2);
    margin-right: 5px;
}

.floating-one {
    left: -5px;
    top: 110px;
}

.floating-two {
    right: -10px;
    bottom: 100px;
}


/* TRUST */

.trust-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
}

.section-mini-title {
    text-align: center;
    color: #687184;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.trust-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #697386;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* PROBLEM */

.problem-section {
    background: var(--bg-soft);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.problem-card {
    padding: 28px;
    min-height: 210px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,0.018);
    transition: 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124,92,255,0.4);
}

.problem-number {
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 45px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
}

.problem-card p {
    color: var(--muted);
    font-size: 13px;
}


/* AI SYSTEM */

.growth-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.flow-item {
    min-height: 200px;
    padding: 25px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--card);
}

.flow-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(124,92,255,0.12);
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 45px;
}

.flow-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.flow-item p {
    color: var(--muted);
    font-size: 11px;
}

.flow-arrow {
    color: #566074;
    font-size: 20px;
}


/* SOLUTIONS */

.solutions-section {
    background: var(--bg-soft);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.solution-card {
    min-height: 280px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--card);
    transition: 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(124,92,255,0.4);
}

.solution-card.featured {
    background:
        radial-gradient(circle at top right, rgba(124,92,255,0.15), transparent 50%),
        var(--card);
}

.solution-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(124,92,255,0.12);
    color: var(--accent-2);
    margin-bottom: 55px;
}

.solution-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.solution-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.learn {
    display: inline-block;
    margin-top: 22px;
    color: #dbe0eb;
    font-size: 11px;
    font-weight: 700;
}


/* CTA */

.cta-section {
    padding: 100px 0;
}

.cta-box {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 70px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 50%, rgba(124,92,255,0.2), transparent 35%),
        linear-gradient(120deg, #0b0f19, #111627);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-content h2 {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.cta-content p {
    color: var(--muted);
    max-width: 570px;
    margin-bottom: 28px;
}

.cta-orb {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(124,92,255,0.35);
    display: grid;
    place-items: center;
    box-shadow: 0 0 100px rgba(124,92,255,0.15);
}

.orb-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 40px;
    background: radial-gradient(circle, rgba(124,92,255,0.4), rgba(36,214,201,0.05));
}


/* FOOTER */

.footer {
    border-top: 1px solid var(--border);
    padding-top: 75px;
    background: #03050a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-brand p {
    max-width: 330px;
    color: var(--muted);
    font-size: 13px;
    margin: 18px 0 12px;
}

.footer-brand a:not(.logo) {
    color: #aab2c2;
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links h4 {
    font-size: 12px;
    margin-bottom: 10px;
}

.footer-links a,
.footer-links p {
    color: var(--muted);
    font-size: 12px;
}

.footer-links a:hover {
    color: white;
}

.footer-cta {
    color: var(--accent-2) !important;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #646d7d;
    font-size: 10px;
}


/* FLOATING CONTACT */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-contact a {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: #080a10;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .nav-links {
        gap: 14px;
    }

    .hero-grid {
        gap: 30px;
    }

    .growth-flow {
        grid-template-columns: repeat(3, 1fr);
    }

    .flow-arrow {
        display: none;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 4%;
        right: 4%;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        background: #090c14;
        border: 1px solid var(--border);
        border-radius: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 10px;
    }

    .nav-links .nav-cta {
        text-align: center;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        letter-spacing: -2.5px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .floating-one {
        left: 0;
    }

    .floating-two {
        right: 0;
    }

    .cta-orb {
        opacity: 0.25;
        right: -60px;
    }
}


@media (max-width: 600px) {

    .section {
        padding: 75px 0;
    }

    .hero-content h1 {
        font-size: 47px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 25px;
    }

    .trust-items {
        justify-content: center;
        text-align: center;
    }

    .problem-grid,
    .solutions-grid,
    .growth-flow {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: auto;
    }

    .dashboard-card {
        padding: 17px;
    }

    .floating-card {
        display: none;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
```
```css
/* =========================================
   AI GROWTH PAGE
========================================= */

.ai-flow-visual {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-node {
    min-width: 78px;
    padding: 14px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.025);
    color: #dbe0eb;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
}

.ai-node span {
    display: block;
    color: var(--accent-2);
    font-size: 13px;
    margin-bottom: 5px;
}

.active-node {
    border-color: rgba(124,92,255,0.55);
    background: rgba(124,92,255,0.12);
    box-shadow: 0 0 30px rgba(124,92,255,0.12);
}

.ai-connector {
    width: 15px;
    height: 1px;
    background: rgba(255,255,255,0.15);
}


/* BUSINESS MODEL */

.business-model {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--card);
}

.model-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 75px;
    border-bottom: 1px solid var(--border);
}

.model-row:last-child {
    border-bottom: 0;
}

.model-label {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-right: 1px solid var(--border);
    background: rgba(255,255,255,0.018);
}

.model-content {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    color: #b5bdcc;
    font-size: 13px;
}


/* AI PAGE RESPONSIVE */

@media (max-width: 800px) {

    .ai-flow-visual {
        gap: 6px;
    }

    .ai-node {
        min-width: 70px;
    }

    .ai-connector {
        display: none;
    }

    .model-row {
        grid-template-columns: 1fr;
    }

    .model-label {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

}


@media (max-width: 500px) {

    .ai-flow-visual {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-node {
        width: 100%;
    }

}
```
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    position: relative;
    padding: 150px 0 90px;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -220px;
    right: -120px;
    background: radial-gradient(
        circle,
        rgba(124, 92, 255, 0.20),
        transparent 70%
    );
    pointer-events: none;
}

.contact-hero-content {
    max-width: 900px;
}

.contact-hero h1 {
    max-width: 850px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin: 20px 0;
}

.contact-hero h1 span,
.contact-info h2 span,
.section-heading h2 span {
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent-2)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-content > p {
    max-width: 760px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    font-size: 13px;
}

.hero-badge span {
    color: var(--accent-2);
    font-weight: 700;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-section {
    padding: 70px 0 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

.contact-info h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 18px 0;
}

.contact-info > p {
    max-width: 560px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 38px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 92, 255, 0.55);
    background: rgba(124, 92, 255, 0.06);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(124, 92, 255, 0.12);
    font-size: 20px;
}

.contact-card small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 5px;
}

.contact-card strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   RESPONSE BOX
========================================================= */

.response-box {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 25px;
    padding: 18px;
    border-radius: 15px;
    background: rgba(36, 214, 201, 0.045);
    border: 1px solid rgba(36, 214, 201, 0.14);
}

.response-dot {
    width: 9px;
    height: 9px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 12px rgba(36, 214, 201, 0.7);
}

.response-box strong {
    font-size: 14px;
}

.response-box p {
    margin: 5px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    position: relative;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -150px;
    right: -100px;
    background: radial-gradient(
        circle,
        rgba(124, 92, 255, 0.14),
        transparent 70%
    );
    pointer-events: none;
}

.form-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.form-label {
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.form-header h2 {
    font-size: 30px;
    margin: 10px 0;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 12px;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: 0.25s ease;
}

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    min-height: 135px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.form-group select option {
    background: #0b0e17;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(124, 92, 255, 0.045);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.08);
}


/* =========================================================
   FORM BUTTON
========================================================= */

.form-submit {
    width: 100%;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        var(--accent),
        #5b45d9
    );
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.form-submit span {
    font-size: 20px;
    transition: 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(124, 92, 255, 0.25);
}

.form-submit:hover span {
    transform: translateX(4px);
}

.form-note {
    margin: 14px 0 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   BENEFITS
========================================================= */

.contact-benefits {
    padding: 110px 0;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading.center {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 16px 0;
}

.section-heading p {
    color: var(--text-muted);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 28px;
    min-height: 260px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    transition: 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 92, 255, 0.45);
    background: rgba(124, 92, 255, 0.045);
}

.benefit-number {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {
    padding: 110px 0;
}

.final-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border: 1px solid var(--border);
    border-radius: 25px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(124, 92, 255, 0.14),
            transparent 40%
        ),
        rgba(255, 255, 255, 0.025);
}

.final-cta-box h2 {
    max-width: 700px;
    margin: 15px 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.final-cta-box p {
    max-width: 620px;
    color: var(--text-muted);
    line-height: 1.7;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}


/* =========================================================
   FLOATING ACTIONS
========================================================= */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.04);
}

.call-btn {
    background: var(--accent);
    color: #ffffff;
}

.whatsapp-btn {
    background: #1fa855;
    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        max-width: 800px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 800px) {

    .contact-hero {
        padding: 120px 0 70px;
    }

    .contact-hero h1 {
        letter-spacing: -1.5px;
    }

    .contact-section {
        padding: 50px 0 80px;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-benefits {
        padding: 80px 0;
    }

    .final-cta-box {
        padding: 35px 25px;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        padding: 100px 0 55px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero-content > p {
        font-size: 15px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-card {
        padding: 15px;
    }

    .contact-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }

    .section-heading.center {
        margin-bottom: 35px;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

}
/* =========================================================
   HEADER / NAVIGATION FIX
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(5, 7, 13, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;

    color: #ffffff;
    text-decoration: none;

    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;

    white-space: nowrap;
}

.logo span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.main-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    padding: 8px 0;

    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.main-nav a.active::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent-2)
    );
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
}


/* =========================================================
   HEADER RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .nav-container {
        min-height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;

        top: 70px;
        left: 20px;
        right: 20px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 15px;

        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 16px;

        background: rgba(8, 10, 18, 0.97);

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .main-nav a.active::after {
        display: none;
    }
}


@media (max-width: 600px) {

    .nav-container {
        width: min(100% - 28px, 1200px);
    }

    .logo {
        font-size: 24px;
    }

    .main-nav {
        left: 14px;
        right: 14px;
    }
}
/* =========================================================
   SERVICES PAGE
========================================================= */

.services-hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -260px;
    right: -150px;

    background: radial-gradient(
        circle,
        rgba(124, 92, 255, 0.20),
        transparent 70%
    );

    pointer-events: none;
}

.services-hero-content {
    max-width: 900px;
}

.services-hero h1 {
    max-width: 850px;

    margin: 20px 0;

    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.04;

    letter-spacing: -2.5px;
}

.services-hero h1 span {
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent-2)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-content > p {
    max-width: 750px;

    color: var(--text-muted);

    font-size: 18px;
    line-height: 1.8;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.solutions-section {
    padding: 80px 0 120px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin: 15px 0;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.1;

    letter-spacing: -1.5px;
}

.section-heading h2 span {
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent-2)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    max-width: 680px;

    color: var(--text-muted);

    line-height: 1.8;
}


.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    display: block;

    padding: 32px;

    min-height: 355px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -130px;
    right: -100px;

    background: radial-gradient(
        circle,
        rgba(124, 92, 255, 0.12),
        transparent 70%
    );

    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(124, 92, 255, 0.5);

    background:
        linear-gradient(
            145deg,
            rgba(124,92,255,0.07),
            rgba(255,255,255,0.02)
        );
}

.featured-service {
    border-color: rgba(124, 92, 255, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(124,92,255,0.08),
            rgba(36,214,201,0.025)
        );
}

.service-card-top {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.service-number {
    color: var(--accent);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--text-muted);

    transition: 0.3s ease;
}

.service-card:hover .service-arrow {
    color: #ffffff;

    border-color: var(--accent);

    transform: translateX(3px);
}

.service-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    border: 1px solid rgba(124,92,255,0.25);
    border-radius: 16px;

    background: rgba(124,92,255,0.10);

    color: var(--accent-2);

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.service-card h3 {
    position: relative;

    margin: 0 0 12px;

    color: var(--text);

    font-size: 23px;
}

.service-card p {
    position: relative;

    max-width: 580px;

    margin: 0;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.75;
}

.service-tags {
    position: relative;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.service-tags span {
    padding: 6px 10px;

    border: 1px solid var(--border);
    border-radius: 100px;

    color: rgba(255,255,255,0.62);

    font-size: 10px;
}

.service-link {
    position: absolute;

    right: 32px;
    bottom: 30px;

    color: var(--accent-2);

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PROCESS
========================================================= */

.service-process {
    padding: 110px 0;

    background: rgba(255,255,255,0.015);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading.center {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.process-card {
    padding: 28px;

    min-height: 250px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: rgba(255,255,255,0.025);

    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);

    border-color: rgba(124,92,255,0.45);
}

.process-card > span {
    display: block;

    margin-bottom: 35px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 700;
}

.process-card h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.process-card p {
    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta {
    padding: 110px 0;
}

.services-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border: 1px solid var(--border);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(124,92,255,0.15),
            transparent 40%
        ),
        rgba(255,255,255,0.025);
}

.services-cta-box h2 {
    max-width: 700px;

    margin: 15px 0;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;
}

.services-cta-box h2 span {
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent-2)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-cta-box p {
    max-width: 650px;

    color: var(--text-muted);

    line-height: 1.7;
}

.services-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cta-box {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 800px) {

    .services-hero {
        padding: 120px 0 70px;
    }

    .services-hero h1 {
        letter-spacing: -1.5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .solutions-section {
        padding: 60px 0 80px;
    }

    .service-process {
        padding: 80px 0;
    }

    .services-cta {
        padding: 80px 0;
    }

    .services-cta-box {
        padding: 35px 25px;
    }

}


@media (max-width: 600px) {

    .services-hero {
        padding: 100px 0 55px;
    }

    .services-hero h1 {
        font-size: 42px;
    }

    .services-hero-content > p {
        font-size: 15px;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .services-hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .service-card {
        min-height: 370px;

        padding: 25px;
    }

    .service-link {
        right: 25px;
        bottom: 25px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .services-cta-actions .btn {
        width: 100%;

        text-align: center;
    }

}
/* =========================================
   WEB DEVELOPMENT PAGE FIX
   ========================================= */

body {
    margin: 0;
    padding: 0;
    background: #05070d;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}


/* ---------- HEADER ---------- */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: rgba(5, 7, 13, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.site-header .nav-container {
    width: min(1180px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-header .logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-header .logo span {
    color: #7c5cff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #b8c0d4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.main-nav .nav-cta {
    padding: 11px 20px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #7c5cff, #24d6c9);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}


/* ---------- HERO ---------- */

.services-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 90px 20px;
    box-sizing: border-box;
}

.services-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -180px;
    right: -120px;
    background: rgba(124, 92, 255, 0.16);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.services-hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -220px;
    left: -150px;
    background: rgba(36, 214, 201, 0.10);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #24d6c9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.services-hero h1 {
    max-width: 900px;
    margin: 0 0 25px;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

.services-hero h1 span {
    display: inline;
    background: linear-gradient(
        90deg,
        #7c5cff,
        #24d6c9
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    max-width: 720px;
    margin: 0 0 35px;
    color: #9ca7bf;
    font-size: 18px;
    line-height: 1.8;
}


/* ---------- BUTTONS ---------- */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #7c5cff,
        #5d8cff
    );
    box-shadow: 0 10px 30px rgba(124, 92, 255, 0.22);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(124, 92, 255, 0.35);
}

.secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}


/* ---------- MOBILE ---------- */

@media (max-width: 900px) {

    .site-header .nav-container {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        background: #080b14;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 10px;
    }

    .main-nav .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .services-hero {
        min-height: auto;
        padding: 80px 20px;
    }

    .services-hero h1 {
        font-size: clamp(42px, 11vw, 65px);
        letter-spacing: -2px;
    }
}


@media (max-width: 600px) {

    .site-header .nav-container {
        width: calc(100% - 30px);
    }

    .services-hero {
        padding: 65px 15px;
    }

    .services-hero h1 {
        font-size: 44px;
        line-height: 1.02;
    }

    .services-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}
/* =========================================
   ZYNKAURA FOOTER FIX
   ========================================= */

.site-footer {
    width: 100%;
    margin-top: 80px;
    padding: 70px 20px 0;
    background: #070a12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.footer-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 55px;
    box-sizing: border-box;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 27px;
    font-weight: 800;
}

.footer-brand .logo span {
    color: #7c5cff;
}

.footer-brand p {
    max-width: 330px;
    margin: 0;
    color: #8e99b2;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h3,
.footer-contact h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.footer-links a,
.footer-contact a {
    display: inline-block;
    margin-bottom: 13px;
    color: #8e99b2;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact a {
    word-break: break-word;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #667089;
    font-size: 12px;
}


/* =========================================
   FOOTER MOBILE
   ========================================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .site-footer {
        margin-top: 60px;
        padding: 55px 18px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links,
    .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        padding: 18px 0;
    }

}
/* =========================================================
   WEB DEVELOPMENT PAGE - COMPLETE LAYOUT FIX
   ========================================================= */

/* ---------- GLOBAL ---------- */

.web-development-page {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}


/* ---------- COMMON CONTAINER ---------- */

.services-hero .hero-content,
.solutions-section > .section-heading,
.solutions-section > .services-grid,
.service-process > .section-heading,
.service-process > .process-grid,
.services-cta .cta-content {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* ---------- HERO ---------- */

.services-hero {
    width: 100%;
    min-height: 680px;
    padding: 120px 0 100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.services-hero .hero-content {
    max-width: 1180px;
}

.hero-eyebrow {
    margin-bottom: 22px;
}

.services-hero h1 {
    max-width: 950px;
    margin: 0 0 28px;
}

.services-hero p {
    max-width: 720px;
    margin: 0 0 38px;
}


/* ---------- ALL SECTIONS ---------- */

.solutions-section,
.service-process {
    width: 100%;
    padding: 110px 0;
    box-sizing: border-box;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading .section-label,
.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #24d6c9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-heading h2 {
    max-width: 850px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.section-heading h2 span {
    background: linear-gradient(
        90deg,
        #7c5cff,
        #24d6c9
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading p {
    max-width: 720px;
    margin: 0;
    color: #929db5;
    font-size: 17px;
    line-height: 1.8;
}


/* ---------- SERVICE GRID ---------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* ---------- SERVICE CARD ---------- */

.service-card {
    position: relative;
    min-height: 300px;
    padding: 32px;
    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at top right,
            rgba(124, 92, 255, 0.10),
            transparent 45%
        ),
        #0b0e17;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 92, 255, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(124, 92, 255, 0.35);
    border-radius: 16px;

    color: #24d6c9;
    background: rgba(124, 92, 255, 0.08);

    font-size: 16px;
    font-weight: 800;
}

.service-card h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    color: #98a3ba;
    font-size: 15px;
    line-height: 1.75;
}

.service-card .service-link {
    display: inline-block;
    margin-top: 25px;

    color: #24d6c9;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.service-card .service-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* ---------- PROCESS ---------- */

.service-process {
    background: #070a12;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-item {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.process-item > span {
    display: inline-flex;
    margin-bottom: 25px;

    color: #24d6c9;
    font-size: 14px;
    font-weight: 800;
}

.process-item h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 19px;
}

.process-item p {
    margin: 0;
    color: #8f9ab2;
    font-size: 14px;
    line-height: 1.7;
}


/* ---------- CTA ---------- */

.services-cta {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.services-cta::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    top: -250px;
    right: -150px;

    background: rgba(124, 92, 255, 0.12);
    filter: blur(100px);
    border-radius: 50%;

    pointer-events: none;
}

.services-cta .cta-content {
    position: relative;
    z-index: 2;
}

.services-cta h2 {
    max-width: 850px;
    margin: 0 0 22px;

    color: #ffffff;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.services-cta h2 span {
    background: linear-gradient(
        90deg,
        #7c5cff,
        #24d6c9
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-cta p {
    max-width: 650px;
    margin: 0 0 32px;

    color: #929db5;
    font-size: 17px;
    line-height: 1.8;
}


/* ---------- FOOTER ---------- */

.site-footer {
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ---------- DESKTOP ---------- */

@media (min-width: 901px) {

    .services-grid .service-card {
        min-height: 300px;
    }

}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .services-hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .solutions-section,
    .service-process {
        padding: 85px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-cta {
        padding: 90px 0;
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .services-hero .hero-content,
    .solutions-section > .section-heading,
    .solutions-section > .services-grid,
    .service-process > .section-heading,
    .service-process > .process-grid,
    .services-cta .cta-content,
    .footer-container {
        width: calc(100% - 30px);
    }


    .services-hero {
        padding: 75px 0 70px;
    }


    .services-hero h1 {
        font-size: 43px;
        line-height: 1.03;
        letter-spacing: -1.8px;
    }


    .services-hero p {
        font-size: 15px;
        line-height: 1.7;
    }


    .solutions-section,
    .service-process {
        padding: 70px 0;
    }


    .section-heading {
        margin-bottom: 35px;
    }


    .section-heading h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }


    .section-heading p {
        font-size: 15px;
    }


    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .service-card {
        min-height: auto;
        padding: 26px;
    }


    .service-card .service-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 22px;
    }


    .service-card h3 {
        font-size: 19px;
    }


    .service-card p {
        font-size: 14px;
    }


    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .process-item {
        padding: 25px;
    }


    .services-cta {
        padding: 75px 0;
    }


    .services-cta h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }


    .services-cta p {
        font-size: 15px;
    }

}