/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --lightning-color: #8898e7;
    --colour-light: #ffffff;
    --colour-micro-black: #000000;
    --colour-dark: #141414;
    --colour-gray: #383838;
    --ease-out-power2: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-in-out-power2: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-out: cubic-bezier(0.37, 0.31, 0, 1);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html:not(.is-ready.fonts-loaded) {
    cursor: wait;
    pointer-events: none;
}

html.is-ready.fonts-loaded {
    cursor: auto;
    pointer-events: auto;
}

body {
    font-family: var(--font-family);
    background-color: #0a0a0a;
    color: var(--colour-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #0a0a0a;
    display: grid;
    place-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

html.fonts-loaded.is-ready .loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    padding: 0 3rem;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

@media screen and (max-width: 991px) {
    .loader-inner {
        padding: 0 60px;
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.loader-column:nth-child(1) {
    grid-column: 3 span;
    color: var(--colour-gray);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media screen and (max-width: 991px) {
    .loader-column:nth-child(1) {
        grid-column: 6 span;
    }
}

.loader-column:nth-child(2) {
    grid-column: 2 span;
    display: flex;
}

@media screen and (max-width: 991px) {
    .loader-column:nth-child(2) {
        grid-column: 6 span;
    }
}

.loader-span-dots {
    display: inline-flex;
    gap: 0.125rem;
    padding-left: 0.125rem;
}

@keyframes console-log {
    50% {
        opacity: 1;
    }
}

html.fonts-loaded .loader-span-dots .loader-span {
    animation: console-log 0.9s step-start infinite;
}

html.fonts-loaded .loader-span-dots .loader-span:nth-child(1) {
    animation-delay: 0.2s;
}

html.fonts-loaded .loader-span-dots .loader-span:nth-child(2) {
    animation-delay: 0.4s;
}

html.fonts-loaded .loader-span-dots .loader-span:nth-child(3) {
    animation-delay: 0.6s;
}

.loader.is-finished .loader-span-dots .loader-span {
    animation: none;
    opacity: 0;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2.5rem;
    background-color: transparent;
    transition: background-color 0.2s ease-out;
}

@media screen and (max-width: 991px) {
    .nav-bar {
        padding: 1rem 1.5rem;
    }
}

.nav-bar.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.225s 0.8s ease-out;
}

html.is-ready.fonts-loaded .nav-wrapper {
    opacity: 1;
}

.nav-logo-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--colour-light);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Navbar brand removed */
.nav-logo {
    display: none;
}

.nav-logo-img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .nav-logo-text {
        display: none;
    }
    .nav-logo-img {
        height: 1.75rem;
    }
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .nav-menu {
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

.nav-link {
    color: var(--colour-light);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.2s ease-out;
    opacity: 0.7;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 1;
}

.nav-button {
    background: none;
    border: none;
    color: var(--colour-light);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.15;
    transition: opacity 0.25s 1.5s ease-out;
}

@media screen and (min-width: 769px) {
    .nav-button {
        display: none;
    }
}

html.is-ready.fonts-loaded .nav-button {
    opacity: 0.15;
}

.nav-button:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2.5rem 8rem;
    overflow: visible;
    margin-bottom: 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.5s ease-out;
    filter: grayscale(50%) brightness(0.6);
}

.hero-video.playing {
    opacity: 0.5;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(136, 152, 231, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.8s 0.3s ease-out forwards;
}

.hero-logo-img {
    height: 12rem;
    width: auto;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .hero-logo-img {
        height: 9rem;
    }
}

.hero-subline {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.subheading {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--colour-gray);
    opacity: 0;
    animation: fadeIn 0.8s 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-content {
    max-width: 100%;
    width: 100%;
    overflow: visible;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(1.6rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow: visible;
    width: 100%;
    color: #00BFFF;
}

.hero-title .split-word {
    display: inline;
    margin-right: 0.1em;
    opacity: 0;
}

@keyframes color-blink-in {
    0% {
        color: #00BFFF;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    35% {
        color: #00BFFF;
    }
    55% {
        opacity: 0.6;
    }
    70% {
        color: #00BFFF;
    }
    85% {
        opacity: 1;
    }
    to {
        opacity: 1;
        color: #00BFFF;
    }
}

html.is-ready.fonts-loaded [data-hero-title] .split-word {
    animation: color-blink-in 0.41s var(--ease-in-out-power2) both;
}

html.is-ready.fonts-loaded [data-hero-title] .split-word:nth-child(1) {
    animation-delay: 0.1s;
}

html.is-ready.fonts-loaded [data-hero-title] .split-word:nth-child(2) {
    animation-delay: 0.2s;
}

html.is-ready.fonts-loaded [data-hero-title] .split-word:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 760px;
    opacity: 0;
    animation: fadeIn 0.8s 1s ease-out forwards;
}

.hero-ps {
    margin-top: 3.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    align-items: stretch;
}

.hero-ps-card {
    border-radius: 1rem;
    padding: 1.1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    height: 100%;
}

.hero-ps-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.6rem;
}

.hero-ps-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-ps-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0.35rem 0;
    max-width: 70ch;
}

.hero-ps-list {
    margin: 0.6rem 0 0.6rem 1.1rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.hero-ps-list li {
    margin: 0.25rem 0;
}

.hero-ps-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-ps-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.6rem;
    line-height: 1;
}

@media screen and (min-width: 900px) {
    .hero-ps {
        grid-template-columns: 1fr auto 1fr;
        gap: 1.25rem;
    }
    .hero-ps-arrow {
        display: flex;
    }

    /* Two-card layout (no arrow column) */
    .hero-ps.services-ps-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.services-ps {
    margin-top: 4rem;
}

/* Extra spacing before "Let's work Together" heading */
.services-section .section-header + .section-header {
    margin-top: 6rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeIn 0.8s 1.2s ease-out forwards;
}

/* Buttons */
[data-button] {
    position: relative;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.button-primary,
.button-secondary {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--colour-light);
    transition: all 0.3s ease-out;
    text-decoration: none;
    border-radius: 1rem;
}

.button-primary:hover,
.button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--lightning-color);
}

@keyframes button-blink-in {
    0% {
        color: var(--lightning-color);
        opacity: 0;
        background-color: rgba(255, 255, 255, 0.1);
    }
    20% {
        opacity: 1;
    }
    35% {
        color: var(--lightning-color);
        background-color: rgba(255, 255, 255, 0.2);
    }
    55% {
        opacity: 0.6;
        background-color: rgba(255, 255, 255, 0.1);
    }
    70% {
        color: inherit;
    }
    85% {
        opacity: 1;
    }
    to {
        opacity: 1;
    }
}

@media (hover: hover) and (pointer: fine) {
    [data-button]:hover {
        animation: button-blink-in 0.32s var(--ease-in-out-power2) both;
    }
}

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2.5rem;
    position: relative;
    z-index: 1;
}

.services-section .section-container {
    padding-top: 4rem;
}

@media screen and (max-width: 768px) {
    .section-container {
        padding: 4rem 1.5rem;
    }
}

.section-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.section-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.5s ease-out;
    filter: grayscale(50%) brightness(0.5);
}

.section-video.playing {
    opacity: 0.3;
}

.section-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.services-section,
.about-section,
.news-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.section-label {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--colour-gray);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
    display: inline-block;
    white-space: nowrap;
    width: 100%;
    overflow: visible;
    color: #00BFFF;
    text-align: center;
}

.section-title .split-word {
    display: inline;
    margin-right: 0;
}

.section-title .split-word:not(:last-child)::after {
    content: ' ';
}

/* Services Section */
.services-section {
    position: relative;
    padding: 12rem 0 4rem;
    scroll-margin-top: 150px;
    margin-top: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(136, 152, 231, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--lightning-color);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--lightning-color);
}

.service-link {
    color: var(--lightning-color);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 1.75rem 0;
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.stat-item {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-number-wrap {
    margin-bottom: 0.25rem;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--lightning-color);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 3.5rem 0;
}

.about-content {
    max-width: 800px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 760px;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-gallery {
    margin-top: 2rem;
    width: 100%;
    max-width: 980px;
}

.about-gallery-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.about-gallery-title {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about-gallery-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    width: 100%;
}

.gallery-item {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 0;
    cursor: pointer;
    width: 100%;
    height: 200px;
    overflow: hidden;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
}

.gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-inner {
    width: min(1100px, 100%);
    max-height: 88vh;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 10, 0.65);
    overflow: hidden;
    position: relative;
}

.lightbox-img {
    width: 100%;
    height: 88vh;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    background: rgba(2, 6, 23, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 10, 10, 0.6);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lightbox-close:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--lightning-color);
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.news-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.news-text p {
    margin-bottom: 1.5rem;
}

.news-features {
    margin: 2rem 0;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--lightning-color);
}

.news-feature {
    margin-bottom: 1rem;
}

.news-feature:last-child {
    margin-bottom: 0;
}

.news-feature strong {
    color: var(--lightning-color);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    max-width: 800px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--lightning-color);
    text-decoration: none;
    margin-bottom: 3rem;
    transition: opacity 0.2s ease-out;
}

.contact-email:hover {
    opacity: 0.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease-out;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    color: var(--lightning-color);
    border-bottom-color: var(--lightning-color);
}

/* Contact Form */
.contact-form-wrapper {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-textarea {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--colour-light);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease-out;
    width: 100%;
    border-radius: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00BFFF;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.form-message-success {
    background-color: rgba(0, 191, 255, 0.1);
    border: 1px solid #00BFFF;
    color: #00BFFF;
}

.form-message-error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: rgba(255, 100, 100, 1);
}

/* Companies Supported Section */
.companies-section {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.companies-content {
    max-width: 1400px;
    margin: 0 auto;
}

.companies-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease-out;
    min-height: 110px;
}

.company-logo:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.company-img {
    height: 64px;
    width: 100%;
    max-width: 220px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease-out;
}

.company-logo:hover .company-img {
    filter: brightness(1);
}

@media screen and (max-width: 768px) {
    .company-img {
        height: 56px;
    }
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 999;
    padding: 0.85rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 10, 10, 0.65);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
    backdrop-filter: blur(10px);
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: var(--lightning-color);
}

/* Footer */
.footer {
    padding: 4rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(10, 10, 10, 0.8);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 12rem;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: inline-block;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-out;
}

.footer-link:hover {
    color: var(--lightning-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease-out;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #00BFFF;
    background-color: rgba(0, 191, 255, 0.1);
    border-color: #00BFFF;
    transform: translateY(-3px);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .hero-title {
        white-space: nowrap;
        font-size: clamp(1.35rem, 5.2vw, 1.9rem);
        overflow-x: auto;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

