:root {
    --primary: #111111;
    --primary-light: #2a2a2a;
    --white: #ffffff;
    --off-white: #f6f6f6;
    --text: #111111;
    --text-soft: #575757;
    --border: rgba(0, 0, 0, 0.10);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    --radius: 24px;
    --transition: 0.35s ease;
    --max-width: 1250px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.top-bar {
    background: #000000;
    color: white;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.top-bar a {
    color: white;
    text-decoration: underline;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
    width: min(94%, var(--max-width));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.logo-text span {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-text small {
    color: var(--text-soft);
    font-size: 0.78rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links a {
    font-weight: 700;
    transition: var(--transition);
}

.nav-links a:hover,
.active-link {
    color: #000000;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 4px;
}

.hero {
    width: min(94%, var(--max-width));
    margin: 0 auto;
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.80), rgba(255,255,255,0.80)),
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.08));
    z-index: -2;
}

.hero-inner {
    min-height: 82vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

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

.eyebrow,
.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.8rem;
}

.light-tag {
    color: rgba(255,255,255,0.84);
}

.mini-tag {
    display: inline-block;
    background: #111111;
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.9rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-description {
    max-width: 640px;
    color: var(--text-soft);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.hero-buttons,
.cta-buttons,
.inline-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-button,
.submit-btn,
.inline-cta,
.panel-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 1.45rem;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    display: inline-block;
}

.hero-button:hover,
.submit-btn:hover,
.inline-cta:hover,
.panel-button:hover {
    transform: translateY(-2px);
    background: #000000;
}

.secondary-button {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(0, 0, 0, 0.14);
    box-shadow: none;
}

.secondary-button:hover {
    background: rgba(255,255,255,0.72);
    color: var(--primary);
}

.dark-inline {
    background: #ffffff;
    color: #111111;
    border: 2px solid rgba(0, 0, 0, 0.12);
    box-shadow: none;
}

.dark-inline:hover {
    background: #efefef;
}

.light-outline {
    color: white;
    border-color: rgba(255,255,255,0.22);
}

.light-outline:hover {
    background: rgba(255,255,255,0.10);
    color: white;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.hero-badges span {
    background: rgba(255,255,255,0.84);
    color: var(--primary);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}

.hero-form-card,
.feature-card,
.service-card,
.service-detail,
.process-card,
.trust-item,
.side-panel,
.contact-box,
.contact-form-wrap {
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-form-card {
    padding: 2rem;
    max-width: 430px;
    justify-self: end;
}

.hero-form-card h2,
.side-panel h3 {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 0.8rem;
}

.hero-form-text,
.form-note {
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.quick-contact-form .form-group {
    margin-bottom: 1rem;
}

.form-note a {
    font-weight: 800;
    text-decoration: underline;
}

.form-message {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.trust-strip {
    width: min(92%, var(--max-width));
    margin: -2rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 4;
}

.trust-item {
    padding: 1.5rem 1rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.section-space {
    width: min(92%, var(--max-width));
    margin: 0 auto;
    padding: 6rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
}

.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.split-text h2,
.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.feature-grid,
.services-grid,
.services-page-grid,
.process-grid,
.footer-grid {
    display: grid;
    gap: 1.5rem;
}

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

.feature-card,
.service-card,
.service-detail,
.process-card {
    padding: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover,
.service-card:hover,
.service-detail:hover,
.process-card:hover {
    transform: translateY(-6px);
}

.feature-card h3,
.service-card h3,
.service-detail h2,
.process-card h3,
.contact-box h3 {
    margin-bottom: 0.7rem;
    color: var(--primary);
}

.service-card a,
.service-detail-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.dark-section {
    width: 100%;
    background: linear-gradient(135deg, #141414 0%, #000000 100%);
    color: white;
    margin: 2rem 0;
}

.dark-section .service-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: none;
}

.dark-section .service-card h3,
.dark-section .service-card a,
.dark-section .section-heading h2 {
    color: white;
}

.dark-section .service-card p {
    color: rgba(255,255,255,0.78);
}

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

.process-card span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111111;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero {
    width: min(94%, var(--max-width));
    margin: 2rem auto 0;
    min-height: 45vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,0.64), rgba(0,0,0,0.64)),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.20));
    z-index: -2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: min(90%, 850px);
    margin-left: 5%;
    padding: 4rem 0;
}

.page-hero-content h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.page-hero-content p {
    max-width: 700px;
    color: rgba(255,255,255,0.82);
}

.side-panel,
.contact-form-wrap {
    padding: 2rem;
}

.check-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}

.check-list li {
    position: relative;
    padding-left: 1.3rem;
}

.check-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--primary);
}

.contact-box {
    padding: 1.35rem;
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 1rem;
    background: rgba(255,255,255,0.98);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(0,0,0,0.10);
}

.cta-band {
    width: min(92%, var(--max-width));
    margin: 0 auto 5rem;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #171717 0%, #000000 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cta-copy {
    color: rgba(255,255,255,0.78);
    margin-top: 0.5rem;
}

footer {
    background: #050505;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

.footer-grid {
    width: min(92%, var(--max-width));
    margin: 0 auto;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.78);
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    width: min(92%, var(--max-width));
    margin: 2rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.10);
    text-align: center;
    color: rgba(255,255,255,0.62);
}

.floating-call-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #111111;
    color: white;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    z-index: 1200;
}

.floating-call-btn:hover {
    background: #000000;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s ease;
}

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

@media (max-width: 1050px) {
    .hero-inner,
    .split-grid,
    .contact-grid,
    .trust-strip,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-form-card {
        justify-self: stretch;
        max-width: none;
    }
}

@media (max-width: 780px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 86px;
        right: 3%;
        width: min(92vw, 320px);
        padding: 1.2rem;
        background: rgba(255,255,255,0.97);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: var(--transition);
    }

    .nav-links.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-inner,
    .trust-strip,
    .split-grid,
    .contact-grid,
    .feature-grid,
    .services-grid,
    .services-page-grid,
    .process-grid,
    .footer-grid,
    .form-row,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

    .page-hero-content {
        margin-left: 0;
        width: min(90%, 850px);
        margin: 0 auto;
    }

    .cta-band {
        text-align: center;
    }

    .floating-call-btn {
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center;
    }
}