:root {
    --navy: #0b1f3a;
    --navy-2: #122d52;
    --navy-3: #071525;
    --gold: #c7a24a;
    --gold-soft: #efe3bf;
    --white: #ffffff;
    --light: #f5f7fb;
    --light-2: #eef2f7;
    --text: #1c2735;
    --muted: #657386;
    --border: #dce3ec;
    --shadow: 0 24px 70px rgba(11, 31, 58, 0.14);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 860px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220, 227, 236, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 255px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1.02rem;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.main-nav > a:not(.nav-cta) {
    padding: 10px 11px;
    border-radius: 999px;
    transition: 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a.active {
    color: var(--navy);
    background: var(--light-2);
}

.nav-cta {
    margin-left: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(11, 31, 58, 0.17);
    transition: 0.25s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--navy-3);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 21px;
    height: 2px;
    background: var(--navy);
    border-radius: 10px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 84px;
    background:
        radial-gradient(circle at 15% 5%, rgba(199, 162, 74, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f5f7fb 48%, #edf2f8 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -30% 55%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.06);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 2px;
    background: currentColor;
}

.gold-text {
    color: var(--gold-soft);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.7rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: 1.28rem;
}

p {
    margin: 0;
}

.hero-content p {
    max-width: 680px;
    margin-top: 24px;
    font-size: 1.18rem;
    color: var(--muted);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(11, 31, 58, 0.18);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--navy-3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: min(100%, 560px);
    filter: drop-shadow(0 30px 50px rgba(11, 31, 58, 0.2));
}

.visual-card {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(220, 227, 236, 0.9);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: var(--shadow);
    min-width: 220px;
}

.visual-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.visual-card strong {
    color: var(--navy);
    font-size: 0.94rem;
}

.visual-card-top {
    top: 34px;
    left: 8px;
}

.visual-card-bottom {
    bottom: 28px;
    right: 0;
}

.section {
    padding: 94px 0;
}

.soft-bg {
    background: var(--light);
}

.intro-section {
    padding-top: 86px;
}

.two-column {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: center;
}

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

.section-heading p,
.lead-copy p {
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading p {
    margin-top: 20px;
    max-width: 720px;
}

.lead-copy {
    display: grid;
    gap: 18px;
}

.center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 46px;
}

.center .eyebrow {
    justify-content: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card,
.industry-card,
.category-card,
.project-card,
.mission-card,
.cta-card,
.contact-card,
.notice-box,
.value-item,
.timeline-step,
.work-step {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(11, 31, 58, 0.07);
}

.service-card {
    padding: 32px;
    min-height: 250px;
    transition: 0.25s ease;
}

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

.card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 26px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    position: relative;
}

.card-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    top: 14px;
    left: 14px;
}

.service-card h3,
.industry-card h3,
.project-card h3,
.contact-card h3 {
    margin-bottom: 14px;
}

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

.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.timeline-step {
    padding: 24px;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-step span,
.step-number {
    color: var(--gold);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.timeline-step h3 {
    font-size: 1.05rem;
}

.navy-section {
    background:
        radial-gradient(circle at 75% 15%, rgba(199, 162, 74, 0.16), transparent 28%),
        linear-gradient(135deg, var(--navy-3), var(--navy));
    color: rgba(255, 255, 255, 0.78);
}

.navy-section h2,
.navy-section h3 {
    color: var(--white);
}

.navy-section p {
    color: rgba(255, 255, 255, 0.78);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feature-item,
.check-item {
    position: relative;
    padding: 18px 18px 18px 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.feature-item::before,
.check-item::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 21px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(199, 162, 74, 0.16);
}

.cta-section {
    background: var(--white);
}

.cta-card {
    padding: 56px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 251, 0.96)),
        radial-gradient(circle at top right, rgba(199, 162, 74, 0.22), transparent 30%);
}

.cta-card p {
    max-width: 690px;
    margin: 20px auto 30px;
    color: var(--muted);
    font-size: 1.08rem;
}

.page-hero {
    padding: 92px 0;
    background:
        radial-gradient(circle at 85% 0%, rgba(199, 162, 74, 0.17), transparent 25%),
        linear-gradient(135deg, var(--navy-3), var(--navy));
    color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
    color: var(--white);
}

.page-hero p {
    margin-top: 22px;
    font-size: 1.15rem;
    max-width: 790px;
    color: rgba(255, 255, 255, 0.78);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mission-card {
    padding: 42px;
}

.mission-card h2 {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.value-grid,
.industry-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-item,
.category-card {
    padding: 24px;
    font-weight: 800;
    color: var(--navy);
}

.industry-grid.compact .industry-card {
    min-height: auto;
}

.industry-card {
    padding: 28px;
    min-height: 178px;
}

.service-index-section {
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 86px;
    z-index: 50;
}

.service-index {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.service-index a {
    flex: 0 0 auto;
    padding: 11px 15px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 800;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
    align-items: start;
}

.service-detail-heading p {
    margin-top: 18px;
    color: var(--muted);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.check-item {
    background: var(--white);
    color: var(--text);
    border-color: var(--border);
    box-shadow: 0 12px 34px rgba(11, 31, 58, 0.05);
}

.notice-box {
    margin-top: 24px;
    padding: 20px;
    color: var(--navy);
    font-weight: 700;
    background: #fffaf0;
    border-color: #eddcae;
    box-shadow: none;
}

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

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    overflow: hidden;
}

.project-image-placeholder {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(18, 45, 82, 0.92)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 20px);
    color: var(--gold-soft);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.project-body {
    padding: 28px;
}

.project-body dl {
    display: grid;
    gap: 15px;
    margin: 20px 0 0;
}

.project-body dt {
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-body dd {
    margin: 4px 0 0;
    color: var(--muted);
}

.work-process {
    display: grid;
    gap: 18px;
}

.work-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    padding: 34px;
    align-items: center;
}

.work-step p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 52px;
    align-items: start;
}

.contact-info p {
    margin-top: 18px;
    color: var(--muted);
}

.contact-card {
    margin-top: 28px;
    padding: 28px;
}

.contact-card p {
    margin-top: 8px;
}

.contact-card a {
    color: var(--navy);
    font-weight: 800;
}

.project-form {
    display: grid;
    gap: 18px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--light);
    border: 1px solid var(--border);
}

.form-row.two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.92rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    border-radius: 14px;
    min-height: 52px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    transition: 0.2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 162, 74, 0.16);
}

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

.form-button {
    width: fit-content;
    border: none;
}

.honeypot {
    display: none;
}

.form-alert {
    padding: 16px 18px;
    border-radius: 14px;
    font-weight: 800;
}

.form-alert.success {
    background: #e8f7ef;
    color: #17643a;
    border: 1px solid #bee8d0;
}

.form-alert.error {
    background: #fff0f0;
    color: #9f2525;
    border: 1px solid #f0c6c6;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 34px;
    margin-bottom: 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

.legal-content a {
    color: var(--navy);
    font-weight: 800;
}

.footer-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(199, 162, 74, 0.22), transparent 30%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    color: rgba(255, 255, 255, 0.76);
    padding: 58px 0;
}

.footer-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 48%);
    pointer-events: none;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 34px;
}

.footer-cta h2 {
    max-width: 780px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.15rem);
    margin-bottom: 14px;
}

.footer-cta p {
    max-width: 620px;
    margin: 0;
    font-size: 1.05rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-3);
    border-color: var(--gold);
    white-space: nowrap;
}

.btn-gold:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
}

.site-footer {
    background: var(--navy-3);
    color: rgba(255, 255, 255, 0.72);
    padding: 74px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1fr;
    gap: 42px;
}

.footer-grid-large {
    align-items: start;
}

.footer-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    margin-bottom: 18px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
}

.site-footer h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.site-footer h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin-bottom: 18px;
}

.footer-company p {
    max-width: 430px;
}

.footer-institutional {
    margin-bottom: 0;
}

.footer-tagline {
    color: var(--gold-soft);
    margin-top: 14px;
    font-weight: 900;
}

.footer-note {
    margin-top: 14px;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.58);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-footer a {
    transition: 0.22s ease;
}

.site-footer a:hover {
    color: var(--gold-soft);
}

.footer-contact li {
    line-height: 1.45;
}

.footer-contact span {
    display: block;
    color: var(--gold-soft);
    font-weight: 900;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.footer-disclaimer {
    margin-top: 48px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.footer-disclaimer strong {
    color: var(--gold-soft);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.developer-credit {
    display: inline-grid;
    grid-template-columns: 54px auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 2px 12px;
    min-width: 295px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.72);
}

.developer-credit:hover {
    border-color: rgba(199, 162, 74, 0.45);
    background: rgba(255, 255, 255, 0.075);
}

.developer-credit img {
    grid-row: 1 / 3;
    width: 54px;
    height: 42px;
    object-fit: contain;
    padding: 5px;
    border-radius: 12px;
    background: #ffffff;
}

.developer-credit span {
    color: var(--gold-soft);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.developer-credit strong {
    color: var(--white);
    font-size: 0.84rem;
    line-height: 1.2;
}

.legal-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

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

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

@media (max-width: 1120px) {
    .main-nav {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

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

    .main-nav > a:not(.nav-cta),
    .nav-cta {
        margin-left: 0;
        width: 100%;
        border-radius: 14px;
        padding: 13px 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid,
    .two-column,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 430px;
    }

    .timeline,
    .service-grid,
    .project-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid,
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .footer-cta-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-cta .btn {
        width: fit-content;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand-text small {
        display: none;
    }

    .brand-logo {
        width: 54px;
        height: 54px;
    }

    .hero,
    .page-hero,
    .section {
        padding: 64px 0;
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .visual-card {
        display: none;
    }

    .service-grid,
    .timeline,
    .feature-list,
    .mission-grid,
    .value-grid,
    .industry-grid,
    .category-grid,
    .project-grid,
    .check-grid,
    .footer-grid,
    .form-row.two {
        grid-template-columns: 1fr;
    }

    .service-index-section {
        position: static;
    }

    .work-step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta-card,
    .mission-card,
    .project-form {
        padding: 28px;
    }

    .footer-cta-inner {
        gap: 24px;
    }

    .footer-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        display: grid;
    }

    .developer-credit {
        width: 100%;
        min-width: 0;
    }
}

/* Kinsoridge footer credit - fixed compact version */
.footer-bottom-clean {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.developer-credit-fixed {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    max-width: 100% !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none !important;
    line-height: 1.15 !important;
}

.developer-credit-fixed:hover {
    border-color: rgba(199, 162, 74, 0.45) !important;
    background: rgba(255, 255, 255, 0.075) !important;
}

.developer-logo-box {
    width: 44px !important;
    height: 34px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border-radius: 10px !important;
}

.developer-credit-fixed img,
.developer-logo-box img {
    display: block !important;
    width: 38px !important;
    min-width: 0 !important;
    max-width: 38px !important;
    height: auto !important;
    max-height: 28px !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
}

.developer-credit-text small {
    display: block !important;
    color: var(--gold-soft) !important;
    font-size: 0.62rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
}

.developer-credit-text strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

@media (max-width: 760px) {
    .footer-bottom-clean {
        display: grid !important;
        justify-items: start !important;
    }

    .developer-credit-fixed {
        width: 100% !important;
    }

    .developer-credit-text strong {
        white-space: normal !important;
    }
}
