#dogma-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    background: rgba(2, 15, 40, 0.97);
}

#dogma-navbar.scrolled {
    background: rgba(2, 15, 40, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(200, 168, 90, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    transition: padding 0.4s ease;
}

#dogma-navbar.scrolled .nav-inner {
    padding: 12px 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 90, 0.4);
    background: rgba(200, 168, 90, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color 0.3s;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo:hover .nav-logo-icon {
    border-color: rgba(200, 168, 90, 0.8);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-logo-name {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    max-width: 350px;
}

.nav-logo-sub {
    font-size: 0.52rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 8px 14px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: #c8a85a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: #ffffff;
}

.nav-cta {
    flex-shrink: 0;
    margin-left: 16px;
}

.nav-cta a {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: #c8a85a;
    color: #042A5B;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.nav-cta a:hover {
    background: #e8c96a;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    outline: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: left center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(38deg) scaleX(0.9);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-38deg) scaleX(0.9);
}

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(2, 15, 40, 0.98);
    border-top: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s, visibility 0.4s;
}

.nav-mobile-menu.open {
    max-height: 600px;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(200, 168, 90, 0.15);
    opacity: 1;
    visibility: visible;
}

.nav-mobile-menu a {
    display: block;
    padding: 13px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-mobile-menu a::before {
    content: '';
    width: 16px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.nav-mobile-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    padding-left: 40px;
}

.nav-mobile-menu a:hover::before {
    opacity: 1;
}

.nav-mobile-cta {
    margin: 16px 32px 0;
}

.nav-mobile-cta a {
    display: block;
    text-align: center;
    padding: 13px 24px;
    background: #c8a85a;
    color: #042A5B;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: none !important;
    transition: background 0.25s;
}

.nav-mobile-cta a:hover {
    background: #e8c96a;
    padding-left: 24px;
}

.nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(to right, #c8a85a, #e8c96a);
    transition: width 0.1s linear;
    z-index: 2;
}

@media (max-width: 1300px) {
    .nav-links {
        gap: 1px;
    }

    .nav-links a {
        padding: 8px 8px;
        font-size: 0.55rem;
    }

    .nav-cta a {
        padding: 8px 18px;
        font-size: 0.55rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 2px;
    }

    .nav-links a {
        padding: 8px 10px;
        font-size: 0.58rem;
    }

    .nav-inner {
        padding: 16px 40px;
    }

    #dogma-navbar.scrolled .nav-inner {
        padding: 10px 40px;
    }
}

@media (max-width: 1099px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile-menu {
        display: flex;
    }

    .nav-inner {
        padding: 14px 24px;
    }

    #dogma-navbar {
        background: rgba(2, 15, 40, 0.98);
    }

    #dogma-navbar.scrolled .nav-inner {
        padding: 10px 24px;
    }
}

#dogma-hero {
    margin-top: 0 !important;
}

.dogma-page-offset {
    display: none !important;
}

@media (max-width: 900px) {
    .dogma-page-offset {
        height: 68px;
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #042A5B;
    --navy-dark: #021d40;
    --navy-deeper: #010f22;
    --white: #ffffff;
    --off-white: #dce6f5;
    --silver: #8fa3bf;
    --accent: #c8a85a;
    --line: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body,
.dogma-page {
    margin-top: 50px;
    font-family: 'Open Sans', sans-serif;
    background: var(--navy-deeper);
    color: var(--white);
    overflow-x: hidden;
}

.dogma-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

#dogma-hero {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: var(--navy-deeper);
    margin-top: 80px;
}

.hero-topbar {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 60px;
    border-bottom: 1px solid var(--line);
    background: var(--navy);
}

.topbar-logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.topbar-company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.4;
}

.topbar-company-name span {
    display: block;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--silver);
}

.topbar-certifications {
    display: flex;
    gap: 10px;
}

.cert-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(200, 168, 90, 0.35);
    padding: 5px 12px;
}

.hero-body {
    display: grid;
    grid-template-columns: 52% 48%;
    position: relative;
    min-height: calc(100vh - 140px);
}

.hero-left {
    background: var(--navy);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 64px 72px 60px;
    z-index: 2;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -64px;
    width: 0;
    height: 0;
    border-top: 200vh solid var(--navy);
    border-right: 64px solid transparent;
    z-index: 3;
    pointer-events: none;
}

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.hero-title-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 0.22em;
    color: var(--off-white);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    width: 200px;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .hero-logo {
        width: 100px;
    }
}

.hero-rule {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 36px;
}

.hero-description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--off-white);
    max-width: 460px;
    margin-bottom: 48px;
    opacity: 0.85;
}

.hero-description strong {
    font-weight: 600;
    color: var(--white);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    background: var(--white);
    color: var(--navy);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s;
}

.btn-hero-primary:hover {
    background: var(--off-white);
}

.btn-hero-ghost {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px 36px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.25s, background 0.25s;
}

.btn-hero-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.hero-right {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://plus.unsplash.com/premium_photo-1661963183692-e9a7afee10e0?q=80&w=873&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.55) saturate(0.6);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        
        linear-gradient(to right, var(--navy) 0%, rgba(2, 29, 64, 0.7) 30%, transparent 65%),
        
        linear-gradient(to bottom, rgba(1, 15, 34, 0.5) 0%, transparent 40%),
        
        linear-gradient(to top, rgba(1, 15, 34, 0.85) 0%, transparent 50%);
    z-index: 1;
}

.hero-photo-line {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
    z-index: 2;
    opacity: 0.6;
}

.hero-photo-badge {
    position: absolute;
    top: 56px;
    right: 36px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    background: rgba(2, 15, 34, 0.65);
    padding: 14px 20px;
    border-radius: 4px;
    backdrop-filter: blur(6px);
    border-right: 2px solid var(--accent);
}

.badge-line {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 1;
    text-align: right;
}

.badge-bar {
    width: 40px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
    align-self: flex-end;
}

.hero-stats-strip {
    position: relative;
    z-index: 4;
    display: flex;
    background: rgba(2, 15, 34, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
}

.stat-cell {
    flex: 1;
    padding: 22px 18px;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: background 0.25s;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell:hover {
    background: rgba(255, 255, 255, 0.04);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--silver);
    text-transform: uppercase;
    line-height: 1.4;
}

.hero-bottom-bar {
    position: relative;
    z-index: 20;
    border-top: 1px solid var(--line);
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    background: var(--navy-deeper);
}

.hero-offices {
    display: flex;
    align-items: center;
    gap: 40px;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    flex-shrink: 0;
}

.office-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver);
}

.hero-since {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
}

.hero-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-logos img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-bottom-bar {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    .hero-logos {
        justify-content: flex-end !important;
    }
}

.hero-scroll-cue {
    position: absolute;
    right: 28px;
    bottom: 90px;
    z-index: 10;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.hero-scroll-cue span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--silver);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--silver), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3
    }

    50% {
        opacity: 1
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.7s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-18px);
    animation: fadeLeft 0.7s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(18px);
    animation: fadeRight 0.7s ease forwards;
}

.d1 {
    animation-delay: 0.1s
}

.d2 {
    animation-delay: 0.25s
}

.d3 {
    animation-delay: 0.4s
}

.d4 {
    animation-delay: 0.55s
}

.d5 {
    animation-delay: 0.7s
}

.d6 {
    animation-delay: 0.85s
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

#dogma-hero .hero-photo {
    animation: photoZoom 10s ease forwards;
}

@keyframes photoZoom {
    from {
        transform: scale(1.07)
    }

    to {
        transform: scale(1.0)
    }
}

@media (max-width: 960px) {
    #dogma-hero {
        margin-top: 68px;
    }

    .hero-topbar {
        padding: 18px 24px;
    }

    .hero-title {
        margin-top: 40px;
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }

    .hero-title-sub {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
        margin-bottom: 24px;
    }

    .topbar-certifications {
        display: none;
    }

    .hero-body {
        grid-template-columns: 1fr;
    }

    .hero-photo-badge {
        display: none;
    }

    .hero-left {
        margin-top: 0;
        padding: 60px 20px;
        min-height: auto;
        text-align: left;
        align-items: flex-start;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: flex-start;
        gap: 15px;
    }

    .hero-left::after {
        display: none;
    }

    .hero-right {
        min-height: 500px;
    }

    .hero-photo-overlay {
        background:
            linear-gradient(to bottom, rgba(2, 29, 64, 0.55) 0%, transparent 40%),
            linear-gradient(to top, rgba(1, 15, 34, 0.9) 0%, transparent 50%);
    }

    .hero-bottom-bar {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        justify-content: center;
    }

    .hero-offices {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .hero-scroll-cue {
        display: none;
    }

    .badge-line,
    .badge-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats-strip {
        flex-wrap: wrap;
    }

    .hero-stats-strip .stat-cell {
        flex: 0 0 50%;
        border-bottom: 1px solid var(--line);
    }

    .hero-stats-strip .stat-cell:nth-child(even) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .hero-stats-strip .stat-cell {
        flex: 0 0 50%;
        padding: 12px 8px;
    }

    .hero-stats-strip .stat-cell:nth-child(even) {
        border-right: none !important;
    }

    .hero-stats-strip .stat-cell:nth-child(odd) {
        border-right: 1px solid var(--line) !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

#dogma-about {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.about-left-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #042A5B;
}

.about-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b0bfd4;
}

.about-inner {
    display: flex;
    flex: 1;
    min-height: 100vh;
}

.about-col-left {
    width: 42%;
    background: #042A5B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 70px;
    position: relative;
    flex-shrink: 0;
}

.about-col-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg,
            transparent,
            transparent 59px,
            rgba(255, 255, 255, 0.03) 59px,
            rgba(255, 255, 255, 0.03) 60px);
    pointer-events: none;
}

.about-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

.about-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.about-heading span {
    color: #c8a85a;
}

.about-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #8fa3bf;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.about-rule {
    width: 48px;
    height: 3px;
    background: #c8a85a;
    margin-bottom: 36px;
}

.vm-box {
    margin-bottom: 20px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    position: relative;
}

.vm-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #c8a85a;
}

.vm-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 10px;
}

.vm-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: #dce6f5;
    font-style: italic;
}

.about-founded-badge {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.badge-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8fa3bf;
    line-height: 1.6;
}

.about-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px 80px 70px;
    background: #ffffff;
}

.about-intro-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.75;
    color: #042A5B;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #042A5B;
}

.about-body-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    color: #3a4a5e;
    margin-bottom: 20px;
}

.about-values-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #042A5B;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-values-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dde4ef;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.value-card {
    padding: 20px 18px;
    border: 1px solid #e0e8f4;
    background: #f7f9fd;
    transition: border-color 0.25s, background 0.25s;
}

.value-card:hover {
    border-color: #042A5B;
    background: #ffffff;
}

.value-icon {
    width: 32px;
    height: 32px;
    background: #042A5B;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
}

.value-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #042A5B;
    margin-bottom: 6px;
}

.value-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: #6b7f96;
    line-height: 1.5;
}

.about-ceo-strip {
    background: #042A5B;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: auto;
}

.ceo-quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #c8a85a;
    line-height: 0.8;
    flex-shrink: 0;
    margin-top: 10px;
}

.ceo-quote-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 300;
    color: #dce6f5;
    line-height: 1.65;
    flex: 1;
}

.ceo-quote-author {
    flex-shrink: 0;
    text-align: right;
}

.ceo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
}

.ceo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #8fa3bf;
    text-transform: uppercase;
    margin-top: 4px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

@media (max-width: 900px) {
    .about-inner {
        flex-direction: column;
    }

    .about-col-left {
        width: 100%;
        padding: 60px 24px;
    }

    .about-col-right {
        padding: 50px 24px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section-label {
        display: none;
    }

}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

#dogma-founder {
    min-height: 100vh;
    background: #f4f7fb;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.founder-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b0bfd4;
    z-index: 5;
}

#dogma-founder::before {
    content: 'CEO';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10rem, 20vw, 22rem);
    font-weight: 900;
    color: rgba(4, 42, 91, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.founder-header {
    background: #042A5B;
    padding: 52px 70px 52px 70px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.founder-header-left {
    flex: 1;
}

.founder-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.founder-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

.founder-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.01em;
}

.founder-main-title span {
    color: #c8a85a;
}

.founder-header-right {
    text-align: right;
    flex-shrink: 0;
}

.founder-name-big {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.founder-title-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8fa3bf;
    margin-top: 8px;
}

.founder-body {
    display: flex;
    flex: 1;
    position: relative;
    z-index: 2;
}

.founder-col-left {
    width: 38%;
    flex-shrink: 0;
    background: #042A5B;
    display: flex;
    flex-direction: column;
}

.founder-photo-area {
    background: #042A5B;
    flex: 1;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.founder-photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.founder-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.founder-silhouette {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(200, 168, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.founder-silhouette svg {
    width: 64px;
    height: 64px;
    fill: rgba(255, 255, 255, 0.15);
}

.photo-instruction {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
}

.founder-photo-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #c8a85a;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #042A5B;
    text-align: center;
}

.founder-quick-facts {
    padding: 10px 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-fact {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-fact:last-child {
    border-bottom: none;
}

.qf-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 168, 90, 0.15);
    border: 1px solid rgba(200, 168, 90, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qf-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #c8a85a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qf-content {}

.qf-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.qf-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.founder-col-right {
    flex: 1;
    padding: 52px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f4f7fb;
}

.founder-bio-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.75;
    color: #042A5B;
    border-left: 3px solid #042A5B;
    padding-left: 20px;
    margin-bottom: 28px;
}

.founder-bio-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.95;
    color: #3a4a5e;
    margin-bottom: 20px;
}

.founder-timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #042A5B;
    margin: 36px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.founder-timeline-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dde4ef;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: #dde4ef;
}

.tl-item {
    display: flex;
    gap: 24px;
    padding: 0 0 24px 0;
    position: relative;
}

.tl-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-top: 4px;
}

.tl-dot {
    width: 10px;
    height: 10px;
    background: #042A5B;
    border: 2px solid #f4f7fb;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(4, 42, 91, 0.12);
}

.tl-dot.gold {
    background: #c8a85a;
    box-shadow: 0 0 0 3px rgba(200, 168, 90, 0.2);
}

.tl-content {}

.tl-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 4px;
}

.tl-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #042A5B;
    margin-bottom: 4px;
}

.tl-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: #6b7f96;
    line-height: 1.5;
}

.founder-philosophy {
    background: #042A5B;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.philosophy-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8a85a;
    white-space: nowrap;
    flex-shrink: 0;
}

.philosophy-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.philosophy-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    font-style: italic;
    color: #dce6f5;
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

@media (max-width: 960px) {
    .founder-header {
        padding: 10px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .founder-header-right {
        text-align: left;
    }

    .founder-body {
        flex-direction: column;
    }

    .founder-col-left {
        width: 100%;
    }

    .founder-photo-area {
        min-height: 280px;
    }

    .founder-col-right {
        padding: 40px 24px;
    }

    .founder-section-label {
        display: none;
    }

    .founder-philosophy {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-divider {
        width: 60px;
        height: 1px;
    }
}

#dogma-services {
    min-height: 100vh;
    background: #042A5B;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

#dogma-services::before {
    content: 'SERVICES';
    position: absolute;
    bottom: -40px;
    left: -20px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8rem, 16vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.services-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.services-header {
    padding: 70px 70px 50px 70px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-header-left {}

.services-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

.services-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.01em;
}

.services-main-title span {
    color: #c8a85a;
}

.services-header-right {
    max-width: 420px;
    text-align: right;
}

.services-header-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(220, 230, 245, 0.75);
}

.services-grid-wrap {
    flex: 1;
    padding: 50px 70px 60px;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c8a85a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(200, 168, 90, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(200, 168, 90, 0.08);
    border: 1px solid rgba(200, 168, 90, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    overflow: visible;
    border-radius: 16px;
    position: relative;
}

.service-card:hover .service-icon-box {
    background: #c8a85a;
    border-color: #c8a85a;
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 15px 30px rgba(200, 168, 90, 0.2);
}

.service-icon-box svg {
    width: 36px;
    height: 36px;
    stroke: #c8a85a;
    stroke-width: 1.5;
    fill: none;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-box svg {
    stroke: #042A5B;
    transform: scale(1.1);
}

.service-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.service-rule {
    width: 28px;
    height: 1px;
    background: rgba(200, 168, 90, 0.4);
    margin-bottom: 14px;
    transition: width 0.35s, background 0.35s;
}

.service-card:hover .service-rule {
    width: 48px;
    background: #c8a85a;
}

.service-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(220, 230, 245, 0.65);
    flex: 1;
}

.services-bottom-strip {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sbs-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

.sbs-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #042A5B;
    background: #c8a85a;
    padding: 12px 32px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s;
    white-space: nowrap;
}

.sbs-cta:hover {
    background: #e8c96a;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

.delay-5 {
    transition-delay: 0.40s;
}

.delay-6 {
    transition-delay: 0.48s;
}

.delay-7 {
    transition-delay: 0.56s;
}

.delay-8 {
    transition-delay: 0.64s;
}

.delay-9 {
    transition-delay: 0.72s;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-header {
        padding: 50px 40px 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .services-header-right {
        text-align: left;
        max-width: 100%;
    }

    .services-grid-wrap {
        padding: 40px 40px 50px;
    }

    .services-bottom-strip {
        padding: 20px 40px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header {
        padding: 40px 24px 32px;
    }

    .services-grid-wrap {
        padding: 28px 24px 40px;
    }

    .services-bottom-strip {
        padding: 18px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .services-section-label {
        display: none;
    }
}

#dogma-clients {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

#dogma-clients::before {
    content: 'CLIENTS';
    position: absolute;
    top: -30px;
    right: -20px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8rem, 16vw, 18rem);
    font-weight: 900;
    color: rgba(4, 42, 91, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.clients-left-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #042A5B;
    z-index: 1;
}

.clients-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b0bfd4;
    z-index: 5;
}

.clients-header {
    padding: 70px 70px 50px 70px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #eef1f7;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.clients-header-left {}

.clients-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clients-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

.clients-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #042A5B;
    line-height: 1.0;
    letter-spacing: -0.01em;
}

.clients-main-title span {
    color: #c8a85a;
}

.clients-header-right {
    max-width: 380px;
    text-align: right;
}

.clients-header-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.8;
    color: #6b7f96;
}

.clients-trust-bar {
    background: #042A5B;
    padding: 18px 70px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
    overflow-x: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.trust-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #c8a85a;
    line-height: 1;
}

.trust-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.clients-grid-wrap {
    flex: 1;
    padding: 55px 70px 55px;
    position: relative;
    z-index: 2;
}

.clients-grid-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #042A5B;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clients-grid-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eef1f7;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.logo-card {
    background: #f7f9fd;
    border: 1px solid #e8edf6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    min-height: 130px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    cursor: default;
}

.logo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #042A5B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo-card:hover {
    background: #ffffff;
    border-color: #d0dbed;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 42, 91, 0.08);
}

.logo-card:hover::after {
    transform: scaleX(1);
}

.logo-card img {
    max-width: 180px;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s, transform 0.3s;
    display: block;
}

.logo-card:hover img {
    transform: scale(1.05);
}

.logo-text-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.logo-icon-placeholder {
    width: 48px;
    height: 48px;
    background: #042A5B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-placeholder svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #042A5B;
    line-height: 1.3;
}

.logo-company-type {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.62rem;
    color: #8fa3bf;
    letter-spacing: 0.05em;
}

.past-clients-wrap {
    padding: 0 70px 50px;
    position: relative;
    z-index: 2;
}

.past-clients-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8fa3bf;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.past-clients-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eef1f7;
}

.past-clients-ticker-wrap {
    overflow: hidden;
    position: relative;
}

.past-clients-ticker-wrap::before,
.past-clients-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.past-clients-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.past-clients-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.past-clients-ticker {
    display: flex;
    gap: 0;
    animation: ticker 22s linear infinite;
    width: max-content;
}

.past-clients-ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 36px;
    border-right: 1px solid #eef1f7;
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: #c8a85a;
    flex-shrink: 0;
}

.ticker-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7f96;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-bottom-strip {
    background: #042A5B;
    padding: 28px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.cbs-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(220, 230, 245, 0.8);
    line-height: 1.6;
}

.cbs-text strong {
    font-weight: 700;
    color: #ffffff;
}

.cbs-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #042A5B;
    background: #c8a85a;
    padding: 14px 36px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.25s;
    flex-shrink: 0;
}

.cbs-cta:hover {
    background: #e8c96a;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

.delay-5 {
    transition-delay: 0.40s;
}

.delay-6 {
    transition-delay: 0.48s;
}

.delay-7 {
    transition-delay: 0.56s;
}

.delay-8 {
    transition-delay: 0.64s;
}

.delay-9 {
    transition-delay: 0.72s;
}

@media (max-width: 1024px) {
    .clients-header {
        padding: 50px 40px 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .clients-header-right {
        text-align: left;
        max-width: 100%;
    }

    .clients-grid-wrap {
        padding: 40px 40px 40px;
    }

    .past-clients-wrap {
        padding: 0 40px 40px;
    }

    .clients-bottom-strip {
        padding: 22px 40px;
    }

    .clients-trust-bar {
        padding: 16px 40px;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-header {
        padding: 40px 24px 32px;
    }

    .clients-grid-wrap {
        padding: 32px 24px 32px;
    }

    .past-clients-wrap {
        padding: 0 24px 32px;
    }

    .clients-bottom-strip {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .clients-section-label {
        display: none;
    }

    .clients-trust-bar {
        padding: 24px 24px;
        gap: 24px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .clients-trust-bar .trust-item {
        flex-direction: column;
        gap: 4px;
    }

    .clients-trust-bar .trust-divider {
        display: none;
    }
}

#dogma-why {
    min-height: 100vh;
    background: #f4f7fb;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

#dogma-why::before {
    content: 'WHY US';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(7rem, 14vw, 16rem);
    font-weight: 900;
    color: rgba(4, 42, 91, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.why-left-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #042A5B;
    z-index: 1;
}

.why-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b0bfd4;
    z-index: 5;
}

.why-header {
    background: #042A5B;
    padding: 64px 70px 56px 70px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.why-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 40px solid #042A5B;
    border-left: 200px solid transparent;
    z-index: 3;
}

.why-header-left {}

.why-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

.why-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.01em;
}

.why-main-title span {
    color: #c8a85a;
}

.why-header-right {
    max-width: 420px;
    text-align: right;
}

.why-header-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.why-header-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(220, 230, 245, 0.7);
}

.why-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding: 60px 70px 0;
}

.why-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
}

.why-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 2px;
}

.why-extra-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 40px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e0e8f4;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: #042A5B;
    transition: height 0.35s ease;
}

.why-card:hover {
    border-color: #c0cedf;
    box-shadow: 0 8px 32px rgba(4, 42, 91, 0.08);
}

.why-card:hover::before {
    height: 100%;
}

.why-card.featured {
    background: #042A5B;
    border-color: #042A5B;
    padding: 44px 40px;
}

.why-card.featured::before {
    background: #c8a85a;
}

.why-card-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(4, 42, 91, 0.25);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.why-card.featured .why-card-num {
    color: rgba(200, 168, 90, 0.4);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background: #042A5B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.why-card.featured .why-card-icon {
    background: rgba(200, 168, 90, 0.15);
    border: 1px solid rgba(200, 168, 90, 0.3);
}

.why-card:hover .why-card-icon {
    background: #c8a85a;
}

.why-card.featured:hover .why-card-icon {
    background: #c8a85a;
}

.why-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.why-card.featured .why-card-icon svg {
    stroke: #c8a85a;
}

.why-card:hover .why-card-icon svg {
    stroke: #042A5B;
}

.why-card.featured:hover .why-card-icon svg {
    stroke: #042A5B;
}

.why-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #042A5B;
    margin-bottom: 12px;
    line-height: 1.25;
}

.why-card.featured .why-card-title {
    color: #ffffff;
    font-size: 1.05rem;
}

.why-card-rule {
    width: 28px;
    height: 2px;
    background: #c8a85a;
    margin-bottom: 16px;
    transition: width 0.3s;
}

.why-card:hover .why-card-rule {
    width: 48px;
}

.why-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: #5a6f85;
    flex: 1;
}

.why-card.featured .why-card-desc {
    color: rgba(220, 230, 245, 0.75);
    font-size: 0.88rem;
}

.why-comparison {
    background: #042A5B;
    padding: 32px 70px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.comparison-col {
    padding: 0 32px;
}

.comparison-col:first-child {
    padding-left: 0;
}

.comparison-col:last-child {
    padding-right: 0;
}

.comparison-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-label.others {
    color: rgba(255, 255, 255, 0.3);
}

.comparison-label.dogma {
    color: #c8a85a;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ci-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ci-icon.cross svg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
}

.ci-icon.check svg {
    fill: none;
    stroke: #c8a85a;
}

.ci-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.ci-text.highlight {
    color: rgba(220, 230, 245, 0.85);
    font-weight: 600;
}

.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.vs-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.vs-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

.delay-5 {
    transition-delay: 0.40s;
}

.delay-6 {
    transition-delay: 0.48s;
}

.delay-7 {
    transition-delay: 0.56s;
}

@media (max-width: 1024px) {
    .why-header {
        padding: 50px 40px 44px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .why-header-right {
        text-align: left;
        max-width: 100%;
    }

    .why-content {
        padding: 40px 40px 0;
    }

    .why-top-row {
        grid-template-columns: 1fr;
    }

    .why-bottom-row {
        grid-template-columns: 1fr 1fr;
    }

    .why-extra-row {
        grid-template-columns: 1fr;
    }

    .why-comparison {
        padding: 28px 40px;
    }
}

@media (max-width: 640px) {
    .why-header {
        padding: 40px 24px 36px;
    }

    .why-header::after {
        display: none;
    }

    .why-content {
        padding: 28px 24px 0;
    }

    .why-bottom-row {
        grid-template-columns: 1fr;
    }

    .why-comparison {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }

    .comparison-vs {
        display: none;
    }

    .why-section-label {
        display: none;
    }
}

.dogma-gallery-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.gallery-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    z-index: 10;
}

.gallery-banner {
    height: 52vh;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-banner-bg {
    position: absolute;
    inset: -15%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.1s linear;
}

#training-banner-bg {
    background-image: none !important;
    background-color: #0a1220; /* theme color, adjust if needed */
}

.gallery-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(2, 15, 35, 0.55) 0%,
            rgba(4, 42, 91, 0.65) 60%,
            rgba(2, 10, 24, 0.88) 100%);
    z-index: 2;
}

.gallery-banner-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 60px 44px;
    text-align: center;
}

.gallery-banner-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-banner-eyebrow::before,
.gallery-banner-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #c8a85a;
    opacity: 0.6;
}

.gallery-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.gallery-banner-title span {
    color: #c8a85a;
}

.gallery-grid-wrap {
    flex: 1;
    background: #0a1220;
    padding: 40px 50px 50px;
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 540px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #1a2535;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s;
    filter: brightness(0.75);
    image-rendering: -webkit-optimize-contrast;
}

.gallery-item:hover .gallery-item-bg {
    transform: scale(1.04);
    filter: brightness(0.95);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(4, 42, 91, 0.85) 0%,
            rgba(4, 42, 91, 0.1) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 16px;
    z-index: 3;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-item-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.3;
}

.gallery-caption-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    color: rgba(200, 168, 90, 0.9);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.gallery-item-num {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    transition: color 0.3s;
}

.gallery-item:hover .gallery-item-num {
    color: #c8a85a;
}

.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.gallery-placeholder svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1.5;
}

.gallery-placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 0 16px;
}

.gallery-info-bar {
    background: #042A5B;
    padding: 22px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2;
}

.gib-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gib-accent-line {
    width: 3px;
    height: 36px;
    background: #c8a85a;
    flex-shrink: 0;
}

.gib-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(220, 230, 245, 0.75);
    line-height: 1.55;
}

.gib-text strong {
    font-weight: 700;
    color: #ffffff;
}

.gib-stat {
    text-align: right;
    flex-shrink: 0;
}

.gib-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #c8a85a;
    line-height: 1;
}

.gib-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

.sections-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, #c8a85a 30%, #c8a85a 70%, transparent);
    position: relative;
    z-index: 5;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-left.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.18s;
}

.delay-3 {
    transition-delay: 0.28s;
}

.delay-4 {
    transition-delay: 0.38s;
}

.delay-5 {
    transition-delay: 0.48s;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 4px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item.large {
        grid-row: span 1;
        height: 200px;
    }

    .gallery-grid-wrap {
        padding: 24px 16px 32px;
    }

    .gallery-banner-content {
        padding: 0 24px 32px;
    }

    .gallery-info-bar {
        padding: 18px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .gib-stat {
        text-align: left;
    }

    .gallery-section-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }
}

#dogma-team {
    min-height: 100vh;
    background: #042A5B;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    padding-bottom: 60px;
}

#dogma-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

#dogma-team::after {
    content: 'TEAM';
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.03em;
}

.team-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.team-header {
    padding: 64px 70px 48px;
    position: relative;
    z-index: 2;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.team-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.team-eyebrow::before,
.team-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(200, 168, 90, 0.5);
}

.team-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.01em;
}

.team-main-title span {
    color: #c8a85a;
}

.team-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(220, 230, 245, 0.5);
    margin-top: 12px;
    letter-spacing: 0.05em;
}

.org-tree-wrap {
    position: relative;
    z-index: 2;
    padding: 70px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    
    overflow: visible;
}

.ceo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    position: relative;
    z-index: 3;
    margin-bottom: 80px;
}

.secretary-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.secretary-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200, 168, 90, 0.45);
}

.gm-row {
    display: flex;
    justify-content: center;
    gap: 110px;
    position: relative;
    z-index: 3;
    margin-bottom: 80px;
}

.children-row {
    display: flex;
    justify-content: center;
    gap: 110px;
    position: relative;
    z-index: 3;
}

.children-group {
    display: flex;
    gap: 14px;
}

.node-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 22px;
    text-align: center;
    position: relative;
    min-width: 155px;
    max-width: 190px;
    cursor: default;
    
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease,
        background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.node-card.appeared {
    opacity: 1;
    transform: translateY(0);
}

.node-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 168, 90, 0.5);
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.node-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c8a85a, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.node-card:hover::before {
    opacity: 1;
}

.node-card.ceo {
    background: rgba(200, 168, 90, 0.1);
    border: 1px solid rgba(200, 168, 90, 0.45);
    min-width: 210px;
    padding: 24px 30px;
    box-shadow: 0 0 36px rgba(200, 168, 90, 0.1);
}

.node-card.ceo::before {
    opacity: 1;
}

.node-card.ceo:hover {
    background: rgba(200, 168, 90, 0.18);
    border-color: rgba(200, 168, 90, 0.75);
}

.node-card.gm {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 175px;
}

.node-card.secretary {
    background: rgba(200, 168, 90, 0.07);
    border: 1px solid rgba(200, 168, 90, 0.25);
    min-width: 148px;
}

.node-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 8px;
}

.node-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.node-card.ceo .node-name {
    font-size: 1rem;
}

.node-dept {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.6rem;
    color: rgba(220, 230, 245, 0.35);
    margin-top: 6px;
}

.org-line {
    fill: none;
    stroke: rgba(200, 168, 90, 0.6);
    stroke-width: 1.5;
    
}

.team-bottom-strip {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 16px;
}

.tbs-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tbs-dot {
    width: 6px;
    height: 6px;
    background: #c8a85a;
    flex-shrink: 0;
}

.tbs-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
    .team-header {
        padding: 48px 24px 36px;
    }

    .org-tree-wrap {
        padding: 40px 24px 30px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
    }

    .node-card {
        min-width: 180px;
        padding: 18px 20px;
    }

    .node-name {
        font-size: 0.7rem;
    }

    .team-bottom-strip {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .team-section-label {
        display: none;
    }
}

@media (max-width: 600px) {
    
}

#dogma-contact {
    min-height: 100vh;
    background: #021830;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

#dogma-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(4, 42, 91, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(2, 15, 40, 0.8) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

#dogma-contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
    z-index: 0;
}

.contact-section-label {
    position: absolute;
    top: 48px;
    right: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    z-index: 5;
}

.contact-brand-header {
    position: relative;
    z-index: 2;
    background: #042A5B;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 52px 70px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-brand-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.contact-logo-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 90, 0.4);
    background: rgba(200, 168, 90, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2rem;
    overflow: hidden;
}

.contact-logo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.contact-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.15;
}

.contact-brand-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(220, 230, 245, 0.45);
    margin-top: 8px;
    font-style: italic;
}

.contact-brand-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cert-pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a85a;
    border: 1px solid rgba(200, 168, 90, 0.3);
    padding: 7px 16px;
    white-space: nowrap;
}

.contact-main {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
}

.contact-col-left {
    width: 40%;
    flex-shrink: 0;
    padding: 60px 56px 60px 70px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.contact-title span {
    color: #c8a85a;
}

.contact-rule {
    width: 48px;
    height: 3px;
    background: #c8a85a;
    margin: 22px 0 28px;
}

.contact-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(220, 230, 245, 0.6);
    margin-bottom: 48px;
}

.dogma-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: #ffffff;
    transition: background 0.3s, border-color 0.3s;
    outline: none;
    border-radius: 0;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 168, 90, 0.5);
}

.form-textarea {
    resize: none;
    line-height: 1.6;
}

.form-select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
}

.form-select:focus,
.form-select:valid {
    color: #ffffff;
}

.form-select option {
    background-color: var(--navy-dark, #021d40);
    color: #ffffff;
}

.form-select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.form-select-icon svg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dogma-submit-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 40px;
    background: #c8a85a;
    color: #042A5B;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
    margin-top: 10px;
}

.dogma-submit-btn:hover {
    background: #ffffff;
    color: #042A5B;
}

.contact-col-right {
    flex: 1;
    padding: 60px 70px 60px 56px;
    display: flex;
    flex-direction: column;
}

.offices-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offices-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

.office-card {
    padding: 30px 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: none;
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    transition: background 0.3s;
}

.office-card:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.office-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.office-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #c8a85a;
    transition: height 0.35s ease;
}

.office-card:hover::before {
    height: 100%;
}

.office-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(200, 168, 90, 0.1);
    line-height: 1;
    padding-top: 2px;
    text-align: center;
}

.office-details {}

.office-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 5px;
}

.office-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.office-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.office-info-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.office-info-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: rgba(200, 168, 90, 0.55);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 3px;
    flex-shrink: 0;
}

.office-info-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(220, 230, 245, 0.55);
    line-height: 1.55;
}

.office-info-text a {
    color: rgba(220, 230, 245, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.office-info-text a:hover {
    color: #c8a85a;
}

.contact-footer-bar {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #c8a85a;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(200, 168, 90, 0.35);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

@media (max-width: 1024px) {
    .contact-brand-header {
        padding: 36px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-brand-right {
        justify-content: flex-start;
    }

    .contact-main {
        flex-direction: column;
    }

    .contact-col-left {
        width: 100%;
        padding: 44px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .contact-col-right {
        padding: 44px 40px;
    }

    .contact-footer-bar {
        padding: 18px 40px;
    }
}

@media (max-width: 640px) {

    body,
    .dogma-page {
        margin-top: 0px !important;
    }

    .contact-brand-header {
        padding: 28px 24px;
    }

    .contact-col-left {
        padding: 36px 24px;
    }

    .contact-col-right {
        padding: 36px 24px;
    }

    .office-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-footer-bar {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-section-label {
        display: none;
    }

    .footer-links {
        gap: 14px;
    }
}

.nav-logo-icon {
    width: 52px !important;
    height: 52px !important;
}

.nav-logo-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.nav-logo-name {
    font-size: 0.8rem !important;
}

.hero-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    filter: brightness(0.9) saturate(1) !important;
    
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    transform: scale(1.06);
    
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
    transition: opacity 1.4s ease, transform 6s ease;
}

.about-ceo-strip {
    background: #042A5B;
    border-left: 4px solid #c8a85a;
    padding: 48px 70px;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.ceo-quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #c8a85a;
    line-height: 0.7;
    flex-shrink: 0;
    margin-top: 6px;
}

.ceo-quote-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem !important;
    line-height: 1.85;
    color: #dce6f5;
    font-style: italic;
    font-weight: 300;
    flex: 1;
    min-width: 260px;
}

.ceo-quote-author {
    flex-shrink: 0;
    text-align: right;
}

.ceo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #c8a85a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ceo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

#dogma-founder {
    background: #f4f7fb;
}

.founder-header {
    display: none !important;
}

.founder-section-label {
    display: none !important;
}

.founder-cinematic-intro {
    background: #042A5B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    text-align: center;
    padding: 72px 60px 60px;
    position: relative;
    overflow: hidden;
}

.founder-cinematic-intro::before {
    content: 'FOUNDER';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.03em;
    pointer-events: none;
    white-space: nowrap;
}

.founder-cin-group1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-cin-group2 {
    text-align: center;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.founder-cin-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.founder-cin-label::before,
.founder-cin-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(200, 168, 90, 0.5);
}

.founder-cin-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.0;
    color: #ffffff;
}

.founder-cin-heading span {
    color: #c8a85a;
}

.founder-cin-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 20px;
}

.founder-cin-title-tag {
    display: inline-block;
    border: 1px solid rgba(200, 168, 90, 0.45);
    color: #c8a85a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 8px 24px;
    margin-top: 12px;
}

.founder-cin-divider {
    width: 48px;
    height: 3px;
    background: #c8a85a;
    margin: 20px auto 0;
}

.founder-cinematic-intro.visible .founder-cin-group1 {
    animation: cinSequence1 8s infinite;
}

.founder-cinematic-intro.visible .founder-cin-group2 {
    animation: cinSequence2 8s infinite;
}

@keyframes cinSequence1 {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
        filter: blur(4px);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%);
        filter: blur(0);
    }

    40% {
        opacity: 1;
        transform: translate(-50%, -50%);
        filter: blur(0);
    }

    50% {
        opacity: 0;
        transform: translate(-50%, -60%);
        filter: blur(4px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -60%);
        filter: blur(4px);
    }
}

@keyframes cinSequence2 {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }

    50% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    90% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
        filter: blur(4px);
    }
}

.founder-body {
    display: block !important;
}

.founder-col-left {
    display: none !important;
}

.founder-col-right {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 40px 60px;
    background: #f4f7fb;
}

.founder-bio-intro {
    font-size: 1.05rem !important;
}

.services-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 16px 8px;
    
    margin: 0 -8px;
    
}

.swiper-slide {
    height: auto;
}

.services-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-bottom: 8px;
    position: relative;
    z-index: 10;
}

.sc-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 90, 0.45);
    background: rgba(200, 168, 90, 0.05);
    color: #c8a85a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.sc-btn:hover {
    background: #c8a85a;
    color: #042A5B;
    transform: scale(1.05);
}

.sc-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.sc-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sc-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 1;
    border-radius: 5px;
    margin: 0 !important;
}

.sc-dots .swiper-pagination-bullet-active {
    background: #c8a85a;
    width: 24px;
}

@media (max-width: 900px) {
    .services-track .service-card {
        flex: 0 0 calc(50% - 2px);
        min-width: calc(50% - 2px);
    }
}

@media (max-width: 600px) {
    .services-track .service-card {
        flex: 0 0 88%;
        min-width: 88%;
    }
}

.logo-card {
    background: #f7f9fd;
    border: 1px solid #e8edf6;
    padding: 0;
    min-height: 160px;
}

.industry-card {
    width: 100%;
    height: 100%;
    min-height: 160px;
    background: #f7f9fd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 32px 24px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
    position: relative;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #042A5B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo-card:hover .industry-card {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(4, 42, 91, 0.08);
}

.logo-card:hover .industry-card::after {
    transform: scaleX(1);
}

.industry-card-icon {
    width: 52px;
    height: 52px;
    background: #042A5B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.logo-card:hover .industry-card-icon {
    background: #c8a85a;
}

.industry-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.logo-card:hover .industry-card-icon svg {
    stroke: #042A5B;
}

.industry-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #042A5B;
}

.industry-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    color: #8fa3bf;
    letter-spacing: 0.05em;
}

.why-content {
    padding: 60px 70px 0 !important;
    display: block !important;
}

.why-carousel-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 16px 8px;
    margin: 0 -8px;
    box-sizing: content-box;
}

.why-carousel-wrap .why-card {
    height: 100%;
    box-sizing: border-box;
}

.why-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 28px 0 40px;
}

@media (max-width: 900px) {
    .why-content {
        padding: 40px 40px 0 !important;
    }
}

@media (max-width: 600px) {
    .why-content {
        padding: 28px 24px 0 !important;
    }
}

.why-comparison {
    background: #021830;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 70px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 0;
}

.comparison-col {
    padding: 0 36px;
}

.comparison-col:first-child {
    padding-left: 0;
}

.comparison-col:last-child {
    padding-right: 0;
}

.comparison-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

.comparison-label.others {
    color: rgba(255, 255, 255, 0.28);
}

.comparison-label.dogma {
    color: #c8a85a;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-item .ci-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.comparison-item .ci-icon.cross {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-item .ci-icon.cross svg {
    stroke: rgba(239, 68, 68, 0.7);
    width: 11px;
    height: 11px;
}

.comparison-item .ci-icon.check {
    background: rgba(200, 168, 90, 0.1);
    border: 1px solid rgba(200, 168, 90, 0.3);
}

.comparison-item .ci-icon.check svg {
    stroke: #c8a85a;
    width: 11px;
    height: 11px;
}

.comparison-item .ci-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.5;
}

.comparison-item .ci-text.highlight {
    color: rgba(220, 230, 245, 0.88);
    font-weight: 600;
}

.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 16px 0;
}

.vs-line {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
}

.vs-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #042A5B;
    background: #c8a85a;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .why-comparison {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 20px;
    }

    .comparison-vs {
        display: none;
    }

    .comparison-col {
        padding: 0;
    }
}

.contact-main {
    display: flex !important;
    flex-direction: column !important;
}

.contact-col-left {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 56px 70px !important;
    max-width: 100%;
}

.contact-col-right {
    width: 100% !important;
    padding: 56px 70px !important;
}

.dogma-contact-form {
    max-width: 860px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.form-row.full {
    display: block;
}

.form-input {
    flex: 1;
}

.offices-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

@media (max-width: 960px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .contact-col-left {
        padding: 44px 40px !important;
    }

    .contact-col-right {
        padding: 44px 40px !important;
    }
}

@media (max-width: 640px) {
    .contact-col-left {
        padding: 36px 24px !important;
    }

    .contact-col-right {
        padding: 36px 24px !important;
    }

    .form-row {
        flex-direction: column;
    }
}

.office-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    padding: 32px 28px !important;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    grid-template-columns: unset !important;
    position: relative;
    height: 100%;
    transition: background 0.3s, border-color 0.3s;
}

.office-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(200, 168, 90, 0.25) !important;
}

.office-card::before {
    display: none;
}

.office-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(200, 168, 90, 0.1);
    line-height: 1;
    margin-bottom: 6px;
}

.office-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 4px;
}

.office-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.office-info-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.office-info-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.office-info-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: rgba(200, 168, 90, 0.55);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 3px;
    flex-shrink: 0;
}

.office-info-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(220, 230, 245, 0.5);
    line-height: 1.6;
}

.office-info-text a {
    color: rgba(220, 230, 245, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.office-info-text a:hover {
    color: #c8a85a;
}

.office-info-text a[href^="tel:+923118370000"],
.office-info-text a.primary-number {
    color: #c8a85a !important;
    font-weight: 600;
}

.office-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.office-info-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.office-map-embed {
    margin-top: auto;
    overflow: hidden;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.office-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-col-right .offices-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a85a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-col-right .offices-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #c8a85a;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .about-ceo-strip {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding: 40px 20px !important;
        border-left: none !important;
        border-top: 4px solid #c8a85a !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .ceo-quote-text {
        min-width: unset !important;
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0 !important;
    }

    .ceo-quote-author {
        text-align: center !important;
        margin-top: 15px !important;
        width: 100% !important;
    }

    .founder-col-right {
        padding: 40px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .founder-cinematic-intro {
        padding: 60px 20px !important;
    }

    .founder-bio-intro {
        padding-left: 15px !important;
        font-size: 1rem !important;
    }

    .about-ceo-strip .ceo-quote-mark {
        margin-top: 0 !important;
        font-size: 3.5rem !important;
    }
}

@media (max-width: 480px) {
    .ceo-quote-text {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    .founder-bio-intro {
        padding-left: 12px !important;
    }

    .founder-cin-heading {
        font-size: 1.8rem !important;
    }
}