:root {
    --v2-color-ink: #0f1720;
    --v2-color-ink-soft: #334155;
    --v2-color-muted: #64748b;
    --v2-color-border: #dbe1ea;
    --v2-color-border-strong: rgba(15, 23, 32, 0.14);
    --v2-color-surface: #ffffff;
    --v2-color-surface-alt: #f3f4f6;
    --v2-color-surface-dark: #111827;
    --v2-color-accent: #d32114;
    --v2-color-accent-strong: #a61910;
    --v2-color-accent-soft: rgba(211, 33, 20, 0.08);
    --v2-color-success: #0f7b6c;
    --v2-font-heading: "Sora", "Raleway", sans-serif;
    --v2-font-body: "Manrope", "Open Sans", sans-serif;
    --v2-container: 1240px;
    --v2-radius-sm: 10px;
    --v2-radius-md: 14px;
    --v2-radius-lg: 24px;
    --v2-radius-pill: 999px;
    --v2-shadow-sm: 0 12px 30px rgba(15, 23, 32, 0.08);
    --v2-shadow-md: 0 24px 60px rgba(15, 23, 32, 0.12);
    --v2-shadow-lg: 0 36px 120px rgba(15, 23, 32, 0.18);
    --v2-section-space: 80px;
    --v2-section-space-mobile: 56px;
    --v2-spacing-1: 8px;
    --v2-spacing-2: 16px;
    --v2-spacing-3: 24px;
    --v2-spacing-4: 32px;
    --v2-spacing-5: 40px;
    --v2-spacing-6: 48px;
    --v2-spacing-7: 56px;
    --v2-spacing-8: 64px;
    --v2-spacing-9: 72px;
    --v2-spacing-10: 80px;
    --v2-header-topbar-height: 52px;
    --v2-header-main-height: 88px;
    --v2-header-mobile-height: 78px;
    --v2-hero-fold-offset: calc(var(--v2-header-topbar-height) + var(--v2-header-main-height) + 18px);
    --v2-ease: 0.28s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--v2-font-body);
    color: var(--v2-color-ink);
    background:
        radial-gradient(circle at top left, rgba(211, 33, 20, 0.05), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 28%, #f8fafc 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.frontend-v2-ready {
    overflow-x: hidden;
}

a {
    transition: color var(--v2-ease), opacity var(--v2-ease), transform var(--v2-ease), background-color var(--v2-ease), border-color var(--v2-ease), box-shadow var(--v2-ease);
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--v2-font-heading);
    color: var(--v2-color-ink);
    letter-spacing: -0.03em;
}

.v2-container {
    width: min(calc(100% - 32px), var(--v2-container));
    margin: 0 auto;
}

.v2-shell {
    position: relative;
    z-index: 2;
}

.v2-section {
    padding: var(--v2-section-space) 0;
}

.v2-section + .v2-section {
    padding-top: 0;
}

.v2-surface {
    background: var(--v2-color-surface);
    border: 1px solid rgba(15, 23, 32, 0.04);
    border-radius: var(--v2-radius-lg);
    box-shadow: var(--v2-shadow-sm);
}

.v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: var(--v2-radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.v2-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v2-color-accent);
    box-shadow: 0 0 0 6px rgba(211, 33, 20, 0.14);
}

.v2-section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: var(--v2-spacing-6);
}

.v2-section-heading--center {
    text-align: center;
    justify-items: center;
}

.v2-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-color-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.v2-section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.v2-section-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
}

.v2-section-subtitle {
    max-width: 700px;
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 17px;
    line-height: 1.75;
}

.v2-button,
.v2-button:link,
.v2-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--v2-radius-pill);
    border: 1px solid transparent;
    font-family: var(--v2-font-body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.v2-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.v2-button--primary {
    background: linear-gradient(135deg, var(--v2-color-accent) 0%, #ef3c2d 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(211, 33, 20, 0.24);
}

.v2-button--primary:hover {
    color: #fff;
    box-shadow: 0 22px 42px rgba(211, 33, 20, 0.28);
}

.v2-button--secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.v2-button--secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.v2-button--outline {
    background: transparent;
    border-color: rgba(15, 23, 32, 0.14);
    color: var(--v2-color-ink);
}

.v2-button--outline:hover {
    color: var(--v2-color-ink);
    border-color: rgba(15, 23, 32, 0.28);
    box-shadow: var(--v2-shadow-sm);
}

.v2-button--text {
    min-height: auto;
    padding: 0;
    color: var(--v2-color-accent);
    border: 0;
    background: transparent;
    font-weight: 800;
}

.v2-button--text:hover {
    color: var(--v2-color-accent-strong);
    transform: translateX(4px);
}

.v2-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.v2-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--v2-radius-pill);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.v2-chip i {
    color: var(--v2-color-accent);
}

.v2-card {
    position: relative;
    height: 100%;
    background: var(--v2-color-surface);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 26px;
    box-shadow: var(--v2-shadow-sm);
    overflow: hidden;
}

.v2-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-md);
}

.v2-card__body {
    padding: 28px;
}

.v2-card__title {
    margin: 0 0 14px;
    font-family: var(--v2-font-heading);
    font-size: 22px;
    line-height: 1.25;
}

.v2-card__text {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 15px;
    line-height: 1.75;
}

.site-header-v2 {
    position: relative;
    z-index: 200;
}

.site-header-v2__topbar {
    background: linear-gradient(90deg, rgba(15, 23, 32, 0.98) 0%, rgba(23, 34, 51, 0.96) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

.site-header-v2__topbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: var(--v2-header-topbar-height);
}

.site-header-v2__contact-list,
.site-header-v2__quick-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header-v2__contact-list {
    min-width: 0;
    flex-wrap: wrap;
}

.site-header-v2__contact-list a,
.site-header-v2__contact-list span {
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.site-header-v2__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--v2-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    min-width: 0;
    max-width: 100%;
}

.site-header-v2__contact-item--primary {
    background: rgba(211, 33, 20, 0.18);
    border-color: rgba(211, 33, 20, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.site-header-v2__contact-item--secondary {
    background: rgba(255, 255, 255, 0.06);
}

.site-header-v2__contact-item i {
    color: var(--v2-color-accent);
    flex: 0 0 auto;
}

.site-header-v2__contact-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
    line-height: 1.2;
}

.site-header-v2__contact-copy strong {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.site-header-v2__contact-copy span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header-v2__quick-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.site-header-v2__quick-actions .v2-button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.site-header-v2__main {
    position: sticky;
    top: 0;
    z-index: 180;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(15, 23, 32, 0.06);
    border-bottom: 1px solid rgba(15, 23, 32, 0.06);
}

.site-header-v2__main-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: var(--v2-header-main-height);
}

.site-header-v2__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.site-header-v2__brand img,
#fixed-header-main .site-header-v2__brand img {
    max-height: 58px;
    width: auto;
}

.site-header-v2__brand-copy {
    display: none;
}

.site-header-v2__brand-name {
    display: block;
    font-family: var(--v2-font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--v2-color-ink);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header-v2__brand-tag {
    display: block;
    color: var(--v2-color-muted);
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header-v2__nav {
    justify-self: center;
}

.site-header-v2__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header-v2__action-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: var(--v2-radius-pill);
    border: 1px solid rgba(15, 23, 32, 0.08);
    background: var(--v2-color-surface);
    color: var(--v2-color-ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.site-header-v2__action-link:hover {
    color: var(--v2-color-ink);
    box-shadow: var(--v2-shadow-sm);
    text-decoration: none;
}

.site-header-v2__action-link i {
    color: var(--v2-color-accent);
}

.site-header-v2__search {
    display: none;
    align-items: center;
    min-height: 46px;
    padding: 0 12px 0 18px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    background: var(--v2-color-surface);
    border-radius: var(--v2-radius-pill);
}

.site-header-v2__search input {
    width: 140px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v2-color-ink);
    font-family: var(--v2-font-body);
    font-size: 14px;
    outline: none;
}

.site-header-v2__search button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--v2-color-accent-soft);
    color: var(--v2-color-accent);
}

.site-header-v2__search button:hover {
    background: var(--v2-color-accent);
    color: #fff;
}

.site-header-v2__lang .btn,
.site-header-v2__lang .dropdown-menu {
    border-radius: 18px;
}

.site-header-v2__lang .btn {
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    background: var(--v2-color-surface);
    color: var(--v2-color-ink);
    font-size: 13px;
    font-weight: 800;
}

.site-header-v2__lang .dropdown-menu {
    min-width: 180px;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: var(--v2-shadow-sm);
}

.site-header-v2__lang .dropdown-item {
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
}

.top-level-menu,
.second-level-menu,
.third-level-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header-v2__nav {
    justify-self: stretch;
    min-width: 0;
}

.site-header-v2__nav::-webkit-scrollbar {
    display: none;
}

.site-header-v2__nav {
    scrollbar-width: none;
}

.site-header-v2 .top-level-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
}

.site-header-v2 .top-level-menu > li {
    position: relative;
    float: none;
    width: auto;
    height: auto;
    margin-right: 0;
    padding: 0;
}

.site-header-v2 .top-level-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: var(--v2-radius-pill);
    color: var(--v2-color-ink);
    text-decoration: none;
}

.site-header-v2 .top-level-menu > li > a span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--v2-font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.25;
    height: auto;
    text-transform: uppercase;
    color: inherit;
}

.site-header-v2 .top-level-menu > li:hover > a,
.site-header-v2 .top-level-menu > li.is-active > a {
    color: var(--v2-color-accent);
    background: rgba(211, 33, 20, 0.08);
}

.site-header-v2 .top-level-menu > li:hover > a span,
.site-header-v2 .top-level-menu > li.is-active > a span {
    color: inherit;
}

.site-header-v2 .second-level-menu,
.site-header-v2 .third-level-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--v2-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--v2-ease), transform var(--v2-ease), visibility var(--v2-ease);
    z-index: 20;
}

.site-header-v2 .third-level-menu {
    left: calc(100% + 12px);
    top: -12px;
}

.site-header-v2 .top-level-menu li:hover > ul,
.site-header-v2 .second-level-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header-v2 .second-level-menu > li,
.site-header-v2 .third-level-menu > li {
    position: relative;
}

.site-header-v2 .second-level-menu > li > a,
.site-header-v2 .third-level-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--v2-color-ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.site-header-v2 .second-level-menu > li > a span,
.site-header-v2 .third-level-menu > li > a span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: auto;
    line-height: 1.35;
    text-transform: none;
    color: inherit !important;
    font-family: var(--v2-font-body);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0.01em;
}

.site-header-v2 .second-level-menu > li > a p,
.site-header-v2 .third-level-menu > li > a p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.site-header-v2 .second-level-menu > li:hover > a,
.site-header-v2 .third-level-menu > li:hover > a {
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-accent);
}

.site-header-v2 .second-level-menu > li:hover > a span,
.site-header-v2 .third-level-menu > li:hover > a span {
    color: inherit !important;
}

.header-mobile-main {
    display: none;
}

#fixed-header-main {
    display: none !important;
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 250;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 32, 0.08);
}

#fixed-header-main .site-header-v2__main-inner {
    min-height: 72px;
}

.hero-v2 {
    position: relative;
    margin: 0;
    width: 100%;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    background: var(--v2-color-ink);
    box-shadow: var(--v2-shadow-lg);
    isolation: isolate;
}

.hero-v2__slide {
    position: relative;
    min-height: clamp(700px, calc(100svh - var(--v2-hero-fold-offset) + 28px), 980px);
    background-size: cover !important;
    background-position: center center !important;
}

.hero-v2__slide::before,
.hero-v2__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-v2__slide::before {
    background:
        radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
        radial-gradient(circle at 82% 74%, rgba(211, 33, 20, 0.22), transparent 30%);
    z-index: 0;
}

.hero-v2__slide::after {
    inset: auto 0 0 0;
    height: 44%;
    background: linear-gradient(180deg, rgba(15, 23, 32, 0) 0%, rgba(15, 23, 32, 0.52) 100%);
    z-index: 1;
}

.hero-v2__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(96deg, rgba(15, 23, 32, 0.92) 0%, rgba(15, 23, 32, 0.74) 36%, rgba(15, 23, 32, 0.34) 74%, rgba(15, 23, 32, 0.5) 100%),
        linear-gradient(180deg, rgba(15, 23, 32, 0.08) 0%, rgba(15, 23, 32, 0.4) 100%);
    z-index: 1;
}

.hero-v2__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 430px);
    gap: clamp(36px, 4vw, 60px);
    align-items: center;
    min-height: inherit;
    width: min(calc(100% - 64px), var(--v2-container));
    margin: 0 auto;
    padding: clamp(88px, 8vw, 118px) 0 clamp(54px, 5vw, 84px);
}

.hero-v2__copy {
    max-width: 720px;
    display: grid;
    gap: 22px;
    align-self: center;
}

.hero-v2__title {
    margin: 0;
    color: #fff;
    max-width: 700px;
    font-size: clamp(44px, 5.4vw, 80px);
    line-height: 1.02;
}

.hero-v2__lead {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.88;
}

.hero-v2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.hero-v2__quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    max-width: 760px;
}

.hero-v2__quick-card {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 90px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: #fff;
    text-decoration: none;
}

.hero-v2__quick-card strong {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hero-v2__quick-card span {
    font-size: 15px;
    font-weight: 700;
}

.hero-v2__panel {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: start;
    align-self: center;
    gap: 18px;
    width: 100%;
    min-height: clamp(340px, 40vh, 430px);
    padding: clamp(24px, 3vw, 34px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 26px;
    box-shadow: 0 30px 60px rgba(15, 23, 32, 0.16);
}

.hero-v2__panel-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}

.hero-v2__panel-text {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 14px;
    line-height: 1.75;
}

.hero-v2__metrics {
    display: grid;
    gap: 14px;
}

.hero-v2__metric {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    background: var(--v2-color-surface-alt);
}

.hero-v2__metric-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    color: var(--v2-color-accent);
    box-shadow: 0 10px 20px rgba(211, 33, 20, 0.12);
}

.hero-v2__metric strong {
    display: block;
    margin-bottom: 2px;
    font-family: var(--v2-font-heading);
    font-size: 22px;
    line-height: 1;
}

.hero-v2__metric span {
    color: var(--v2-color-muted);
    font-size: 13px;
    line-height: 1.5;
}

.hero-v2 .swiper-button-next,
.hero-v2 .swiper-button-prev,
.hero-v2 .swiper-pagination {
    display: none !important;
}

.trust-strip-v2 {
    margin-top: -34px;
    position: relative;
    z-index: 5;
}

.trust-strip-v2__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 26px 32px;
    border-radius: 28px;
    background: var(--v2-color-surface);
    border: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: var(--v2-shadow-md);
}

.trust-strip-v2__copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.trust-strip-v2__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-color-muted);
}

.trust-strip-v2__label i {
    color: var(--v2-color-accent);
}

.trust-strip-v2__title {
    font-family: var(--v2-font-heading);
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.2;
}

.trust-strip-v2__points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-strip-v2__point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--v2-radius-pill);
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-ink);
    font-size: 13px;
    font-weight: 700;
}

.trust-strip-v2__point i {
    color: var(--v2-color-accent);
}

.trust-strip-v2__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.services-v2__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.services-v2__card {
    grid-column: span 6;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #ffffff 100%);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 28px;
    box-shadow: var(--v2-shadow-sm);
}

.services-v2__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-md);
}

.services-v2__icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(211, 33, 20, 0.14) 0%, rgba(211, 33, 20, 0.06) 100%);
    color: var(--v2-color-accent);
    font-size: 28px;
    box-shadow: inset 0 0 0 1px rgba(211, 33, 20, 0.08);
}

.services-v2__meta {
    display: grid;
    gap: 12px;
}

.services-v2__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
}

.services-v2__title a {
    color: inherit;
    text-decoration: none;
}

.services-v2__title a:hover {
    color: var(--v2-color-accent);
}

.services-v2__text {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 15px;
    line-height: 1.82;
}

.services-v2__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 6px;
}

.services-v2__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-color-success);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-v2__tag::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(15, 123, 108, 0.12);
}

.about-v2__surface {
    display: grid;
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 32px;
    box-shadow: var(--v2-shadow-md);
}

.about-v2__media {
    position: relative;
    min-height: 100%;
    background: linear-gradient(180deg, #172233 0%, #0f1720 100%);
}

.about-v2__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

.about-v2__media-overlay {
    position: absolute;
    inset: auto 24px 24px 24px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(15, 23, 32, 0.78);
    color: #fff;
    backdrop-filter: blur(12px);
}

.about-v2__media-overlay strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-v2__media-overlay span {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.about-v2__content {
    display: grid;
    gap: 28px;
    padding: 42px;
}

.about-v2__intro {
    display: grid;
    gap: 18px;
}

.about-v2__intro h3 {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
}

.about-v2__intro p {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 16px;
    line-height: 1.9;
}

.about-v2__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-v2__metric {
    display: grid;
    gap: 8px;
    padding: 20px;
    border-radius: 20px;
    background: var(--v2-color-surface-alt);
    border: 1px solid rgba(15, 23, 32, 0.06);
}

.about-v2__metric strong {
    font-family: var(--v2-font-heading);
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
}

.about-v2__metric span {
    color: var(--v2-color-muted);
    font-size: 13px;
    line-height: 1.6;
}

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

.about-v2__highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(15, 23, 32, 0.03);
}

.about-v2__highlight i {
    color: var(--v2-color-accent);
    font-size: 18px;
    margin-top: 2px;
}

.about-v2__highlight strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 800;
}

.about-v2__highlight span {
    color: var(--v2-color-muted);
    font-size: 13px;
    line-height: 1.6;
}

.about-v2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-v2__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
}

.blog-v2__card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    background: var(--v2-color-surface);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--v2-shadow-sm);
}

.blog-v2__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-md);
}

.blog-v2__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-v2__card:hover .blog-v2__image img {
    transform: scale(1.06);
}

.blog-v2__body {
    display: grid;
    gap: 14px;
    padding: 28px;
}

.blog-v2__meta {
    color: var(--v2-color-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.blog-v2__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
}

.blog-v2__title a {
    color: inherit;
    text-decoration: none;
}

.blog-v2__title a:hover {
    color: var(--v2-color-accent);
}

.blog-v2__excerpt {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 15px;
    line-height: 1.82;
}

.cta-band-v2 {
    padding-bottom: var(--v2-section-space);
}

.cta-band-v2__surface {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #0f1720 0%, #172233 54%, #1f2937 100%);
    color: #fff;
    box-shadow: var(--v2-shadow-lg);
}

.cta-band-v2__surface::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(211, 33, 20, 0.18);
    filter: blur(4px);
}

.cta-band-v2__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 28px;
    align-items: center;
}

.cta-band-v2__copy {
    display: grid;
    gap: 12px;
}

.cta-band-v2__label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cta-band-v2__title {
    margin: 0;
    font-size: clamp(28px, 3.1vw, 44px);
    color: #fff;
    line-height: 1.1;
}

.cta-band-v2__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

.cta-band-v2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.site-footer-v2 {
    position: relative;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer-v2__surface {
    position: relative;
    overflow: hidden;
    padding: 56px 0 28px;
    background:
        radial-gradient(circle at top left, rgba(211, 33, 20, 0.14), transparent 24%),
        linear-gradient(180deg, #111827 0%, #0f1720 100%);
    border-radius: 36px 36px 0 0;
}

.site-footer-v2__surface::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(211, 33, 20, 0.12);
    filter: blur(10px);
}

.site-footer-v2__container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 32px), var(--v2-container));
    margin: 0 auto;
}

.site-footer-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 220px)) minmax(260px, 1fr);
    gap: 26px;
    align-items: start;
    margin-bottom: 34px;
}

.site-footer-v2__brand {
    display: grid;
    gap: 18px;
}

.site-footer-v2__logo img {
    max-width: 210px;
    width: auto;
}

.site-footer-v2__brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.85;
}

.site-footer-v2__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-v2__socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.site-footer-v2__socials a:hover {
    background: rgba(211, 33, 20, 0.92);
}

.site-footer-v2__column-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer-v2__menu,
.site-footer-v2__contact-list {
    display: grid;
    gap: 12px;
}

.site-footer-v2__menu a,
.site-footer-v2__contact-list a,
.site-footer-v2__contact-list span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.site-footer-v2__menu a:hover,
.site-footer-v2__contact-list a:hover {
    color: #fff;
}

.site-footer-v2__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.site-footer-v2__contact-item i {
    color: var(--v2-color-accent);
    margin-top: 4px;
}

.site-footer-v2__contact-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-v2__contact-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.site-footer-v2__contact-card p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.75;
}

.site-footer-v2__contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.site-footer-v2__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-v2__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.floating-contact-v2 {
    position: fixed;
    right: 18px;
    bottom: 18px;
    bottom: calc(18px + var(--v2-floating-offset, 0px));
    z-index: 260;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.floating-contact-v2__action,
.floating-contact-v2__top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: var(--v2-radius-pill);
    border: 1px solid rgba(15, 23, 32, 0.08);
    background: rgba(255, 255, 255, 0.96);
    color: var(--v2-color-ink);
    box-shadow: var(--v2-shadow-sm);
    text-decoration: none;
    backdrop-filter: blur(14px);
}

.floating-contact-v2__action:hover,
.floating-contact-v2__top:hover {
    color: var(--v2-color-ink);
    transform: translateY(-2px);
    text-decoration: none;
}

.floating-contact-v2__action i,
.floating-contact-v2__top i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--v2-color-ink);
}

.floating-contact-v2__action--whatsapp i {
    background: #1ca872;
}

.floating-contact-v2__action strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v2-color-muted);
}

.floating-contact-v2__action span {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

/* Inner Page Foundation */

.v2-page-hero {
    margin-top: 20px;
}

.v2-page-hero__surface {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(211, 33, 20, 0.32), transparent 26%),
        linear-gradient(135deg, rgba(15, 23, 32, 0.96) 0%, rgba(23, 34, 51, 0.94) 70%, rgba(211, 33, 20, 0.82) 100%);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--v2-shadow-md);
}

.v2-page-hero__breadcrumbs {
    margin-bottom: 18px;
}

.v2-page-hero__breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.v2-page-hero__breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 700;
}

.v2-page-hero__breadcrumbs li + li::before {
    content: "/";
    color: rgba(255, 255, 255, 0.4);
}

.v2-page-hero__breadcrumbs a,
.v2-page-hero__breadcrumbs span {
    color: inherit;
    text-decoration: none;
}

.v2-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 10px 16px;
    border-radius: var(--v2-radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v2-page-hero__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v2-color-accent);
}

.v2-page-hero__title {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.04;
    text-wrap: balance;
}

.v2-page-hero__intro {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.85;
}

.v2-page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.v2-page-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--v2-radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.v2-page-hero__meta-item i {
    color: var(--v2-color-accent);
}

.v2-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.v2-page-shell {
    width: min(calc(100% - 32px), var(--v2-container));
    margin: 0 auto;
    padding: 28px 0 var(--v2-section-space);
}

.v2-page-shell--narrow {
    width: min(calc(100% - 32px), 980px);
}

.v2-page-section {
    margin-bottom: var(--v2-section-space);
}

.v2-page-section:last-child {
    margin-bottom: 0;
}

.v2-page-section__header {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.v2-page-section__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--v2-color-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.v2-page-section__kicker::before {
    content: "";
    width: 20px;
    height: 2px;
    background: currentColor;
}

.v2-page-section__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
}

.v2-page-section__intro {
    max-width: 760px;
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.v2-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 360px);
    gap: 30px;
    align-items: start;
}

.v2-page-main,
.v2-page-sidebar {
    min-width: 0;
}

.v2-content-card,
.v2-side-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 28px;
    box-shadow: var(--v2-shadow-sm);
}

.v2-content-card {
    padding: 30px;
}

.v2-content-card + .v2-content-card,
.v2-side-card + .v2-side-card {
    margin-top: 22px;
}

.v2-content-card__media {
    margin: -30px -30px 24px;
}

.v2-content-card__media img,
.v2-content-card__media iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 28px 28px 0 0;
}

.v2-content-card__head {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.v2-content-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.v2-content-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--v2-radius-pill);
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.v2-content-card__title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.12;
}

.v2-content-card__lead {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.v2-richtext {
    color: var(--v2-color-ink-soft);
    font-size: 16px;
    line-height: 1.9;
}

.v2-richtext > :first-child {
    margin-top: 0 !important;
}

.v2-richtext > :last-child {
    margin-bottom: 0 !important;
}

.v2-richtext h1,
.v2-richtext h2,
.v2-richtext h3,
.v2-richtext h4,
.v2-richtext h5,
.v2-richtext h6 {
    margin: 1.6em 0 0.7em;
    font-family: var(--v2-font-heading);
    color: var(--v2-color-ink);
    line-height: 1.18;
}

.v2-richtext h2 {
    font-size: clamp(24px, 2.6vw, 34px);
}

.v2-richtext h3 {
    font-size: clamp(20px, 2.2vw, 28px);
}

.v2-richtext p,
.v2-richtext ul,
.v2-richtext ol,
.v2-richtext blockquote,
.v2-richtext table {
    margin: 0 0 1.2em;
}

.v2-richtext ul,
.v2-richtext ol {
    padding-left: 22px;
}

.v2-richtext li {
    margin-bottom: 0.45em;
}

.v2-richtext a {
    color: var(--v2-color-accent);
    text-decoration: underline;
    text-decoration-color: rgba(211, 33, 20, 0.24);
}

.v2-richtext img,
.v2-richtext iframe,
.v2-richtext video {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

.v2-richtext blockquote {
    padding: 20px 22px;
    border-left: 4px solid var(--v2-color-accent);
    border-radius: 0 18px 18px 0;
    background: rgba(211, 33, 20, 0.05);
    color: var(--v2-color-ink);
    font-weight: 600;
}

.v2-richtext table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
}

.v2-richtext th,
.v2-richtext td {
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    text-align: left;
}

.v2-richtext th {
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-ink);
}

.v2-list-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.v2-list-card {
    grid-column: span 6;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 28px;
    box-shadow: var(--v2-shadow-sm);
    overflow: hidden;
}

.v2-list-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-md);
}

.v2-list-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 23, 32, 0.96), rgba(211, 33, 20, 0.8));
}

.v2-list-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--v2-ease);
}

.v2-list-card:hover .v2-list-card__image img {
    transform: scale(1.04);
}

.v2-list-card__icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(211, 33, 20, 0.08);
    color: var(--v2-color-accent);
    font-size: 28px;
}

.v2-list-card__body {
    display: grid;
    gap: 14px;
    padding: 24px;
    flex: 1;
}

.v2-list-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--v2-color-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v2-list-card__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
}

.v2-list-card__title a {
    color: var(--v2-color-ink);
    text-decoration: none;
}

.v2-list-card__text {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 15px;
    line-height: 1.8;
}

.v2-list-card__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-top: auto;
}

.v2-list-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f7b6c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v2-list-card__link {
    color: var(--v2-color-accent);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.v2-side-card {
    padding: 24px;
}

.v2-side-card__title {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.35;
}

.v2-side-list,
.v2-side-nav {
    display: grid;
    gap: 12px;
}

.v2-side-nav a,
.v2-side-list a,
.v2-side-list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.v2-side-nav a.is-active {
    background: rgba(211, 33, 20, 0.08);
    color: var(--v2-color-accent);
}

.v2-side-list a:hover,
.v2-side-nav a:hover {
    background: rgba(211, 33, 20, 0.08);
    color: var(--v2-color-accent);
}

.v2-side-list small {
    color: var(--v2-color-muted);
    font-size: 12px;
    font-weight: 700;
}

.v2-page-cta-card {
    background:
        radial-gradient(circle at top right, rgba(211, 33, 20, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(15, 23, 32, 0.96) 0%, rgba(23, 34, 51, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.06);
}

.v2-page-cta-card__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v2-page-cta-card__title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.18;
}

.v2-page-cta-card__text {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}

.v2-page-cta-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.v2-page-cta-card__phone i {
    color: var(--v2-color-accent);
}

.v2-page-cta-card__actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.v2-empty-state {
    display: grid;
    gap: 14px;
    place-items: center;
    min-height: 240px;
    padding: 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px dashed rgba(15, 23, 32, 0.14);
    border-radius: 28px;
}

.v2-empty-state__title {
    margin: 0;
    font-size: 24px;
}

.v2-empty-state__text {
    max-width: 520px;
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 15px;
    line-height: 1.8;
}

.v2-form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.2fr);
    gap: 30px;
    align-items: start;
}

.v2-form-layout > * {
    min-width: 0;
}

.v2-form-card,
.v2-contact-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 28px;
    box-shadow: var(--v2-shadow-sm);
}

.v2-form-card {
    padding: 30px;
}

.v2-contact-card {
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(211, 33, 20, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.96);
}

.v2-contact-card__list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.v2-contact-card__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--v2-color-surface-alt);
    min-width: 0;
}

.v2-contact-card__item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    color: var(--v2-color-accent);
    box-shadow: 0 10px 24px rgba(211, 33, 20, 0.12);
}

.v2-contact-card__item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--v2-color-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.v2-contact-card__item span,
.v2-contact-card__item a {
    color: var(--v2-color-ink-soft);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.v2-contact-card__item > div,
.v2-contact-card__item span,
.v2-contact-card__item a {
    min-width: 0;
}

.v2-contact-card__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.v2-contact-card__socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-ink);
    text-decoration: none;
}

.v2-contact-card__socials a:hover {
    background: var(--v2-color-accent);
    color: #fff;
}

.v2-form-card__head {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.v2-form-card__title {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    text-wrap: balance;
}

.v2-form-card__text {
    margin: 0;
    color: var(--v2-color-muted);
    font-size: 15px;
    line-height: 1.8;
}

.v2-form-card .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--v2-color-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.v2-form-card textarea.form-control,
.v2-form-card .form-control[type="file"] {
    min-height: 120px;
}

.v2-form-card .form-control[type="file"] {
    padding-top: 16px;
}

.v2-form-card .input-group-text {
    border: 1px solid rgba(15, 23, 32, 0.12);
    border-radius: 16px 0 0 16px;
    background: var(--v2-color-surface-alt);
}

.v2-form-card .input-group > .form-control {
    border-radius: 0 16px 16px 0 !important;
}

.v2-form-card__notes,
.v2-form-card__trust {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.v2-form-card__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--v2-color-ink-soft);
    font-size: 14px;
    font-weight: 700;
}

.v2-form-card__trust-item i {
    color: var(--v2-color-success);
}

#portfolio.v2-gallery-grid,
.v2-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

.v2-gallery-showcase {
    padding: clamp(24px, 3vw, 34px);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(211, 33, 20, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    border: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: var(--v2-shadow-sm);
}

.v2-gallery-showcase__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.v2-gallery-showcase__intro {
    display: grid;
    gap: 14px;
}

.v2-gallery-showcase__aside {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.v2-gallery-showcase__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: var(--v2-radius-pill);
    background: rgba(15, 23, 32, 0.04);
    border: 1px solid rgba(15, 23, 32, 0.08);
    color: var(--v2-color-ink-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.v2-gallery-showcase__pill i {
    color: var(--v2-color-accent);
}

.v2-gallery-item {
    position: relative;
    grid-column: span 4;
    display: block;
    min-height: 280px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--v2-shadow-sm);
    background: #dbe4ef;
    isolation: isolate;
}

.v2-gallery-item--feature {
    grid-column: span 7;
    min-height: 540px;
}

.v2-gallery-item--tall {
    grid-column: span 5;
    min-height: 260px;
}

.v2-gallery-item--wide {
    grid-column: span 7;
    min-height: 320px;
}

.v2-gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 32, 0.06) 0%, rgba(15, 23, 32, 0.1) 42%, rgba(15, 23, 32, 0.68) 100%);
    z-index: 1;
}

.v2-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-md);
}

.v2-gallery-item:hover img {
    transform: scale(1.05);
}

.v2-gallery-item__media {
    position: absolute;
    inset: 0;
    display: block;
}

.v2-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v2-gallery-item__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(15, 23, 32, 0.66);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
}

.v2-gallery-item__caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    color: #fff;
}

.v2-gallery-item__caption-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.v2-gallery-item__caption-copy strong {
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 800;
    line-height: 1.08;
}

.v2-gallery-item__caption-copy span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.v2-gallery-item__caption-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(10px);
}

.v2-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.v2-tag-list span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--v2-radius-pill);
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.v2-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.v2-share-row a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--v2-color-surface-alt);
    color: var(--v2-color-ink);
    text-decoration: none;
}

.v2-share-row a:hover {
    background: var(--v2-color-accent);
    color: #fff;
}

.v2-list-grid--three .v2-list-card {
    grid-column: span 4;
}

.v2-list-grid--single .v2-list-card {
    grid-column: span 12;
}

.v2-page-sidebar--sticky {
    position: sticky;
    top: 112px;
}

.v2-side-card__text {
    margin: 0 0 16px;
    color: var(--v2-color-muted);
    font-size: 14px;
    line-height: 1.8;
}

.v2-side-card__meta {
    display: grid;
    gap: 12px;
}

.v2-side-card__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--v2-color-surface-alt);
}

.v2-side-card__meta-item i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    color: var(--v2-color-accent);
    box-shadow: 0 10px 20px rgba(211, 33, 20, 0.12);
}

.v2-side-card__meta-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--v2-color-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.v2-side-card__meta-item span,
.v2-side-card__meta-item a {
    color: var(--v2-color-ink-soft);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.v2-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.v2-filter-bar .filter-button,
.v2-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: var(--v2-radius-pill);
    background: rgba(255, 255, 255, 0.94);
    color: var(--v2-color-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--v2-ease);
}

.v2-filter-bar .filter-button.is-checked,
.v2-filter-bar .filter-button:hover,
.v2-filter-button.is-checked,
.v2-filter-button:hover {
    background: var(--v2-color-accent);
    border-color: var(--v2-color-accent);
    color: #fff;
}

.filter-project-grid {
    margin: 0 -12px;
}

.filter-project-grid:after {
    content: "";
    display: block;
    clear: both;
}

.filter-project-grid .project-item {
    width: calc(33.333% - 24px);
    margin: 0 12px 24px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: var(--v2-shadow-sm);
}

.filter-project-grid .project-item:hover {
    box-shadow: var(--v2-shadow-md);
}

.project-item-img {
    width: 100% !important;
    height: 260px !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, rgba(15, 23, 32, 0.96), rgba(211, 33, 20, 0.8));
}

.project-item-img img {
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.project-item-text {
    width: 100% !important;
    padding: 22px 24px !important;
    font-family: var(--v2-font-heading) !important;
    font-size: 22px !important;
    line-height: 1.25;
}

.project-item-text a {
    color: inherit;
    text-decoration: none;
}

.v2-metrics-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.v2-metric-card {
    grid-column: span 4;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: var(--v2-shadow-sm);
}

.v2-metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--v2-font-heading);
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1;
}

.v2-metric-card span {
    color: var(--v2-color-muted);
    font-size: 14px;
    font-weight: 700;
}

.v2-embed-frame {
    overflow: hidden;
    border-radius: 24px;
    background: var(--v2-color-ink);
    box-shadow: var(--v2-shadow-sm);
}

.v2-embed-frame iframe,
.v2-embed-frame embed,
.v2-embed-frame video {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.v2-contact-map {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--v2-shadow-sm);
    margin-bottom: 30px;
}

.v2-contact-map iframe {
    display: block;
    width: 100% !important;
    min-height: 420px;
    border: 0;
}

.v2-note-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(211, 33, 20, 0.06);
    color: var(--v2-color-ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.v2-note-box strong {
    color: var(--v2-color-ink);
}

.v2-page-cta-inline {
    margin-top: 28px;
}

.v2-skill-list {
    display: grid;
    gap: 18px;
}

.v2-skill {
    display: grid;
    gap: 10px;
}

.v2-skill__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.v2-skill__head strong {
    color: var(--v2-color-ink);
    font-size: 15px;
    font-weight: 800;
}

.v2-skill__head span {
    color: var(--v2-color-muted);
    font-size: 13px;
    font-weight: 800;
}

.v2-skill__track {
    width: 100%;
    height: 12px;
    overflow: hidden;
    border-radius: var(--v2-radius-pill);
    background: rgba(15, 23, 32, 0.08);
}

.v2-skill__bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--v2-color-accent) 0%, #ef3c2d 100%);
}

.v2-accordion {
    display: grid;
    gap: 14px;
}

.v2-accordion .accordion__item {
    border: 1px solid rgba(15, 23, 32, 0.08) !important;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--v2-shadow-sm);
}

.v2-accordion .accordion-header {
    padding: 22px 24px;
    background: transparent;
    color: var(--v2-color-ink);
    font-family: var(--v2-font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.v2-accordion .accordion-body__contents {
    padding: 0 24px 24px;
    color: var(--v2-color-ink-soft);
    font-size: 15px;
    line-height: 1.85;
}

.v2-accordion .accordion__item.active .accordion-header {
    color: var(--v2-color-accent);
}

.page-headers-main {
    width: min(calc(100% - 32px), var(--v2-container)) !important;
    margin: 20px auto 0 !important;
    border: 1px solid rgba(15, 23, 32, 0.08) !important;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 23, 32, 0.95) 0%, rgba(23, 34, 51, 0.92) 65%, rgba(211, 33, 20, 0.86) 100%) !important;
    box-shadow: var(--v2-shadow-md);
    padding: 26px 0 !important;
}

.page-headers-main-in {
    width: min(calc(100% - 32px), var(--v2-container)) !important;
    margin: 0 auto !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.page-headers-main-left {
    width: auto !important;
    font-family: var(--v2-font-heading) !important;
    font-size: clamp(24px, 2.6vw, 34px) !important;
    letter-spacing: -0.03em !important;
}

.page-headers-main-right {
    width: auto !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px !important;
}

.page-headers-main-right a,
.page-headers-main-right span {
    color: inherit !important;
}

.services-page-main,
.blog-page-main,
.contact-page-main,
.human-resource-page-main,
.services-detail-page-main,
.about-page-main,
.faq-page-main,
.html-page-main,
.projects-page-main,
.photogallery-page-main,
.videogallery-page-main,
.proje-detail-page-main {
    width: min(calc(100% - 32px), var(--v2-container)) !important;
    margin: 28px auto 0 !important;
    padding: 0 0 var(--v2-section-space);
    background: transparent !important;
}

.services-page-text-main,
.blog-page-text-main,
.about-page-text-main,
.human-resource-page-content,
.services-detail-content,
.contact-page-form-area,
.html-page-text-main,
.projects-page-text-main,
.photogallery-detail-content,
.videogallery-page-text-main {
    width: 100% !important;
}

.services-page-baslik,
.blog-page-baslik,
.catalog-page-baslik-head,
.services-detail-content-left-baslik,
.about-page-baslik {
    font-family: var(--v2-font-heading) !important;
    letter-spacing: -0.03em;
}

.page-spot-quote,
.services-detail-content-left-txt,
.about-page-content,
.contact-page-icon-box-txt,
.contact-page-form-area label,
.human-resource-page-baslik-head {
    font-family: var(--v2-font-body) !important;
}

.form-control,
.contact-page-form-area .form-control,
.human-resource-page-content .form-control,
.human-resource-page-content textarea,
.contact-page-form-area textarea {
    min-height: 54px;
    border: 1px solid rgba(15, 23, 32, 0.12);
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    font-family: var(--v2-font-body);
    font-size: 15px;
    padding: 14px 16px;
}

.form-control:focus,
.human-resource-page-content .form-control:focus,
.contact-page-form-area .form-control:focus {
    border-color: rgba(211, 33, 20, 0.48);
    box-shadow: 0 0 0 4px rgba(211, 33, 20, 0.12);
}

.contact-page-form-area button,
.human-resource-page-content button,
.services-detail-buttons-active,
.pagination .page-link {
    transition: all var(--v2-ease);
}

.contact-page-form-area .btn,
.human-resource-page-content .btn,
.pagination .page-link,
.services-detail-buttons {
    border-radius: 16px !important;
}

.contact-page-form-area .btn.btn-danger,
.human-resource-page-content .btn.btn-danger {
    background: linear-gradient(135deg, var(--v2-color-accent) 0%, #ef3c2d 100%);
    border: 0;
    min-height: 52px;
    padding: 0 22px;
    font-family: var(--v2-font-body);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.pagination .page-link {
    border: 1px solid rgba(15, 23, 32, 0.1);
    color: var(--v2-color-ink);
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
    background: var(--v2-color-accent);
    border-color: var(--v2-color-accent);
    color: #fff;
}

@media screen and (max-width: 1199px) {
    .site-header-v2__topbar-inner {
        gap: 14px;
    }

    .site-header-v2__contact-list {
        gap: 10px;
        flex-wrap: wrap;
    }

    .site-header-v2__quick-actions .v2-button {
        padding: 0 14px;
    }

    .site-header-v2__main-inner,
    #fixed-header-main .site-header-v2__main-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 18px;
        min-height: 80px;
    }

    .site-header-v2__brand-copy {
        display: none;
    }

    .site-header-v2__nav {
        justify-self: stretch;
        width: auto;
        overflow-x: auto;
    }

    .site-header-v2 .top-level-menu {
        width: max-content;
        min-width: max-content;
        justify-content: flex-start;
    }

    .site-header-v2 .top-level-menu > li > a {
        min-height: 42px;
        padding: 0 10px;
    }

    .site-header-v2 .top-level-menu > li > a span {
        font-size: 12px;
    }

    .trust-strip-v2__inner,
    .cta-band-v2__inner,
    .about-v2__surface {
        grid-template-columns: 1fr;
    }

    .hero-v2__slide {
        min-height: clamp(660px, calc(100svh - var(--v2-hero-fold-offset) + 12px), 840px);
        background-position: center center !important;
    }

    .hero-v2__content {
        grid-template-columns: minmax(0, 1.06fr) minmax(300px, 360px);
        align-items: start;
        width: min(calc(100% - 48px), var(--v2-container));
        padding: clamp(72px, 7vw, 94px) 0 clamp(42px, 5vw, 60px);
    }

    .hero-v2__copy {
        max-width: 760px;
    }

    .hero-v2__panel {
        max-width: none;
        min-height: 0;
    }

    .services-v2__card,
    .blog-v2__card {
        grid-column: span 12;
    }

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

    .v2-gallery-showcase__head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .v2-gallery-showcase__aside {
        justify-content: flex-start;
    }

    .filter-project-grid .project-item,
    .v2-list-grid--three .v2-list-card,
    .v2-metric-card {
        width: calc(50% - 24px);
        grid-column: span 6;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --v2-hero-fold-offset: calc(var(--v2-header-mobile-height) + 18px);
    }

    .site-header-v2__topbar {
        display: none;
    }

    .site-header-v2__main,
    #fixed-header-main {
        display: none !important;
    }

    .header-mobile-main {
        display: block !important;
        position: sticky;
        top: 0;
        z-index: 190;
        background: rgba(255, 255, 255, 0.94);
        border-bottom: 1px solid rgba(15, 23, 32, 0.08);
        backdrop-filter: blur(14px);
        box-shadow: 0 14px 30px rgba(15, 23, 32, 0.06);
    }

    .header-mobile-main__inner {
        width: min(calc(100% - 24px), var(--v2-container));
        margin: 0 auto;
        min-height: 78px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
    }

    .header-mobile-logo {
        width: auto !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .header-mobile-logo img {
        max-width: 136px;
    }

    .header-mobile-right {
        width: auto !important;
        margin: 0 !important;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }

    .header-mobile-right-cart,
    .header-mobile-right-bars {
        width: auto !important;
        margin: 0 !important;
        text-align: initial !important;
    }

    .headernew_stil_icons {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }

    .headernew_stil_box {
        margin: 0 !important;
    }

    .header-mobile-main .headernew_stil_box a,
    .header-mobile-main .headernew_stil_box i {
        color: var(--v2-color-ink) !important;
    }

    .mobile-menu-bar-button {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(15, 23, 32, 0.12);
        border-radius: 16px;
        background: var(--v2-color-surface);
        box-shadow: var(--v2-shadow-sm);
    }

    .opening-mobile-menu-div {
        display: none;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid rgba(15, 23, 32, 0.08);
        box-shadow: 0 30px 60px rgba(15, 23, 32, 0.08);
    }

    .mobile-menu-social-div,
    .header-mobile-menu-search-area,
    .offer-tracing-mobile-main-div,
    .header-mobile-menu-contact-area {
        width: min(calc(100% - 24px), var(--v2-container));
        margin: 0 auto;
        border-bottom: 1px solid rgba(15, 23, 32, 0.08) !important;
    }

    .mobile-menu-social-div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 18px 0 !important;
    }

    .mobile-menu-social-div-left,
    .mobile-menu-social-div-right {
        width: auto !important;
        display: flex !important;
        align-items: center;
        gap: 10px;
    }

    .header-mobile-menu-search-area {
        padding: 18px 0 !important;
    }

    .header-mobile-menu-search-area form {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .header-mobile-menu-search-area input,
    .header-mobile-menu-search-area button {
        width: auto !important;
        border-radius: 14px !important;
        min-height: 50px;
    }

    .header-mobile-menu-search-area input {
        border: 1px solid rgba(15, 23, 32, 0.12);
        background: var(--v2-color-surface-alt);
        padding: 0 16px !important;
    }

    .header-mobile-menu-search-area button {
        padding: 0 18px !important;
        background: var(--v2-color-accent) !important;
    }

    .offer-tracing-mobile-main-div {
        flex-wrap: wrap;
        gap: 10px;
        padding: 18px 0 !important;
        background: transparent !important;
        justify-content: flex-start !important;
    }

    .offer-tracing-mobile-main-div a {
        margin: 0 !important;
    }

    #eg1 {
        width: min(calc(100% - 24px), var(--v2-container));
        margin: 0 auto;
        padding: 12px 0 22px;
        background: transparent !important;
    }

    #eg1 ul {
        padding-left: 0;
        list-style: none;
    }

    #eg1 > ul > li {
        border-bottom: 1px solid rgba(15, 23, 32, 0.08);
    }

    #eg1 a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 16px 0;
        color: var(--v2-color-ink) !important;
        font-family: var(--v2-font-body);
        font-size: 15px;
        font-weight: 800;
        text-decoration: none;
    }

    #eg1 li ul a {
        font-size: 14px;
        font-weight: 700;
        color: var(--v2-color-muted) !important;
        padding: 12px 0 12px 10px;
    }

    .header-mobile-menu-contact-area {
        padding: 18px 0 !important;
        display: grid;
        gap: 12px;
    }

    .header-mobile-menu-contact-box {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-mobile-menu-contact-box i {
        color: var(--v2-color-accent);
    }

    .header-mobile-menu-contact-box p,
    .header-mobile-menu-contact-box a {
        color: var(--v2-color-ink) !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        letter-spacing: 0.01em !important;
    }

    .hero-v2 {
        width: 100%;
        border-radius: 0 0 28px 28px;
        margin-top: 0;
    }

    .hero-v2__slide {
        min-height: clamp(620px, calc(100svh - var(--v2-hero-fold-offset)), 820px);
        background-position: 64% center !important;
    }

    .hero-v2__content {
        grid-template-columns: 1fr;
        align-items: end;
        width: 100%;
        padding: clamp(96px, 13vw, 120px) 20px 36px;
        gap: 24px;
    }

    .hero-v2__title {
        font-size: clamp(34px, 9vw, 48px);
    }

    .hero-v2__lead {
        font-size: 16px;
        line-height: 1.78;
    }

    .hero-v2__quick {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .hero-v2__panel {
        max-width: 100%;
    }

    .hero-v2__panel,
    .trust-strip-v2__inner,
    .about-v2__content,
    .cta-band-v2__surface,
    .v2-gallery-showcase {
        padding: 24px;
    }

    .trust-strip-v2 {
        margin-top: 24px;
    }

    .trust-strip-v2__actions {
        justify-content: flex-start;
    }

    .about-v2__metrics,
    .about-v2__highlights,
    .site-footer-v2__grid {
        grid-template-columns: 1fr;
    }

    .page-headers-main {
        width: calc(100% - 24px) !important;
        margin-top: 12px !important;
        padding: 22px 0 !important;
    }

    .page-headers-main-in {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 14px;
    }

    .page-headers-main-right {
        justify-content: flex-start;
        text-align: left !important;
    }

    .floating-contact-v2 {
        left: auto;
        right: 12px;
        bottom: calc(12px + var(--v2-floating-offset, 0px));
        gap: 10px;
        max-width: calc(100vw - 24px);
        align-items: flex-end;
    }

    .floating-contact-v2__action,
    .floating-contact-v2__top {
        width: auto;
        max-width: min(260px, calc(100vw - 24px));
        min-height: 48px;
        padding: 0 14px;
        justify-content: flex-start;
    }

    .floating-contact-v2__action > span {
        min-width: 0;
    }

    .floating-contact-v2__action i,
    .floating-contact-v2__top i {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .floating-contact-v2__action strong {
        font-size: 11px;
        letter-spacing: 0.05em;
    }

    .floating-contact-v2__action span span {
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .v2-page-grid,
    .v2-form-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .v2-page-sidebar--sticky {
        position: static;
    }

    .filter-project-grid {
        margin: 0;
    }

    .filter-project-grid .project-item,
    .v2-list-grid .v2-list-card,
    .v2-list-grid--three .v2-list-card,
    .v2-metric-card {
        width: 100%;
        margin: 0 0 20px;
        grid-column: span 12;
    }

    .v2-gallery-item {
        grid-column: span 6;
    }

    .v2-gallery-item--feature,
    .v2-gallery-item--wide {
        grid-column: span 12;
    }

    .v2-gallery-item--feature {
        min-height: 500px;
    }

    .v2-gallery-item--tall {
        grid-column: span 6;
    }

    .v2-embed-frame iframe,
    .v2-embed-frame embed,
    .v2-embed-frame video,
    .v2-contact-map iframe {
        min-height: 320px;
    }
}

@media screen and (max-width: 430px) {
    .v2-gallery-showcase {
        padding: 20px;
        border-radius: 24px;
    }

    .v2-gallery-showcase__aside {
        width: 100%;
    }

    .v2-gallery-showcase__pill,
    .v2-gallery-showcase__aside .v2-button {
        width: 100%;
        justify-content: center;
    }

    .hero-v2__slide {
        min-height: clamp(560px, calc(100svh - var(--v2-header-mobile-height)), 720px);
        background-position: 68% center !important;
    }

    .hero-v2__content {
        padding: 88px 18px 24px;
        gap: 16px;
    }

    .hero-v2__title {
        font-size: clamp(30px, 11vw, 42px);
    }

    .hero-v2__lead {
        font-size: 15px;
        line-height: 1.68;
    }

    .hero-v2__actions,
    .hero-v2__quick {
        gap: 10px;
    }

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

    .hero-v2__quick-card {
        min-height: 0;
        padding: 14px 16px;
    }

    .floating-contact-v2 {
        right: 10px;
        gap: 8px;
    }

    .floating-contact-v2__action,
    .floating-contact-v2__top {
        min-height: 0;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .floating-contact-v2__action > span,
    .floating-contact-v2__top span {
        display: none;
    }

    .floating-contact-v2__action i,
    .floating-contact-v2__top i {
        width: 48px;
        height: 48px;
        box-shadow: var(--v2-shadow-sm);
    }
}

@media screen and (max-width: 767px) {
    .v2-section {
        padding: var(--v2-section-space-mobile) 0;
    }

    .hero-v2__actions,
    .hero-v2__quick,
    .trust-strip-v2__copy,
    .trust-strip-v2__actions,
    .cta-band-v2__actions,
    .site-header-v2__contact-list,
    .site-header-v2__quick-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .services-v2__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .services-v2__footer {
        align-items: flex-start;
    }

    .blog-v2__body,
    .services-v2__card,
    .about-v2__content {
        padding: 22px;
    }

    .site-footer-v2__surface {
        border-radius: 28px 28px 0 0;
        padding-top: 40px;
    }

    .site-footer-v2__bottom {
        flex-direction: column;
    }

    .v2-content-card,
    .v2-side-card,
    .v2-form-card,
    .v2-contact-card,
    .v2-metric-card {
        padding: 22px;
    }

    .v2-content-card__media {
        margin: -22px -22px 20px;
    }

    .v2-list-card__body,
    .project-item-text,
    .v2-accordion .accordion-header,
    .v2-accordion .accordion-body__contents {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .v2-gallery-item,
    .v2-gallery-item--feature,
    .v2-gallery-item--tall,
    .v2-gallery-item--wide {
        grid-column: span 12;
        min-height: 260px;
    }

    .v2-gallery-item__caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .v2-gallery-item__caption-copy strong {
        font-size: 18px;
    }

    .site-footer-v2__contact-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
