/* =========================================================
   CITYWATCH — SECURITY & TECHNOLOGY
   Main Stylesheet
   ========================================================= */

:root {
    --bg: #05070a;
    --bg-soft: #0a0e13;
    --bg-card: #0d1218;
    --bg-card-hover: #111923;

    --text: #f7f9fb;
    --text-soft: #a9b2bd;
    --text-muted: #6f7a86;

    --blue: #4bbcff;
    --blue-light: #8ed7ff;
    --blue-dark: #1596e5;

    --border: rgba(255,255,255,0.09);
    --border-blue: rgba(75,188,255,0.28);

    --shadow-blue: 0 0 40px rgba(75,188,255,0.12);

    --container: 1240px;

    --radius-small: 10px;
    --radius: 18px;
    --radius-large: 28px;

    --transition: 0.3s ease;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(75,188,255,0.055),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--blue);
    color: #03101a;
}


/* =========================
   GLOBAL
========================= */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 130px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--blue);

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";

    width: 28px;
    height: 1px;

    background: var(--blue);
}

h1,
h2,
h3,
h4 {
    line-height: 1.05;
}

h1,
h2 {
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    font-weight: 750;
}

h1 span,
h2 span {
    color: var(--blue);
}

p {
    color: var(--text-soft);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;

    gap: 70px;

    margin-bottom: 70px;
}

.section-heading h2 {
    margin-top: 18px;
}

.section-heading > p {
    max-width: 500px;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}

.site-header.scrolled {
    background: rgba(5,7,10,0.78);

    border-bottom-color: var(--border);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    height: 102px;

    display: flex;
    align-items: center;

    gap: clamp(14px, 2vw, 27px);

    width: min(calc(100% - 32px), var(--container));
}

.logo {
    flex-shrink: 0;
}

.header-contact {
    flex-shrink: 0;
}

.nav-cta {
    flex-shrink: 0;
}

.mobile-menu-button {
    flex-shrink: 0;
}

/* REAL HEADER LOGO */

.logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.header-logo {
    display: block;

    width: clamp(180px, 17vw, 250px);

    max-height: 76px;

    object-fit: contain;
}

.header-logo {
    width: clamp(190px, 19vw, 280px);
    max-height: 400px;
}


/* NAVIGATION */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 34px;

    margin-left: auto;
}

.desktop-nav a {
    position: relative;

    color: #c7ced6;

    font-size: 0.98rem;
    font-weight: 600;

    white-space: nowrap;

    transition: color var(--transition);
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--blue);

    transition: width var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}


/* HEADER PHONE */

.header-contact {
    display: flex;
    flex-direction: column;

    flex-shrink: 0;

    line-height: 1.1;
}

.header-contact-text {
    margin-bottom: 6px;

    color: var(--text-muted);

    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.header-phone {
    color: white;

    font-size: 1rem;
    font-weight: 800;

    white-space: nowrap;

    transition: color var(--transition);
}

.header-phone:hover {
    color: var(--blue);
}


/* GET QUOTE */

.nav-cta {
    flex-shrink: 0;

    padding: 15px 24px;

    border: 1px solid var(--border-blue);
    border-radius: 9px;

    background: rgba(75,188,255,0.07);

    color: var(--blue);

    font-size: 0.92rem;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.nav-cta:hover {
    background: var(--blue);
    color: #03101a;

    transform: translateY(-2px);
}


/* MOBILE BUTTON */

.mobile-menu-button {
    width: 42px;
    height: 42px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: rgba(255,255,255,0.03);
}

.mobile-menu-button span {
    width: 18px;
    height: 1px;

    background: white;

    transition: var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 150px 0 100px;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 73% 42%,
            rgba(75,188,255,0.13),
            transparent 24%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(75,188,255,0.05),
            transparent 26%
        );
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    align-items: center;

    gap: clamp(40px, 5vw, 80px);
}

.hero-content,
.hero-visual {
    min-width: 0;
}

.hero-content,
.hero-visual {
    min-width: 0;
}

.hero-eyebrow {
    width: fit-content;

    margin-bottom: 28px;
    padding: 9px 14px;

    border: 1px solid var(--border-blue);
    border-radius: 100px;

    background: rgba(75,188,255,0.055);

    color: var(--blue);

    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.hero h1 {
    max-width: 800px;

    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 780;
}

.hero-description {
    max-width: 620px;

    margin-top: 30px;

    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.7;
}

.hero-message {
    margin-top: 22px;

    color: #d8dee5;

    font-size: 1rem;
}

.hero-message strong {
    color: white;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 38px;
}

.button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    padding: 0 24px;

    border-radius: 9px;

    font-size: 0.86rem;
    font-weight: 800;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.button-primary {
    background: var(--blue);
    color: #041018;

    box-shadow:
        0 12px 40px rgba(75,188,255,0.18);
}

.button-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 50px rgba(75,188,255,0.3);
}

.button-primary span {
    transition: transform var(--transition);
}

.button-primary:hover span {
    transform: translateX(5px);
}

.button-secondary {
    border: 1px solid var(--border);

    background: rgba(255,255,255,0.025);

    color: white;
}

.button-secondary:hover {
    background: rgba(255,255,255,0.07);

    transform: translateY(-3px);
}

.button-full {
    width: 100%;
}


/* CLEAN SMART REAL */

.hero-trust {
    display: flex;

    gap: 0;

    margin-top: 55px;
}

.hero-trust > div {
    min-width: 150px;

    display: flex;
    flex-direction: column;

    padding-right: 30px;
    margin-right: 30px;

    border-right: 1px solid var(--border);
}

.hero-trust > div:last-child {
    border-right: 0;
}

.hero-trust strong {
    color: white;

    font-size: 1.15rem;
    font-weight: 800;
}

.hero-trust span {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 0.84rem;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;

    width: 100%;
    min-width: 0;

    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: rgba(75,188,255,0.09);

    filter: blur(100px);

    animation: glowPulse 5s ease-in-out infinite;
}

.hero-logo-card {
    position: relative;
    z-index: 3;

    width: min(100%, 500px);

    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 28px;

    border: 1px solid rgba(75,188,255,0.24);
    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.45),
        inset 0 1px rgba(255,255,255,0.08);

    animation: cardFloat 6s ease-in-out infinite;

    overflow: hidden;
}


.hero-main-logo {
    display: block;

    width: 70%;
    max-width: 300px;
    height: auto;

    object-fit: contain;
}

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(75,188,255,0.12);
    border-radius: 50%;
}

.orbit-one {
    width: 460px;
    height: 460px;

    animation: rotateOrbit 30s linear infinite;
}

.orbit-two {
    width: 590px;
    height: 590px;

    border-style: dashed;

    opacity: 0.5;

    animation: rotateOrbitReverse 45s linear infinite;
}

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 11px 15px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: rgba(8,12,17,0.82);

    backdrop-filter: blur(14px);

    color: #d7dee6;

    font-size: 0.72rem;
    font-weight: 700;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.25);
}

.floating-card-one {
    top: 19%;
    right: 2%;

    animation: smallFloat 5s ease-in-out infinite;
}

.floating-card-two {
    left: 0;
    bottom: 25%;

    animation: smallFloat 6s ease-in-out infinite 1s;
}

.floating-card-three {
    right: 7%;
    bottom: 11%;

    animation: smallFloat 7s ease-in-out infinite 0.5s;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #57e69a;

    box-shadow:
        0 0 10px rgba(87,230,154,0.8);
}


/* BIGGER SCROLL */

.scroll-indicator {
    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    transform: translateX(-50%);

    color: var(--text-muted);

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.scroll-indicator div {
    position: relative;

    width: 2px;
    height: 50px;

    overflow: hidden;

    background: rgba(255,255,255,0.1);
}

.scroll-indicator div::after {
    content: "";

    position: absolute;

    top: -100%;
    left: 0;

    width: 100%;
    height: 100%;

    background: var(--blue);

    box-shadow:
        0 0 10px rgba(75,188,255,0.6);

    animation: scrollLine 2s infinite;
}


/* =========================
   INTRO
========================= */

.intro {
    border-top: 1px solid var(--border);

    background: var(--bg-soft);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    margin-top: 40px;
}

.intro-heading h2 {
    max-width: 630px;
}

.intro-copy {
    max-width: 560px;
}

.intro-copy p {
    font-size: 1.08rem;
    line-height: 1.9;
}

.intro-copy h3 {
    margin: 35px 0;

    color: white;

    font-size: clamp(1.7rem,3vw,2.6rem);
    line-height: 1.2;
}

.intro-copy h3 span {
    display: block;

    margin-top: 5px;

    color: var(--blue);
}


/* =========================
   SERVICES
========================= */

.services {
    overflow: hidden;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 16px;
}

.service-card {
    position: relative;

    min-height: 440px;

    display: flex;
    flex-direction: column;

    padding: 34px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(75,188,255,0.08);

    filter: blur(70px);

    opacity: 0;

    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(75,188,255,0.28);

    background: var(--bg-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    position: absolute;

    top: 27px;
    right: 29px;

    color: #414a54;

    font-size: 0.68rem;
    font-weight: 800;
}

.service-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 32px;

    border: 1px solid var(--border-blue);
    border-radius: 13px;

    background: rgba(75,188,255,0.06);

    color: var(--blue);
}

.service-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 18px;

    color: white;

    font-size: 1.45rem;
}

.service-card > p {
    min-height: 80px;

    margin-bottom: 25px;

    font-size: 0.92rem;
    line-height: 1.75;
}

.service-card ul {
    list-style: none;

    margin-bottom: 0;
}

.service-card li {
    position: relative;

    padding: 7px 0 7px 17px;

    color: #8e98a4;

    font-size: 0.8rem;
}

.service-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 14px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--blue);
}

.service-card-highlight {
    border-color: var(--border-blue);

    background:
        linear-gradient(
            145deg,
            rgba(75,188,255,0.12),
            rgba(75,188,255,0.025)
        );
}

.service-card-highlight h4 {
    margin-top: 10px;

    color: var(--blue);

    font-size: 1.2rem;
}

.service-card-highlight .card-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;

    padding: 16px 18px;

    border: 0;
    border-radius: 9px;

    background: var(--blue);

    color: #041018;

    font-size: 0.78rem;
    font-weight: 800;
}

.card-button span {
    transition: transform var(--transition);
}

.card-button:hover span {
    transform: translateX(5px);
}


/* =========================
   C3 STANDARD
========================= */

.standard {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(75,188,255,0.07),
            transparent 42%
        ),
        #070a0e;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.standard-header {
    max-width: 830px;

    margin: 0 auto 75px;

    text-align: center;
}

.standard-header .section-label::before {
    display: none;
}

.standard-header h2 {
    margin-top: 20px;
}

.standard-header p {
    max-width: 630px;

    margin: 28px auto 0;

    font-size: 1rem;
    line-height: 1.8;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    overflow: hidden;
}

.standard-card {
    position: relative;

    min-height: 400px;

    padding: 42px;

    background: rgba(255,255,255,0.018);

    border-right: 1px solid var(--border);

    overflow: hidden;

    transition: background 0.4s ease;
}

.standard-card:last-child {
    border-right: 0;
}

.standard-card:hover {
    background: rgba(75,188,255,0.055);
}

.standard-letter {
    position: absolute;

    right: -8px;
    bottom: -80px;

    color: rgba(75,188,255,0.035);

    font-size: 20rem;
    font-weight: 950;
    line-height: 1;

    pointer-events: none;
}

.standard-card > span {
    color: var(--blue);

    font-size: 0.68rem;
    font-weight: 800;
}

.standard-card h3 {
    position: relative;

    margin-top: 125px;

    color: white;

    font-size: 1.7rem;
    letter-spacing: 0.05em;
}

.standard-card p {
    position: relative;

    max-width: 300px;

    margin-top: 18px;

    font-size: 0.88rem;
    line-height: 1.8;
}

.standard-footer {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 30px;
}

.standard-footer strong {
    color: var(--blue);

    font-size: 2.5rem;
}

.standard-footer span {
    color: var(--text-muted);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}


/* =========================
   OUR WORK
========================= */

.work {
    background: var(--bg-soft);
}

.project-grid {
    display: grid;

    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: repeat(2,320px);

    gap: 16px;
}

.project-card {
    position: relative;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    overflow: hidden;

    background: #0c1117;
}

.project-large {
    grid-row: span 2;
}

.project-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(75,188,255,0.05),
            transparent
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.015) 20px,
            rgba(255,255,255,0.015) 21px
        );

    transition: transform 0.7s ease;
}

.project-card:hover .project-placeholder {
    transform: scale(1.03);
}

.project-placeholder span {
    color: #343e49;

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.project-info {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 70px 28px 25px;

    background:
        linear-gradient(
            transparent,
            rgba(5,7,10,0.95)
        );
}

.project-info span {
    color: var(--blue);

    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.project-info h3 {
    margin-top: 7px;

    font-size: 1.15rem;
}


/* =========================
   SUPPORT / ABOUT
========================= */

.support-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;

    align-items: center;

    gap: 100px;
}

.support-copy h2 {
    margin-top: 20px;
}

.support-copy > p {
    max-width: 600px;

    margin-top: 25px;

    font-size: 1rem;
    line-height: 1.85;
}

.support-line {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    max-width: 560px;

    margin-top: 40px;
    padding-top: 30px;

    border-top: 1px solid var(--border);
}

.support-line > span {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    margin-top: 7px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 18px rgba(75,188,255,0.8);
}

.support-line strong {
    font-size: 1rem;
    line-height: 1.6;
}

.support-panel {
    padding: 38px;

    border: 1px solid var(--border-blue);
    border-radius: var(--radius-large);

    background:
        linear-gradient(
            145deg,
            rgba(75,188,255,0.08),
            rgba(255,255,255,0.018)
        );

    box-shadow: var(--shadow-blue);
}

.support-panel-status {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--blue);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.support-panel-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #5ae79b;

    box-shadow:
        0 0 12px rgba(90,231,155,0.8);
}

.support-panel > h3 {
    margin: 25px 0 30px;

    font-size: 3.4rem;
}

.support-item {
    display: grid;
    grid-template-columns: 40px 1fr;

    gap: 15px;

    padding: 22px 0;

    border-top: 1px solid var(--border);
}

.support-item > span {
    color: var(--blue);

    font-size: 0.68rem;
    font-weight: 800;
}

.support-item strong {
    display: block;

    margin-bottom: 5px;
}

.support-item p {
    font-size: 0.8rem;
}


/* =========================
   BRANDS
========================= */

.brands {
    text-align: center;
}

.brands-heading {
    max-width: 780px;

    margin-inline: auto;
}

.brands-heading .section-label::before {
    display: none;
}

.brands-heading h2 {
    margin-top: 18px;
}

.brands-heading p {
    max-width: 600px;

    margin: 25px auto 0;

    line-height: 1.8;
}

.brand-track {
    display: grid;
    grid-template-columns: repeat(6,1fr);

    margin-top: 70px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-track span {
    min-height: 110px;

    display: grid;
    place-items: center;

    border-right: 1px solid var(--border);

    color: #697480;

    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.06em;

    transition:
        color var(--transition),
        background var(--transition);
}

.brand-track span:last-child {
    border-right: 0;
}

.brand-track span:hover {
    color: white;

    background: rgba(75,188,255,0.035);
}

.brands-statement {
    margin-top: 40px;

    font-size: 1rem;
}

.brands-statement strong {
    color: white;
}


/* =========================
   QUOTE
========================= */

.quote-section {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(75,188,255,0.1),
            transparent 28%
        ),
        #070a0e;

    border-top: 1px solid var(--border);
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 0.65fr;

    align-items: center;

    gap: 100px;
}

.quote-copy h2 {
    max-width: 750px;

    margin-top: 20px;
}

.quote-copy > p {
    max-width: 650px;

    margin-top: 27px;

    font-size: 1rem;
    line-height: 1.85;
}

.quote-contact {
    display: flex;
    flex-wrap: wrap;

    gap: 40px;

    margin-top: 40px;
}

.quote-contact a {
    display: flex;
    flex-direction: column;

    transition: transform var(--transition);
}

.quote-contact a:hover {
    transform: translateY(-3px);
}

.quote-contact small {
    margin-bottom: 7px;

    color: var(--text-muted);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.quote-contact strong {
    color: white;

    font-size: 1.3rem;
    font-weight: 750;
}

.quote-card {
    padding: 42px;

    border: 1px solid var(--border-blue);
    border-radius: var(--radius-large);

    background:
        linear-gradient(
            145deg,
            rgba(75,188,255,0.1),
            rgba(255,255,255,0.02)
        );

    box-shadow: var(--shadow-blue);
}

.quote-card-label {
    color: var(--blue);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.quote-card h3 {
    margin-top: 25px;

    font-size: 2rem;
}

.quote-card p {
    margin: 17px 0 30px;

    font-size: 0.9rem;
    line-height: 1.75;
}

.quote-card > small {
    display: block;

    margin-top: 15px;

    color: var(--text-muted);

    text-align: center;

    font-size: 0.67rem;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 75px 0 25px;

    background: #030507;

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 0.7fr 1fr;

    gap: 70px;

    padding-bottom: 60px;
}

.footer-logo {
    width: 275px;
    height: auto;

    object-fit: contain;
}

.footer-brand > p {
    max-width: 370px;

    margin-top: 24px;

    font-size: 0.82rem;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column > strong {
    margin-bottom: 8px;

    color: var(--text-muted);

    font-size: 0.62rem;
    letter-spacing: 0.17em;
}

.footer-column a {
    width: fit-content;

    color: #b7c0c9;

    font-size: 0.8rem;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--blue);
}

.footer-column a[href^="tel:"] {
    color: white;

    font-size: 1.15rem;
    font-weight: 750;
}

.footer-column a[href^="mailto:"] {
    color: white;

    font-size: 1.05rem;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

    color: #505a64;

    font-size: 0.65rem;
    letter-spacing: 0.08em;
}


/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s cubic-bezier(0.2,0.65,0.3,1),
        transform 0.8s cubic-bezier(0.2,0.65,0.3,1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

.service-grid .reveal:nth-child(2),
.standard-grid .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.service-grid .reveal:nth-child(3),
.standard-grid .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.service-grid .reveal:nth-child(4) {
    transition-delay: 0.08s;
}

.service-grid .reveal:nth-child(5) {
    transition-delay: 0.16s;
}

.service-grid .reveal:nth-child(6) {
    transition-delay: 0.24s;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes smallFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes rotateOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateOrbitReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes scrollLine {

    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 1180px) {

    .header-logo {
        width: 200px;
    }

    .desktop-nav {
        gap: 22px;
    }

    .desktop-nav a {
        font-size: 0.88rem;
    }

    .header-contact-text {
        display: none;
    }

    .header-phone {
        font-size: 0.9rem;
    }
}


@media (max-width: 1250px) {

    .desktop-nav {
        display: none;
    }

    .header-contact {
        display: flex;
    }

    .nav-cta {
        margin-left: auto;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-nav {
        position: absolute;

        top: 102px;
        left: 20px;
        right: 20px;

        display: flex;
        flex-direction: column;

        padding: 20px;

        border: 1px solid var(--border);
        border-radius: 16px;

        background: rgba(7,10,14,0.97);

        backdrop-filter: blur(20px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .mobile-nav a {
        padding: 14px 10px;

        border-bottom: 1px solid var(--border);

        font-size: 0.9rem;
    }

    .mobile-phone {
        color: white;
        font-weight: 750;
    }

    .mobile-quote-button {
        margin-top: 10px;

        border-radius: 8px;

        background: var(--blue);

        color: #041018;

        text-align: center;
        font-weight: 800;
    }
}


/* =========================================================
   HERO RESPONSIVE SWITCH
   ========================================================= */

@media (max-width: 1100px) {

    .hero {
        min-height: auto;

        padding-top: 150px;
        padding-bottom: 90px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .hero-content {
        width: 100%;
        max-width: 850px;
    }

    .hero-visual {
        width: 100%;

        min-height: 500px;

        margin-top: 10px;
    }

    .hero-logo-card {
        width: min(94%, 440px);

        padding: 22px;
    }

    .hero-main-logo {
        width: 100%;

        max-width: 390px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 90px 0;
    }

    .nav-container {
        min-height: 82px;
    }

    .header-logo {
        width: 185px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-nav {
        top: 82px;
    }

    .hero {
        min-height: auto;

        padding: 130px 0 80px;
    }

    .hero h1 {
        font-size: clamp(3.2rem,15vw,5rem);
    }

    .hero-description {
        margin-top: 22px;

        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3,1fr);

        margin-top: 40px;
    }

    .hero-trust > div {
        min-width: 0;

        padding-right: 12px;
        margin-right: 12px;
    }

    .hero-trust strong {
        font-size: 0.95rem;
    }

    .hero-trust span {
        font-size: 0.72rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-logo-card {
        width: min(92%, 420px);
    }

    .hero-main-logo {
        width: 70%;
        max-width: 300px;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 420px;
        height: 420px;
    }

    .floating-card {
        padding: 9px 11px;

        font-size: 0.61rem;
    }

    .floating-card-one {
        top: 8%;
        right: 0;
    }

    .floating-card-two {
        left: 0;
        bottom: 13%;
    }

    .floating-card-three {
        right: 2%;
        bottom: 0;
    }

    .scroll-indicator {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .standard-grid {
        grid-template-columns: 1fr;
    }

    .standard-card {
        min-height: 330px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .standard-card:last-child {
        border-bottom: 0;
    }

    .standard-card h3 {
        margin-top: 90px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3,330px);
    }

    .project-large {
        grid-row: auto;
    }

    .support-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .brand-track {
        grid-template-columns: repeat(2,1fr);
    }

    .brand-track span {
        min-height: 90px;

        border-bottom: 1px solid var(--border);
    }

    .brand-track span:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .brand-track span:nth-child(even) {
        border-right: 0;
    }

    .brand-track span:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .quote-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .quote-contact {
        flex-direction: column;

        gap: 20px;
    }

    .quote-contact strong {
        font-size: 1.25rem;
    }

    .quote-card {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-logo {
        width: 240px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }
}


/* =========================
   VERY SMALL SCREENS
========================= */

@media (max-width: 420px) {

    .header-logo {
        width: 165px;
    }

    .hero-eyebrow {
        font-size: 0.58rem;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .hero-trust > div {
        padding: 0 0 15px;
        margin: 0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .hero-trust > div:last-child {
        border-bottom: 0;
    }

    .hero-trust strong {
        font-size: 1.05rem;
    }

    .hero-trust span {
        font-size: 0.8rem;
    }

    .hero-visual {
        min-height: 340px;
    }

    .floating-card {
        display: none;
    }

    .standard-card {
        padding: 30px;
    }

    .support-panel {
        padding: 28px 22px;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   QUOTE PAGE
   ========================================================= */

.quote-page {
    padding-top: 102px;
}


.quote-page-hero {
    position: relative;

    padding: 100px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(75,188,255,0.11),
            transparent 28%
        ),
        #070a0e;

    border-bottom: 1px solid var(--border);
}


.quote-page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        );

    background-size: 65px 65px;
}


.quote-page-intro {
    position: relative;
    z-index: 2;

    max-width: 950px;
}


.quote-back {
    display: block;

    width: fit-content;

    margin-bottom: 45px;

    color: var(--text-muted);

    font-size: 0.8rem;
    font-weight: 700;

    transition: color var(--transition);
}


.quote-back:hover {
    color: var(--blue);
}


.quote-page-intro h1 {
    max-width: 950px;

    margin-top: 25px;

    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 780;

    letter-spacing: -0.05em;
}


.quote-page-intro h1 span {
    display: block;

    color: var(--blue);
}


.quote-page-intro > p {
    max-width: 700px;

    margin-top: 28px;

    font-size: 1.12rem;
    line-height: 1.8;
}


.quote-page-trust {
    display: flex;

    margin-top: 50px;
}


.quote-page-trust > div {
    display: flex;
    flex-direction: column;

    min-width: 170px;

    padding-right: 35px;
    margin-right: 35px;

    border-right: 1px solid var(--border);
}


.quote-page-trust > div:last-child {
    border-right: 0;
}


.quote-page-trust strong {
    color: white;

    font-size: 1.05rem;
}


.quote-page-trust span {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 0.78rem;
}


/* =========================
   FORM SECTION
========================= */

.quote-form-section {
    padding: 100px 0 130px;
}


.quote-form-layout {
    display: grid;

    grid-template-columns:
        minmax(260px, 0.55fr)
        minmax(0, 1fr);

    gap: 90px;

    align-items: start;
}


.quote-form-info {
    position: sticky;
    top: 145px;
}


.quote-form-info h2 {
    margin-top: 20px;

    font-size: clamp(2.5rem, 4vw, 4rem);
}


.quote-form-info > p {
    max-width: 400px;

    margin-top: 22px;

    line-height: 1.8;
}


.quote-side-message {
    max-width: 420px;

    margin-top: 45px;
    padding-top: 30px;

    border-top: 1px solid var(--border);
}


.quote-side-message strong {
    color: white;
}


.quote-side-message p {
    margin-top: 8px;

    font-size: 0.88rem;
    line-height: 1.7;
}


.quote-side-contact {
    display: flex;
    flex-direction: column;

    margin-top: 40px;
}


.quote-side-contact small {
    color: var(--text-muted);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}


.quote-side-contact a {
    margin-top: 7px;

    color: white;

    font-size: 1.4rem;
    font-weight: 800;

    transition: color var(--transition);
}


.quote-side-contact a:hover {
    color: var(--blue);
}


/* =========================
   CARD
========================= */

.quote-form-card {
    position: relative;

    padding: 45px;

    border: 1px solid var(--border);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);
}


.quote-field {
    margin-bottom: 32px;
}


.quote-field label,
.quote-field legend {
    display: block;

    margin-bottom: 11px;

    color: white;

    font-size: 0.87rem;
    font-weight: 750;
}


.quote-field label > span,
.quote-field legend > span {
    color: var(--blue);
}


.quote-field input[type="text"],
.quote-field input[type="email"],
.quote-field input[type="tel"],
.quote-field textarea,
.quote-field select {

    width: 100%;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;

    background: rgba(255,255,255,0.025);

    color: white;

    font: inherit;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}


.quote-field input[type="text"],
.quote-field input[type="email"],
.quote-field input[type="tel"],
.quote-field select {
    height: 54px;

    padding: 0 16px;
}


.quote-field textarea {
    resize: vertical;

    min-height: 145px;

    padding: 15px 16px;

    line-height: 1.6;
}


.quote-field input:focus,
.quote-field textarea:focus,
.quote-field select:focus {
    border-color: var(--blue);

    background: rgba(75,188,255,0.035);

    box-shadow:
        0 0 0 3px rgba(75,188,255,0.07);
}


.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #59636e;
}


.quote-field select {
    color: #dfe5eb;
}


.quote-field select option {
    background: #0c1117;
    color: white;
}


.quote-two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* =========================
   CHOICE CARDS
========================= */

.quote-field fieldset,
fieldset.quote-field {
    border: 0;
}


.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


.choice-card {
    position: relative;

    margin: 0 !important;

    cursor: pointer;
}


.choice-card input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}


.choice-card > span {
    min-height: 92px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 17px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255,255,255,0.02);

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}


.choice-card:hover > span {
    border-color: rgba(75,188,255,0.35);

    transform: translateY(-2px);
}


.choice-card input:checked + span {
    border-color: var(--blue);

    background: rgba(75,188,255,0.08);

    box-shadow:
        inset 0 0 25px rgba(75,188,255,0.04);
}


.choice-card strong {
    color: white;

    font-size: 0.88rem;
}


.choice-card small {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.45;
}


/* =========================
   SMALL CHOICES
========================= */

.small-choice-row {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


.small-choice {
    position: relative;

    margin: 0 !important;

    cursor: pointer;
}


.small-choice input {
    position: absolute;

    opacity: 0;
}


.small-choice span {
    display: block;

    padding: 10px 18px;

    border: 1px solid var(--border);
    border-radius: 100px;

    color: var(--text-soft);

    font-size: 0.78rem;

    transition: var(--transition);
}


.small-choice input:checked + span {
    border-color: var(--blue);

    background: rgba(75,188,255,0.1);

    color: white;
}


/* =========================
   HELP / ERRORS
========================= */

.field-help {
    display: block;

    margin-top: 8px;

    color: var(--text-muted);

    font-size: 0.7rem;
}


.field-error {
    display: none;

    margin-top: 10px;

    color: #ff8585;

    font-size: 0.75rem;
}


.field-error.visible {
    display: block;
}


.bot-field {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: -1px;
    padding: 0;

    overflow: hidden;

    clip: rect(0 0 0 0);

    border: 0;
}


/* =========================
   SUBMIT
========================= */

.quote-submit {
    width: 100%;

    border: 0;

    font-size: 0.95rem;
}


.quote-submit.loading {
    opacity: 0.65;
    pointer-events: none;
}


.quote-form-bottom {
    margin-top: 15px;

    color: var(--text-muted);

    text-align: center;

    font-size: 0.68rem;
}


/* =========================
   SUCCESS
========================= */

.quote-success {
    padding: 55px 15px;

    text-align: center;
}


.success-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    margin: 0 auto 25px;

    border: 1px solid var(--border-blue);
    border-radius: 50%;

    background: rgba(75,188,255,0.08);

    color: var(--blue);

    font-size: 1.8rem;
}


.quote-success h2 {
    font-size: 3rem;
}


.quote-success p {
    max-width: 500px;

    margin: 20px auto 30px;

    line-height: 1.8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .quote-form-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .quote-form-info {
        position: static;
    }

}


@media (max-width: 760px) {

    .quote-page {
        padding-top: 82px;
    }

    .quote-page-hero {
        padding: 70px 0;
    }

    .quote-page-intro h1 {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .quote-page-trust {
        display: grid;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .quote-page-trust > div {
        padding: 0 0 15px;
        margin: 0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .quote-page-trust > div:last-child {
        border-bottom: 0;
    }

    .quote-form-section {
        padding: 70px 0 90px;
    }

    .quote-form-card {
        padding: 28px 20px;
    }

    .quote-two-column,
    .choice-grid {
        grid-template-columns: 1fr;
    }

}