@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
    --bg: #070a12;
    --bg-soft: #0b0f18;
    --panel: #111827;
    --panel-2: #161f2f;
    --blue: #246bfd;
    --blue-light: #8fc3ff;
    --text: #ffffff;
    --muted: #a8b0c0;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
}

a {
    color: inherit;
}

.site-header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 16px 6%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 10, 18, 0.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.footer-logo strong {
    color: var(--blue-light);
}


.site-logo-image {
    display: block;
    width: 185px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s ease;
}

.nav-links a:hover,
.active-link {
    color: var(--text) !important;
}

.nav-button {
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(36, 107, 253, 0.28);
}

.hero {
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    padding: 100px 8%;
    background:
        radial-gradient(circle at 78% 15%, rgba(36, 107, 253, 0.24), transparent 32%),
        linear-gradient(135deg, #070a12 0%, #0d1422 55%, #131d31 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.hero-glow-one {
    width: 320px;
    height: 320px;
    right: 8%;
    top: 12%;
    background: rgba(36, 107, 253, 0.15);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    left: 10%;
    bottom: 6%;
    background: rgba(143, 195, 255, 0.07);
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: block;
    margin-bottom: 16px;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
}

.hero h1,
.services-hero h1 {
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -4px;
}

.hero h1 span,
.services-hero h1 span {
    display: block;
    color: var(--blue-light);
}

.hero-copy {
    max-width: 760px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s ease;
}

.button:hover,
.nav-button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--blue);
    color: var(--text);
    box-shadow: 0 16px 36px rgba(36, 107, 253, 0.3);
}

.button-secondary {
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
}

.button-light {
    background: var(--text);
    color: var(--blue);
}

.hero-card {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.card-label {
    display: block;
    margin-bottom: 24px;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
}

.hero-card h2 {
    font-size: 38px;
    line-height: 1.1;
}

.hero-card p {
    margin-top: 20px;
    color: var(--muted);
}

.section {
    padding: 110px 7%;
}

.services-section,
.about-section,
.process-section {
    background: var(--bg-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 56px;
}

.section-heading h2,
.work-content h2,
.about-card h2,
.contact-section h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.06;
    letter-spacing: -2px;
}

.section-heading p,
.work-content p,
.about-card p,
.contact-section p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card,
.service-detail-card,
.process-card,
.about-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.service-card {
    min-height: 350px;
    padding: 34px;
    border-radius: 26px;
    transition: 0.25s ease;
}

.service-card:hover,
.service-detail-card:hover,
.process-card:hover {
    transform: translateY(-7px);
    border-color: rgba(143, 195, 255, 0.35);
}

.service-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 800;
}

.service-icon,
.service-detail-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(36, 107, 253, 0.14);
    color: var(--blue-light);
    font-weight: 800;
}

.service-card h3 {
    margin-top: 26px;
    font-size: 25px;
    line-height: 1.2;
}

.service-card p {
    margin-top: 16px;
    color: var(--muted);
}

.service-card a,
.text-link {
    display: inline-block;
    margin-top: 26px;
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 800;
}

.work-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    background: linear-gradient(135deg, #0a0f19, #111827);
}

.process-panel {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.process-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 28px;
    border-bottom: 1px solid var(--border);
}

.process-item:last-child {
    border-bottom: none;
}

.process-item > span {
    color: var(--blue-light);
    font-weight: 800;
}

.process-item strong {
    font-size: 21px;
}

.process-item p {
    margin-top: 5px;
    color: var(--muted);
}

.about-card {
    max-width: 980px;
    padding: 70px;
    border-radius: 34px;
}

.contact-section {
    padding: 110px 7%;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 42%),
        linear-gradient(135deg, #1d4ed8, #172554);
}

.contact-section p {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.8);
}

footer {
    padding: 48px 7%;
    text-align: center;
    background: #05070c;
    color: #8892a3;
}

.footer-logo {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
}

footer p {
    margin-top: 8px;
}

.services-hero {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 110px 8%;
    background:
        radial-gradient(circle at 80% 20%, rgba(36, 107, 253, 0.25), transparent 32%),
        linear-gradient(135deg, #070a12 0%, #111827 55%, #18233b 100%);
}

.services-hero p {
    max-width: 700px;
    margin: 28px 0 38px;
    color: var(--muted);
    font-size: 20px;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 100px 7%;
    background: linear-gradient(180deg, #0b0f18, #111827);
}

.service-detail-card {
    padding: 44px;
    border-radius: 28px;
    transition: 0.25s ease;
}

.service-detail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-detail-number {
    color: var(--blue-light);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-detail-card h2 {
    margin-top: 28px;
    font-size: 34px;
    line-height: 1.15;
}

.service-detail-card > p {
    margin-top: 18px;
    color: var(--muted);
}

.service-detail-card ul {
    margin: 28px 0;
    list-style: none;
}

.service-detail-card li {
    position: relative;
    margin: 13px 0;
    padding-left: 28px;
    color: #d6dbea;
}

.service-detail-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-weight: 800;
}

.process-section {
    padding: 110px 7%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    padding: 34px;
    border-radius: 24px;
    transition: 0.25s ease;
}

.process-card > span {
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 800;
}

.process-card h3 {
    margin-top: 22px;
    font-size: 24px;
}

.process-card p {
    margin-top: 14px;
    color: var(--muted);
}

@media (max-width: 1050px) {
    .nav-links {
        display: none;
    }

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

    .hero-card {
        max-width: 620px;
    }

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

@media (max-width: 760px) {
    .site-logo-image {
        width: 145px;
    }

    .site-header {
        padding: 14px 20px;
    }

    .nav-button {
        display: none;
    }

    .hero,
    .services-hero {
        min-height: auto;
        padding: 80px 24px;
    }

    .hero h1,
    .services-hero h1 {
        letter-spacing: -2px;
    }

    .hero-copy,
    .services-hero p {
        font-size: 18px;
    }

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

    .button {
        width: 100%;
    }

    .section,
    .service-details,
    .process-section,
    .contact-section {
        padding: 80px 24px;
    }

    .service-grid,
    .service-details,
    .process-grid,
    .work-section {
        grid-template-columns: 1fr;
    }

    .about-card,
    .service-detail-card {
        padding: 34px 26px;
    }
}

/* Interactive quote experience */

button.button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal.open {
    opacity: 1;
    visibility: visible;
}

.quote-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 5, 12, 0.86);
    backdrop-filter: blur(16px);
}

.quote-experience {
    position: relative;
    z-index: 2;
    width: min(100%, 820px);
    max-height: 92vh;
    overflow-y: auto;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(36, 107, 253, 0.24), transparent 30%),
        linear-gradient(145deg, #111827, #080c14);
    box-shadow: 0 45px 140px rgba(0, 0, 0, 0.72);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.35s ease;
}

.quote-modal.open .quote-experience {
    transform: translateY(0) scale(1);
}

.quote-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.quote-progress {
    height: 4px;
    margin: 6px 56px 38px 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.quote-progress-bar {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transition: width 0.3s ease;
}

.quote-step {
    display: none;
}

.quote-step.active {
    display: block;
    animation: quoteFade 0.3s ease;
}

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

.quote-step h2 {
    max-width: 680px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
}

.quote-intro {
    margin: 18px 0 30px;
    color: var(--muted);
    font-size: 17px;
}

.quote-options {
    display: grid;
    gap: 14px;
}

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

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

.quote-option {
    min-height: 150px;
    padding: 24px;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    color: white;
    cursor: pointer;
    transition: 0.2s ease;
}

.quote-option:hover,
.quote-option.selected {
    transform: translateY(-3px);
    border-color: rgba(143, 195, 255, 0.55);
    background: rgba(36, 107, 253, 0.13);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.quote-option strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
}

.quote-option span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.quote-back-button {
    margin-top: 24px;
    border: 0;
    background: none;
    color: var(--blue-light);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.estimate-card {
    margin-top: 30px;
    padding: 34px;
    border: 1px solid rgba(143, 195, 255, 0.28);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(36, 107, 253, 0.17), rgba(255, 255, 255, 0.035));
}

.estimate-card > span {
    color: var(--blue-light);
    font-weight: 800;
}

.estimate-card strong {
    display: block;
    margin-top: 12px;
    font-size: clamp(42px, 8vw, 72px);
    line-height: 1;
}

.estimate-card p {
    margin-top: 18px;
    color: var(--muted);
}

.quote-actions,
.quote-form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.quote-form {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.quote-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote-field-row > div {
    display: grid;
    gap: 8px;
}

.quote-form label {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 800;
}

.quote-success {
    text-align: center;
    padding: 30px 0;
}

.success-mark {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: var(--blue);
    font-size: 34px;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(36, 107, 253, 0.35);
}

.quote-success .eyebrow {
    text-align: center;
}

.quote-success h2 {
    margin-inline: auto;
}

.quote-success p {
    max-width: 560px;
    margin: 20px auto 30px;
    color: var(--muted);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .quote-experience {
        padding: 42px 22px 28px;
        border-radius: 24px;
    }

    .service-options,
    .scope-options,
    .quote-field-row {
        grid-template-columns: 1fr;
    }

    .quote-option {
        min-height: auto;
    }

    .quote-actions,
    .quote-form-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Speak With Our Team contact hub */

.nav-contact-button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.contact-hub {
    position: fixed;
    inset: 0;
    z-index: 7000;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-hub.open {
    opacity: 1;
    visibility: visible;
}

.contact-hub-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 5, 12, 0.88);
    backdrop-filter: blur(18px);
}

.contact-hub-panel {
    position: relative;
    z-index: 2;
    width: min(100%, 1040px);
    max-height: 92vh;
    overflow-y: auto;
    padding: 52px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        radial-gradient(circle at 95% 0%, rgba(36, 107, 253, 0.25), transparent 30%),
        linear-gradient(145deg, #111827, #070a12);
    box-shadow: 0 50px 160px rgba(0, 0, 0, 0.75);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.35s ease;
}

.contact-hub.open .contact-hub-panel {
    transform: translateY(0) scale(1);
}

.contact-hub-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 29px;
    cursor: pointer;
}

.contact-hub-intro {
    max-width: 760px;
}

.contact-hub-intro h2,
.contact-hub-form-panel h2 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.contact-hub-intro p {
    max-width: 650px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
}

.contact-hub-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.contact-method-card {
    position: relative;
    min-height: 210px;
    padding: 30px;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
    color: white;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    transition: 0.25s ease;
}

.contact-method-card:hover {
    transform: translateY(-6px);
    border-color: rgba(143, 195, 255, 0.48);
    background: rgba(36, 107, 253, 0.11);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.contact-method-number {
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-method-card strong {
    display: block;
    margin-top: 28px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 26px;
    line-height: 1.15;
}

.contact-method-card p {
    margin-top: 12px;
    color: var(--muted);
}

.contact-method-arrow {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color: var(--blue-light);
    font-size: 23px;
}

.contact-hub-form-panel {
    display: none;
    animation: contactHubFade 0.28s ease;
}

.contact-hub-form-panel.active {
    display: block;
}

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

.contact-hub-back {
    margin-bottom: 28px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--blue-light);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.contact-mini-form {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.contact-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field-row > div {
    display: grid;
    gap: 8px;
}

.contact-mini-form label {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 800;
}

.contact-mini-form .button {
    width: fit-content;
    margin-top: 12px;
}

@media (max-width: 760px) {
    .contact-hub-panel {
        padding: 46px 22px 28px;
        border-radius: 25px;
    }

    .contact-hub-options,
    .contact-field-row {
        grid-template-columns: 1fr;
    }

    .contact-method-card {
        min-height: 175px;
    }

    .contact-mini-form .button {
        width: 100%;
    }
}

/* Why choose us */
.why-section {
    background:
        radial-gradient(circle at 15% 0%, rgba(36, 107, 253, 0.12), transparent 28%),
        var(--bg-soft);
}

.why-heading {
    max-width: 820px;
}

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

.why-card {
    min-height: 310px;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(143, 195, 255, 0.4);
    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(36, 107, 253, 0.08);
}

.why-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(36, 107, 253, 0.14);
    border: 1px solid rgba(143, 195, 255, 0.18);
}

.why-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: var(--blue-light);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    margin-top: 28px;
    font-size: 29px;
    line-height: 1.15;
}

.why-card p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
}

/* Easier-to-read About page */
.about-readable-section {
    background: linear-gradient(180deg, #0b0f18, #0f172a);
}

.about-readable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-readable-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.035);
}

.about-readable-card-large {
    grid-column: 1 / -1;
    padding: 58px;
    background:
        radial-gradient(circle at 90% 10%, rgba(36, 107, 253, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.about-readable-card h2 {
    max-width: 900px;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-readable-card h3 {
    margin-top: 20px;
    font-size: 27px;
}

.about-readable-card p {
    max-width: 850px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
}

.about-card-number {
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.journey-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    background: #090d15;
}

.journey-content h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.journey-content p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
}

.journey-highlight {
    padding: 42px;
    border: 1px solid rgba(143, 195, 255, 0.22);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(36, 107, 253, 0.15), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.journey-highlight span {
    display: block;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
}

.journey-highlight strong {
    display: block;
    margin-top: 22px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 34px;
    line-height: 1.15;
}

/* Premium footer */
.site-footer {
    padding: 72px 7% 30px;
    text-align: left;
    background:
        radial-gradient(circle at 10% 0%, rgba(36, 107, 253, 0.1), transparent 26%),
        #05070c;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 1fr 1.1fr;
    gap: 48px;
}

.footer-logo-image {
    width: 190px;
    height: auto;
}

.footer-brand p {
    max-width: 440px;
    margin-top: 22px;
    color: #8f98aa;
}

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

.footer-column h3 {
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
}

.footer-column a {
    color: #8f98aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--blue-light);
}

.footer-contact-button {
    width: fit-content;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--blue-light);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: #687386;
    font-size: 14px;
}

@media (max-width: 900px) {
    .why-grid,
    .about-readable-grid,
    .journey-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .why-card,
    .about-readable-card,
    .about-readable-card-large,
    .journey-highlight {
        padding: 30px 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Contact navigation button */
.nav-link-button {
    padding: 0;
    border: 0;
    background: none;
    color: var(--muted);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link-button:hover {
    color: var(--text);
}

/* Premium service quote buttons */
.service-quote-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--blue-light);
    font: inherit;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-quote-button:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.service-quote-button:focus-visible {
    outline: 2px solid var(--blue-light);
    outline-offset: 6px;
}

/* Unified premium form styling */
:root {
    --field-bg: rgba(255, 255, 255, 0.055);
    --field-bg-hover: rgba(255, 255, 255, 0.075);
    --field-border: rgba(255, 255, 255, 0.12);
    --field-border-hover: rgba(143, 195, 255, 0.32);
    --field-focus: rgba(143, 195, 255, 0.78);
    --field-shadow: 0 0 0 4px rgba(36, 107, 253, 0.14);
}

.quote-form,
.contact-mini-form {
    display: grid;
    gap: 14px;
}

.quote-form label,
.contact-mini-form label {
    display: block;
    margin: 8px 0 2px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.contact-mini-form input,
.contact-mini-form select,
.contact-mini-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid var(--field-border);
    border-radius: 14px;
    outline: none;
    background: var(--field-bg);
    color: #ffffff;
    font: inherit;
    line-height: 1.4;
    caret-color: var(--blue-light);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover,
.contact-mini-form input:hover,
.contact-mini-form select:hover,
.contact-mini-form textarea:hover {
    background: var(--field-bg-hover);
    border-color: var(--field-border-hover);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.contact-mini-form input:focus,
.contact-mini-form select:focus,
.contact-mini-form textarea:focus {
    border-color: var(--field-focus);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: var(--field-shadow);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder,
.contact-mini-form input::placeholder,
.contact-mini-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.quote-form textarea,
.contact-mini-form textarea {
    min-height: 130px;
    resize: vertical;
}

.quote-form select,
.contact-mini-form select {
    padding-right: 48px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--blue-light) 50%),
        linear-gradient(135deg, var(--blue-light) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.quote-form select option,
.contact-mini-form select option {
    background: #111827;
    color: #ffffff;
}

.quote-form input[type="date"],
.quote-form input[type="time"],
.contact-mini-form input[type="date"],
.contact-mini-form input[type="time"] {
    color-scheme: dark;
    cursor: pointer;
}

.quote-form input[type="date"]::-webkit-calendar-picker-indicator,
.quote-form input[type="time"]::-webkit-calendar-picker-indicator,
.contact-mini-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-mini-form input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.9;
    cursor: pointer;
    filter: invert(76%) sepia(35%) saturate(1030%) hue-rotate(180deg) brightness(103%) contrast(102%);
}

.quote-form input[type="file"],
.contact-mini-form input[type="file"] {
    min-height: 58px;
    padding: 8px;
    cursor: pointer;
}

.quote-form input[type="file"]::file-selector-button,
.contact-mini-form input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 11px 16px;
    border: 1px solid rgba(143, 195, 255, 0.24);
    border-radius: 10px;
    background: rgba(36, 107, 253, 0.16);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.quote-field-row,
.contact-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quote-field-row > div,
.contact-field-row > div {
    display: grid;
    gap: 8px;
}

.quote-form input:-webkit-autofill,
.quote-form input:-webkit-autofill:hover,
.quote-form input:-webkit-autofill:focus,
.contact-mini-form input:-webkit-autofill,
.contact-mini-form input:-webkit-autofill:hover,
.contact-mini-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1000px #111827 inset;
}

@media (max-width: 680px) {
    .quote-field-row,
    .contact-field-row {
        grid-template-columns: 1fr;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea,
    .contact-mini-form input,
    .contact-mini-form select,
    .contact-mini-form textarea {
        font-size: 16px;
    }
}

/* Homepage mission section */
.mission-section {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 54px;
    align-items: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(36, 107, 253, 0.13), transparent 30%),
        linear-gradient(135deg, #080c14, #101827);
}

.mission-content {
    max-width: 880px;
}

.mission-content h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.mission-content h2 span {
    display: block;
    color: var(--blue-light);
}

.mission-content p {
    max-width: 820px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.mission-content strong {
    color: #ffffff;
}

.mission-highlight {
    padding: 42px;
    border: 1px solid rgba(143, 195, 255, 0.24);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(36, 107, 253, 0.16), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.mission-highlight span {
    display: block;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
}

.mission-highlight strong {
    display: block;
    margin-top: 22px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 34px;
    line-height: 1.18;
}

@media (max-width: 900px) {
    .mission-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mission-highlight {
        padding: 30px 24px;
    }

    .mission-content p {
        font-size: 17px;
    }
}

/* Meet the Team page */
.team-hero {
    min-height: 520px;
}

.team-section {
    background:
        radial-gradient(circle at 85% 5%, rgba(36, 107, 253, 0.11), transparent 25%),
        linear-gradient(180deg, #0b0f18, #101827);
}

.team-heading {
    max-width: 850px;
}

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

.team-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(143, 195, 255, 0.38);
}

.team-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    padding: 42px;
}

.team-photo-placeholder {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(143, 195, 255, 0.2);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 35%, rgba(36, 107, 253, 0.26), transparent 38%),
        linear-gradient(145deg, #172033, #0b101a);
    color: var(--blue-light);
}

.team-card-featured .team-photo-placeholder {
    min-height: 340px;
}

.team-photo-placeholder > span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(143, 195, 255, 0.32);
    border-radius: 50%;
    background: rgba(36, 107, 253, 0.14);
    color: #ffffff;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.team-photo-placeholder small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 10px;
    font-weight: 800;
}

.team-card-content {
    align-self: center;
}

.team-role {
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    font-weight: 800;
}

.team-card-content h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.team-card-content p {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.75;
}

.team-profile-note {
    color: rgba(143, 195, 255, 0.78) !important;
    font-weight: 700;
}

.team-values-section {
    background: #090d15;
}

.team-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.team-values-grid article {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.team-values-grid span {
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.team-values-grid h3 {
    margin-top: 20px;
    font-size: 25px;
}

.team-values-grid p {
    margin-top: 12px;
    color: var(--muted);
}

@media (max-width: 1050px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-featured {
        grid-column: auto;
    }

    .team-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .team-card,
    .team-card-featured {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .team-card-featured .team-photo-placeholder,
    .team-photo-placeholder {
        min-height: 250px;
    }

    .team-values-grid {
        grid-template-columns: 1fr;
    }
}

/* Team photography */
.team-photo {
    min-height: 230px;
    overflow: hidden;
    border: 1px solid rgba(143, 195, 255, 0.2);
    border-radius: 22px;
    background: #0b101a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.team-card-featured .team-photo {
    min-height: 340px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.03);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.05);
}

/* Individual crop tuning */
.team-card:nth-child(1) .team-photo img {
    object-position: center 35%;
}

.team-card:nth-child(2) .team-photo img {
    object-position: center 28%;
}

.team-card:nth-child(3) .team-photo img {
    object-position: center 30%;
}

.team-card:nth-child(4) .team-photo img {
    object-position: center 20%;
}

.team-card:nth-child(5) .team-photo img {
    object-position: center 25%;
}

@media (max-width: 760px) {
    .team-card-featured .team-photo,
    .team-photo {
        min-height: 280px;
    }
}



/* Sam card now matches all other team cards */
.team-card-featured {
    grid-column: auto !important;
    grid-template-columns: 180px minmax(0, 1fr) !important;
    padding: 30px !important;
}

.team-card-featured .team-photo {
    min-height: 230px !important;
}

@media (max-width: 760px) {
    .team-card-featured {
        grid-template-columns: 1fr !important;
        padding: 24px !important;
    }

    .team-card-featured .team-photo {
        min-height: 280px !important;
    }
}


/* Final messaging, process and footer polish */
.work-content-simple {
    align-self: start;
}

.work-content-simple h2 {
    margin: 0;
}

.process-panel-bullets .process-item {
    align-items: start;
}

.process-item ul {
    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.process-item li {
    position: relative;
    margin-top: 7px;
    padding-left: 18px;
    color: var(--muted);
}

.process-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--blue-light);
}

.story-content {
    max-width: 900px;
}

.footer-grid-final {
    grid-template-columns: 1.1fr 1.25fr 1fr;
    align-items: start;
    gap: 64px;
}

.footer-services-column,
.footer-contact-column {
    text-align: left;
}

.footer-services-line {
    margin: 0;
    color: #8f98aa;
    line-height: 1.9;
}

.footer-services-line span {
    color: var(--blue-light);
    padding: 0 5px;
}

.footer-contact-column {
    gap: 18px;
}

.footer-contact-item {
    display: grid;
    gap: 3px;
}

.footer-contact-item > span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-item a {
    overflow-wrap: anywhere;
}

.contact-mini-form select {
    width: 100%;
}

@media (max-width: 900px) {
    .footer-grid-final {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}


/* Final About page polish */
.about-hero-cta{
    margin-top:90px !important;
}

.about-value-card,
.about-readable-card:not(.about-readable-card-large){
    transition:transform .3s ease, box-shadow .3s ease,
               border-color .3s ease, background .3s ease;
    cursor:pointer;
}

.about-value-card:hover,
.about-readable-card:not(.about-readable-card-large):hover{
    transform:translateY(-10px);
    border-color:#4da3ff;
    background:rgba(255,255,255,.06);
    box-shadow:0 20px 45px rgba(0,0,0,.28);
}


/* FINAL FIX: About hero button spacing */
.about-hero .about-hero-cta {
    display: inline-flex !important;
    margin-top: 120px !important;
    position: relative !important;
    z-index: 2;
}

/* FINAL FIX: Footer services stacked and larger */
.footer-services-column .footer-services-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
    margin-top: 18px !important;
}

.footer-services-column .footer-services-list a {
    display: block !important;
    color: #cfd6e6 !important;
    text-decoration: none !important;
    font-size: 1.18rem !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    letter-spacing: 0.01em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-services-column .footer-services-list a:hover {
    color: #8fc3ff !important;
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .about-hero .about-hero-cta {
        margin-top: 88px !important;
    }

    .footer-services-column .footer-services-list a {
        font-size: 1.12rem !important;
    }
}

.mobile-menu-toggle,
.mobile-nav {
    display: none;
}

@media (max-width: 1050px) {
    .site-header {
        position: sticky;
        padding: 14px 20px;
        gap: 14px;
    }

    .nav-links,
    .nav-contact-button {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 10px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        cursor: pointer;
        z-index: 1002;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

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

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

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

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        padding: 18px 20px 24px;
        background: #080d18;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        z-index: 1001;
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a,
    .mobile-nav button {
        width: 100%;
        padding: 14px 8px;
        color: #ffffff;
        background: transparent;
        border: 0;
        text-align: left;
        text-decoration: none;
        font: inherit;
        font-size: 1rem;
        cursor: pointer;
    }

    .mobile-nav a:hover,
    .mobile-nav button:hover {
        color: #8fc3ff;
    }

    .site-logo-image {
        max-width: 175px;
        height: auto;
    }
}