:root {
    --bg: #ffffff;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --text: #0d0f12;
    --muted: #565d68;
    --line: rgba(13, 15, 18, 0.1);
    --brand: #dd3333;
    --brand-deep: #0d0f12;
    --brand-soft: #f4d7d7;
    --accent: #0d0f12;
    --accent-soft: #f3f3f3;
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Manrope", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
    --shadow: 0 24px 70px rgba(13, 15, 18, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(circle at top left, rgba(221, 51, 51, 0.12), transparent 28%),
        radial-gradient(circle at right 18%, rgba(17, 17, 17, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 44%, #f2f2f2 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 80%);
}

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

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

.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(16, 26, 41, 0.08);
}

.nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 0.35rem 0;
    min-height: 5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.brand-mark {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand) 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(221, 51, 51, 0.28);
}

.brand-logo-wrap {
    width: clamp(8.75rem, 10.5vw, 10rem);
    height: clamp(3.15rem, 4.1vw, 3.65rem);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-width: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    font-weight: 600;
    color: #222222;
    font-size: 0.98rem;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.6rem;
    padding: 0.6rem 0.72rem;
    border-radius: 12px 12px 6px 6px;
    border: 1px solid transparent;
    background: transparent;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease;
}

.nav-links a::before {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), #ff7a6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.nav-links a.is-active::before,
.nav-links a:hover::before,
.nav-links a:focus-visible::before {
    transform: scaleX(1);
}

.nav-links a::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(221, 51, 51, 0.2), rgba(17, 17, 17, 0.14)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 180ms ease;
    pointer-events: none;
}

.nav-links a.is-active {
    color: #8f1111;
    background: rgba(221, 51, 51, 0.07);
    box-shadow: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #111111;
    background: rgba(221, 51, 51, 0.04);
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0.65rem;
    min-width: 0;
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 10rem;
    height: 2.9rem;
    padding: 0.2rem;
    border: 1px solid rgba(16, 26, 41, 0.12);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(16, 26, 41, 0.06);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.nav-search-results {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    z-index: 60;
    display: grid;
    gap: 0.25rem;
    max-height: 19rem;
    overflow-y: auto;
    padding: 0.45rem;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 60px rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(16px);
}

.nav-search-result {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.72rem 0.85rem;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.nav-search-result i {
    color: var(--brand);
    font-size: 0.85rem;
}

.nav-search-result:hover,
.nav-search-result:focus-visible {
    background: rgba(221, 51, 51, 0.08);
    color: #8f1111;
}

.nav-search-empty {
    padding: 0.85rem;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.nav-search:focus-within {
    border-color: rgba(221, 51, 51, 0.35);
    box-shadow: 0 10px 22px rgba(221, 51, 51, 0.1);
    transform: translateY(-1px);
}

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

.nav-search-input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 0.8rem;
    color: var(--text);
    font: inherit;
    font-size: 0.94rem;
}

.nav-search-input::placeholder {
    color: #7c828d;
}

.nav-search-button {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #dd3333 0%, #8f1111 100%);
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(221, 51, 51, 0.18);
}

.nav-search-icon {
    position: relative;
    width: 0.78rem;
    height: 0.78rem;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.nav-search-icon::after {
    content: "";
    position: absolute;
    width: 0.46rem;
    height: 2px;
    right: -0.34rem;
    bottom: -0.1rem;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
    border-radius: 999px;
}

.nav-cta {
    position: relative;
    min-width: 10.2rem;
    gap: 0.55rem;
    padding: 0.72rem 0.82rem 0.72rem 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, #121212 0%, #2a0d11 42%, #b71f28 100%);
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.22);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.nav-cta::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%, rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.nav-cta::after {
    content: "";
    position: absolute;
    width: 4.1rem;
    height: 100%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.nav-cta-label,
.nav-cta-badge {
    position: relative;
    z-index: 1;
}

.nav-cta-label {
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.nav-cta-badge {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.28);
}

.menu-toggle {
    display: none;
    position: relative;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: rgba(255, 255, 255, 0.9);
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
    cursor: pointer;
    place-items: center;
    align-content: center;
    gap: 5px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.menu-toggle-line {
    display: block;
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 260ms ease, opacity 200ms ease, background 200ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--brand);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--brand);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 40;
    background: transparent;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--brand), #ff6b5e);
    box-shadow: 0 0 12px rgba(221, 51, 51, 0.6);
    transition: width 80ms linear;
}

.nav-overlay {
    display: none;
}

.nav-index {
    display: none;
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
    color: white;
    background: linear-gradient(135deg, var(--brand) 0%, #cf2e2e 100%);
    box-shadow: 0 18px 34px rgba(221, 51, 51, 0.26);
}

.button-secondary {
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.12);
}

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

.button-secondary:hover {
    color: var(--brand);
}

.hero {
    position: relative;
    padding: 4.3rem 0 4rem;
    background:
        linear-gradient(100deg, rgba(8, 8, 8, 0.82) 0%, rgba(20, 20, 20, 0.76) 38%, rgba(61, 13, 21, 0.64) 100%),
        url("img/slider1.webp") center/cover no-repeat;
    overflow: hidden;
    min-height: clamp(640px, 86vh, 860px);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    filter: saturate(0.9) contrast(1.02) brightness(0.52);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(221, 51, 51, 0.14), rgba(17, 17, 17, 0.28)),
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.3;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto auto -3rem 8%;
    width: 34rem;
    height: 16rem;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(221, 51, 51, 0.28), rgba(17, 17, 17, 0.1) 45%, transparent 72%);
    filter: blur(10px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.94fr);
    gap: 2.6rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 238, 238, 0.96));
    border: 1px solid rgba(221, 51, 51, 0.14);
    color: #8f1111;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-size: 0.74rem;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.06);
}

.eyebrow::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #dd3333 0%, #111111 100%);
    box-shadow: 0 0 0 5px rgba(221, 51, 51, 0.08);
}

.hero-eyebrow {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.035em;
}

h1 {
    margin-top: 0.9rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.1rem, 3.1vw, 3rem);
    line-height: 1.04;
    max-width: 15ch;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 2.85rem);
    line-height: 1.05;
    max-width: 18ch;
}

.hero-highlight {
    display: block;
    color: #dd3333;
}

.hero-copy,
.hero-panel {
    color: #ffffff;
}

.hero-copy p,
.section-copy,
.lead,
.card p,
.metric-card p,
.faq-item p,
.contact-copy p,
footer p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-copy > p {
    margin: 1.25rem 0 0;
    max-width: 38rem;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.9rem;
}

.hero-primary {
    background: linear-gradient(135deg, #dd3333 0%, #8f1111 100%);
    box-shadow: 0 14px 30px rgba(221, 51, 51, 0.3);
}

.hero-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.8rem;
}

.hero-points span {
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(5, 12, 25, 0.18);
    backdrop-filter: blur(8px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.8rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.hero-trust span::before {
    content: "\2713";
    margin-right: 0.38rem;
    color: #dd3333;
}

.hero-panel {
    position: relative;
    padding: 1.35rem 1.2rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.86), rgba(43, 18, 22, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(221, 51, 51, 0.12), rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.panel-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.panel-kicker::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #dd3333;
    box-shadow: 0 0 14px rgba(221, 51, 51, 0.45);
}

.hero-panel-intro {
    position: relative;
    z-index: 1;
    margin: 0.65rem 0 0;
    max-width: 30ch;
    font-size: clamp(0.88rem, 0.35vw + 0.78rem, 0.96rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.service-stack {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.55rem, 0.7vw, 0.7rem);
    margin-top: 0.95rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1.4rem 1fr;
    gap: 0.72rem;
    align-items: start;
    padding: clamp(0.72rem, 0.55vw, 0.84rem);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(221, 51, 51, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 1.4rem;
    height: 1.4rem;
    color: #dd3333;
    font-size: 0.85rem;
}

.service-icon i {
    line-height: 1;
}

.service-item div {
    min-width: 0;
}

.service-item h2 {
    font-size: clamp(0.94rem, 0.5vw, 1.02rem);
    line-height: 1.22;
    color: #ffffff;
}

.service-item p {
    display: block;
    margin: 0.18rem 0 0;
    font-size: clamp(0.72rem, 0.26vw + 0.66rem, 0.8rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(221, 51, 51, 0.08));
    border-color: rgba(221, 51, 51, 0.28);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1280px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
        gap: 2rem;
    }

    .service-item h2 {
        font-size: 0.95rem;
    }

    .service-item p {
        font-size: 0.73rem;
    }
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .hero-copy {
        max-width: 46rem;
    }

    .hero-panel {
        width: 100%;
        max-width: 52rem;
    }

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

    .hero {
        min-height: auto;
    }
}

.metric-card strong {
    display: block;
    font-size: 1.7rem;
    font-family: "Montserrat", sans-serif;
}

main section {
    padding: 2.5rem 0;
}

main section[id] {
    scroll-margin-top: 6.75rem;
}

#referanslar {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 77, 77, 0.08), transparent 32%),
        radial-gradient(circle at right center, rgba(255, 120, 73, 0.05), transparent 30%),
        var(--rd-bg);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.7rem;
}

.section-head > div {
    display: grid;
    gap: 0.75rem;
}

.section-head h2,
.services-head h2,
.reasons-head h2,
.references-head h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 16ch;
    line-height: 1.06;
    letter-spacing: -0.03em;
    background: linear-gradient(115deg, #17181c 0%, #17181c 55%, #8f1111 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-head h2::after {
    content: "";
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 22rem;
    height: 3px;
    margin-top: 1.1rem;
    border-radius: 999px;
    background:
        linear-gradient(90deg, #dd3333 0%, #dd3333 2.4rem, rgba(17, 17, 17, 0.12) 2.4rem, transparent 100%);
    box-shadow: 0 6px 16px rgba(221, 51, 51, 0.14);
}

.services-head {
    display: grid;
    gap: 0.9rem;
    align-items: start;
    margin-bottom: 2rem;
}

.reasons-head > div {
    max-width: 32rem;
    gap: 0.6rem;
}

.reasons-head h2 {
    max-width: 14ch;
    font-size: clamp(2.35rem, 3.7vw, 3.85rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.reasons-head h2::after {
    width: 5.4rem;
    margin-top: 1.05rem;
}

.services-head h2 {
    max-width: none;
    font-size: clamp(2.2rem, 3.6vw, 3.3rem);
}

.services-head .lead {
    max-width: 72ch;
}

.lead {
    max-width: 60ch;
    margin: 0;
}

.solutions-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.solutions-feature,
.solutions-pillar-panel,
.flow-step,
.footer-brand-block,
.footer-column {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.94));
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.solutions-feature {
    padding: 1.65rem;
}

.solutions-feature h3 {
    margin: 1rem 0 0.8rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.25rem, 1.7vw, 1.6rem);
    line-height: 1.2;
    max-width: 20ch;
}

.solutions-feature p {
    max-width: 60ch;
}

.solutions-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.solutions-metrics span {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(221, 51, 51, 0.06);
    border: 1px solid rgba(221, 51, 51, 0.1);
    color: var(--muted);
    font-weight: 600;
}

.solutions-metrics strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--brand-deep);
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

.solutions-pillar-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    padding: 1.2rem;
}

.solutions-pillar {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(17, 17, 17, 0.02);
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.solutions-pillar i {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.8rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(221, 51, 51, 0.14), rgba(17, 17, 17, 0.08));
    color: var(--brand);
    font-size: 1.05rem;
}

.solutions-pillar strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.solutions-pillar p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.services-grid,
.reasons-grid,
.metrics-grid,
.faq-grid {
    display: grid;
    gap: 1rem;
}

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

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

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

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

.card,
.metric-card,
.faq-item,
.about-panel,
.contact-panel {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.card {
    padding: 1.35rem;
    min-height: 100%;
}

.card .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(221, 51, 51, 0.16), rgba(17, 17, 17, 0.12));
    color: var(--brand-deep);
    font-weight: 800;
}

.card .icon i {
    font-size: 1.05rem;
    line-height: 1;
}

.card h3,
.faq-item h3,
.about-panel h2,
.contact-copy h2 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.card a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    font-weight: 800;
    color: var(--brand);
    transition: color 180ms ease, transform 180ms ease;
}

.card:hover,
.metric-card:hover,
.faq-item:hover,
.about-panel:hover,
.contact-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 51, 51, 0.18);
    box-shadow: 0 24px 46px rgba(17, 17, 17, 0.14);
}

.card:hover a {
    color: #8f1111;
    transform: translateX(3px);
}

.service-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.45rem;
    border-color: rgba(221, 51, 51, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.94)),
        var(--surface);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.service-card .icon {
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 0;
    border: 1px solid rgba(221, 51, 51, 0.12);
    background: linear-gradient(135deg, rgba(221, 51, 51, 0.12), rgba(17, 17, 17, 0.08));
    color: #a61b1b;
}

.service-card h3 {
    margin-bottom: 0;
    font-size: 1.22rem;
    line-height: 1.3;
}

.service-summary {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.service-tags span {
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(221, 51, 51, 0.08);
    border: 1px solid rgba(221, 51, 51, 0.12);
    color: #7a1818;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.service-card a {
    margin-top: 0.2rem;
}

.solutions-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
}

.references-head {
    display: block;
    margin-bottom: 1.8rem;
}

.references-head > div {
    display: grid;
    gap: 0.65rem;
    max-width: 30rem;
}

.references-head h2 {
    max-width: 15ch;
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.references-head .lead {
    max-width: none;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 244, 244, 0.96));
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
    color: var(--muted);
    line-height: 1.75;
}

.references-stage {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: start;
}

.reference-spotlight,
.reference-card,
.reference-wall {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.94));
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.reference-spotlight {
    padding: 1.55rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(57, 16, 16, 0.96));
    border-color: rgba(221, 51, 51, 0.14);
    color: rgba(255, 255, 255, 0.88);
}

.reference-spotlight h3 {
    margin: 1rem 0 0.8rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    line-height: 1.2;
    max-width: 20ch;
    color: #ffffff;
}

.reference-spotlight p {
    margin: 0;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
}

.reference-points {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.reference-points span {
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
}

.reference-points strong {
    color: #ffffff;
    margin-right: 0.35rem;
}

.reference-summary-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.reference-summary-strip div {
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reference-summary-strip strong {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
}

.reference-summary-strip span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    line-height: 1.45;
}

.reference-wall {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 247, 0.92));
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 22px 48px rgba(17, 17, 17, 0.08);
    align-self: start;
}

.reference-carousel {
    display: grid;
    gap: 0.9rem;
    overflow: hidden;
}

.reference-track {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reference-track-inner {
    display: flex;
    align-items: stretch;
    gap: 0.85rem;
    width: max-content;
    animation: reference-marquee 36s linear infinite;
}

.reference-track-inner.compact {
    gap: 0.65rem;
    animation-duration: 28s;
}

.reference-track.reverse .reference-track-inner {
    animation-direction: reverse;
}

.reference-track.reverse .reference-track-inner.compact {
    animation-duration: 24s;
}

.reference-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 15rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.92));
    box-shadow: 0 16px 32px rgba(17, 17, 17, 0.07);
}

.reference-logo-card.wide {
    min-width: 20rem;
}

.reference-logo-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 2.5rem;
}

.reference-logo-image {
    display: block;
    position: absolute;
    inset: 50% auto auto 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-width: 8.8rem;
    max-height: 2.4rem;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 180ms ease, filter 220ms ease;
}

.reference-logo-card:hover .reference-logo-image {
    filter: drop-shadow(0 6px 14px rgba(221, 51, 51, 0.18));
}

.reference-logo-card.has-image .reference-logo-image {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.reference-logo-fallback {
    color: var(--brand-deep);
    font-family: "Montserrat", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
}

.reference-logo-card.has-image .reference-logo-fallback {
    display: none;
}

.reference-capability-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.045);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #4f4f4f;
    font-size: 0.82rem;
    font-weight: 700;
}

.reference-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 0.1rem;
    align-items: flex-start;
}

.reference-capabilities span {
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.045);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #4f4f4f;
    font-size: 0.82rem;
    font-weight: 700;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.reference-card {
    padding: 1.35rem;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.reference-card i {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.95rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(221, 51, 51, 0.14), rgba(17, 17, 17, 0.08));
    color: var(--brand);
    font-size: 1.05rem;
}

.reference-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
}

.reference-card p {
    margin: 0;
    line-height: 1.65;
}

.reference-card:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 51, 51, 0.18);
    box-shadow: 0 24px 46px rgba(17, 17, 17, 0.14);
}

.flow-step {
    padding: 1.25rem;
}

.flow-step span {
    display: inline-grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    background: rgba(221, 51, 51, 0.1);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
}

.flow-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.flow-step p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 1rem;
}

.about-panel,
.contact-panel {
    padding: 1.6rem;
}

.about-aside {
    display: grid;
    gap: 1rem;
}

.inline-visual {
    position: relative;
    margin: 1.4rem 0;
    min-height: 210px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(16, 26, 41, 0.08);
    background: #111111;
}

.inline-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.62));
    pointer-events: none;
}

.inline-visual img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.inline-visual figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    max-width: 22rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.6;
}

.list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.list span {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

.list strong {
    display: inline-grid;
    place-items: center;
    min-width: 1.65rem;
    min-height: 1.65rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #c11f1f;
    font-size: 0.85rem;
}

.metric-card {
    padding: 1.35rem;
}

.metric-card p,
.stats p {
    margin: 0.35rem 0 0;
}

.faq-item {
    padding: 1.35rem;
}

.contact-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 232, 232, 0.96));
}

.contact-items {
    display: grid;
    gap: 0.85rem;
    margin: 1.25rem 0 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 26, 41, 0.08);
}

.contact-item-icon {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(221, 51, 51, 0.14), rgba(17, 17, 17, 0.1));
    color: var(--brand);
    font-size: 1rem;
}

.contact-item a,
.contact-item span {
    color: var(--muted);
    line-height: 1.6;
}

.contact-item a {
    font-weight: 700;
    color: var(--brand-deep);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.social-rail {
    position: fixed;
    top: 50%;
    right: 1rem;
    z-index: 25;
    display: grid;
    gap: 0.6rem;
    transform: translateY(-50%);
}

.social-link {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(14px);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateX(-4px);
    background: linear-gradient(135deg, #b91c1c, #111111);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer {
    position: relative;
    padding: 2.6rem 0 2.8rem;
    background:
        radial-gradient(60rem 24rem at 80% -10%, rgba(221, 51, 51, 0.14), transparent 60%),
        linear-gradient(180deg, #101014 0%, #17111a 55%, #1d0f14 100%);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dd3333 30%, #ff6b5e 50%, #dd3333 70%, transparent);
    opacity: 0.9;
}

.footer-glow {
    position: absolute;
    inset: auto -10% -55% auto;
    width: 42rem;
    height: 26rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 51, 51, 0.16), transparent 65%);
    filter: blur(20px);
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
}

.footer-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.4rem;
    padding: 1.9rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(135deg, rgba(221, 51, 51, 0.16), rgba(255, 255, 255, 0.03) 55%),
        rgba(255, 255, 255, 0.03);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(26rem 12rem at 12% 0%, rgba(221, 51, 51, 0.2), transparent 70%);
    pointer-events: none;
}

.footer-cta-copy {
    position: relative;
    display: grid;
    gap: 0.85rem;
    max-width: 34rem;
}

.footer-cta .eyebrow {
    background: rgba(221, 51, 51, 0.14);
    border-color: rgba(221, 51, 51, 0.3);
    color: #ff8d84;
    justify-self: start;
}

.footer-cta h2 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.footer-cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-cta .button {
    background: linear-gradient(135deg, #dd3333, #8f1111);
    box-shadow: 0 14px 30px rgba(221, 51, 51, 0.32);
}

.footer-cta-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.footer-cta-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
}

.footer-brand-block,
.footer-column {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.footer-brand-block {
    padding: 1.5rem;
}

.footer-logo {
    width: min(12.5rem, 100%);
    margin-bottom: 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
}

.footer-brand-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    transform: translateY(-3px);
    color: #ffffff;
    background: linear-gradient(135deg, #dd3333, #8f1111);
    border-color: rgba(221, 51, 51, 0.4);
    box-shadow: 0 12px 24px rgba(221, 51, 51, 0.3);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.footer-badges i {
    color: #ff8d84;
    font-size: 0.85rem;
}

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

.footer-column {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    padding: 1.3rem;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 0.35rem;
    padding-bottom: 0.65rem;
    font-size: 1rem;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #dd3333, rgba(221, 51, 51, 0));
}

.footer-contact-col a,
.footer-contact-col span {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-col i {
    flex: 0 0 auto;
    margin-top: 0.2rem;
    color: #ff8d84;
    font-size: 0.85rem;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 700ms ease forwards;
}

.reveal.delay-1 { animation-delay: 90ms; }
.reveal.delay-2 { animation-delay: 180ms; }
.reveal.delay-3 { animation-delay: 270ms; }

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reference-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1080px) {
    .references-head,
    .references-stage,
    .references-grid,
    .solutions-showcase,
    .footer-top,
    .footer-columns,
    .solutions-flow {
        grid-template-columns: 1fr;
    }

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

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

    .about-grid,
    .contact-grid,
    .reasons-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    body {
        padding-bottom: 5.6rem;
    }

    .brand-logo-wrap {
        width: clamp(8.5rem, 38vw, 11rem);
        height: clamp(2.9rem, 13vw, 4rem);
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
        z-index: 45;
    }

    .nav {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand toggle"
            "menu menu"
            "search search"
            "cta cta";
        align-items: center;
        min-height: 4.6rem;
    }

    .brand {
        grid-area: brand;
        position: relative;
        z-index: 47;
    }

    .site-header {
        background: transparent;
    }

    body.menu-open .site-header {
        background: transparent;
    }

    .nav {
        transition: background 340ms ease;
    }

    body.menu-open .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 46;
        grid-template-rows: auto 1fr auto auto;
        align-content: start;
        gap: 0;
        padding: 0.4rem 1.2rem 1.4rem;
        overflow-y: auto;
        background:
            radial-gradient(30rem 18rem at 85% 0%, rgba(221, 51, 51, 0.16), transparent 65%),
            linear-gradient(180deg, #101014 0%, #1d1016 100%);
    }

    body.menu-open .brand-mark {
        filter: brightness(1.1);
    }

    body.menu-open .menu-toggle-line {
        background: #ffffff;
    }

    .menu-toggle {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .nav-links {
        grid-area: menu;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0.55rem;
        width: 100%;
        padding: 1.5rem 0 1rem;
    }

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

    .nav-links a {
        justify-content: flex-start;
        min-height: 3.4rem;
        padding: 0.95rem 1.15rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.045);
        color: rgba(255, 255, 255, 0.92);
        font-size: 1.08rem;
        font-weight: 700;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a.is-active {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(221, 51, 51, 0.32), rgba(221, 51, 51, 0.12));
        border-color: rgba(221, 51, 51, 0.4);
    }

    .nav-index {
        display: inline-grid;
        place-items: center;
        min-width: 1.8rem;
        margin-right: 0.3rem;
        padding: 0.2rem 0.4rem;
        border-radius: 8px;
        background: rgba(221, 51, 51, 0.18);
        color: #ff8d84;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .nav-links a::after {
        content: "\203A";
        margin-left: auto;
        color: rgba(255, 255, 255, 0.35);
        font-size: 1.4rem;
        line-height: 1;
    }

    .nav-overlay {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-actions {
        grid-area: cta;
        width: 100%;
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.6rem 0 0;
    }

    .nav-search {
        display: none;
        grid-area: search;
        width: 100%;
        min-width: 0;
        margin-bottom: 0.4rem;
        height: 3.1rem;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

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

    .nav-actions {
        display: none;
        grid-area: cta;
        width: 100%;
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.6rem 0 0;
    }

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

    body.menu-open .nav-search-input {
        color: #ffffff;
    }

    body.menu-open .nav-search-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    body.menu-open .nav-search-results {
        background: rgba(20, 20, 26, 0.98);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
    }

    /* Sonuç listesi fixed .nav (overflow-y: auto) içinde kırpılmaması için akışta kalsın */
    body.menu-open .nav-search-results {
        position: static;
        max-height: 14rem;
        margin-top: 0.45rem;
        flex: 0 0 auto;
    }

    body.menu-open .nav-search {
        flex-wrap: wrap;
    }

    body.menu-open .nav-search-result {
        color: rgba(255, 255, 255, 0.88);
    }

    body.menu-open .nav-search-result:hover,
    body.menu-open .nav-search-result:focus-visible {
        background: rgba(221, 51, 51, 0.2);
        color: #ffffff;
    }

    body.menu-open .nav-search-empty {
        color: rgba(255, 255, 255, 0.55);
    }

    .nav-actions .button,
    .nav-actions .nav-search {
        width: 100%;
    }

    .hero {
        padding-top: 3.4rem;
        min-height: auto;
    }

    .social-rail {
        top: auto;
        bottom: 0.9rem;
        right: 0.9rem;
        left: auto;
        transform: none;
        grid-auto-flow: row;
        grid-template-columns: none;
    }

    /* Mobilde sosyal ikonlar içerikle çakışmasın; sadece yukarı çık kalsın */
    .social-rail > .social-link:not(.back-to-top) {
        display: none;
    }

    .social-link {
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 14px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 6vw, 2.4rem);
        max-width: 16ch;
    }

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

    .hero-points {
        gap: 0.55rem;
    }

    .hero-points span,
    .hero-panel-footer span {
        font-size: 0.8rem;
    }

    .references-head .lead,
    .reference-spotlight,
    .reference-wall {
        padding: 1.1rem;
    }

    .reference-summary-strip,
    .references-grid {
        grid-template-columns: 1fr;
    }

    .reference-logo-card,
    .reference-logo-card.wide {
        min-width: 13rem;
    }

    .service-stack {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .section-head,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ============ Ek detaylı responsive kırılımları ============ */

@media (min-width: 1441px) {
    :root {
        --max-width: 1320px;
    }

    .hero {
        min-height: clamp(700px, 90vh, 920px);
    }

    .section-head h2 {
        font-size: clamp(1.7rem, 2.2vw, 2.1rem);
    }
}

@media (max-width: 1024px) {
    .nav-search {
        min-width: 9.5rem;
    }

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

@media (max-width: 820px) {
    .hero-grid {
        text-align: left;
    }

    .hero-actions .button,
    .hero-actions .button-secondary {
        flex: 1 1 100%;
    }

    .solutions-metrics {
        grid-template-columns: 1fr;
    }

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

    .flow-step {
        padding: 1.4rem;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .metric-card strong {
        font-size: 1.45rem;
    }

    .reference-logo-card,
    .reference-logo-card.wide {
        min-width: 11rem;
    }
}

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

    .hero-points span {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero-trust {
        gap: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-item {
        flex-direction: column;
    }

    .inline-visual figcaption {
        position: static;
        margin: -2.6rem 0.9rem 0.9rem;
        max-width: none;
        background: rgba(17, 17, 17, 0.78);
    }

    .nav-cta {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --radius-lg: 22px;
        --radius-md: 16px;
    }

    .container {
        width: min(100% - 1.5rem, var(--max-width));
    }

    .nav {
        min-height: 4.4rem;
        gap: 0.6rem;
    }

    .brand-logo-wrap {
        width: 8.2rem;
        height: 2.8rem;
    }

    .hero {
        padding: 2.8rem 0 3rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.1rem);
    }

    .hero-panel {
        padding: 1.1rem 1rem;
    }

    .service-stack {
        grid-template-columns: 1fr;
    }

    .section-head h2,
    .services-head h2,
    .reasons-head h2,
    .references-head h2 {
        font-size: clamp(1.7rem, 7.4vw, 2.2rem);
    }

    .section-head h2::after {
        width: 3.4rem;
        height: 0.24rem;
    }

    .card,
    .about-panel,
    .contact-panel,
    .faq-item,
    .metric-card,
    .solutions-feature,
    .reference-spotlight {
        padding: 1.15rem;
    }

    .solutions-flow {
        grid-template-columns: 1fr;
    }

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

    .social-rail {
        gap: 0.4rem;
    }

    .social-link {
        height: 2.9rem;
        border-radius: 13px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 1.8rem 0 2.2rem;
    }

    .footer-logo {
        width: min(10rem, 100%);
    }

    .footer-cta {
        padding: 1.2rem;
    }

    .footer-cta h2 {
        font-size: 1.35rem;
    }

    .footer-cta-actions .button,
    .footer-cta-actions .button-secondary {
        flex: 1 1 100%;
    }
}

@media (max-width: 360px) {
    .brand-logo-wrap {
        width: 7.2rem;
        height: 2.4rem;
    }

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

    .hero-copy > p {
        font-size: 0.95rem;
    }

    .menu-toggle {
        width: 2.6rem;
        height: 2.6rem;
    }

    .hero-points span {
        font-size: 0.78rem;
    }

    .eyebrow {
        font-size: 0.66rem;
        letter-spacing: 0.07em;
    }
}


/* ============================================================
   REDESIGN — Banner (hero) hariç tüm bölümler için yeni tasarım
   ============================================================ */

:root {
    --rd-bg: #f6f8fb;
    --rd-surface: #ffffff;
    --rd-surface-2: #fbfcfe;
    --rd-line: rgba(17, 24, 39, 0.09);
    --rd-text: #101828;
    --rd-muted: #5e6878;
    --rd-accent: #dd3333;
    --rd-accent-2: #f26b4f;
    --rd-radius: 18px;
}

/* Bölüm zemini: koyu, derin ve sakin */
main section {
    position: relative;
    padding: 5.5rem 0;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--rd-bg) 100%);
    color: var(--rd-text);
    overflow: hidden;
}

main section + section {
    border-top: 1px solid var(--rd-line);
}

/* İlk bölüm ile hero arasında yumuşak geçiş */
main section:first-of-type {
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    margin-top: -34px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 42%, #ffffff 100%);
}

/* Hafif ambient ışık dokusu */
main section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(52rem 22rem at 8% 0%, rgba(221, 51, 51, 0.075), transparent 60%),
        radial-gradient(46rem 20rem at 96% 40%, rgba(34, 102, 255, 0.055), transparent 62%);
}

main section > .container {
    position: relative;
    z-index: 1;
}

/* Bölüm başlıkları */
.section-head {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 3rem;
    text-align: left;
}

.section-head > div {
    display: grid;
    gap: 0.85rem;
}

.section-head h2,
.services-head h2,
.reasons-head h2,
.references-head h2 {
    max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #101828 58%, var(--rd-accent) 118%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-head h2::after {
    width: 3.2rem;
    max-width: none;
    height: 3px;
    margin-top: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rd-accent), transparent);
    box-shadow: none;
}

.section-head .lead,
.reasons-head .lead {
    max-width: 62ch;
    color: var(--rd-muted);
    line-height: 1.75;
    border: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

/* Eyebrow rozetleri */
main section .eyebrow {
    justify-self: start;
    padding: 0.45rem 0.9rem;
    background: rgba(221, 51, 51, 0.08);
    border: 1px solid rgba(221, 51, 51, 0.16);
    color: #9f171c;
    font-size: 0.72rem;
    box-shadow: none;
}

main section .eyebrow::before {
    background: var(--rd-accent);
    box-shadow: 0 0 0 4px rgba(221, 51, 51, 0.12);
}

/* ------------------------------------------------------------
   Genel kart dili: koyu yüzey + ince kenarlık + hover ışıması
   ------------------------------------------------------------ */
.card,
.metric-card,
.faq-item,
.about-panel,
.contact-panel,
.solutions-feature,
.solutions-pillar-panel,
.flow-step,
.reference-card,
.reference-spotlight,
.reference-wall,
.reference-logo-card,
.service-card {
    background: linear-gradient(180deg, var(--rd-surface-2), var(--rd-surface));
    border: 1px solid var(--rd-line);
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
    color: var(--rd-text);
}

.card,
.metric-card,
.faq-item,
.about-panel,
.contact-panel,
.reference-card,
.service-card {
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.card:hover,
.metric-card:hover,
.faq-item:hover,
.about-panel:hover,
.contact-panel:hover,
.reference-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(221, 51, 51, 0.24);
    box-shadow: 0 24px 58px rgba(17, 24, 39, 0.13), 0 0 0 1px rgba(221, 51, 51, 0.06);
}

.card:hover a {
    color: var(--rd-accent);
}

/* İkon rozetleri */
.card .icon,
.service-card .icon,
.solutions-pillar i,
.reference-card i {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.18), rgba(255, 120, 73, 0.08));
    border: 1px solid rgba(221, 51, 51, 0.18);
    color: var(--rd-accent);
}

.card h3,
.faq-item h3,
.service-card h3,
.reference-card h3 {
    color: var(--rd-text);
}

.card p,
.service-summary,
.reference-card p,
.faq-item p,
.metric-card p {
    color: var(--rd-muted);
    line-height: 1.7;
}

/* Servis etiketleri (pill) */
.service-tags span,
.reference-capabilities span,
.reference-capability-pill {
    background: rgba(255, 77, 77, 0.07);
    border: 1px solid rgba(221, 51, 51, 0.14);
    color: #9f171c;
}

/* Bağlantı vurguları */
.card a {
    color: var(--rd-accent);
    font-weight: 700;
}

/* ------------------------------------------------------------
   Çözümler bölümü
   ------------------------------------------------------------ */
.solutions-feature,
.solutions-pillar-panel,
.flow-step {
    border-radius: var(--rd-radius);
}

.solutions-feature h3 {
    color: var(--rd-text);
}

.solutions-metrics span {
    background: rgba(221, 51, 51, 0.055);
    border: 1px solid rgba(221, 51, 51, 0.13);
    color: var(--rd-muted);
}

.solutions-metrics strong {
    color: var(--rd-text);
}

.solutions-pillar {
    background: #f7f9fc;
    border: 1px solid var(--rd-line);
}

.solutions-pillar strong {
    color: var(--rd-text);
}

.solutions-pillar p {
    color: var(--rd-muted);
}

.flow-step span {
    background: rgba(221, 51, 51, 0.1);
    color: var(--rd-accent);
}

.flow-step h3 {
    color: var(--rd-text);
}

.flow-step p {
    color: var(--rd-muted);
}

/* ------------------------------------------------------------
   Hakkımızda bölümü
   ------------------------------------------------------------ */
.about-panel h2,
.contact-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--rd-text);
    margin-bottom: 0.9rem;
}

.section-copy {
    color: var(--rd-muted);
    line-height: 1.8;
}

.list span {
    color: var(--rd-muted);
}

.list strong {
    background: rgba(221, 51, 51, 0.1);
    border: 1px solid rgba(221, 51, 51, 0.16);
    color: var(--rd-accent);
}

.about-aside {
    gap: 1.1rem;
}

.metric-card {
    padding: 1.6rem;
}

.metric-card strong {
    font-family: var(--font-display);
    color: var(--rd-text);
}

.inline-visual {
    border: 1px solid var(--rd-line);
    border-radius: var(--rd-radius);
}

/* ------------------------------------------------------------
   Referanslar bölümü
   ------------------------------------------------------------ */
.reference-spotlight {
    border-radius: var(--rd-radius);
    background:
        linear-gradient(135deg, rgba(221, 51, 51, 0.1), transparent 48%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-color: rgba(221, 51, 51, 0.14);
}

.reference-spotlight h3,
.reference-spotlight p,
.reference-spotlight strong,
.reference-summary-strip strong {
    color: var(--rd-text);
}

.reference-spotlight p,
.reference-points span,
.reference-summary-strip span {
    color: var(--rd-muted);
}

.reference-points span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--rd-line);
}

.reference-summary-strip div {
    background: #ffffff;
    border: 1px solid var(--rd-line);
}

.reference-wall {
    border-radius: var(--rd-radius);
    background: linear-gradient(180deg, var(--rd-surface-2), var(--rd-surface));
    border: 1px solid var(--rd-line);
}

.reference-logo-card {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--rd-line);
    box-shadow: none;
    transition: border-color 220ms ease, background 220ms ease;
}

.reference-logo-card:hover {
    border-color: rgba(255, 77, 77, 0.3);
    background: #fff6f6;
}

.reference-logo-fallback {
    color: var(--rd-text);
}

/* ------------------------------------------------------------
   SSS bölümü — akordeon tarzı kartlar
   ------------------------------------------------------------ */
.faq-grid {
    gap: 0.9rem;
}

.faq-item {
    border-radius: var(--rd-radius);
    padding: 1.5rem 1.6rem;
}

.faq-item h3 {
    position: relative;
    padding-right: 2.2rem;
    font-size: 1.1rem;
}

.faq-item h3::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(221, 51, 51, 0.16);
    color: var(--rd-accent);
    font-size: 1rem;
    font-weight: 600;
}

/* ------------------------------------------------------------
   İletişim bölümü
   ------------------------------------------------------------ */
.contact-panel {
    border-radius: var(--rd-radius);
    background:
        radial-gradient(40rem 18rem at 0% 0%, rgba(221, 51, 51, 0.08), transparent 60%),
        linear-gradient(180deg, var(--rd-surface-2), var(--rd-surface));
}

.contact-item {
    background: #f7f9fc;
    border: 1px solid var(--rd-line);
}

.contact-item strong {
    color: var(--rd-text);
}

.contact-item a,
.contact-item span {
    color: var(--rd-muted);
}

.contact-item a:hover {
    color: var(--rd-accent);
}

/* Bölüm içi ikincil butonlar (koyu temaya uyum) */
main section .button-secondary {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.12);
    color: var(--rd-text);
}

main section .button-secondary:hover,
main section .button-secondary:focus-visible {
    border-color: rgba(255, 77, 77, 0.45);
    background: rgba(255, 77, 77, 0.1);
}

/* Ana butonlar — accent degrade */
main section .button,
main section .button.hero-primary,
.contact-panel .button,
.about-panel .button {
    background: linear-gradient(120deg, var(--rd-accent), var(--rd-accent-2));
    border: 0;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(255, 77, 77, 0.25);
}

main section .button:hover,
main section .button:focus-visible {
    box-shadow: 0 16px 40px rgba(255, 77, 77, 0.4);
    filter: brightness(1.06);
}

/* ------------------------------------------------------------
   Duyarlı davranış
   ------------------------------------------------------------ */
@media (max-width: 820px) {
    main section {
        padding: 3.6rem 0;
    }

    .section-head {
        margin-bottom: 2.1rem;
    }

    .card,
    .metric-card,
    .faq-item,
    .about-panel,
    .contact-panel,
    .reference-card,
    .service-card,
    .solutions-feature,
    .solutions-pillar-panel,
    .flow-step,
    .reference-wall,
    .reference-spotlight {
        border-radius: 18px;
    }
}

/* Az hareket tercihi */
@media (prefers-reduced-motion: reduce) {
    .card,
    .metric-card,
    .faq-item,
    .about-panel,
    .contact-panel,
    .reference-card,
    .service-card {
        transition: none;
    }

    .card:hover,
    .metric-card:hover,
    .faq-item:hover,
    .about-panel:hover,
    .contact-panel:hover,
    .reference-card:hover,
    .service-card:hover {
        transform: none;
    }
}

/* Kurumsal tipografi ayari */
:root {
    --font-body: "Inter", "Manrope", Arial, sans-serif;
    --font-display: "Inter", "Space Grotesk", Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.section-head h2,
.services-head h2,
.reasons-head h2,
.references-head h2,
.about-panel h2,
.contact-copy h2,
.reference-spotlight h3,
.solutions-feature h3 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.section-head h2,
.services-head h2,
.reasons-head h2,
.references-head h2 {
    max-width: 24ch;
    font-size: clamp(1.55rem, 2.05vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.018em;
}

.about-panel h2,
.contact-copy h2 {
    max-width: 15ch;
    font-size: clamp(1.55rem, 2.15vw, 2.25rem);
    line-height: 1.18;
    margin-bottom: 1rem;
}

.solutions-feature h3,
.reference-spotlight h3 {
    max-width: 22ch;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
}

.hero-title,
h1 {
    font-weight: 900;
    letter-spacing: -0.028em;
}

.section-copy,
.lead,
.about-panel p,
.contact-copy p,
.solutions-feature p,
.reference-spotlight p,
.card p,
.service-summary,
.faq-item p,
.metric-card p {
    font-size: clamp(1.02rem, 0.35vw + 0.95rem, 1.18rem);
    line-height: 1.8;
    font-weight: 400;
}

.card h3,
.service-card h3,
.faq-item h3,
.flow-step h3,
.solutions-pillar strong,
.metric-card strong {
    font-family: var(--font-display);
    font-weight: 750;
    letter-spacing: -0.01em;
}

.eyebrow,
main section .eyebrow {
    min-height: 2rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #fff4f4;
    border: 1px solid #ffd0d0;
    color: #b91c1c;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: none;
}

.hero .hero-eyebrow {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(221, 51, 51, 0.28);
    color: #c9272d;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.nav-links a,
.nav-links a.is-active,
.nav-links a:hover,
.nav-links a:focus-visible {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.nav-links a.is-active,
.nav-links a:hover,
.nav-links a:focus-visible {
    color: #8f1111;
}

.nav-links a::after {
    display: none;
}

.nav-search {
    overflow: visible;
}

.nav-search::before,
.nav-search::after,
.nav-actions::before,
.nav-actions::after {
    display: none;
}

.nav-search-results {
    top: calc(100% + 0.35rem);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
}

.nav-cta {
    min-height: 2.7rem;
    min-width: 8.6rem;
    padding: 0.62rem 0.68rem 0.62rem 0.95rem;
    border-radius: 999px;
    background: #dd3333;
    border: 1px solid rgba(221, 51, 51, 0.18);
    box-shadow: 0 10px 24px rgba(221, 51, 51, 0.18);
}

.nav-cta::before,
.nav-cta::after {
    display: none;
}

.nav-cta-label {
    font-size: 0.72rem;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.nav-cta-badge {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    font-size: 0.76rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: #c9272d;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(221, 51, 51, 0.22);
}

.eyebrow::before,
main section .eyebrow::before {
    display: none;
}

.section-head {
    gap: 1rem;
}

.section-head > div {
    gap: 1.05rem;
}

@media (max-width: 820px) {
    .section-head h2,
    .services-head h2,
    .reasons-head h2,
    .references-head h2,
    .about-panel h2,
    .contact-copy h2 {
        max-width: 100%;
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        line-height: 1.18;
    }

    .section-copy,
    .lead,
    .about-panel p,
    .contact-copy p,
    .solutions-feature p,
    .reference-spotlight p,
    .card p,
    .service-summary,
    .faq-item p,
    .metric-card p {
        font-size: 1rem;
        line-height: 1.72;
    }
}

/* çözümler alani - modern kurumsal kart yapisi */
#cozumler {
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f4f7fb 100%);
}

#cozumler .section-head {
    margin-bottom: 2.4rem;
}

.solutions-showcase {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 1.15rem;
    margin-bottom: 1.25rem;
}

.solutions-feature,
.solutions-pillar-panel {
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.solutions-feature {
    display: flex;
    min-height: 20rem;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.35rem, 2vw, 1.85rem);
    overflow: hidden;
}

.solutions-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #dd3333, #272b33);
}

.solutions-feature .eyebrow {
    background: #fff1f1;
    border-color: #ffc8c8;
    color: #a30f18;
}

.solutions-feature h3 {
    max-width: 17ch;
    margin: 1rem 0 0.8rem;
    color: #08111f;
    font-size: clamp(1.35rem, 1.75vw, 1.85rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
}

.solutions-feature p {
    max-width: 64ch;
    color: #465267;
    font-size: 0.95rem;
    line-height: 1.68;
}

.solutions-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 12px;
    background: #eef2f7;
}

.solutions-metrics span {
    min-height: 4.3rem;
    padding: 0.8rem 0.9rem;
    border: 0;
    border-right: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 0;
    background: #ffffff;
    color: #667085;
    font-size: 0.82rem;
    line-height: 1.35;
}

.solutions-metrics span:last-child {
    border-right: 0;
}

.solutions-metrics strong {
    margin-bottom: 0.28rem;
    color: #08111f;
    font-size: 0.94rem;
    font-weight: 850;
}

.solutions-pillar-panel {
    align-content: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}

.solutions-pillar {
    display: grid;
    align-content: start;
    min-height: 10rem;
    padding: 1.15rem;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(221, 51, 51, 0.035), transparent 48%),
        #fbfcfe;
}

.solutions-pillar:nth-child(1),
.solutions-pillar:nth-child(2) {
    border-bottom: 1px solid rgba(15, 23, 42, 0.09);
}

.solutions-pillar:nth-child(odd) {
    border-right: 1px solid rgba(15, 23, 42, 0.09);
}

.solutions-pillar i {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.85rem;
    border-radius: 10px;
    background: #fff1f1;
    border: 1px solid #ffcaca;
    color: #dd3333;
    box-shadow: none;
}

.solutions-pillar strong {
    margin-bottom: 0.45rem;
    color: #101828;
    font-size: 0.95rem;
    font-weight: 800;
}

.solutions-pillar p {
    color: #5f6b7e;
    font-size: 0.86rem;
    line-height: 1.55;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    display: flex;
    min-height: 19.5rem;
    flex-direction: column;
    gap: 0;
    padding: 1.45rem;
    border-radius: 14px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: rgba(221, 51, 51, 0.055);
    pointer-events: none;
}

.service-card .icon {
    width: 2.9rem;
    height: 2.9rem;
    margin-bottom: 1.35rem;
    border-radius: 10px;
    background: #fff1f1;
    border: 1px solid #ffcaca;
    color: #dd3333;
}

.service-card h3 {
    min-height: 3.1rem;
    margin: 0 0 0.85rem;
    color: #111827;
    font-size: 1.15rem;
    line-height: 1.28;
}

.service-summary {
    margin: 0;
    color: #5f6b7e;
    font-size: 0.98rem;
    line-height: 1.72;
}

.service-tags {
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1.15rem;
}

.service-tags span {
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    background: #f6f8fb;
    border: 1px solid rgba(15, 23, 42, 0.09);
    color: #3f4a5f;
    font-size: 0.76rem;
    font-weight: 750;
}

.service-card a {
    margin-top: 1rem;
    color: #bd1f28;
    font-size: 0.92rem;
}

.service-card:hover,
.solutions-feature:hover,
.solutions-pillar-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(221, 51, 51, 0.22);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

@media (max-width: 1180px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

@media (max-width: 640px) {
    .services-grid,
    .solutions-pillar-panel,
    .solutions-metrics {
        grid-template-columns: 1fr;
    }

    .solutions-feature {
        min-height: auto;
    }

    .solutions-feature h3 {
        max-width: 100%;
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .solutions-pillar,
    .solutions-pillar:nth-child(odd),
    .solutions-pillar:nth-child(1),
    .solutions-pillar:nth-child(2),
    .solutions-metrics span {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.09);
    }

    .solutions-pillar:last-child,
    .solutions-metrics span:last-child {
        border-bottom: 0;
    }
}

/* Hizmet kartlari - görselli referans formati */
#cozumler .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
    align-items: stretch;
}

#cozumler .service-card {
    min-height: 19.25rem;
    padding: 9.2rem 1rem 1rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

#cozumler .service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 8rem;
    border-radius: 14px 14px 0 0;
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.18), rgba(18, 31, 54, 0.58)),
        url("img/arkaplan.webp") center/cover no-repeat;
    pointer-events: none;
}

#cozumler .service-card::after {
    display: none;
}

#cozumler .service-card:nth-child(1)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.56)),
        url("img/altyapi_servis.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(2)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.58)),
        url("img/zayif_akim.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(3)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.56)),
        url("img/tedarik_satis.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(4)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.58)),
        url("img/otomasyon_sistemleri.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(5)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.56)),
        url("img/kesif_proje_tasarim.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(6)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.56)),
        url("img/Danismanlik.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(7)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.58)),
        url("img/anahtar_teslim.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(8)::before {
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.12), rgba(18, 31, 54, 0.56)),
        url("img/soguk_zincir.jpg") center/cover no-repeat;
}

#cozumler .service-card:nth-child(8)::before {
    background-position: center 42%;
}

#cozumler .service-card .icon {
    position: absolute;
    left: 1rem;
    top: 5.35rem;
    z-index: 1;
    width: 2.35rem;
    height: 2.35rem;
    margin: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

#cozumler .service-card .icon i {
    font-size: 1rem;
}

#cozumler .service-card h3 {
    min-height: auto;
    margin: 0 0 0.55rem;
    color: #0b1220;
    font-size: clamp(1rem, 1.05vw, 1.14rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

#cozumler .service-summary {
    max-width: 54ch;
    color: #596579;
    font-size: 0.86rem;
    line-height: 1.58;
}

#cozumler .service-tags {
    margin-top: 0.75rem;
    padding-top: 0;
}

#cozumler .service-tags span {
    padding: 0.28rem 0.5rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: #1f2937;
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
}

#cozumler .service-card a {
    display: none;
}

#cozumler .service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 51, 51, 0.22);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
    #cozumler .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    #cozumler .services-grid {
        grid-template-columns: 1fr;
    }

    #cozumler .service-card {
        min-height: 0;
        padding: 10.35rem 1rem 1.1rem;
        border-radius: 16px;
    }

    #cozumler .service-card::before {
        height: 9.2rem;
        border-radius: 16px 16px 0 0;
    }

    #cozumler .service-card .icon {
        left: 1rem;
        top: 6.25rem;
    }
}

/* Hero denge ayari */
@media (min-width: 821px) {
    .hero-grid {
        align-items: start;
        padding-top: clamp(1.5rem, 4vh, 3.2rem);
    }

    .hero-panel {
        margin-top: clamp(2.2rem, 6vh, 4.8rem);
    }
}

/* Alt bölümler - kırmızı vurgu ve modern kurumsal düzen */
.eyebrow,
main section .eyebrow,
.hero .hero-eyebrow {
    background: #fff4f4;
    border: 1px solid #ffd0d0;
    color: #b91c1c;
}

#cozumler .section-head .eyebrow,
#hakkimizda .eyebrow,
#neden-biz .eyebrow,
#referanslar .eyebrow,
#sss .eyebrow,
#iletisim .eyebrow {
    background: #fff4f4;
    border-color: #ffd0d0;
    color: #b91c1c;
}

#hakkimizda,
#neden-biz,
#referanslar,
#sss,
#iletisim,
main section[aria-label="öne çıkan metrikler"] {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

#hakkimizda .about-grid,
#iletisim .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    gap: 1rem;
    align-items: stretch;
}

#hakkimizda .about-panel,
#iletisim .contact-panel,
#iletisim .about-panel {
    padding: clamp(1.45rem, 2vw, 1.9rem);
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

#hakkimizda .about-panel {
    overflow: hidden;
}

#hakkimizda .about-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #dd3333, #20242c);
}

#hakkimizda .about-panel h2,
#iletisim .contact-copy h2,
#iletisim .about-panel h2 {
    max-width: 22ch;
    font-size: clamp(1.45rem, 1.9vw, 2rem);
    line-height: 1.2;
}

#hakkimizda .section-copy,
#iletisim .section-copy,
#iletisim .contact-copy p {
    color: #596579;
    font-size: 0.98rem;
    line-height: 1.72;
}

.list {
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.list span {
    padding: 0.72rem 0.85rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #4b5565;
    font-size: 0.92rem;
    line-height: 1.45;
}

.list strong {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 8px;
    background: #fff1f1;
    border-color: #ffcaca;
    color: #b91c1c;
}

#hakkimizda .about-aside {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

#hakkimizda .metric-card,
main section[aria-label="öne çıkan metrikler"] .metric-card {
    padding: 1.35rem;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(221, 51, 51, 0.055), transparent 48%),
        #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

#hakkimizda .metric-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
}

#hakkimizda .metric-card i {
    display: inline-grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: #fff1f1;
    border: 1px solid #ffcaca;
    color: #dd3333;
    font-size: 1.05rem;
}

#hakkimizda .metric-card strong,
main section[aria-label="öne çıkan metrikler"] .metric-card strong {
    color: #111827;
    font-size: 1.05rem;
    line-height: 1.3;
}

#hakkimizda .metric-card p,
main section[aria-label="öne çıkan metrikler"] .metric-card p {
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.58;
}

#neden-biz .reasons-grid,
main section[aria-label="öne çıkan metrikler"] .metrics-grid,
#sss .faq-grid {
    gap: 1rem;
}

#neden-biz .card,
#referanslar .reference-card,
#sss .faq-item {
    padding: 1.25rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

#neden-biz .card .icon,
#referanslar .reference-card i,
#iletisim .contact-item-icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 10px;
    background: #fff1f1;
    border: 1px solid #ffcaca;
    color: #dd3333;
    box-shadow: none;
}

#neden-biz .card h3,
#referanslar .reference-card h3,
#sss .faq-item h3 {
    color: #101828;
    font-size: 1.08rem;
    line-height: 1.3;
}

#neden-biz .card p,
#referanslar .reference-card p,
#sss .faq-item p {
    color: #667085;
    font-size: 0.94rem;
    line-height: 1.68;
}

#referanslar .references-stage {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 1.2rem;
    align-items: stretch;
}

#referanslar .reference-spotlight,
#referanslar .reference-wall {
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

#referanslar .reference-spotlight {
    display: flex;
    min-height: 25.5rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.35rem;
}

#referanslar .reference-spotlight h3 {
    max-width: 23ch;
    margin: 0.85rem 0 0.75rem;
    font-size: clamp(1.25rem, 1.55vw, 1.6rem);
    line-height: 1.18;
}

#referanslar .reference-spotlight p {
    font-size: 0.98rem;
    line-height: 1.65;
}

#referanslar .reference-points {
    gap: 0.55rem;
    margin-top: 1rem;
}

#referanslar .reference-points span {
    padding: 0.68rem 0.8rem;
    border-radius: 12px;
    font-size: 0.88rem;
}

#referanslar .reference-summary-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
}

#referanslar .reference-summary-strip div {
    padding: 0.75rem;
    border-radius: 12px;
}

#referanslar .reference-summary-strip strong {
    font-size: 1.2rem;
}

#referanslar .reference-wall {
    display: flex;
    min-height: 25.5rem;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

#referanslar .reference-logo-card {
    border-radius: 12px;
    box-shadow: none;
}

#iletisim .contact-items {
    gap: 0.8rem;
}

#iletisim .contact-item {
    padding: 0.95rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

#iletisim .inline-visual {
    border-radius: 16px;
    min-height: 180px;
}

#iletisim .inline-visual img {
    min-height: 180px;
}

#iletisim .contact-grid {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
    gap: 1.25rem;
}

#iletisim .contact-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(135deg, rgba(221, 51, 51, 0.08), transparent 45%),
        #ffffff;
}

#iletisim .contact-panel .hero-actions {
    margin-top: 1.25rem;
}

.contact-form-panel {
    padding: clamp(1.45rem, 2.3vw, 2rem);
    border-radius: 18px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.contact-form-panel h2 {
    max-width: 24ch;
    margin: 0.95rem 0 1.25rem;
    color: #101828;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.75vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.018em;
}

.contact-form {
    display: grid;
    gap: 0.85rem;
}

.contact-form input[name="_honey"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
}

.contact-form label span {
    color: #344054;
    font-size: 0.82rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 2.95rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    background: #f8fafc;
    color: #101828;
    font: inherit;
    font-size: 0.95rem;
    outline: 0;
    padding: 0.78rem 0.9rem;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
    min-height: 7.5rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: rgba(221, 51, 51, 0.42);
    box-shadow: 0 0 0 4px rgba(221, 51, 51, 0.08);
}

.contact-form .button {
    width: fit-content;
    min-width: 10.5rem;
    margin-top: 0.25rem;
    border: 0;
    cursor: pointer;
}

.contact-form .button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.form-status {
    min-height: 1.4rem;
    margin: 0;
    color: #667085;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-status[data-state="success"] {
    color: #157347;
}

.form-status[data-state="error"] {
    color: #b91c1c;
}

@media (max-width: 760px) {
    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 1080px) {
    #hakkimizda .about-grid,
    #iletisim .contact-grid,
    #referanslar .references-stage {
        grid-template-columns: 1fr;
    }
}

/* Footer - temiz kurumsal alt alan */
.footer {
    padding: 0;
    background: #f6f8fb;
    color: #344054;
    border-top: 1px solid rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

.footer::before,
.footer-glow {
    display: none;
}

.footer-shell {
    gap: 0;
}

.footer-cta {
    margin: 0 0 1.25rem;
    padding: clamp(1.25rem, 2.3vw, 1.75rem);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(221, 51, 51, 0.09), transparent 44%),
        #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.footer-cta::before {
    display: none;
}

.footer-cta .eyebrow {
    background: #fff4f4;
    border-color: #ffd0d0;
    color: #b91c1c;
}

.footer-cta h2 {
    max-width: 20ch;
    color: #101828;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    line-height: 1.14;
}

.footer-cta-actions .button {
    box-shadow: 0 12px 26px rgba(221, 51, 51, 0.2);
}

.footer-cta-secondary {
    color: #101828;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    backdrop-filter: none;
}

.footer-cta-secondary:hover {
    color: #b91c1c;
    background: #fff7f7;
}

.footer-top {
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
    gap: 1.25rem;
    padding: 0 0 1.35rem;
}

.footer-brand-block,
.footer-column {
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.footer-brand-block {
    padding: 0;
}

.footer-logo {
    width: min(13rem, 100%);
    margin-bottom: 1rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.footer-brand-block p {
    max-width: 34rem;
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.72;
}

.footer-social a {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #475467;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: #ffffff;
    background: #dd3333;
    border-color: #dd3333;
    box-shadow: 0 12px 22px rgba(221, 51, 51, 0.18);
}

.footer-badges {
    gap: 0.45rem;
}

.footer-badges span {
    padding: 0.42rem 0.65rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #475467;
    font-size: 0.76rem;
}

.footer-badges i {
    color: #dd3333;
}

.footer-columns {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, 1.1fr);
    gap: 1.75rem;
}

.footer-column {
    padding: 0;
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 0.55rem;
    padding-bottom: 0.55rem;
    color: #101828;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 850;
}

.footer-column h3::after {
    width: 1.65rem;
    background: #dd3333;
}

.footer-column a,
.footer-column span {
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #b91c1c;
}

.footer-contact-col i {
    color: #dd3333;
}

.footer-bottom {
    padding: 1rem 0 1.2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.09);
}

.footer-bottom p {
    color: #667085;
    font-size: 0.86rem;
}

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

@media (max-width: 640px) {
    .footer {
        padding-top: 0;
    }

    .footer-cta {
        margin-bottom: 1rem;
    }

    .footer-top,
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* Footer - tek parça siyah kurumsal yapi */
.footer {
    padding: clamp(2.4rem, 4vw, 3.6rem) 0 1.25rem;
    background:
        linear-gradient(180deg, #121417 0%, #0b0d10 100%);
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
    gap: clamp(1.6rem, 3vw, 2.4rem);
}

.footer-cta {
    margin: 0;
    padding: 0 0 clamp(1.5rem, 3vw, 2.15rem);
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.footer-cta .eyebrow {
    background: rgba(221, 51, 51, 0.12);
    border-color: rgba(221, 51, 51, 0.28);
    color: #ffaaa7;
}

.footer-cta h2 {
    color: #ffffff;
    max-width: 30ch;
    font-size: clamp(1.25rem, 1.65vw, 1.7rem);
    line-height: 1.22;
    letter-spacing: -0.015em;
}

.footer-cta-actions .button {
    background: #dd3333;
    box-shadow: 0 12px 26px rgba(221, 51, 51, 0.24);
}

.footer-cta-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.footer-cta-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-top {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    padding: 0;
}

.footer-logo {
    padding: 0.5rem 0.65rem;
    border-radius: 12px;
    background: #ffffff;
}

.footer-brand-block p {
    color: rgba(255, 255, 255, 0.66);
}

.footer-social a {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: #ffffff;
    background: #dd3333;
    border-color: #dd3333;
}

.footer-badges span {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
}

.footer-column h3 {
    color: #ffffff;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.66);
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
}

.footer-contact-col a,
.footer-contact-col span {
    align-items: flex-start;
    gap: 0.55rem;
    overflow-wrap: normal;
    word-break: keep-all;
}

.footer-contact-col i {
    width: 1rem;
    min-width: 1rem;
}

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

.footer-bottom {
    padding: 1.1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.56);
}
/* Yukari çık butonu */
.back-to-top {
    padding: 0;
    cursor: pointer;
    font: inherit;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    background: linear-gradient(135deg, #b91c1c, #111);
    border-color: rgba(221, 51, 51, 0.4);
    transition: opacity 260ms ease, transform 260ms ease, background 220ms ease, border-color 220ms ease, visibility 0s linear 260ms;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 260ms ease, transform 260ms ease, background 220ms ease, border-color 220ms ease, visibility 0s;
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
    transform: translateX(-4px);
    background: linear-gradient(135deg, #d13434, #111);
    border-color: rgba(255, 255, 255, 0.28);
}

.back-to-top i {
    font-size: 1.05rem;
    line-height: 1;
}
/* Header sıkışma düzeltmesi: menü linklerini kompaktlaştır */
.nav-links {
    font-size: 0.92rem;
}
/* ============================================================
   MODERN MOBIL KATMAN (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
    /* --- Genel ferahlik --- */
    main section {
        padding: 2rem 0;
    }

    .container {
        width: min(100% - 1.75rem, var(--max-width));
    }

    /* --- Header: kompakt, temiz --- */
    .nav {
        min-height: 3.9rem;
        padding: 0.25rem 0;
        gap: 0.5rem;
    }

    .brand-logo-wrap {
        width: 7.6rem;
        height: 2.6rem;
    }

    .menu-toggle {
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 12px;
    }

    /* --- Hero: sade, ferah, modern --- */
    .hero {
        padding: 2.6rem 0 2.8rem;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        min-width: 0;
    }

    .hero-copy,
    .hero-copy > *,
    .hero-panel {
        min-width: 0;
        max-width: 100%;
    }

    .hero-video {
        filter: saturate(0.85) contrast(1.02) brightness(0.42);
    }

    .hero-eyebrow {
        display: inline-flex;
        max-width: 100%;
        padding: 0.4rem 0.75rem;
        font-size: 0.66rem;
        letter-spacing: 0.06em;
        border-radius: 999px;
        white-space: normal;
        line-height: 1.3;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.02;
        max-width: 100%;
        margin-top: 0.65rem;
    }

    .hero-copy > p {
        margin-top: 0.9rem;
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.82);
    }

    .hero-actions {
        margin-top: 1.35rem;
        gap: 0.6rem;
    }

    .hero-actions .button,
    .hero-actions .button-secondary {
        flex: 1 1 100%;
        padding: 0.95rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Chip ve güven satırları: yatay kayan modern şerit */
    .hero-points,
    .hero-trust {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        margin-top: 1.15rem;
        padding-bottom: 0.35rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .hero-points::-webkit-scrollbar,
    .hero-trust::-webkit-scrollbar {
        display: none;
    }

    .hero-points span {
        flex: 0 0 auto;
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
        border-radius: 999px;
        scroll-snap-align: start;
    }

    .hero-trust {
        flex-direction: column;
        overflow-x: visible;
        gap: 0.5rem;
        margin-top: 1.1rem;
        font-size: 0.88rem;
    }

    /* --- Hero panel (hizmet listesi): 2 sütun, kompakt --- */
    .hero-panel {
        margin-top: 1.8rem;
        padding: 1.15rem 1rem;
        border-radius: 22px;
    }

    .hero-panel-intro {
        font-size: 0.88rem;
    }

    .service-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
        margin-top: 0.9rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.75rem 0.7rem;
        border-radius: 16px;
    }

    .service-item h2 {
        font-size: 0.86rem;
        line-height: 1.2;
    }

    .service-item p {
        font-size: 0.68rem;
        -webkit-line-clamp: 2;
    }

    .service-icon {
        width: 1.3rem;
        height: 1.3rem;
        font-size: 0.82rem;
    }

    /* --- Bölüm basliklari --- */
    .section-head {
        margin-bottom: 1.3rem;
    }

    .section-head h2,
    .services-head h2,
    .reasons-head h2,
    .references-head h2 {
        font-size: clamp(1.45rem, 6.6vw, 1.85rem);
        line-height: 1.16;
        max-width: 100%;
    }

    .section-head h2::after {
        width: 3rem;
        margin-top: 0.85rem;
    }

    /* --- Kartlar: ferah ve modern --- */
    .card,
    .about-panel,
    .contact-panel,
    .faq-item,
    .metric-card,
    .solutions-feature,
    .reference-spotlight {
        padding: 1.25rem 1.15rem;
        border-radius: 20px;
    }

    .card h3,
    .service-card h3 {
        font-size: 1.12rem;
    }

    .service-card {
        gap: 0.75rem;
        padding: 1.25rem 1.15rem;
    }

    .service-card .icon {
        width: 2.9rem;
        height: 2.9rem;
        border-radius: 14px;
    }

    /* --- çözüm vitrini --- */
    .solutions-feature h3 {
        font-size: 1.35rem;
        max-width: 100%;
    }

    .solutions-metrics {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .solutions-pillar-panel {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 1rem;
    }

    .solutions-pillar {
        padding: 1rem 0.95rem;
    }

    /* --- Akis adimlari --- */
    .solutions-flow {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .flow-step {
        padding: 1.2rem 1.1rem;
    }

    /* --- Referans bölümü --- */
    .reference-spotlight h3 {
        font-size: 1.3rem;
    }

    .reference-summary-strip {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .reference-logo-card,
    .reference-logo-card.wide {
        min-width: 10rem;
        padding: 0.85rem 1rem;
    }

    /* --- SSS --- */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .faq-item h3 {
        font-size: 1.05rem;
    }

    /* --- Iletisim formu --- */
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 2rem 0 2.4rem;
    }

    .footer-cta {
        padding: 1.35rem 1.15rem;
        border-radius: 20px;
    }

    .footer-cta h2 {
        font-size: 1.35rem;
    }

    .footer-cta-actions {
        width: 100%;
        gap: 0.6rem;
    }

    .footer-cta-actions .button,
    .footer-cta-actions .button-secondary {
        flex: 1 1 100%;
        justify-content: center;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .footer-column a,
    .footer-column span {
        font-size: 0.94rem;
    }

    /* --- Yukari çık butonu: sag altta, modern --- */
    .back-to-top {
        width: 3rem;
        height: 3rem;
        border-radius: 16px;
        box-shadow: 0 12px 26px rgba(221, 51, 51, 0.32);
    }
}

/* Küçük telefonlar (max-width: 380px) */
@media (max-width: 380px) {
    .hero-title {
        font-size: clamp(1.75rem, 8.4vw, 2.1rem);
    }

    .service-stack {
        grid-template-columns: 1fr;
    }

    .hero-points span {
        font-size: 0.76rem;
        padding: 0.45rem 0.75rem;
    }
}

/* ============================================================
   FINAL POLISH - desktop/mobile layout cleanup
   ============================================================ */
:root {
    --page-bg: #f7f8fb;
    --ink: #111827;
    --soft-ink: #5f6b7a;
    --panel: #ffffff;
    --panel-line: rgba(17, 24, 39, 0.1);
    --red: #dd3333;
    --red-dark: #a71920;
}

body {
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--page-bg) 42%, #eef1f5 100%);
}

body::before,
.hero::after {
    display: none;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 4.6rem;
}

.brand-logo-wrap {
    width: clamp(8.25rem, 10vw, 9.5rem);
    height: 3.1rem;
}

.nav-links {
    gap: 0.1rem;
    font-size: 0.9rem;
}

.nav-links a {
    min-height: 2.45rem;
    padding: 0.55rem 0.62rem;
    border-radius: 10px;
}

.nav-search {
    min-width: 8.4rem;
    width: clamp(8.4rem, 13vw, 12rem);
}

.nav-cta {
    min-width: auto;
}

.hero {
    min-height: min(760px, calc(100vh - 1rem));
    padding: clamp(3rem, 5vw, 5rem) 0;
}

.hero::before {
    opacity: 0.22;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
    gap: clamp(1.5rem, 3vw, 3rem);
}

.hero-title {
    font-size: clamp(2.35rem, 4.2vw, 4.45rem);
    max-width: 11ch;
    letter-spacing: 0;
}

.hero-copy > p {
    max-width: 42rem;
    font-size: clamp(1rem, 0.5vw + 0.92rem, 1.12rem);
}

.hero-panel {
    border-radius: 22px;
}

.service-stack {
    grid-template-columns: 1fr;
}

.service-item {
    grid-template-columns: 2rem minmax(0, 1fr);
    border-radius: 14px;
}

main section {
    padding: clamp(3rem, 5vw, 5.25rem) 0;
}

.section-head {
    align-items: flex-start;
}

.section-head h2,
.services-head h2,
.reasons-head h2,
.references-head h2 {
    letter-spacing: 0;
}

.card,
.metric-card,
.faq-item,
.contact-panel,
.contact-form-panel,
.solutions-feature,
.solutions-pillar-panel,
.reference-spotlight,
.reference-wall {
    border-radius: 16px;
    border-color: var(--panel-line);
}

.services-grid,
.reasons-grid,
.faq-grid,
.metrics-grid,
.references-grid {
    gap: 1rem;
}

.service-card {
    min-height: 100%;
}

.service-card h3,
.faq-item h3,
.reference-card h3 {
    letter-spacing: 0;
}

.service-tags {
    gap: 0.45rem;
}

.service-tags span,
.reference-capabilities span,
.reference-points span {
    border-radius: 999px;
}

#iletisim .contact-grid {
    align-items: stretch;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 10px;
}

.social-rail {
    right: 1rem;
}

.footer {
    background: #101215;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-columns {
    align-items: start;
}

@media (max-width: 1120px) {
    .nav {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    body.menu-open .nav {
        align-items: start;
    }

    body.menu-open .nav-links,
    body.menu-open .nav-actions {
        display: grid;
        grid-column: 1 / -1;
        width: 100%;
    }

    body.menu-open .nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 0.8rem 0 0.4rem;
        overflow: visible;
    }

    body.menu-open .nav-links a {
        justify-content: flex-start;
        width: 100%;
        min-height: 2.9rem;
        padding: 0.75rem 0.9rem;
        background: #f7f8fb;
        border: 1px solid rgba(15, 23, 42, 0.08);
    }

    body.menu-open .nav-actions {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.65rem;
        padding: 0.35rem 0 0.9rem;
    }

    body.menu-open .nav-search {
        display: flex;
        width: 100%;
        min-width: 0;
    }

    body.menu-open .nav-cta {
        display: inline-flex;
    }

    .hero-grid,
    #iletisim .contact-grid,
    #referanslar .references-stage {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: none;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 1.25rem, var(--max-width));
    }

    .nav {
        min-height: 4rem;
    }

    .brand-logo-wrap {
        width: 7.4rem;
        height: 2.55rem;
    }

    body.menu-open .nav-links,
    body.menu-open .nav-actions {
        grid-template-columns: 1fr;
    }

    body.menu-open .nav-cta {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 2.5rem 0 2.9rem;
    }

    .hero-title {
        font-size: clamp(2.15rem, 11vw, 3.2rem);
        max-width: 10ch;
    }

    .hero-copy > p {
        font-size: 0.97rem;
        line-height: 1.62;
    }

    .hero-actions .button,
    .hero-actions .button-secondary,
    .contact-panel .hero-actions .button,
    .contact-panel .hero-actions .button-secondary {
        width: 100%;
    }

    .hero-points {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
    }

    .hero-points span {
        flex: 0 0 auto;
    }

    .service-stack {
        grid-template-columns: 1fr;
    }

    .section-head,
    .footer-cta,
    .footer-bottom {
        display: grid;
        text-align: left;
    }

    .solutions-showcase,
    .solutions-pillar-panel,
    .references-grid,
    .metrics-grid,
    .faq-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .social-rail {
        left: auto;
        right: 0.75rem;
        bottom: 0.75rem;
        top: auto;
        transform: none;
    }

    .social-rail .social-link:not(.back-to-top) {
        display: none;
    }

    .footer-top,
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu fix - stable header bar and dropdown panel */
@media (max-width: 1120px) {
    body {
        padding-bottom: 0;
    }

    .site-header,
    body.menu-open .site-header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.97);
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .nav,
    body.menu-open .nav {
        position: relative;
        inset: auto;
        z-index: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand toggle"
            "menu menu"
            "actions actions";
        align-items: center;
        gap: 0;
        min-height: 4.25rem;
        padding: 0.45rem 0;
        overflow: visible;
        background: transparent;
    }

    .brand {
        grid-area: brand;
        z-index: 2;
    }

    .menu-toggle {
        grid-area: toggle;
        display: grid !important;
        place-items: center;
        justify-self: end;
        z-index: 3;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.12);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
    }

    .menu-toggle-line,
    body.menu-open .menu-toggle-line {
        background: var(--ink);
    }

    .nav-links,
    .nav-actions,
    body.menu-open .nav-links,
    body.menu-open .nav-actions {
        width: 100%;
    }

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

    body.menu-open .nav-links {
        grid-area: menu;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        margin-top: 0.75rem;
        padding: 0.85rem;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
        overflow: visible;
    }

    body.menu-open .nav-links a {
        display: flex;
        justify-content: flex-start;
        min-height: 3rem;
        padding: 0.78rem 0.85rem;
        border-radius: 12px;
        background: #f7f8fb;
        border: 1px solid rgba(15, 23, 42, 0.08);
        color: var(--ink);
        font-size: 0.95rem;
        font-weight: 800;
    }

    body.menu-open .nav-links a.is-active {
        color: var(--red-dark);
        background: #fff1f1;
        border-color: rgba(221, 51, 51, 0.2);
    }

    body.menu-open .nav-links a::before,
    body.menu-open .nav-links a::after {
        display: none;
    }

    body.menu-open .nav-index {
        display: inline-grid;
        color: var(--red-dark);
        background: rgba(221, 51, 51, 0.1);
    }

    body.menu-open .nav-actions {
        grid-area: actions;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.65rem;
        margin-top: 0.65rem;
        padding: 0;
    }

    body.menu-open .nav-search {
        display: flex !important;
        width: 100%;
        min-width: 0;
        margin: 0;
        background: #ffffff;
        border-color: rgba(15, 23, 42, 0.12);
    }

    body.menu-open .nav-search-input,
    body.menu-open .nav-search-input::placeholder {
        color: var(--ink);
    }

    body.menu-open .nav-cta {
        display: inline-flex !important;
        white-space: nowrap;
    }

    body.menu-open {
        overflow: auto;
    }
}

@media (max-width: 640px) {
    body.menu-open .nav-links,
    body.menu-open .nav-actions {
        grid-template-columns: 1fr;
    }

    body.menu-open .nav-cta {
        width: 100%;
    }
}

/* Hero service panel - restore previous compact dark list */
.hero-panel {
    width: 100%;
    max-width: 39rem;
    justify-self: end;
    padding: 1.35rem 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(54, 25, 28, 0.94), rgba(43, 19, 23, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.hero-panel::before {
    display: block;
    background: linear-gradient(180deg, rgba(221, 51, 51, 0.12), rgba(255, 255, 255, 0.03));
}

.hero-panel .panel-kicker {
    color: #ffffff;
}

.hero-panel-intro {
    max-width: 31ch;
    color: rgba(255, 255, 255, 0.82);
}

.hero-panel .service-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
}

.hero-panel .service-item {
    grid-template-columns: 1.45rem minmax(0, 1fr);
    align-items: start;
    gap: 0.62rem;
    min-height: 4.05rem;
    padding: 0.72rem 0.78rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(221, 51, 51, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: none;
}

.hero-panel .service-icon {
    width: 1.45rem;
    height: 1.45rem;
    color: #f04444;
}

.hero-panel .service-item h2 {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.hero-panel .service-item p {
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    line-height: 1.3;
}

@media (max-width: 1120px) {
    .hero-panel {
        justify-self: start;
        max-width: 46rem;
    }

    .hero-panel .service-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-panel {
        max-width: none;
        margin-top: 1.5rem;
        padding: 1.1rem 0.95rem;
        border-radius: 18px;
    }

    .hero-panel .service-stack {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .hero-panel .service-item {
        grid-template-columns: 1.55rem minmax(0, 1fr);
        min-height: 3.55rem;
        padding: 0.7rem 0.78rem;
    }
}

/* Mobile menu tidy pass */
@media (max-width: 640px) {
    body.menu-open .nav {
        padding-bottom: 0.8rem;
    }

    body.menu-open .nav-links {
        gap: 0.45rem;
        margin-top: 0.55rem;
        padding: 0.65rem;
        border-radius: 14px;
    }

    body.menu-open .nav-links a {
        min-height: 2.85rem;
        padding: 0.68rem 0.75rem;
        border-radius: 10px;
        font-size: 0.92rem;
    }

    body.menu-open .nav-actions {
        display: flex !important;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0.55rem;
        margin-top: 0.55rem;
        padding: 0;
    }

    body.menu-open .nav-search {
        height: 2.85rem;
        border-radius: 999px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    body.menu-open .nav-search-button {
        width: 2.35rem;
        height: 2.35rem;
    }

    body.menu-open .nav-cta {
        min-width: 0;
        width: 100%;
        min-height: 2.85rem;
        padding: 0.72rem 1rem;
        border-radius: 999px;
    }

    body.menu-open .nav-cta-label {
        font-size: 0.78rem;
        white-space: normal;
    }

    body.menu-open .nav-cta-badge {
        flex: 0 0 auto;
    }
}

/* Requested mobile header and hero cleanup */
.service-more-toggle {
    display: none;
}

@media (max-width: 640px) {
    .nav,
    body.menu-open .nav {
        grid-template-columns: minmax(5.8rem, auto) minmax(0, 1fr) auto;
        grid-template-areas:
            "brand search toggle"
            "menu menu menu"
            "actions actions actions";
        column-gap: 0.55rem;
        row-gap: 0;
    }

    .brand-logo-wrap {
        width: 6.3rem;
        height: 2.25rem;
    }

    .nav-actions {
        grid-area: search;
        display: block !important;
        width: 100%;
        padding: 0;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .nav-actions::before,
    .nav-actions::after {
        display: none !important;
    }

    .nav-actions .nav-search {
        display: flex !important;
        width: 100%;
        min-width: 0;
        height: 2.35rem;
        margin: 0;
        border-radius: 999px;
        background: #ffffff;
        border-color: rgba(15, 23, 42, 0.12);
        box-shadow: none;
        overflow: hidden;
    }

    .nav-search-input {
        font-size: 0.88rem;
        padding: 0 0.35rem 0 0.85rem;
    }

    .nav-search-button {
        width: 2.35rem;
        height: 100%;
        border-radius: 0;
        background: transparent;
        color: #dd3333;
        box-shadow: none;
        border-left: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-search-icon {
        width: 0.7rem;
        height: 0.7rem;
        border-width: 2px;
    }

    .nav-actions .nav-cta {
        display: none !important;
    }

    body.menu-open .nav-actions {
        display: none !important;
    }

    body.menu-open .nav-links {
        grid-area: menu;
        margin-top: 0.65rem;
    }

    .hero-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        gap: 0.5rem;
        padding-bottom: 0;
    }

    .hero-points span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.35rem;
        padding: 0.55rem 0.65rem;
        white-space: normal;
        text-align: center;
    }

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

    .hero-panel:not(.is-expanded) .service-item:nth-child(n + 4) {
        display: none;
    }

    .service-more-toggle {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 2.8rem;
        margin-top: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font: inherit;
        font-size: 0.9rem;
        font-weight: 800;
        cursor: pointer;
    }

    .social-rail {
        display: flex;
        left: 50%;
        right: auto;
        bottom: 0.8rem;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 0.45rem;
        padding: 0.42rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    }

    .social-rail .social-link,
    .social-rail .social-link:not(.back-to-top) {
        display: inline-grid;
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 999px;
        color: #ffffff;
        background: #dd3333;
        border-color: rgba(221, 51, 51, 0.28);
    }
}

@media (max-width: 640px) {
    .hero-eyebrow {
        display: inline-flex;
        width: auto;
        max-width: min(100%, 21rem);
        min-height: 2.15rem;
        padding: 0.42rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 246, 246, 0.96);
        border: 1px solid rgba(221, 51, 51, 0.24);
        color: #c7242b;
        font-size: 0.68rem;
        line-height: 1.15;
        letter-spacing: 0.08em;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        text-wrap: balance;
    }

    .hero-eyebrow::before {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero-points {
        grid-template-columns: 1fr;
    }
}

/* Desktop keeps the original search style and hero fills the viewport */
@media (min-width: 641px) {
    .nav-actions .nav-search {
        height: 2.55rem;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid rgba(16, 26, 41, 0.12);
        box-shadow: none;
        overflow: hidden;
    }

    .nav-search-button {
        width: 2.55rem;
        height: 100%;
        border-radius: 0;
        background: transparent;
        color: #dd3333;
        border-left: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: none;
    }

    .nav-search-button:hover,
    .nav-search-button:focus-visible {
        background: #fff4f4;
        color: #b91c1c;
    }

    .hero {
        min-height: calc(100vh - 4.6rem);
        min-height: calc(100svh - 4.6rem);
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }

    .hero-grid {
        width: min(calc(100% - 2rem), var(--max-width));
    }
}

/* Button color polish */
.button,
.contact-form .button,
.footer-cta-actions .button {
    background: linear-gradient(135deg, #c9252d 0%, #8f1111 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(143, 17, 17, 0.22);
}

.button:hover,
.button:focus-visible,
.contact-form .button:hover,
.contact-form .button:focus-visible,
.footer-cta-actions .button:hover,
.footer-cta-actions .button:focus-visible {
    background: linear-gradient(135deg, #b91c1c 0%, #6f0d13 100%);
    box-shadow: 0 18px 34px rgba(143, 17, 17, 0.28);
}

.button-secondary,
.contact-panel .button-secondary,
.footer-cta-secondary {
    color: #151922;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.16);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.contact-panel .button-secondary:hover,
.contact-panel .button-secondary:focus-visible {
    color: #8f1111;
    background: #fff7f7;
    border-color: rgba(143, 17, 17, 0.22);
}

.footer-cta-secondary {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus-visible {
    color: #ffffff;
    background: rgba(221, 51, 51, 0.16);
    border-color: rgba(221, 51, 51, 0.35);
}

.hero-primary {
    background: linear-gradient(135deg, #c9252d 0%, #8f1111 100%);
    box-shadow: 0 14px 30px rgba(143, 17, 17, 0.28);
}

.hero-primary:hover,
.hero-primary:focus-visible {
    background: linear-gradient(135deg, #b91c1c 0%, #6f0d13 100%);
    box-shadow: 0 18px 34px rgba(143, 17, 17, 0.32);
}

.search-highlight {
    display: inline;
    padding: 0.08em 0.2em;
    border-radius: 0.28em;
    background: #fff1b8;
    color: #7a1d12;
    box-shadow: 0 0 0 1px rgba(221, 51, 51, 0.16);
}

/* Final button palette - calmer corporate red */
:root {
    --btn-red: #a91f27;
    --btn-red-dark: #761016;
    --btn-red-soft: #fff4f4;
    --btn-ink: #141820;
}

.button,
.hero-primary,
.contact-form .button,
.footer-cta-actions .button,
.nav-cta {
    color: #ffffff;
    background: linear-gradient(135deg, var(--btn-red) 0%, var(--btn-red-dark) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 28px rgba(60, 12, 15, 0.2);
}

.button:hover,
.button:focus-visible,
.hero-primary:hover,
.hero-primary:focus-visible,
.contact-form .button:hover,
.contact-form .button:focus-visible,
.footer-cta-actions .button:hover,
.footer-cta-actions .button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, #8f1820 0%, #5f0b10 100%);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 32px rgba(60, 12, 15, 0.26);
}

.button-secondary,
.hero-secondary,
.contact-panel .button-secondary {
    color: var(--btn-ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(20, 24, 32, 0.16);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.hero-secondary:hover,
.hero-secondary:focus-visible,
.contact-panel .button-secondary:hover,
.contact-panel .button-secondary:focus-visible {
    color: var(--btn-red-dark);
    background: var(--btn-red-soft);
    border-color: rgba(169, 31, 39, 0.24);
    box-shadow: 0 12px 26px rgba(60, 12, 15, 0.12);
}

.hero .hero-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.hero .hero-secondary:hover,
.hero .hero-secondary:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
}

.footer-cta-secondary {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus-visible {
    color: #ffffff;
    background: rgba(169, 31, 39, 0.22);
    border-color: rgba(255, 255, 255, 0.22);
}

/* Logo-matched final palette */
:root {
    --brand: #e21f2d;
    --brand-deep: #111111;
    --brand-soft: #fff0f1;
    --red: #e21f2d;
    --red-dark: #9f111b;
    --btn-red: #e21f2d;
    --btn-red-dark: #111111;
    --btn-red-soft: #fff2f3;
    --btn-ink: #111111;
}

.button,
.hero-primary,
.contact-form .button,
.footer-cta-actions .button,
.nav-cta {
    color: #ffffff;
    background: linear-gradient(135deg, #e21f2d 0%, #b51621 58%, #111111 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 28px rgba(226, 31, 45, 0.2);
}

.button:hover,
.button:focus-visible,
.hero-primary:hover,
.hero-primary:focus-visible,
.contact-form .button:hover,
.contact-form .button:focus-visible,
.footer-cta-actions .button:hover,
.footer-cta-actions .button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, #c91925 0%, #8f1018 56%, #111111 100%);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 32px rgba(226, 31, 45, 0.26);
}

.button-secondary,
.contact-panel .button-secondary {
    color: #111111;
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.14);
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.contact-panel .button-secondary:hover,
.contact-panel .button-secondary:focus-visible {
    color: #e21f2d;
    background: #fff6f6;
    border-color: rgba(226, 31, 45, 0.26);
    box-shadow: 0 12px 24px rgba(226, 31, 45, 0.12);
}

.hero .hero-secondary {
    color: #ffffff;
    background: rgba(17, 17, 17, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero .hero-secondary:hover,
.hero .hero-secondary:focus-visible {
    color: #ffffff;
    background: rgba(226, 31, 45, 0.18);
    border-color: rgba(226, 31, 45, 0.42);
}

.footer-cta-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus-visible {
    color: #ffffff;
    background: rgba(226, 31, 45, 0.18);
    border-color: rgba(226, 31, 45, 0.38);
}

/* Corporate CTA treatment */
.button,
.hero-primary,
.contact-form .button,
.footer-cta-actions .button,
.nav-cta {
    min-height: 3.05rem;
    padding: 0.82rem 1.35rem;
    border-radius: 10px;
    color: #ffffff;
    background: #c81724;
    border: 1px solid #a9121d;
    box-shadow: 0 10px 22px rgba(200, 23, 36, 0.16);
    font-weight: 800;
}

.button:hover,
.button:focus-visible,
.hero-primary:hover,
.hero-primary:focus-visible,
.contact-form .button:hover,
.contact-form .button:focus-visible,
.footer-cta-actions .button:hover,
.footer-cta-actions .button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
    color: #ffffff;
    background: #a9121d;
    border-color: #7f0d15;
    box-shadow: 0 12px 24px rgba(127, 13, 21, 0.2);
}

.button-secondary,
.contact-panel .button-secondary {
    min-height: 3.05rem;
    padding: 0.82rem 1.35rem;
    border-radius: 10px;
    color: #171a20;
    background: #ffffff;
    border: 1px solid #d9dde5;
    box-shadow: none;
    font-weight: 800;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.contact-panel .button-secondary:hover,
.contact-panel .button-secondary:focus-visible {
    color: #a9121d;
    background: #fff8f8;
    border-color: rgba(200, 23, 36, 0.32);
    box-shadow: none;
}

.footer-cta-actions .button {
    background: #d51b29;
    border-color: #b61521;
    box-shadow: none;
}

.footer-cta-actions .button:hover,
.footer-cta-actions .button:focus-visible {
    background: #b61521;
    border-color: #8e1019;
    box-shadow: none;
}

.footer-cta-secondary {
    min-height: 3.05rem;
    padding: 0.82rem 1.35rem;
    border-radius: 10px;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: none;
}

/* Modern header CTA */
.nav-cta {
    min-height: 2.85rem;
    padding: 0.68rem 0.72rem 0.68rem 1.05rem;
    border-radius: 12px;
    background: #cf1725;
    border: 1px solid #b8121e;
    box-shadow: 0 10px 22px rgba(207, 23, 37, 0.18);
    gap: 0.75rem;
}

.nav-cta::before,
.nav-cta::after {
    display: none;
}

.nav-cta-label {
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-cta-badge {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 1rem;
    line-height: 1;
    transform: translateX(0);
    transition: transform 180ms ease, background 180ms ease;
}

.nav-cta-badge i {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: #b8121e;
    border-color: #96101a;
    box-shadow: 0 12px 26px rgba(184, 18, 30, 0.22);
    transform: translateY(-1px);
}

.nav-cta:hover .nav-cta-badge,
.nav-cta:focus-visible .nav-cta-badge {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(2px);
}
