:root {
    --primary: #042233;
    --secondary: #2f4755;
    --bg: #f7f9fb;
    --bg-alt: #ffffff;
    --ink: #0b1220;
    --muted: #5b6775;
    --accent: #18a6b8;
    --accent-2: #042233;
    --surface: #ffffff;
    --border: #e6edf2;
    --line: #e6edf2;
    --shadow: 0 20px 50px rgba(4, 34, 51, 0.12);
    --radius: 18px;
    --header-height: 82px;
    --font-body: "Sora", sans-serif;
    --font-display: "Playfair Display", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    overflow-x: hidden;
}

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

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

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

section {
    padding: 80px 0;
    scroll-margin-top: 110px;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--muted);
    margin: 0 0 12px;
}

.section-header {
    max-width: 680px;
    margin-bottom: 48px;
}

.section-header h2 {
    margin: 0 0 16px;
}

.section-header p {
    color: var(--muted);
    margin: 0 0 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn.primary {
    background: #042333;
    color: #fff;
    box-shadow: 0 12px 24px rgba(192, 127, 44, 0.25);
}

.btn.primary:hover {
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn.secondary:hover {
    background: var(--ink);
    color: #fff;
}

.btn.tertiary {
    background: transparent;
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-2);
}

.text-link::after {
    content: "->";
    transition: transform 0.3s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(247, 249, 251, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(4, 34, 51, 0.12);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1.1;
}

.logo span {
    color: var(--accent);
}

.logo small {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 24px;
    font-weight: 500;
}

.nav a {
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle .bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.nav-toggle.is-open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

.orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 30% 30%, rgba(24, 166, 184, 0.35), transparent 60%);
    top: -80px;
    left: -60px;
}

.orb--two {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 30%, rgba(47, 71, 85, 0.3), transparent 65%);
    bottom: -120px;
    right: -120px;
    animation-delay: 1.5s;
}

.orb--three {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, rgba(24, 166, 184, 0.2), transparent 60%);
    top: 30%;
    right: 20%;
    animation-delay: 3s;
}

.gridlines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 18, 32, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 18, 32, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 4rem);
    margin: 0 0 20px;
}

.hero-content .lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 28px 0;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stats strong {
    font-size: 1.4rem;
    display: block;
}

.hero-stats span {
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-panel {
    display: grid;
    gap: 20px;
}

.panel-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 18, 32, 0.08);
}

.panel-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent-2);
    margin-bottom: 10px;
}

.panel-card ul {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.split {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-card {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(11, 18, 32, 0.85);
    color: #fff;
    padding: 18px 22px;
    border-radius: 14px;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-top: 0;
}

.about-content p {
    color: var(--muted);
}

.values {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.values h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.values li {
    color: var(--muted);
    margin-bottom: 8px;
}

.grid {
    display: grid;
    gap: 24px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 12px 30px rgba(11, 18, 32, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.15);
}

.service-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(24, 166, 184, 0.12);
    display: grid;
    place-items: center;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.service-card h3 {
    margin: 0 0 10px;
}

.service-card p {
    color: var(--muted);
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-grid article {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(11, 18, 32, 0.08);
}

.portfolio-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-grid div {
    padding: 20px;
}

.press {
    margin-top: 50px;
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(11, 18, 32, 0.03);
    border: 1px solid rgba(11, 18, 32, 0.05);
}

.press-header h3 {
    margin-top: 0;
}

.press-grid {
    margin-top: 24px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.logo-tile {
    background: var(--surface);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid rgba(11, 18, 32, 0.08);
}

.founder {
    background: var(--bg);
}

.founder-content h2 {
    font-family: var(--font-display);
    margin-top: 0;
}

blockquote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 24px 0 12px;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.signature {
    font-weight: 600;
    color: var(--muted);
}

.founder-photo img {
    border-radius: 50% 50% 50% 20%;
    box-shadow: var(--shadow);
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 16px 30px rgba(11, 18, 32, 0.12);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-info {
    padding: 16px;
    background: var(--surface);
}

.team-info h3 {
    margin: 0 0 6px;
}

.team-info p {
    color: var(--muted);
    margin: 0;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.88);
    color: #fff;
    opacity: 0;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 24px;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.socials {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
}

.testimonial-slider {
    position: relative;
    min-height: 240px;
}

.testimonial {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.testimonial img {
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(11, 18, 32, 0.12);
}

.testimonial.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--muted);
}

.testimonial h4 {
    margin-bottom: 4px;
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-form {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 18, 32, 0.08);
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

input,
textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(11, 18, 32, 0.2);
    font-family: var(--font-body);
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-2);
    box-shadow: 0 0 0 3px rgba(24, 166, 184, 0.2);
}

.form-message {
    margin-top: 14px;
    font-size: 0.9rem;
}

.form-message.is-error {
    color: #b02a2a;
}

.form-message.is-success {
    color: var(--accent-2);
}

.contact-details {
    display: grid;
    gap: 20px;
}

.details-card {
    background: rgba(11, 18, 32, 0.03);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(11, 18, 32, 0.08);
}

.map iframe {
    width: 100%;
    height: 240px;
    border: none;
    border-radius: var(--radius);
}

.site-footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 55%, var(--secondary) 100%);
    color: #f7f9fb;
    padding: 72px 0 28px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(24, 166, 184, 0.7), transparent);
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(24, 166, 184, 0.18), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(47, 71, 85, 0.3), transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: start;
}

.site-footer .logo {
    color: #f7f9fb;
    margin-bottom: 18px;
    align-items: center;
}

.site-footer .logo img {
    height: 120px;
}

.site-footer p {
    color: rgba(247, 249, 251, 0.82);
    line-height: 1.8;
    margin: 0 0 16px;
}

.site-footer a {
    color: rgba(247, 249, 251, 0.85);
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #ffffff;
}

.site-footer ul {
    display: grid;
    gap: 10px;
}

.site-footer ul li {
    margin: 0;
}

.newsletter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.newsletter input {
    flex: 1 1 180px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 249, 251, 0.2);
    color: #f7f9fb;
}

.newsletter input::placeholder {
    color: rgba(247, 249, 251, 0.7);
}

.site-footer .btn.secondary {
    color: #f7f9fb;
    border-color: rgba(247, 249, 251, 0.4);
}

.site-footer .btn.secondary:hover {
    background: #f7f9fb;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 249, 251, 0.2);
    margin-top: 40px;
    padding-top: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(247, 249, 251, 0.7);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
}

@media (min-width: 960px) {
    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding: 64px 0 24px;
    }

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

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

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

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(247, 249, 251, 0.96);
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .nav.nav--open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

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

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

    .testimonial img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 720px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 20px;
    }

    .hero-stats {
        gap: 16px;
    }

    .panel-card {
        padding: 20px;
    }

    .team-card img {
        height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(18px);
    }
}

/* =============================
   Screenshot-inspired Header + Hero (Improved)
   ============================= */

:root {
    --header-bg: #ffffff;
    --text: #0b1220;
    --muted: #5b6775;
    --border: #e6edf2;
    --shadow: 0 10px 30px rgba(4, 34, 51, .12);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
}

.site-header.is-elevated {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
}

.brand img {
    height: 44px;
    width: auto;
    display: block;
}

.brand-mark {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 34px;
    line-height: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-tag {
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--muted);
    font-size: 12px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 10px 6px;
    position: relative;
    transition: color .2s ease;
}

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

.nav a.is-active::after,
.nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 4px;
    height: 2px;
    background: transparent;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease, background .2s ease;
}

.nav a:hover::after {
    background: rgba(4, 34, 51, .25);
    transform: scaleX(1);
}

.nav a.is-active::after {
    background: rgba(4, 34, 51, .4);
    transform: scaleX(1);
}

.nav-cta {
    border: 1px solid rgba(4, 34, 51, .25);
    border-radius: 999px;
    padding: 10px 14px !important;
    color: var(--text) !important;
}

.nav-cta:hover {
    border-color: rgba(4, 34, 51, .45);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(11, 18, 32, .75);
    margin: 5px 0;
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(4, 34, 51, .35), rgba(4, 34, 51, .55)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2400&q=70");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 86px 0;
}

.hero-center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-kicker {
    color: rgba(255, 255, 255, .9);
    opacity: .9;
    margin: 0 0 14px;
}

.hero-title {
    letter-spacing: .02em;
    text-transform: none;
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 1.08;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-rule {
    width: 74px;
    height: 3px;
    background: rgba(255, 255, 255, .8);
    margin: 22px auto;
    border-radius: 2px;
}

.hero-subtitle {
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    opacity: .95;
    margin: 0 auto 26px;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

/* Ghost button add-on */
.btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
}

.btn.ghost:hover {
    border-color: rgba(255, 255, 255, .65);
}

.hero-badges {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px 14px;
    min-width: 220px;
    text-align: left;
}

.badge strong {
    display: block;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.badge span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    opacity: .9;
}

/* Trusted by */
.trusted-by {
    padding: 72px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-shell {
    display: grid;
    gap: 34px;
    align-items: center;
}

.trusted-heading {
    max-width: 620px;
}

.trusted-lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.trusted-rail {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trusted-item {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    min-height: 170px;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 34px rgba(4, 34, 51, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trusted-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(24, 166, 184, 0.12), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trusted-item img {
    max-height: 120px;
    width: auto;
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.trusted-item:hover {
    transform: translateY(-5px);
    border-color: rgba(24, 166, 184, 0.4);
    box-shadow: 0 24px 50px rgba(4, 34, 51, 0.12);
}

.trusted-item:hover::before {
    opacity: 1;
}

.trusted-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (min-width: 980px) {
    .trusted-shell {
        grid-template-columns: minmax(260px, 360px) 1fr;
    }

    .trusted-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Responsive nav drawer */
@media (max-width: 980px) {
    .nav {
        position: fixed;
        top: 72px;
        right: 16px;
        left: 16px;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        box-shadow: var(--shadow);
    }

    .nav a {
        width: 100%;
        padding: 12px 12px;
        border-radius: 12px;
    }

    .nav a:hover {
        background: rgba(11, 18, 32, .05);
    }

    .nav-toggle {
        display: block;
    }

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

@media (max-width: 520px) {
    .brand-tag {
        display: none;
    }

    .hero-inner {
        padding: 72px 0;
    }
}

/* =============================
   Company Overview (Screenshot-inspired, improved)
   ============================= */

.overview {
    padding: 90px 0;
    background:
        linear-gradient(90deg,
            rgba(11, 18, 32, .06) 0%,
            rgba(11, 18, 32, .06) 46%,
            rgba(255, 255, 255, 1) 46%,
            rgba(255, 255, 255, 1) 100%);
}

.overview-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
}

.overview-left {
    padding: 28px 28px 28px 0;
}

.overview-eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 12px;
}

.overview-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.05;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--ink);
}

.overview-lead {
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(11, 18, 32, .78);
    margin: 0 0 22px;
    max-width: 56ch;
}

.overview-points {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
}

.point {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(11, 18, 32, .08);
}

.point h3 {
    margin: 0 0 6px;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
}

.point p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(11, 18, 32, .72);
}

.point .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 4px;
    background: rgba(11, 18, 32, .45);
}

.overview-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Right side */
.overview-right {
    position: relative;
    padding: 18px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, .10);
    box-shadow: 0 18px 40px rgba(11, 18, 32, .08);
}

.circle-tile {
    border-radius: 18px;
    border: 1px solid rgba(11, 18, 32, .08);
    background: rgba(11, 18, 32, .02);
    padding: 14px 12px;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.circle-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(11, 18, 32, .10);
    background: rgba(11, 18, 32, .03);
}

.circle-tile .circle {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    background:
        radial-gradient(circle at 30% 30%,
            rgba(11, 18, 32, .10),
            rgba(11, 18, 32, .03) 55%,
            rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(11, 18, 32, .10);
}

.circle-tile h4 {
    margin: 0 0 4px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, .86);
}

.circle-tile p {
    margin: 0;
    font-size: 12px;
    color: rgba(11, 18, 32, .62);
}

.overview-card {
    margin-top: 14px;
    border-radius: 22px;
    padding: 18px 18px;
    background: rgba(11, 18, 32, .03);
    border: 1px solid rgba(11, 18, 32, .10);
}

.overview-card .small {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}

.overview-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--ink);
}

.overview-card p {
    margin: 0;
    color: rgba(11, 18, 32, .72);
    line-height: 1.8;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
    .overview {
        background: linear-gradient(180deg,
                rgba(11, 18, 32, .06) 0%,
                rgba(11, 18, 32, .06) 52%,
                #ffffff 52%,
                #ffffff 100%);
        padding: 70px 0;
    }

    .overview-wrap {
        grid-template-columns: 1fr;
    }

    .overview-left {
        padding: 10px 0 0;
    }
}

@media (max-width: 520px) {
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .circle-tile .circle {
        width: 58px;
        height: 58px;
    }
}

/* =============================
   Services cards with images
   ============================= */

.service-card {
    overflow: hidden;
    padding: 0;
    /* card padding moved to .service-body */
}

.service-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(11, 18, 32, .06);
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 18, 32, .05), rgba(11, 18, 32, .22));
    pointer-events: none;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .35s ease;
    display: block;
}

.service-card:hover .service-media img {
    transform: scale(1.08);
}

.service-body {
    padding: 18px 18px 20px;
}

@media (max-width: 560px) {
    .service-body {
        padding: 16px;
    }
}

/* =============================
   Compliance Overview (SDM)
   ============================= */

.compliance {
    padding: 92px 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, .03), rgba(255, 255, 255, 1) 55%);
}

.compliance-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: start;
}

.compliance .lead {
    max-width: 62ch;
    color: rgba(11, 18, 32, .78);
    line-height: 1.9;
    margin: 0 0 18px;
}

.compliance-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 18px;
}

.metric {
    border-radius: 22px;
    padding: 16px 16px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 16px 34px rgba(11, 18, 32, .06);
}

.metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.metric-chip {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, .65);
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(11, 18, 32, .03);
    padding: 6px 10px;
    border-radius: 999px;
}

.metric-value {
    font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(11, 18, 32, .92);
}

.metric h3 {
    margin: 0 0 6px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.metric p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(11, 18, 32, .72);
}

.compliance-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.compliance-panel {
    border-radius: 26px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 22px 50px rgba(11, 18, 32, .08);
}

.panel-head {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(11, 18, 32, .08);
    margin-bottom: 10px;
}

.panel-head h3 {
    margin: 0 0 6px;
}

.panel-head p {
    margin: 0;
    color: rgba(11, 18, 32, .68);
    line-height: 1.7;
}

.accordion details {
    border-radius: 16px;
    border: 1px solid rgba(11, 18, 32, .08);
    background: rgba(11, 18, 32, .02);
    margin-top: 10px;
    overflow: hidden;
}

.accordion summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 14px;
    cursor: pointer;
    user-select: none;
}

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

.accordion summary span:first-child {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}

.accordion .plus {
    width: 18px;
    height: 18px;
    position: relative;
    opacity: .75;
}

.accordion .plus::before,
.accordion .plus::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 2px;
    background: rgba(11, 18, 32, .70);
    border-radius: 2px;
}

.accordion .plus::after {
    transform: rotate(90deg);
    transition: transform .18s ease;
}

.accordion details[open] .plus::after {
    transform: rotate(0deg);
}

.accordion .content {
    padding: 0 14px 14px;
    color: rgba(11, 18, 32, .72);
    line-height: 1.75;
    font-size: 13px;
}

.compliance-note {
    margin-top: 12px;
    border-radius: 22px;
    padding: 16px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(11, 18, 32, .02);
}

.compliance-note .small {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}

.compliance-note p {
    margin: 0;
    color: rgba(11, 18, 32, .72);
    line-height: 1.8;
    font-size: 13px;
}

@media (max-width: 980px) {
    .compliance {
        padding: 72px 0;
    }

    .compliance-wrap {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .compliance-metrics {
        grid-template-columns: 1fr;
    }
}

/* =============================
   Experienced Team
   ============================= */

.experienced {
    padding: 92px 0;
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 54%, rgba(11, 18, 32, .04) 54%, rgba(11, 18, 32, .04) 100%);
}

.experienced-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
}

.experienced .lead {
    margin: 0 0 18px;
    color: rgba(11, 18, 32, .78);
    line-height: 1.9;
    max-width: 62ch;
}

.xp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 18px;
}

.xp-card {
    border-radius: 22px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(11, 18, 32, .02);
    padding: 16px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.xp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(11, 18, 32, .10);
    background: rgba(11, 18, 32, .03);
}

.xp-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .75);
    margin-bottom: 10px;
}

.xp-icon svg {
    width: 22px;
    height: 22px;
}

.xp-card h3 {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.xp-card p {
    margin: 0;
    color: rgba(11, 18, 32, .72);
    line-height: 1.7;
    font-size: 13px;
}

.experienced-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.collage {
    display: grid;
    gap: 12px;
}

.collage-main {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(11, 18, 32, .10);
    box-shadow: 0 22px 50px rgba(11, 18, 32, .10);
}

.collage-main img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/11;
    transform: scale(1.02);
    transition: transform .35s ease;
}

.experienced:hover .collage-main img {
    transform: scale(1.06);
}

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

.collage-mini img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 22px;
    border: 1px solid rgba(11, 18, 32, .10);
}

.trust-strip {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.trust-item {
    border-radius: 18px;
    padding: 14px 12px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .70);
}

.trust-item strong {
    display: block;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, .88);
}

.trust-item span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(11, 18, 32, .62);
}

@media (max-width: 980px) {
    .experienced {
        padding: 72px 0;
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 52%, rgba(11, 18, 32, .04) 52%, rgba(11, 18, 32, .04) 100%);
    }

    .experienced-wrap {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

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

    .trust-strip {
        grid-template-columns: 1fr;
    }
}

/* Unified heading treatment across components */
.point h3,
.metric h3,
.xp-card h3,
.circle-tile h4,
.overview-card h3,
.panel-head h3,
.service-card h3,
.services-cta h3,
.details-card h3,
.press-header h3,
.team-info h3,
.testimonial h4,
.values h4,
.footer-grid h4 {
    letter-spacing: 0.02em;
    text-transform: none;
}