* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 200vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #111111;
}

/* Floating sticky header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 24px;
}

/* Main navigation */
.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 1180px;
    min-height: 76px;
    margin: 0 auto;
    padding: 10px 14px 10px 22px;

    background-color: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Logo and brand name */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;
    text-decoration: none;
}

.brand-logo {
    width: 55px;
    height: 55px;
    padding: 7px;

    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Desktop navigation links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-links a {
    display: block;
    padding: 11px 14px;

    color: #d4d4d4;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;

    border-radius: 25px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #111111;
    background-color: #ffffff;
}

/* Contact button */
.nav-links .contact-button {
    padding: 13px 22px;
    color: #111111;
    background-color: #ffffff;
}

.nav-links .contact-button:hover {
    color: #ffffff;
    background-color: #333333;
}

.nav-links .client-hub-link {
    color: #ffffff;
    background-color: #262626;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;

    padding: 10px;

    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background-color: #ffffff;
    border-radius: 2px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Hamburger changes into an X */
.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile layout */
@media (max-width: 1100px) {
    .site-header {
        padding: 12px;
    }

    .navbar {
        min-height: 68px;
        padding: 7px 18px;

        justify-content: center;
        border-radius: 34px;
    }

    /* Centre logo and brand name */
    .brand {
        justify-content: center;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
        padding: 6px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    /* Position hamburger on the right */
    .menu-toggle {
        position: absolute;
        right: 18px;
        z-index: 2;

        display: flex;
    }

    /* Mobile menu slides in from the right */
    .nav-links {
        position: fixed;
        top: 92px;
        left: auto;
        right: 12px;
        z-index: 1;

        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 8px;

        width: min(360px, calc(100vw - 24px));
        max-height: calc(100dvh - 104px);
        margin: 0;
        padding: 16px;

        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        pointer-events: none;

        opacity: 0;
        transform: translateX(calc(100% + 24px));

        background-color: #111111;
        border: 1px solid #2a2a2a;
        border-radius: 24px;
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);

        transition:
            opacity 0.25s ease,
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.42s ease;
    }

    /* Open mobile menu */
    .nav-links.is-open {
        visibility: visible;
        pointer-events: auto;

        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li {
        width: auto;
        text-align: center;
    }

    .nav-links a {
        display: inline-block;
        width: auto;
        text-align: center;
    }
}

@media (max-width: 1100px) and (prefers-reduced-motion: reduce) {
    .nav-links {
        transition: none;
    }
}





/* =========================
   Footer
========================= */

.site-footer {
    margin: 80px 12px 12px;
    padding: 70px 24px 24px;

    color: #ffffff;
    background-color: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 32px;
}

.footer-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
}

/* Footer branding */
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo {
    width: 52px;
    height: 52px;
    padding: 7px;

    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
}

.footer-brand p {
    max-width: 380px;
    margin: 22px 0;

    color: #bcbcbc;
    line-height: 1.7;
}

/* Start a Project button */
.footer-contact-button {
    display: inline-block;
    padding: 13px 22px;

    color: #111111 !important;
    font-weight: 600;

    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 25px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.footer-contact-button:hover {
    color: #ffffff !important;
    background-color: transparent;
}

/* Social media icons */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 22px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.footer-socials a:hover {
    color: #111111;
    background-color: #ffffff;
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-socials svg rect,
.footer-socials svg circle {
    fill: none;
}

.footer-socials svg .social-icon-fill {
    fill: currentColor;
    stroke: none;
}

/* Footer columns */
.footer-column h2 {
    margin: 0 0 22px;

    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.75;

    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 1;
}

/* Footer copyright */
.footer-bottom {
    padding-top: 24px;

    color: #bcbcbc;
    font-size: 0.85rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    margin: 0;
}

/* Tablet layout */
@media (max-width: 900px) {
    .site-footer {
        margin-top: 60px;
        padding: 50px 24px 24px;
        border-radius: 26px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
}

/* Mobile layout */
@media (max-width: 600px) {
    .site-footer {
        margin: 50px 8px 8px;
        padding: 40px 22px 22px;
        border-radius: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 40px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Ensure every footer column is displayed */
.site-footer,
.footer-container,
.footer-top {
    height: auto;
    overflow: visible;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand {
    flex: 2 1 300px;
}

.footer-column {
    display: block;
    flex: 1 1 150px;
    min-width: 150px;
}

.footer-column h2 {
    margin: 0 0 22px;

    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a {
    display: inline-block;

    color: #ffffff;
    text-decoration: none;
    opacity: 0.75;

    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 1;
}

/* Tablet footer */
@media (max-width: 900px) {
    .site-footer {
        margin-top: 60px;
        padding: 50px 24px 24px;
        border-radius: 26px;
    }

    .footer-brand {
        flex-basis: 100%;
    }

    .footer-column {
        flex: 1 1 200px;
    }
}

/* Mobile footer */
@media (max-width: 600px) {
    .site-footer {
        margin: 50px 8px 8px;
        padding: 40px 22px 22px;
        border-radius: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 38px;
        padding-bottom: 40px;
    }

    .footer-brand,
    .footer-column {
        flex: none;
        width: 100%;
        min-width: 0;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* =========================
   Hero
========================= */

.hero {
    padding: 70px 24px 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    align-items: center;
    gap: 80px;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-content {
    max-width: 660px;
}

.hero-label {
    display: inline-block;
    margin: 0 0 24px;
    padding: 9px 15px;

    color: #111111;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;

    border: 1px solid #d7d7d7;
    border-radius: 30px;
}

.hero h1 {
    max-width: 700px;
    margin: 0;

    color: #111111;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.hero h1 span {
    display: block;
    color: #777777;
}

.hero-description {
    max-width: 590px;
    margin: 30px 0 0;

    color: #555555;
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 25px;

    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
}

.hero-primary-button {
    color: #ffffff;
    background-color: #111111;
    border: 1px solid #111111;
}

.hero-primary-button:hover {
    color: #111111;
    background-color: #ffffff;
}

.hero-secondary-button {
    color: #111111;
    background-color: #ffffff;
    border: 1px solid #cfcfcf;
}

.hero-secondary-button:hover {
    border-color: #111111;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 35px;

    color: #606060;
    font-size: 0.85rem;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-features span::before {
    content: "";
    width: 6px;
    height: 6px;

    background-color: #111111;
    border-radius: 50%;
}

/* Website preview */
.hero-visual {
    position: relative;
}

.website-preview {
    overflow: hidden;
    color: #ffffff;
    background-color: #111111;
    border: 1px solid #292929;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);

    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.website-preview:hover {
    transform: rotate(0);
}

.preview-toolbar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 18px;

    border-bottom: 1px solid #303030;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 7px;
    height: 7px;

    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0.55;
}

.preview-address {
    flex: 1;
    padding: 7px 12px;

    color: #888888;
    font-size: 0.72rem;
    text-align: center;

    background-color: #1c1c1c;
    border-radius: 20px;
}

.preview-content {
    min-height: 440px;
    padding: 55px 42px 35px;
}

.preview-label {
    margin: 0 0 18px;

    color: #a0a0a0;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.preview-content h2 {
    max-width: 390px;
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.preview-content > p:not(.preview-label) {
    max-width: 350px;
    margin: 20px 0;

    color: #a8a8a8;
    line-height: 1.6;
}

.preview-button {
    display: inline-block;
    padding: 11px 18px;

    color: #111111;
    font-size: 0.8rem;
    font-weight: 600;

    background-color: #ffffff;
    border-radius: 22px;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 45px;
}

.preview-cards div {
    height: 65px;

    background: linear-gradient(
        145deg,
        #292929,
        #191919
    );

    border: 1px solid #333333;
    border-radius: 12px;
}

.hero-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;

    display: flex;
    flex-direction: column;
    padding: 16px 20px;

    color: #111111;
    background-color: #ffffff;
    border: 1px solid #d7d7d7;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-badge strong {
    font-size: 1.2rem;
}

.hero-badge span {
    color: #666666;
    font-size: 0.75rem;
}

/* Tablet */
@media (max-width: 900px) {
    .hero {
        padding: 55px 24px 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-visual {
        width: min(100%, 620px);
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        padding: 40px 20px 65px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-features {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .website-preview {
        border-radius: 22px;
        transform: none;
    }

    .preview-content {
        min-height: 370px;
        padding: 40px 25px 28px;
    }

    .preview-content h2 {
        font-size: 2.4rem;
    }

    .hero-badge {
        right: 12px;
        bottom: -25px;
    }
}




/* =========================
   Web Design Introduction
========================= */

.design-section {
    position: relative;
    overflow: hidden;
    padding: 100px 24px;

    background-color: #f7f7f7;
}

.design-container {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Subtle background decoration */
.design-section::before,
.design-section::after {
    content: "";
    position: absolute;

    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0)
    );

    border-radius: 50%;
    pointer-events: none;
}

.design-section::before {
    top: 80px;
    right: -180px;

    width: 420px;
    height: 420px;
}

.design-section::after {
    bottom: 120px;
    left: -160px;

    width: 360px;
    height: 360px;
}

/* Introduction and feature cards */
.design-introduction {
    display: grid;
    grid-template-columns: minmax(400px, 0.95fr) minmax(0, 1.45fr);
    align-items: start;
    gap: 48px;
}

.design-copy {
    min-width: 0;
}

.section-label {
    margin: 0 0 18px;

    color: #666666;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.design-copy h2 {
    margin: 0;

    color: #111111;
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.design-copy h2 span {
    display: block;
    color: #767676;
}

.design-copy > p:not(.section-label) {
    margin: 28px 0 24px;

    color: #555555;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #111111;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

/* Feature cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    min-height: 275px;
    padding: 28px;

    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 26px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.feature-card:hover {
    color: #ffffff;
    background-color: #111111;
    border-color: #111111;
    transform: translateY(-7px);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;

    background-color: #111111;
    border-radius: 50%;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.feature-card:hover .feature-number {
    color: #111111;
    background-color: #ffffff;
}

.feature-card h3 {
    margin: 42px 0 14px;

    font-size: 1.15rem;
    line-height: 1.25;
}

.feature-card p {
    margin: 0;

    color: #666666;
    font-size: 0.9rem;
    line-height: 1.65;

    transition: color 0.25s ease;
}

.feature-card:hover p {
    color: #cfcfcf;
}

/* Suffolk banner */
.location-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    margin: 80px 0;
    padding: 28px 34px;

    color: #ffffff;
    background-color: #111111;
    border-radius: 50px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.location-label {
    margin: 0 0 6px;

    color: #a5a5a5;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.location-banner h2 {
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.location-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 64px;
    height: 64px;

    color: #111111;
    font-weight: 800;

    background-color: #ffffff;
    border-radius: 50%;
}

/* Main service heading */
.service-heading {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.service-heading h2 {
    margin: 0;

    color: #111111;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.service-heading h2 span {
    display: block;
    color: #777777;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 25px;

    margin-top: 30px;
}

.service-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #222222;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-benefits span::before {
    content: "✓";

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

    width: 20px;
    height: 20px;

    color: #ffffff;
    font-size: 0.7rem;

    background-color: #111111;
    border-radius: 50%;
}

.service-description {
    max-width: 760px;
    margin: 28px auto 0;

    color: #606060;
    line-height: 1.75;
}

/* Tablet */
@media (max-width: 1050px) {
    .design-introduction {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 700px) {
    .design-section {
        padding: 70px 20px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .design-copy h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .feature-card {
        min-height: auto;
    }

    .feature-card h3 {
        margin-top: 30px;
    }

    .location-banner {
        align-items: flex-start;
        flex-direction: column;

        margin: 60px 0;
        padding: 28px;

        border-radius: 28px;
    }

    .location-badge {
        width: 52px;
        height: 52px;
    }

    .service-benefits {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* Pricing call-to-action */
.pricing-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    max-width: 900px;
    margin: 0 auto;
    padding: 32px 36px;

    color: #ffffff;
    background-color: #111111;
    border: 1px solid #292929;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}

.pricing-callout-label {
    margin: 0 0 8px;

    color: #a7a7a7;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-callout h2 {
    max-width: 580px;
    margin: 0;

    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.view-pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 12px;

    padding: 15px 24px;

    color: #111111;
    font-weight: 700;
    text-decoration: none;

    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 30px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.view-pricing-button span {
    transition: transform 0.2s ease;
}

.view-pricing-button:hover {
    color: #ffffff;
    background-color: transparent;
    transform: translateY(-2px);
}

.view-pricing-button:hover span {
    transform: translateX(5px);
}

/* Mobile pricing callout */
@media (max-width: 700px) {
    .pricing-callout {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;

        padding: 28px;
    }

    .view-pricing-button {
        width: 100%;
    }
}


/* =========================
   Client Hub Showcase
========================= */

.client-hub-showcase {
    padding: 110px 24px;
    color: #ffffff;
    background: #111111;
}

.client-hub-container {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 76px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.client-hub-eyebrow {
    margin: 0 0 20px;
    color: #b8b8b8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.client-hub-copy h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.client-hub-copy h2 span {
    display: block;
    color: #8d8d8d;
}

.client-hub-introduction {
    max-width: 590px;
    margin: 28px 0 36px;
    color: #c4c4c4;
    font-size: 1.05rem;
    line-height: 1.75;
}

.client-hub-features {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #333333;
}

.client-hub-features li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #333333;
}

.client-hub-features li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #111111;
    font-size: 0.72rem;
    font-weight: 800;
    background: #ffffff;
    border-radius: 50%;
}

.client-hub-features strong {
    display: block;
    margin: 0 0 7px;
    font-size: 1rem;
}

.client-hub-features p {
    margin: 0;
    color: #a9a9a9;
    font-size: 0.92rem;
    line-height: 1.55;
}

.client-hub-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.client-hub-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 24px;
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.client-hub-button:hover {
    color: #ffffff;
    background: transparent;
    transform: translateY(-3px);
}

.client-hub-actions p {
    max-width: 180px;
    margin: 0;
    color: #8f8f8f;
    font-size: 0.78rem;
    line-height: 1.45;
}

.client-hub-preview {
    position: relative;
    min-width: 0;
    padding: 18px;
    background: linear-gradient(145deg, #242424, #0a0a0a);
    border: 1px solid #3b3b3b;
    border-radius: 32px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
    transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.client-hub-browser {
    overflow: hidden;
    color: #111111;
    background: #f3f3f1;
    border-radius: 20px;
}

.client-hub-browser-bar {
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    align-items: center;
    gap: 12px;
    height: 48px;
    padding: 0 16px;
    background: #ffffff;
    border-bottom: 1px solid #dedede;
}

.client-hub-browser-bar > div {
    display: flex;
    gap: 6px;
}

.client-hub-browser-bar > div span {
    width: 8px;
    height: 8px;
    background: #c8c8c8;
    border-radius: 50%;
}

.client-hub-browser-bar p {
    margin: 0;
    color: #6b6b6b;
    font-size: 0.67rem;
    text-align: center;
}

.client-hub-secure {
    color: #585858;
    font-size: 0.64rem;
    font-weight: 700;
    text-align: right;
}

.client-hub-dashboard {
    display: grid;
    grid-template-columns: 125px 1fr;
    min-height: 410px;
    padding: 10px;
}

.client-hub-dashboard aside {
    padding: 18px 12px;
    background: #111111;
    border-radius: 14px;
}

.client-hub-preview-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    color: #ffffff;
}

.client-hub-preview-brand img {
    width: 28px;
    height: 28px;
    padding: 4px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
}

.client-hub-preview-brand strong,
.client-hub-preview-brand span {
    display: block;
    white-space: nowrap;
}

.client-hub-preview-brand strong {
    font-size: 0.58rem;
}

.client-hub-preview-brand span {
    margin-top: 2px;
    color: #9b9b9b;
    font-size: 0.48rem;
}

.client-hub-preview-nav {
    width: 84%;
    height: 11px;
    margin: 0 0 15px 5px;
    background: #343434;
    border-radius: 10px;
}

.client-hub-preview-nav.active {
    width: 100%;
    height: 28px;
    margin-left: 0;
    background: #ffffff;
}

.client-hub-preview-main {
    min-width: 0;
    padding: 32px 26px;
}

.client-hub-preview-main > p {
    margin: 0 0 8px;
    color: #777777;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.client-hub-preview-main h3 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 2.3vw, 2.2rem);
    letter-spacing: -0.045em;
}

.client-hub-preview-subtitle {
    display: block;
    color: #888888;
    font-size: 0.62rem;
}

.client-hub-preview-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0 12px;
}

.client-hub-preview-cards div,
.client-hub-progress-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.client-hub-preview-cards div {
    padding: 14px;
}

.client-hub-preview-cards span,
.client-hub-preview-cards strong {
    display: block;
}

.client-hub-preview-cards span {
    margin-bottom: 6px;
    color: #8a8a8a;
    font-size: 0.52rem;
}

.client-hub-preview-cards strong {
    font-size: 0.7rem;
}

.client-hub-progress-card {
    padding: 18px;
}

.client-hub-progress-card > div:first-child {
    display: flex;
    justify-content: space-between;
    color: #707070;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.client-hub-progress-card > div:first-child strong {
    color: #111111;
    font-size: 0.7rem;
}

.client-hub-progress-card h4 {
    margin: 8px 0 16px;
    font-size: 0.84rem;
}

.client-hub-progress-track {
    height: 6px;
    overflow: hidden;
    background: #dddddd;
    border-radius: 99px;
}

.client-hub-progress-track span {
    display: block;
    width: 75%;
    height: 100%;
    background: #111111;
}

.client-hub-milestones {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.client-hub-milestones span {
    width: 13px;
    height: 13px;
    background: #dddddd;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #cfcfcf;
}

.client-hub-milestones span.complete {
    background: #111111;
    box-shadow: 0 0 0 1px #111111;
}

.client-hub-live-badge {
    position: absolute;
    right: -18px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    color: #111111;
    font-size: 0.76rem;
    font-weight: 800;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
}

.client-hub-live-badge span {
    width: 8px;
    height: 8px;
    background: #38a169;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.16);
}

@media (max-width: 1050px) {
    .client-hub-container {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .client-hub-copy {
        max-width: 720px;
    }

    .client-hub-preview {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 650px) {
    .client-hub-showcase {
        padding: 76px 18px;
    }

    .client-hub-copy h2 {
        font-size: clamp(2.45rem, 13vw, 3.6rem);
    }

    .client-hub-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .client-hub-actions p {
        max-width: none;
    }

    .client-hub-preview {
        padding: 9px;
        border-radius: 22px;
    }

    .client-hub-browser {
        border-radius: 15px;
    }

    .client-hub-browser-bar {
        grid-template-columns: 42px 1fr 42px;
        padding: 0 10px;
    }

    .client-hub-browser-bar p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .client-hub-dashboard {
        grid-template-columns: 58px 1fr;
        min-height: 315px;
        padding: 6px;
    }

    .client-hub-dashboard aside {
        padding: 12px 8px;
    }

    .client-hub-preview-brand {
        justify-content: center;
        margin-bottom: 24px;
    }

    .client-hub-preview-brand div {
        display: none;
    }

    .client-hub-preview-nav {
        width: 70%;
        height: 8px;
        margin: 0 auto 13px;
    }

    .client-hub-preview-nav.active {
        width: 100%;
        height: 24px;
    }

    .client-hub-preview-main {
        padding: 24px 12px;
    }

    .client-hub-preview-cards {
        margin-top: 18px;
    }

    .client-hub-preview-cards div {
        padding: 10px;
    }

    .client-hub-progress-card {
        padding: 13px;
    }

    .client-hub-milestones {
        margin-top: 17px;
    }

    .client-hub-live-badge {
        right: 8px;
        bottom: -18px;
    }
}

/* =========================
   Featured Project
========================= */

.featured-project {
    padding: 110px 24px;
    background-color: #ffffff;
}

.featured-project-container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
    align-items: center;
    gap: 80px;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Device mock-ups */
.project-visuals {
    position: relative;
    padding: 60px 35px 80px;

    background-color: #f2f2f2;
    border: 1px solid #dddddd;
    border-radius: 34px;
}

/* Laptop */
.laptop-mockup {
    position: relative;
    z-index: 1;
}

.laptop-screen {
    position: relative;

    overflow: hidden;
    padding: 9px;

    background-color: #111111;
    border: 2px solid #292929;
    border-radius: 18px 18px 8px 8px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.laptop-screen::before {
    content: "";

    position: absolute;
    top: 4px;
    left: 50%;
    z-index: 2;

    width: 5px;
    height: 5px;

    background-color: #555555;
    border-radius: 50%;
    transform: translateX(-50%);
}

.laptop-screen img {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    object-fit: cover;
    object-position: top center;

    border-radius: 10px 10px 4px 4px;
}

.laptop-base {
    position: relative;

    width: 110%;
    height: 17px;
    margin-left: -5%;

    background: linear-gradient(
        to bottom,
        #d7d7d7,
        #a6a6a6
    );

    border-radius: 2px 2px 16px 16px;
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
}

.laptop-base::after {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 75px;
    height: 5px;

    background-color: #8d8d8d;
    border-radius: 0 0 8px 8px;
    transform: translateX(-50%);
}

/* Phone */
.phone-mockup {
    position: absolute;
    right: 10px;
    bottom: 20px;
    z-index: 2;

    width: 28%;
    min-width: 135px;
    padding: 8px;

    background-color: #111111;
    border: 2px solid #333333;
    border-radius: 28px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);

    transform: rotate(3deg);
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 3;

    width: 36%;
    height: 14px;

    background-color: #111111;
    border-radius: 0 0 10px 10px;
    transform: translateX(-50%);
}

.phone-screen {
    overflow: hidden;
    border-radius: 20px;
}

.phone-screen img {
    display: block;

    width: 100%;
    aspect-ratio: 9 / 18;

    object-fit: cover;
    object-position: top center;
}

/* Project content */
.project-label {
    margin: 0 0 20px;

    color: #666666;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.project-client {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;
}

.project-client img {
    width: 58px;
    height: 58px;
    padding: 5px;

    object-fit: contain;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 14px;
}

.project-client strong,
.project-client span {
    display: block;
}

.project-client strong {
    color: #111111;
    font-size: 1rem;
}

.project-client span {
    margin-top: 4px;

    color: #777777;
    font-size: 0.8rem;
}

.project-content h2 {
    margin: 0 0 26px;

    color: #111111;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.project-content h2 span {
    display: block;
    color: #777777;
}

.project-description {
    margin: 0 0 16px;

    color: #555555;
    line-height: 1.7;
}

/* Statistics */
.project-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    margin: 32px 0;
}

.project-statistics div {
    padding: 16px 10px;

    text-align: center;

    background-color: #f5f5f5;
    border: 1px solid #dddddd;
    border-radius: 14px;
}

.project-statistics strong,
.project-statistics span {
    display: block;
}

.project-statistics strong {
    color: #111111;
    font-size: 1.1rem;
}

.project-statistics span {
    margin-top: 5px;

    color: #777777;
    font-size: 0.68rem;
}

/* Service tags */
.project-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 30px;
}

.project-services span {
    padding: 8px 12px;

    color: #444444;
    font-size: 0.72rem;
    font-weight: 600;

    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
}

/* Buttons */
.project-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 22px;

    font-weight: 700;
    text-decoration: none;
    border-radius: 28px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.project-buttons a:hover {
    transform: translateY(-2px);
}

.project-primary-button {
    color: #ffffff;
    background-color: #111111;
    border: 1px solid #111111;
}

.project-primary-button:hover {
    color: #111111;
    background-color: #ffffff;
}

.project-secondary-button {
    color: #111111;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

.project-secondary-button:hover {
    border-color: #111111;
}

/* Tablet */
@media (max-width: 950px) {
    .featured-project-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .project-visuals {
        width: min(100%, 750px);
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .featured-project {
        padding: 75px 20px;
    }

    .project-visuals {
        padding: 35px 18px 65px;
        border-radius: 25px;
    }

    .phone-mockup {
        right: 8px;
        bottom: 10px;

        width: 30%;
        min-width: 105px;

        border-radius: 22px;
    }

    .phone-screen {
        border-radius: 15px;
    }

    .project-statistics {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-buttons {
        flex-direction: column;
    }

    .project-buttons a {
        width: 100%;
    }
}

/* =========================
   Page Load Animations
========================= */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease var(--reveal-delay, 0ms), 
                transform 0.7s ease var(--reveal-delay, 0ms);
}

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

.reveal.from-left {
    transform: translateX(-45px);
}

.reveal.from-right {
    transform: translateX(45px);
}

.reveal.scale-in {
    transform: scale(0.95);
}

.reveal.from-left.is-visible,
.reveal.from-right.is-visible,
.reveal.scale-in.is-visible {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================
   Meet Luke
========================= */

.meet-luke {
    padding: 110px 24px;
    background-color: #f6f6f6;
}

.meet-luke-container {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 85px;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Photograph */
.luke-photo-column {
    position: relative;
}

.luke-photo-frame {
    position: relative;

    overflow: hidden;
    padding: 10px;

    background-color: #111111;
    border-radius: 34px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.18);
}

.luke-photo-frame img {
    display: block;

    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center top;

    filter: grayscale(100%);
    border-radius: 25px;

    transition:
        filter 0.5s ease,
        transform 0.5s ease;
}

.luke-photo-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.025);
}

.luke-location {
    position: absolute;
    left: 28px;
    bottom: 28px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 16px;

    color: #111111;
    font-size: 0.75rem;
    font-weight: 700;

    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 25px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-dot {
    width: 8px;
    height: 8px;

    background-color: #111111;
    border-radius: 50%;
}

.luke-photo-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 16px;
    padding: 0 10px;

    color: #777777;
    font-size: 0.8rem;
}

.luke-photo-caption strong {
    color: #111111;
}

/* Introduction */
.luke-label {
    margin: 0 0 20px;

    color: #666666;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.luke-content > h2 {
    margin: 0 0 28px;

    color: #111111;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.luke-content > h2 span {
    display: block;
    color: #777777;
}

.luke-content > p:not(.luke-label) {
    margin: 0 0 17px;

    color: #555555;
    line-height: 1.75;
}

.luke-content .luke-introduction {
    color: #222222;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Values */
.luke-values {
    display: grid;
    gap: 12px;
    margin: 32px 0;
}

.luke-value {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 17px;

    padding: 18px;

    background-color: #ffffff;
    border: 1px solid #dedede;
    border-radius: 18px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.luke-value:hover {
    color: #ffffff;
    background-color: #111111;
    border-color: #111111;
    transform: translateX(6px);
}

.luke-value > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;

    background-color: #111111;
    border-radius: 50%;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.luke-value:hover > span {
    color: #111111;
    background-color: #ffffff;
}

.luke-value strong {
    display: block;
    margin: 1px 0 6px;
}

.luke-value p {
    margin: 0;

    color: #777777;
    font-size: 0.82rem;
    line-height: 1.5;

    transition: color 0.25s ease;
}

.luke-value:hover p {
    color: #c5c5c5;
}

/* Buttons */
.luke-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.luke-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 22px;

    font-weight: 700;
    text-decoration: none;
    border-radius: 28px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.luke-buttons a:hover {
    transform: translateY(-2px);
}

.luke-primary-button {
    color: #ffffff;
    background-color: #111111;
    border: 1px solid #111111;
}

.luke-primary-button:hover {
    color: #111111;
    background-color: transparent;
}

.luke-secondary-button {
    color: #111111;
    background-color: transparent;
    border: 1px solid #cccccc;
}

.luke-secondary-button:hover {
    border-color: #111111;
}

/* Tablet */
@media (max-width: 900px) {
    .meet-luke-container {
        grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
        gap: 50px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .meet-luke {
        padding: 75px 20px;
    }

    .meet-luke-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .luke-photo-column {
        width: min(100%, 480px);
        margin: 0 auto;
    }

    .luke-content > h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .luke-buttons {
        flex-direction: column;
    }

    .luke-buttons a {
        width: 100%;
    }
}

/* =========================
   How the Process Works
========================= */

.process-section {
    padding: 110px 24px;
    color: #ffffff;
    background-color: #111111;
}

.process-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Section heading */
.process-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 70px;

    margin-bottom: 70px;
}

.process-label {
    margin: 0 0 20px;

    color: #999999;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.process-heading h2 {
    max-width: 750px;
    margin: 0;

    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.process-heading h2 span {
    display: block;
    color: #777777;
}

.process-introduction {
    margin: 0;

    color: #b5b5b5;
    line-height: 1.75;
}

/* Process timeline */
.process-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

/* Connecting line */
.process-timeline::before {
    content: "";

    position: absolute;
    top: 31px;
    left: 5%;
    right: 5%;

    height: 1px;
    background-color: #444444;
}

.process-step {
    position: relative;
    z-index: 1;

    min-height: 330px;
    padding: 0 22px 28px;

    background-color: #181818;
    border: 1px solid #303030;
    border-radius: 24px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.process-step:hover {
    color: #111111;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-8px);
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
    margin: 0 auto 35px;

    color: #111111;
    font-size: 0.8rem;
    font-weight: 800;

    background-color: #ffffff;
    border: 7px solid #111111;
    border-radius: 50%;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.process-step:hover .process-number {
    color: #ffffff;
    background-color: #111111;
    border-color: #ffffff;
}

.process-stage {
    margin: 0 0 12px;

    color: #888888;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;

    transition: color 0.25s ease;
}

.process-step:hover .process-stage {
    color: #666666;
}

.process-step h3 {
    margin: 0 0 15px;

    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.3;

    transition: color 0.25s ease;
}

.process-step:hover h3 {
    color: #111111;
}

.process-step > p:last-child {
    margin: 0;

    color: #a7a7a7;
    font-size: 0.85rem;
    line-height: 1.65;

    transition: color 0.25s ease;
}

.process-step:hover > p:last-child {
    color: #555555;
}

/* Bottom CTA */
.process-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    margin-top: 55px;
    padding-top: 35px;

    border-top: 1px solid #333333;
}

.process-footer div > span {
    display: block;
    margin-bottom: 7px;

    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.process-footer p {
    margin: 0;
    color: #999999;
}

.process-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 11px;

    padding: 15px 24px;

    color: #111111;
    font-weight: 700;
    text-decoration: none;

    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 30px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.process-button span {
    transition: transform 0.2s ease;
}

.process-button:hover {
    color: #ffffff;
    background-color: transparent;
    transform: translateY(-2px);
}

.process-button:hover span {
    transform: translateX(5px);
}

/* Smaller desktop/tablet */
@media (max-width: 1050px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        min-height: 290px;
        padding-top: 22px;
    }

    .process-number {
        margin: 0 0 30px;
        border-width: 0;
    }
}

/* Tablet */
@media (max-width: 800px) {
    .process-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-introduction {
        max-width: 650px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .process-section {
        padding: 75px 20px;
    }

    .process-heading {
        margin-bottom: 50px;
    }

    .process-heading h2 {
        font-size: clamp(3rem, 14vw, 4.2rem);
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
        padding: 22px;
    }

    .process-number {
        width: 52px;
        height: 52px;
        margin-bottom: 25px;
    }

    .process-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-button {
        width: 100%;
    }
}

/* =========================
   Process Scroll Animations
========================= */

/*
Animations are only prepared after JavaScript loads.
This prevents content remaining hidden if JavaScript fails.
*/

.process-section.process-animations-ready .process-heading > div,
.process-section.process-animations-ready .process-introduction,
.process-section.process-animations-ready .process-step,
.process-section.process-animations-ready .process-footer {
    opacity: 0;
    transform: translateY(35px);
}

/* Heading animation */
.process-section.process-animations-ready .process-heading > div {
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.process-section.process-animations-ready .process-introduction {
    transition:
        opacity 0.7s ease 0.15s,
        transform 0.7s ease 0.15s;
}

/* Timeline line animation */
.process-section.process-animations-ready .process-timeline::before {
    transform: scaleX(0);
    transform-origin: left center;

    transition: transform 1.2s ease 0.3s;
}

/* Process card animations */
.process-section.process-animations-ready .process-step {
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

/* Stagger each card */
.process-section.process-animations-ready
.process-step:nth-child(1) {
    transition-delay: 0.25s;
}

.process-section.process-animations-ready
.process-step:nth-child(2) {
    transition-delay: 0.37s;
}

.process-section.process-animations-ready
.process-step:nth-child(3) {
    transition-delay: 0.49s;
}

.process-section.process-animations-ready
.process-step:nth-child(4) {
    transition-delay: 0.61s;
}

.process-section.process-animations-ready
.process-step:nth-child(5) {
    transition-delay: 0.73s;
}

/* Footer CTA animation */
.process-section.process-animations-ready .process-footer {
    transition:
        opacity 0.7s ease 0.8s,
        transform 0.7s ease 0.8s;
}

/* Visible animation state */
.process-section.process-animations-ready.is-visible
.process-heading > div,
.process-section.process-animations-ready.is-visible
.process-introduction,
.process-section.process-animations-ready.is-visible
.process-step,
.process-section.process-animations-ready.is-visible
.process-footer {
    opacity: 1;
    transform: translateY(0);
}

.process-section.process-animations-ready.is-visible
.process-timeline::before {
    transform: scaleX(1);
}

/* Keep card hover movement */
.process-section.process-animations-ready.is-visible
.process-step:hover {
    transform: translateY(-8px);
}

/* Animate process numbers */
.process-number {
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.process-step:hover .process-number {
    transform: scale(1.08) rotate(4deg);
}

/* Button arrow movement */
.process-button span {
    display: inline-block;

    transition: transform 0.25s ease;
}

.process-button:hover span {
    transform: translateX(5px);
}

/* Reduce animations for accessibility */
@media (prefers-reduced-motion: reduce) {
    .process-section *,
    .process-section *::before,
    .process-section *::after {
        scroll-behavior: auto !important;

        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .process-section.process-animations-ready
    .process-heading > div,
    .process-section.process-animations-ready
    .process-introduction,
    .process-section.process-animations-ready
    .process-step,
    .process-section.process-animations-ready
    .process-footer {
        opacity: 1;
        transform: none;
    }
}


/* =========================
   Homepage Pricing CTA
========================= */

.home-pricing-section {
    padding: 110px 24px;
    background-color: #ffffff;
}

.home-pricing-container {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.75fr);
    align-items: center;
    gap: 85px;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px;

    overflow: hidden;

    color: #ffffff;
    background-color: #111111;
    border: 1px solid #292929;
    border-radius: 38px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.16);
}

/* Subtle background circle */
.home-pricing-container::before {
    content: "";

    position: absolute;
    right: -160px;
    bottom: -210px;

    width: 440px;
    height: 440px;

    border: 1px solid #343434;
    border-radius: 50%;
    pointer-events: none;
}

.home-pricing-content,
.pricing-breakdown-card {
    position: relative;
    z-index: 1;
}

.home-pricing-label {
    margin: 0 0 20px;

    color: #999999;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.home-pricing-content h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.97;
    letter-spacing: -0.065em;
}

.home-pricing-content h2 span {
    display: block;
    color: #777777;
}

.home-pricing-description {
    max-width: 650px;
    margin: 28px 0 35px;

    color: #b0b0b0;
    line-height: 1.75;
}

/* Payment information */
.payment-points {
    display: grid;
    gap: 12px;
}

.payment-point {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 15px;

    padding: 16px;

    background-color: #181818;
    border: 1px solid #303030;
    border-radius: 17px;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.payment-point:hover {
    background-color: #202020;
    border-color: #4c4c4c;
    transform: translateX(5px);
}

.payment-point > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #111111;
    font-size: 0.7rem;
    font-weight: 800;

    background-color: #ffffff;
    border-radius: 50%;
}

.payment-point strong {
    display: block;
    margin: 1px 0 5px;
}

.payment-point p {
    margin: 0;

    color: #999999;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Pricing buttons */
.home-pricing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 34px;
}

.home-pricing-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 22px;

    font-weight: 700;
    text-decoration: none;
    border-radius: 28px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.home-pricing-buttons a:hover {
    transform: translateY(-2px);
}

.pricing-primary-button {
    color: #111111;
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

.pricing-primary-button:hover {
    color: #ffffff;
    background-color: transparent;
}

.pricing-secondary-button {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #454545;
}

.pricing-secondary-button:hover {
    border-color: #ffffff;
}

/* Breakdown card */
.pricing-breakdown-card {
    padding: 28px;

    color: #111111;
    background-color: #ffffff;
    border-radius: 27px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);

    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.pricing-breakdown-card:hover {
    transform: rotate(0);
}

.breakdown-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    padding-bottom: 22px;

    border-bottom: 1px solid #dddddd;
}

.breakdown-heading p {
    margin: 0 0 5px;

    color: #777777;
    font-size: 0.72rem;
}

.breakdown-heading h3 {
    margin: 0;
    font-size: 1.25rem;
}

.breakdown-heading > span {
    padding: 7px 10px;

    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    border: 1px solid #cccccc;
    border-radius: 20px;
}

.breakdown-list {
    display: grid;
    gap: 4px;

    padding: 18px 0;
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid #eeeeee;
}

.breakdown-item strong,
.breakdown-item div span {
    display: block;
}

.breakdown-item strong {
    font-size: 0.88rem;
}

.breakdown-item div span {
    margin-top: 4px;

    color: #888888;
    font-size: 0.7rem;
}

.breakdown-item > span {
    color: #555555;
    font-size: 0.7rem;
    font-weight: 700;
}

.breakdown-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 18px;

    color: #ffffff;
    background-color: #111111;
    border-radius: 16px;
}

.breakdown-total div span,
.breakdown-total div strong {
    display: block;
}

.breakdown-total div span {
    margin-bottom: 5px;

    color: #999999;
    font-size: 0.7rem;
}

.breakdown-total div strong {
    font-size: 0.9rem;
}

.breakdown-tick {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: #111111;
    font-weight: 800;

    background-color: #ffffff;
    border-radius: 50%;
}

.breakdown-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 18px;
    padding: 13px;

    color: #111111;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;

    border: 1px solid #cccccc;
    border-radius: 24px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.breakdown-button:hover {
    color: #ffffff;
    background-color: #111111;
    border-color: #111111;
}

/* Tablet */
@media (max-width: 950px) {
    .home-pricing-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 55px;
    }

    .pricing-breakdown-card {
        width: min(100%, 580px);
        transform: none;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .home-pricing-section {
        padding: 75px 12px;
    }

    .home-pricing-container {
        gap: 50px;
        padding: 45px 22px;

        border-radius: 28px;
    }

    .home-pricing-content h2 {
        font-size: clamp(3rem, 14vw, 4.2rem);
    }

    .home-pricing-buttons {
        flex-direction: column;
    }

    .home-pricing-buttons a {
        width: 100%;
    }

    .pricing-breakdown-card {
        padding: 22px;
    }

    .breakdown-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

.smaller-project-note {
    margin: 18px 0 0;

    color: #888888;
    font-size: 0.75rem;
    line-height: 1.6;
}

/* =========================
   Ambition IT Slogan
========================= */

.slogan-section {
    padding: 30px 24px 110px;
    background-color: #ffffff;
}

.slogan-container {
    position: relative;

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

    min-height: 480px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 40px;

    overflow: hidden;

    color: #ffffff;
    text-align: center;

    background-color: #111111;
    border: 1px solid #292929;
    border-radius: 38px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.16);
}

.slogan-content {
    position: relative;
    z-index: 2;

    max-width: 950px;
}

.slogan-content > p:first-child {
    margin: 0 0 22px;

    color: #999999;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.slogan-content h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(3.3rem, 8vw, 7.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.075em;
}

.slogan-content h2 span {
    color: #777777;
}

.slogan-content h2 strong {
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
}

.slogan-line {
    width: 70px;
    height: 2px;
    margin: 38px auto;

    background-color: #ffffff;
}

.slogan-description {
    max-width: 650px;
    margin: 0 auto;

    color: #a8a8a8;
    line-height: 1.7;
}

/* Subtle decorative circles */
.slogan-decoration {
    position: absolute;

    border: 1px solid #333333;
    border-radius: 50%;
    pointer-events: none;
}

.slogan-decoration-one {
    top: -180px;
    right: -100px;

    width: 420px;
    height: 420px;
}

.slogan-decoration-two {
    left: -160px;
    bottom: -230px;

    width: 500px;
    height: 500px;
}

/* Scroll reveal */
@supports (animation-timeline: view()) {
    .slogan-container {
        animation: ambition-reveal-scale 1ms ease both;
        animation-timeline: view();
        animation-range: entry 5% cover 30%;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .slogan-section {
        padding: 20px 12px 75px;
    }

    .slogan-container {
        min-height: 430px;
        padding: 55px 24px;

        border-radius: 28px;
    }

    .slogan-content h2 {
        font-size: clamp(3rem, 16vw, 5rem);
        line-height: 0.95;
    }

    .slogan-description {
        font-size: 0.9rem;
    }
}

/* Reduced-motion support */
@media (prefers-reduced-motion: reduce) {
    .slogan-container {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* =========================
   Slogan Background Animation
========================= */

@keyframes slogan-circle-one {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-45px, 35px) scale(1.08);
    }
}

@keyframes slogan-circle-two {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(55px, -30px) scale(0.92);
    }
}

@keyframes slogan-light-sweep {
    0% {
        transform: translateX(-140%) rotate(-18deg);
        opacity: 0;
    }

    20% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.18;
    }

    100% {
        transform: translateX(220%) rotate(-18deg);
        opacity: 0;
    }
}

@keyframes slogan-glow-pulse {
    0%,
    100% {
        opacity: 0.15;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.35;
        transform: scale(1.15);
    }
}

@keyframes slogan-line-grow {
    0%,
    100% {
        width: 70px;
        opacity: 0.7;
    }

    50% {
        width: 120px;
        opacity: 1;
    }
}

/* Keep animated elements behind the text */
.slogan-container::before,
.slogan-container::after {
    content: "";
    position: absolute;
    z-index: 0;

    pointer-events: none;
}

/* Moving light sweep */
.slogan-container::before {
    top: -45%;
    left: -30%;

    width: 32%;
    height: 190%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );

    filter: blur(8px);

    animation: slogan-light-sweep 9s ease-in-out infinite;
}

/* Soft glow behind the wording */
.slogan-container::after {
    top: 50%;
    left: 50%;

    width: 430px;
    height: 250px;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0) 70%
    );

    border-radius: 50%;
    filter: blur(20px);
    transform: translate(-50%, -50%);

    animation: slogan-glow-pulse 6s ease-in-out infinite;
}

/* Place circles between background and text */
.slogan-decoration {
    z-index: 1;
}

.slogan-decoration-one {
    animation: slogan-circle-one 11s ease-in-out infinite;
}

.slogan-decoration-two {
    animation: slogan-circle-two 13s ease-in-out infinite;
}

/* Gently animate the line */
.slogan-line {
    animation: slogan-line-grow 4s ease-in-out infinite;
}

/* Keep the wording above all decoration */
.slogan-content {
    position: relative;
    z-index: 2;
}

/* Stop decorative animations when reduced motion is requested */
@media (prefers-reduced-motion: reduce) {
    .slogan-container::before,
    .slogan-container::after,
    .slogan-decoration,
    .slogan-line {
        animation: none !important;
    }
}

/* =========================
   Shared Background Animations
========================= */

@keyframes background-drift-one {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(45px, 30px) scale(1.1);
    }
}

@keyframes background-drift-two {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, -35px) scale(0.92);
    }
}

@keyframes background-pulse {
    0%,
    100% {
        opacity: 0.12;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.15);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes background-sweep {
    0% {
        transform: translateX(-160%) rotate(-20deg);
        opacity: 0;
    }

    25% {
        opacity: 0.25;
    }

    100% {
        transform: translateX(260%) rotate(-20deg);
        opacity: 0;
    }
}

/* Keep content above animated backgrounds */
.hero-container,
.design-container,
.featured-project-container,
.meet-luke-container,
.process-container,
.home-pricing-container {
    position: relative;
    z-index: 1;
}

/* =========================
   Hero Background
========================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: 0;

    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    top: -180px;
    right: -140px;

    width: 430px;
    height: 430px;

    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0) 68%
    );

    animation: background-drift-one 11s ease-in-out infinite;
}

.hero::after {
    left: -180px;
    bottom: -200px;

    width: 390px;
    height: 390px;

    border: 1px solid rgba(0, 0, 0, 0.09);

    animation:
        background-drift-two 14s ease-in-out infinite,
        background-rotate 35s linear infinite;
}

/* =========================
   Website Design Background
========================= */

/* These selectors use the circles already in this section */
.design-section::before {
    animation: background-drift-one 13s ease-in-out infinite;
}

.design-section::after {
    animation: background-drift-two 15s ease-in-out infinite;
}

/* Add a moving line behind the content */
.design-container::before {
    content: "";

    position: absolute;
    top: 35%;
    left: -30%;
    z-index: -1;

    width: 30%;
    height: 160%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.025),
        transparent
    );

    transform: rotate(-20deg);
    pointer-events: none;

    animation: background-sweep 12s ease-in-out infinite;
}

/* =========================
   Featured Project Background
========================= */

.featured-project {
    position: relative;
    overflow: hidden;
}

.featured-project::before,
.featured-project::after {
    content: "";
    position: absolute;
    z-index: 0;

    border-radius: 50%;
    pointer-events: none;
}

.featured-project::before {
    top: 90px;
    left: -160px;

    width: 390px;
    height: 390px;

    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.07),
        transparent 70%
    );

    animation: background-pulse 8s ease-in-out infinite;
}

.featured-project::after {
    right: -170px;
    bottom: 20px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(0, 0, 0, 0.09);
    border-style: dashed;

    animation:
        background-drift-one 14s ease-in-out infinite,
        background-rotate 50s linear infinite;
}

/* =========================
   Meet Luke Background
========================= */

.meet-luke {
    position: relative;
    overflow: hidden;
}

.meet-luke::before,
.meet-luke::after {
    content: "";
    position: absolute;
    z-index: 0;

    pointer-events: none;
}

.meet-luke::before {
    top: -170px;
    right: -120px;

    width: 420px;
    height: 420px;

    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.07),
        transparent 68%
    );

    border-radius: 50%;

    animation: background-drift-two 12s ease-in-out infinite;
}

.meet-luke::after {
    left: 10%;
    bottom: -220px;

    width: 520px;
    height: 320px;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;

    animation: background-pulse 10s ease-in-out infinite;
}

/* =========================
   Process Background
========================= */

.process-section {
    position: relative;
    overflow: hidden;
}

.process-section::before,
.process-section::after {
    content: "";
    position: absolute;
    z-index: 0;

    border-radius: 50%;
    pointer-events: none;
}

.process-section::before {
    top: -220px;
    right: -170px;

    width: 520px;
    height: 520px;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0) 70%
    );

    animation: background-pulse 9s ease-in-out infinite;
}

.process-section::after {
    left: -230px;
    bottom: -280px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-style: dashed;

    animation:
        background-drift-one 16s ease-in-out infinite,
        background-rotate 60s linear infinite;
}

/* =========================
   Pricing Background
========================= */

/* Animate the existing circle inside the pricing panel */
.home-pricing-container::before {
    animation:
        background-drift-two 13s ease-in-out infinite,
        background-pulse 9s ease-in-out infinite;
}

/* Add a soft moving light */
.home-pricing-container::after {
    content: "";

    position: absolute;
    top: -45%;
    left: -40%;
    z-index: 0;

    width: 26%;
    height: 190%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.06),
        transparent
    );

    filter: blur(8px);
    pointer-events: none;

    animation: background-sweep 11s ease-in-out infinite;
}

/* Ensure pricing content stays above the animation */
.home-pricing-content,
.pricing-breakdown-card {
    position: relative;
    z-index: 2;
}

/* =========================
   Mobile Adjustments
========================= */

@media (max-width: 700px) {
    .hero::before,
    .featured-project::after,
    .meet-luke::before,
    .process-section::before {
        width: 280px;
        height: 280px;
    }

    .hero::after,
    .featured-project::before,
    .meet-luke::after,
    .process-section::after {
        width: 320px;
        height: 320px;
    }
}

/* =========================
   Reduced Motion
========================= */

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .design-section::before,
    .design-section::after,
    .design-container::before,
    .featured-project::before,
    .featured-project::after,
    .meet-luke::before,
    .meet-luke::after,
    .process-section::before,
    .process-section::after,
    .home-pricing-container::before,
    .home-pricing-container::after {
        animation: none !important;
    }
}

/* =========================
   Frequently Asked Questions
========================= */

.faq-section {
    position: relative;

    padding: 110px 24px;
    overflow: hidden;

    background-color: #f6f6f6;
}

.faq-container {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 90px;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Introduction */
.faq-introduction {
    position: sticky;
    top: 130px;
}

.faq-label {
    margin: 0 0 20px;

    color: #666666;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.faq-introduction h2 {
    margin: 0;

    color: #111111;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.faq-introduction h2 span {
    display: block;
    color: #777777;
}

.faq-introduction > p:not(.faq-label) {
    max-width: 440px;
    margin: 28px 0;

    color: #606060;
    line-height: 1.75;
}

.faq-contact {
    padding: 22px;

    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 19px;
}

.faq-contact > span {
    display: block;
    margin-bottom: 8px;

    color: #777777;
    font-size: 0.75rem;
}

.faq-contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.faq-contact a span {
    transition: transform 0.2s ease;
}

.faq-contact a:hover span {
    transform: translateX(5px);
}

/* FAQ list */
.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;

    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 20px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.faq-item:hover {
    border-color: #aaaaaa;
    transform: translateX(4px);
}

.faq-item[open] {
    color: #ffffff;
    background-color: #111111;
    border-color: #111111;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 24px;

    color: #111111;
    font-weight: 700;

    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    color: #ffffff;
}

/* Plus and minus icon */
.faq-icon {
    position: relative;

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    background-color: #111111;
    border-radius: 50%;

    transition:
        background-color 0.25s ease,
        transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 13px;
    height: 2px;

    background-color: #ffffff;

    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon {
    background-color: #ffffff;
    transform: rotate(180deg);
}

.faq-item[open] .faq-icon::before {
    background-color: #111111;
}

.faq-item[open] .faq-icon::after {
    background-color: #111111;
    transform: translate(-50%, -50%) rotate(0);
}

/* Answer */
.faq-answer {
    animation: faq-answer-open 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 75px 25px 24px;

    color: #bdbdbd;
    line-height: 1.7;
}

@keyframes faq-answer-open {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background decoration */
.faq-section::before,
.faq-section::after {
    content: "";

    position: absolute;

    border-radius: 50%;
    pointer-events: none;
}

.faq-section::before {
    top: -150px;
    right: -120px;

    width: 400px;
    height: 400px;

    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.07),
        transparent 70%
    );

    animation: background-drift-one 13s ease-in-out infinite;
}

.faq-section::after {
    left: -190px;
    bottom: -220px;

    width: 480px;
    height: 480px;

    border: 1px dashed rgba(0, 0, 0, 0.1);

    animation:
        background-drift-two 15s ease-in-out infinite,
        background-rotate 55s linear infinite;
}

/* Scroll reveal */
@supports (animation-timeline: view()) {
    .faq-introduction {
        animation: ambition-reveal-left 1ms ease both;
        animation-timeline: view();
        animation-range: entry 5% cover 30%;
    }

    .faq-list {
        animation: ambition-reveal-right 1ms ease both;
        animation-timeline: view();
        animation-range: entry 5% cover 28%;
    }
}

/* Tablet */
@media (max-width: 850px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .faq-introduction {
        position: static;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .faq-section {
        padding: 75px 20px;
    }

    .faq-introduction h2 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .faq-item summary {
        padding: 20px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 20px 22px;
        font-size: 0.88rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .faq-section::before,
    .faq-section::after,
    .faq-answer {
        animation: none !important;
    }
}

/* Project statistic scroll animation */
.project-statistics > div {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-statistics > div:nth-child(2) {
    transition-delay: 0.12s;
}

.project-statistics > div:nth-child(3) {
    transition-delay: 0.24s;
}

.project-statistics > div.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .project-statistics > div {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* =========================
   Global animated background
========================= */

.site-ambient-background {
    position: fixed;
    inset: 0;
    z-index: 20;

    overflow: hidden;
    pointer-events: none;
}

.ambient-shape {
    position: absolute;
    display: block;

    border: 1px solid rgba(127, 127, 127, 0.22);
    border-radius: 50%;

    opacity: 0.65;
    will-change: transform;
}

.ambient-shape-one {
    top: 12%;
    left: -85px;

    width: 180px;
    height: 180px;

    animation: ambient-float-one 18s ease-in-out infinite;
}

.ambient-shape-two {
    top: 48%;
    right: -110px;

    width: 250px;
    height: 250px;

    border-style: dashed;

    animation:
        ambient-float-two 22s ease-in-out infinite,
        ambient-rotate 50s linear infinite;
}

.ambient-shape-three {
    bottom: 6%;
    left: 14%;

    width: 90px;
    height: 90px;

    background: rgba(127, 127, 127, 0.04);

    animation: ambient-float-three 15s ease-in-out infinite;
}

.ambient-shape-four {
    top: 28%;
    right: 24%;

    width: 44px;
    height: 44px;

    border-radius: 13px;
    transform: rotate(25deg);

    animation: ambient-diamond 13s ease-in-out infinite;
}

.ambient-shape-five {
    bottom: 20%;
    right: 9%;

    width: 16px;
    height: 16px;

    background-color: rgba(127, 127, 127, 0.28);
    border: 0;

    animation: ambient-small-float 10s ease-in-out infinite;
}

/* Soft cursor light */
.ambient-cursor-light {
    position: absolute;
    top: 0;
    left: 0;

    width: 430px;
    height: 430px;

    background: radial-gradient(
        circle,
        rgba(127, 127, 127, 0.09),
        transparent 68%
    );

    border-radius: 50%;
    opacity: 0;

    transform: translate(-50%, -50%);
    transition: opacity 0.35s ease;

    will-change: left, top;
}

body:hover .ambient-cursor-light {
    opacity: 1;
}

/* Floating animations */
@keyframes ambient-float-one {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(55px, 70px);
    }
}

@keyframes ambient-float-two {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: -60px -45px;
    }
}

@keyframes ambient-float-three {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-55px) scale(1.12);
    }
}

@keyframes ambient-diamond {
    0%,
    100% {
        transform: translateY(0) rotate(25deg);
    }

    50% {
        transform: translateY(65px) rotate(115deg);
    }
}

@keyframes ambient-small-float {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-45px, -70px);
    }
}

@keyframes ambient-rotate {
    to {
        rotate: 360deg;
    }
}

/* Keep the animated elements subtle on mobile */
@media (max-width: 600px) {
    .ambient-shape {
        opacity: 0.4;
    }

    .ambient-shape-four,
    .ambient-shape-five,
    .ambient-cursor-light {
        display: none;
    }

    .ambient-shape-one {
        width: 120px;
        height: 120px;
    }

    .ambient-shape-two {
        width: 170px;
        height: 170px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .ambient-shape {
        animation: none !important;
    }

    .ambient-cursor-light {
        display: none;
    }
}

/* =========================
   Global page transitions
========================= */

body.page-transition-ready > header,
body.page-transition-ready > main,
body.page-transition-ready > footer,
body.page-transition-ready > site-footer,
body.page-transition-ready > #site-footer {
    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.4s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-transition-ready.page-is-visible > header,
body.page-transition-ready.page-is-visible > main,
body.page-transition-ready.page-is-visible > footer,
body.page-transition-ready.page-is-visible > site-footer,
body.page-transition-ready.page-is-visible > #site-footer {
    opacity: 1;
    transform: translateY(0);
}

/* Animate the page out before following a link */
body.page-transition-ready.page-is-leaving > header,
body.page-transition-ready.page-is-leaving > main,
body.page-transition-ready.page-is-leaving > footer,
body.page-transition-ready.page-is-leaving > site-footer,
body.page-transition-ready.page-is-leaving > #site-footer {
    opacity: 0;
    transform: translateY(-12px);

    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    body.page-transition-ready > header,
    body.page-transition-ready > main,
    body.page-transition-ready > footer,
    body.page-transition-ready > site-footer,
    body.page-transition-ready > #site-footer {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Footer placeholders remain visible without linking to pages that do not exist yet. */
.footer-link-disabled {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: #ffffff;
    opacity: 0.55;
}

.footer-link-disabled small {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-socials a[aria-disabled="true"] {
    cursor: default;
    opacity: 0.45;
    pointer-events: none;
}

/* =========================
   Limited-time promotion
========================= */

body.promotion-is-open {
    overflow: hidden;
}

.promotion-overlay {
    position: fixed;
    z-index: 10000;
    inset: 0;

    display: grid;
    place-items: center;
    padding: 24px;

    overflow-y: auto;

    background-color: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
    pointer-events: none;

    transition:
        opacity 0.24s ease,
        visibility 0s linear 0.24s;
}

.promotion-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.promotion-dialog {
    position: relative;

    width: min(100%, 560px);
    padding: 46px;

    color: #ffffff;
    background:
        radial-gradient(circle at 100% 0, #2a2a2a, transparent 42%),
        #111111;
    border: 1px solid #393939;
    border-radius: 32px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);

    opacity: 0;
    transform: translateY(24px) scale(0.97);

    transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.promotion-overlay.is-visible .promotion-dialog {
    opacity: 1;
    transform: none;
}

.promotion-close {
    position: absolute;
    top: 18px;
    right: 18px;

    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;

    color: #ffffff;
    font: inherit;
    font-size: 1.65rem;
    line-height: 1;

    background-color: #202020;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.promotion-close:hover,
.promotion-close:focus-visible {
    color: #111111;
    background-color: #ffffff;
    transform: rotate(6deg);
}

.promotion-close:focus-visible,
.promotion-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.promotion-eyebrow {
    margin: 0 0 22px;

    color: #a8a8a8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.promotion-dialog h2 {
    max-width: 460px;
    margin: 0;

    font-size: clamp(2.65rem, 8vw, 4.65rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.promotion-dialog h2 span {
    display: block;
    color: #a7a7a7;
}

.promotion-dialog > p:not(.promotion-eyebrow) {
    max-width: 470px;
    margin: 26px 0 0;

    color: #c4c4c4;
    font-size: 1rem;
    line-height: 1.7;
}

.promotion-price {
    display: flex;
    margin: 28px 0 18px;
    padding: 18px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
}

.promotion-price > span {
    color: #b7b7b7;
    font-size: 0.84rem;
    font-weight: 700;
}

.promotion-price div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.promotion-price s {
    color: #8c8c8c;
}

.promotion-price strong {
    font-size: 1.7rem;
}

.promotion-button {
    display: flex;
    width: 100%;
    min-height: 54px;
    padding: 15px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    color: #111111;
    font-weight: 800;
    text-decoration: none;

    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 999px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.promotion-button:hover,
.promotion-button:focus-visible {
    color: #ffffff;
    background-color: transparent;
    transform: translateY(-2px);
}

.promotion-dialog > small {
    display: block;
    margin-top: 18px;

    color: #8f8f8f;
    font-size: 0.76rem;
    line-height: 1.55;
}

@media (max-width: 600px) {
    .promotion-overlay {
        padding: 14px;
        align-items: end;
    }

    .promotion-dialog {
        padding: 38px 22px 26px;
        border-radius: 26px;
    }

    .promotion-close {
        top: 13px;
        right: 13px;
        width: 38px;
        height: 38px;
    }

    .promotion-eyebrow {
        padding-right: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promotion-overlay,
    .promotion-dialog,
    .promotion-close,
    .promotion-button {
        transition: none;
    }
}
