@charset "UTF-8";
:root {
    --background-color: #fbfaf6;
    --surface-color: #ffffff;
    --surface-alt: #f6f1e3;
    --default-color: #261d12;
    --muted-color: #6f6352;
    --heading-color: #171108;
    --accent-color: #caa44a;
    --accent-dark: #9d7a21;
    --accent-soft: #efe2bd;
    --accent-soft-2: rgba(202, 164, 74, 0.14);
    --border-color: rgba(157, 122, 33, 0.16);
    --shadow-color: 0 24px 60px rgba(32, 23, 9, 0.08);
    --default-font: "Poppins", sans-serif;
    --heading-font: "Roboto", sans-serif;
    --nav-font: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--default-color);
    background: radial-gradient(circle at top right, rgba(202, 164, 74, 0.08), transparent 24%), linear-gradient(180deg, #fffefb 0%, #fbfaf6 45%, #f7f3e9 100%);
    font-family: var(--default-font);
    line-height: 1.7;
    font-size: 14px;
}

body.mobile-nav-active {
    overflow: hidden;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: var(--heading-color);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0 0 14px;
    font-weight: 700;
}

p {
    margin: 0 0 16px;
    color: var(--muted-color);
    font-size: 13px;
}

.section {
    padding: 84px 0;
    position: relative;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(239, 226, 189, 0.28));
}

.main {
    overflow: hidden;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-dark);
}

.section-label::before {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-dark), transparent);
}

.section-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-intro h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.45rem);
    margin-bottom: 16px;
}

.split-intro {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.split-intro>* {
    flex: 1 1 0;
}

.header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(157, 122, 33, 0.08);
    backdrop-filter: blur(18px);
    z-index: 997;
}

.scrolled .header {
    box-shadow: 0 16px 40px rgba(32, 23, 9, 0.08);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.logo {
    gap: 12px;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(202, 164, 74, 0.12);
}

.logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--heading-color);
}

.logo-tag {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: radial-gradient(circle at top, rgba(202, 164, 74, 0.2), transparent 35%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 225, 0.98));
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-mark {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-mark img {
    position: relative;
    z-index: 3;
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    padding: 8px;
    box-shadow: 0 14px 30px rgba(202, 164, 74, 0.18);
    animation: loaderFloat 2.4s ease-in-out infinite;
}

.loader-ring,
.loader-glow {
    position: absolute;
    border-radius: 50%;
}

.loader-ring {
    inset: 0;
    border: 1px solid rgba(202, 164, 74, 0.24);
}

.ring-one {
    animation: ringRotate 4s linear infinite;
}

.ring-two {
    inset: 14px;
    border-color: rgba(157, 122, 33, 0.2);
    animation: ringRotateReverse 3.5s linear infinite;
}

.ring-one::before,
.ring-two::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #f0dfb3);
    box-shadow: 0 0 18px rgba(202, 164, 74, 0.35);
}

.loader-glow {
    width: 92px;
    height: 92px;
    background: radial-gradient(circle, rgba(202, 164, 74, 0.24), transparent 68%);
    animation: pulseGlow 1.8s ease-in-out infinite;
}

.loader-copy {
    text-align: center;
}

.loader-copy strong {
    display: block;
    margin-bottom: 4px;
    color: var(--heading-color);
    font-size: 18px;
    letter-spacing: 0.14em;
}

.loader-copy span {
    color: var(--muted-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .navmenu ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .navmenu a,
    .navmenu a:focus {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 999px;
        font-family: var(--nav-font);
        font-size: 14px;
        font-weight: 700;
        color: var(--default-color);
    }
    .navmenu a:hover,
    .navmenu .active {
        background: var(--accent-soft-2);
        color: var(--accent-dark);
    }
    .nav-cta-item {
        margin-left: 8px;
    }
    .navmenu .nav-cta {
        background: linear-gradient(135deg, var(--accent-color), #d8bb72);
        color: #fff;
        box-shadow: 0 16px 30px rgba(202, 164, 74, 0.24);
    }
    .navmenu .nav-cta:hover {
        background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
        color: #fff;
    }
    .nav-language-item {
        position: relative;
        margin-left: 6px;
    }
    .mobile-nav-toggle {
        display: none;
    }
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        color: var(--heading-color);
    }
    .navmenu ul {
        position: fixed;
        inset: 88px 20px auto;
        margin: 0;
        padding: 18px;
        list-style: none;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 26px;
        box-shadow: var(--shadow-color);
        display: none;
        flex-direction: column;
        gap: 6px;
    }
    .mobile-nav-active .navmenu ul {
        display: flex;
    }
    .navmenu a,
    .navmenu a:focus {
        display: flex;
        justify-content: center;
        padding: 14px 16px;
        border-radius: 16px;
        color: var(--default-color);
        font-weight: 700;
    }
    .navmenu .active,
    .navmenu a:hover {
        background: var(--accent-soft-2);
        color: var(--accent-dark);
    }
    .navmenu .nav-cta {
        background: linear-gradient(135deg, var(--accent-color), #d8bb72);
        color: #fff;
    }
    .nav-language-item {
        width: 100%;
        margin-top: 6px;
    }
    .language-picker-toggle {
        width: 100%;
        min-width: 0;
    }
    .language-picker-panel {
        position: static;
        width: 100%;
        margin-top: 12px;
    }
}

html,
body {
    margin-top: 0 !important;
}

body {
    top: 0 !important;
    position: static !important;
}

.google-translate-host {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

body>.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
div.goog-te-spinner-pos {
    display: none !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

.language-picker {
    position: relative;
}

.language-picker-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 156px;
    min-height: 44px;
    padding: 7px 10px;
    border: 1px solid rgba(157, 122, 33, 0.16);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(246, 241, 227, 0.94));
    box-shadow: 0 12px 24px rgba(32, 23, 9, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    color: var(--default-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.language-picker-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(157, 122, 33, 0.3);
    box-shadow: 0 16px 28px rgba(32, 23, 9, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.language-picker.is-open .language-picker-toggle {
    border-color: rgba(202, 164, 74, 0.4);
    box-shadow: 0 18px 32px rgba(32, 23, 9, 0.12), 0 0 0 5px rgba(202, 164, 74, 0.07);
}

.language-picker-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(202, 164, 74, 0.18), rgba(157, 122, 33, 0.26));
    color: var(--accent-dark);
    font-size: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.language-picker-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    text-align: left;
}

.language-picker-copy small {
    display: none;
    margin-bottom: 2px;
    color: var(--muted-color);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.language-picker-copy strong {
    color: var(--heading-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.language-picker-caret {
    margin-left: auto;
    color: var(--accent-dark);
    font-size: 11px;
    transition: transform 0.3s ease;
}

.language-picker.is-open .language-picker-caret {
    transform: rotate(180deg);
}

.language-picker-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(350px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid rgba(157, 122, 33, 0.14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 246, 0.96));
    box-shadow: 0 24px 42px rgba(32, 23, 9, 0.14);
    backdrop-filter: blur(18px);
    z-index: 1002;
}

.language-picker-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.language-picker-eyebrow {
    color: var(--heading-color);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.language-picker-reset {
    padding: 7px 11px;
    border: 1px solid rgba(157, 122, 33, 0.18);
    border-radius: 999px;
    background: rgba(239, 226, 189, 0.32);
    color: var(--accent-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.language-picker-reset:hover {
    border-color: rgba(157, 122, 33, 0.28);
    background: rgba(202, 164, 74, 0.14);
    color: var(--heading-color);
}

.language-picker-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(157, 122, 33, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.language-picker-search i {
    color: var(--accent-dark);
    font-size: 12px;
}

.language-picker-search input {
    width: 100%;
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--default-color);
    font-size: 12px;
    font-weight: 600;
    outline: 0;
}

.language-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 220px;
    padding-right: 4px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(202, 164, 74, 0.5) transparent;
}

.language-picker-grid::-webkit-scrollbar {
    width: 6px;
}

.language-picker-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(202, 164, 74, 0.42);
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border: 1px solid rgba(157, 122, 33, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--default-color);
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.language-option:hover {
    transform: translateY(-1px);
    border-color: rgba(202, 164, 74, 0.32);
    background: rgba(239, 226, 189, 0.32);
    box-shadow: 0 12px 24px rgba(32, 23, 9, 0.08);
}

.language-option.active {
    border-color: rgba(202, 164, 74, 0.4);
    background: linear-gradient(135deg, rgba(202, 164, 74, 0.22), rgba(239, 226, 189, 0.42));
    box-shadow: 0 14px 30px rgba(202, 164, 74, 0.16);
}

.language-option-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.language-option-label {
    color: var(--heading-color);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.language-option-native {
    color: var(--muted-color);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
}

.language-option-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(202, 164, 74, 0.14);
    color: var(--accent-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.language-picker-empty,
.language-picker-note {
    margin: 10px 2px 0;
    font-size: 10px;
    font-weight: 600;
}

.language-picker-empty {
    color: #9b4d32;
}

.language-picker-note {
    color: var(--muted-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #d7bb73);
    color: #fff;
    box-shadow: 0 18px 32px rgba(202, 164, 74, 0.24);
}

.btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--border-color);
    color: var(--default-color);
}

.btn-secondary:hover {
    border-color: rgba(157, 122, 33, 0.35);
}

.hero {
    padding: 76px 0 84px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.96), rgba(253, 249, 238, 0.82) 28%, rgba(244, 234, 202, 0.48) 62%, rgba(255, 255, 255, 0.18) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 243, 228, 0.42) 55%, rgba(255, 255, 255, 0.12) 100%);
    pointer-events: none;
}

.hero-backdrop-image,
.hero-backdrop-aurora,
.hero-backdrop-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-backdrop-image {
    inset: -3%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(12, 8, 3, 0.08) 36%, rgba(255, 214, 128, 0.04) 68%, rgba(255, 255, 255, 0.02) 100%), url("../img/bg/hero-city-map.jpg") center center / cover no-repeat;
    filter: brightness(0.9) contrast(1.05) saturate(1.02);
    opacity: 0.92;
    transform: scale(1.03);
    animation: heroImageFloat 20s ease-in-out infinite alternate;
}

.hero-backdrop-aurora {
    background: radial-gradient(circle at 50% 30%, rgba(255, 213, 118, 0.5), transparent 18%), radial-gradient(circle at 50% 44%, rgba(255, 171, 60, 0.18), transparent 28%), radial-gradient(circle at 24% 72%, rgba(255, 197, 92, 0.1), transparent 16%), radial-gradient(circle at 78% 76%, rgba(255, 197, 92, 0.1), transparent 16%);
    mix-blend-mode: screen;
    opacity: 0.92;
    animation: heroAuroraPulse 10s ease-in-out infinite;
}

.hero-backdrop-glow {
    background: radial-gradient(circle at 50% 42%, rgba(255, 206, 96, 0.2), transparent 26%), radial-gradient(circle at 50% 30%, rgba(255, 240, 204, 0.78), transparent 16%), linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 214, 120, 0.05) 45%, rgba(255, 255, 255, 0.2) 100%);
    mix-blend-mode: screen;
    opacity: 0.95;
    animation: heroGlowBreath 6.5s ease-in-out infinite;
}

.hero-backdrop-spark {
    position: absolute;
    inset: 0;
    opacity: 0.58;
    mix-blend-mode: screen;
    filter: blur(0.2px);
}

.hero-backdrop-spark-one {
    background: radial-gradient(circle at 12% 78%, rgba(255, 214, 112, 0.85) 0 1.5px, transparent 4px), radial-gradient(circle at 20% 70%, rgba(255, 214, 112, 0.7) 0 1.8px, transparent 4.5px), radial-gradient(circle at 28% 72%, rgba(255, 214, 112, 0.8) 0 1.7px, transparent 4.2px), radial-gradient(circle at 36% 63%, rgba(255, 214, 112, 0.8) 0 1.6px, transparent 4px), radial-gradient(circle at 46% 60%, rgba(255, 214, 112, 0.75) 0 1.9px, transparent 4.8px), radial-gradient(circle at 58% 67%, rgba(255, 214, 112, 0.75) 0 1.7px, transparent 4px), radial-gradient(circle at 68% 74%, rgba(255, 214, 112, 0.82) 0 1.6px, transparent 4.3px), radial-gradient(circle at 78% 69%, rgba(255, 214, 112, 0.72) 0 1.8px, transparent 4.5px), radial-gradient(circle at 86% 76%, rgba(255, 214, 112, 0.84) 0 1.5px, transparent 4px);
    animation: heroSparkleDrift 14s ease-in-out infinite;
}

.hero-backdrop-spark-two {
    background: radial-gradient(circle at 18% 82%, rgba(255, 239, 195, 0.72) 0 1.2px, transparent 4px), radial-gradient(circle at 31% 76%, rgba(255, 239, 195, 0.66) 0 1.4px, transparent 4px), radial-gradient(circle at 42% 69%, rgba(255, 239, 195, 0.68) 0 1.1px, transparent 4px), radial-gradient(circle at 53% 74%, rgba(255, 239, 195, 0.62) 0 1.3px, transparent 4.2px), radial-gradient(circle at 65% 70%, rgba(255, 239, 195, 0.7) 0 1.2px, transparent 4px), radial-gradient(circle at 74% 78%, rgba(255, 239, 195, 0.66) 0 1.2px, transparent 4px), radial-gradient(circle at 84% 72%, rgba(255, 239, 195, 0.72) 0 1.1px, transparent 4px);
    animation: heroSparkleFlicker 7s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    margin-bottom: 16px;
}

.hero h1 {
    background: linear-gradient(135deg, #fffef8 0%, #f7eccb 48%, #dfbe69 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 26px rgba(120, 87, 20, 0.12);
}

.hero-text {
    max-width: 640px;
    font-size: 14px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-stat,
.card-shell,
.service-card,
.step-card,
.proof-card,
.industry-card,
.pricing-card,
.mini-card,
.contact-card,
.service-panel,
.contact-side {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: var(--shadow-color);
}

.hero-stat {
    padding: 18px;
}

.hero-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--heading-color);
    font-size: 14px;
    line-height: 1.2;
}

.hero-stat span {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    color: var(--muted-color);
}

.hero-visual-stack {
    display: grid;
    gap: 18px;
}

.hero-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 18px;
    align-items: stretch;
}

.hero-stats {
    display: grid;
    gap: 12px;
}

.hero-stats-side .hero-stat {
    min-height: 112px;
}

.hero-image-card,
.page-visual-card,
.panel-image,
.section-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(157, 122, 33, 0.15);
  box-shadow: var(--shadow-color);
}

.image-link-card {
  display: block;
}

.hero-image-card img,
.page-visual-card img,
.panel-image img,
.section-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image-card {
    min-height: 310px;
}

.image-overlay-card,
.floating-visual-note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(157, 122, 33, 0.1);
    backdrop-filter: blur(12px);
}

.floating-visual-note p,
.image-overlay-card p {
    margin: 6px 0 0;
    color: var(--default-color);
    font-size: 13px;
}

.badge-only-overlay {
    top: 30px;
    bottom: auto;
    left: 14px;
    right: auto;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    z-index: 2;
}

.badge-only-overlay .mini-badge {
    background: linear-gradient(135deg, rgba(202, 164, 74, 0.96), rgba(231, 201, 126, 0.96));
    color: #fff;
    box-shadow: 0 10px 24px rgba(110, 80, 18, 0.22);
}

.hero-panel {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 225, 0.92));
    border: 1px solid rgba(157, 122, 33, 0.18);
    box-shadow: 0 32px 70px rgba(32, 23, 9, 0.12);
}

.hero-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.mini-badge,
.service-tag,
.pricing-badge,
.result-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-badge,
.service-tag {
    background: var(--accent-soft-2);
    color: var(--accent-dark);
}

.result-pill {
    color: var(--heading-color);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border-color);
}

.system-stack {
    display: grid;
    gap: 16px;
}

.system-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(157, 122, 33, 0.12);
}

.system-step span,
.step-card span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-color), #ddc886);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.system-step h3,
.step-card h3,
.service-card h3,
.proof-card h3,
.industry-card h3,
.pricing-card strong,
.mini-card h3,
.contact-card h3,
.panel-side h4,
.spotlight-card h3,
.calendar-card h2 {
    font-size: 1.32rem;
    margin-bottom: 8px;
}

.system-step p,
.service-card p,
.proof-card p,
.industry-card p,
.pricing-card p,
.mini-card p,
.contact-card p,
.contact-card a,
.panel-side p {
    margin-bottom: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.proof-chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.proof-chip-row span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(157, 122, 33, 0.12);
    font-size: 10px;
    font-weight: 700;
    color: var(--default-color);
}

.trust-strip {
    margin-top: 28px;
    padding: 16px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.trust-strip span {
    color: var(--default-color);
    font-weight: 700;
    font-size: 12px;
}

.card-shell,
.contact-side,
.lead-form,
.panel-side,
.calendar-card {
    padding: 26px;
}

.problem-card,
.solution-card {
    height: 100%;
}

.solution-grid,
.metric-stack,
.contact-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.solution-grid div,
.metric-stack div,
.contact-mini-grid div {
    min-width: 0;
    padding: 18px;
    border-radius: 20px;
    background: rgba(247, 241, 225, 0.58);
}

.solution-grid strong,
.metric-stack strong,
.contact-mini-grid strong {
    display: block;
    color: var(--heading-color);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.solution-grid span,
.metric-stack span,
.contact-mini-grid span {
    font-size: 12px;
    color: var(--muted-color);
}

.contact-mini-grid {
    align-items: stretch;
}

.contact-mini-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-mini-item-wide {
    grid-column: 1 / -1;
}

.contact-mini-item span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-mini-item strong,
.contact-mini-item a {
    display: block;
    color: var(--heading-color);
    font-size: clamp(0.92rem, 1.25vw, 1rem);
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.icon-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--default-color);
    font-weight: 600;
    font-size: 12px;
}

.icon-list i {
    color: var(--accent-dark);
    font-size: 18px;
    margin-top: 3px;
}

.icon-list.compact {
    gap: 10px;
}

.service-card,
.pricing-card,
.proof-card,
.industry-card,
.mini-card,
.contact-card {
    padding: 24px;
    height: 100%;
}

.featured-service,
.featured-pricing {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 225, 0.9));
    border-color: rgba(202, 164, 74, 0.32);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #decb8f);
    color: #fff;
}

.pricing-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.pricing-head span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.steps-row .step-card {
    padding: 28px;
    height: 100%;
}

.step-card span {
    margin-bottom: 22px;
}

.why-grid .mini-card,
.mini-card,
.contact-card {
    text-align: left;
}

.mini-card i,
.contact-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 18px;
    background: var(--accent-soft-2);
    color: var(--accent-dark);
    font-size: 18px;
}

.page-hero {
    padding: 80px 0 46px;
}

.spotlight-card,
.dark-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 225, 0.82));
}

.dark-card {
    background: linear-gradient(180deg, rgba(35, 26, 12, 0.96), rgba(71, 49, 18, 0.94));
    border-color: rgba(255, 255, 255, 0.08);
}

.dark-card,
.dark-card p,
.dark-card span,
.dark-card h2,
.dark-card strong {
    color: #fff;
}

.tall-card {
    height: 100%;
}

.page-visual-card {
    min-height: 340px;
}

.compact-image {
    margin-bottom: 22px;
    min-height: 220px;
}

.dark-image {
    border-color: rgba(255, 255, 255, 0.08);
}

.service-tabs {
    display: grid;
    gap: 28px;
}

.service-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tab {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.84);
    color: var(--default-color);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.service-tab.active,
.service-tab:hover {
    background: linear-gradient(135deg, var(--accent-color), #ddc986);
    border-color: transparent;
    color: #fff;
    transform: translateY(-1px);
}

.service-panel {
    display: none;
    padding: 26px;
}

.service-panel.active {
    display: block;
}

.panel-side {
    background: linear-gradient(180deg, rgba(247, 241, 225, 0.84), rgba(255, 255, 255, 0.92));
    height: 100%;
}

.panel-image {
    height: 180px;
    margin-bottom: 18px;
}

.cta-banner {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 225, 0.88));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

.lead-form h2,
.calendar-card h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--heading-color);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-label span {
    color: var(--muted-color);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.form-control,
.form-select {
    border-radius: 18px;
    border: 1px solid rgba(157, 122, 33, 0.18);
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--default-color);
    box-shadow: none;
    font-size: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(202, 164, 74, 0.48);
    box-shadow: 0 0 0 0.18rem rgba(202, 164, 74, 0.14);
}

textarea.form-control {
    min-height: 140px;
}

.form-note {
    font-size: 12px;
    color: var(--muted-color);
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
    display: none;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 700;
}

.php-email-form .loading {
    background: rgba(255, 255, 255, 0.9);
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    border-top-color: rgba(202, 164, 74, 0.2);
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

.php-email-form .error-message {
    background: #b42020;
    color: #fff;
}

.php-email-form .sent-message {
    background: #1f7a47;
    color: #fff;
}

.mini-form textarea.form-control {
    min-height: 110px;
}

.calendar-note {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(247, 241, 225, 0.7);
    color: var(--muted-color);
}

.calendar-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--heading-color);
}

.footer {
    padding: 74px 0 28px;
    background: #fffdfa;
    border-top: 1px solid rgba(157, 122, 33, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr 0.9fr;
    gap: 28px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer h3 {
    font-size: 1.08rem;
    margin-bottom: 16px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: var(--muted-color);
    font-weight: 600;
    font-size: 12px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-contact span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(157, 122, 33, 0.08);
}

.footer-bottom p,
.footer p {
    margin-bottom: 0;
}

.footer-btn {
    margin-top: 18px;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #ddc986);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    box-shadow: 0 18px 30px rgba(202, 164, 74, 0.28);
    transition: all 0.3s ease;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.scroll-top:hover {
    color: #fff;
    transform: translateY(-2px);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes loaderFloat {
    0%,
    100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.03);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}

@keyframes heroImageFloat {
    0% {
        transform: scale(1.08) translate3d(0, 0, 0);
    }
    50% {
        transform: scale(1.11) translate3d(-0.8%, -1.2%, 0);
    }
    100% {
        transform: scale(1.09) translate3d(0.8%, 0.4%, 0);
    }
}

@keyframes heroAuroraPulse {
    0%,
    100% {
        opacity: 0.82;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes heroGlowBreath {
    0%,
    100% {
        opacity: 0.82;
    }
    50% {
        opacity: 1;
    }
}

@keyframes heroSparkleDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate3d(0, -1.6%, 0);
        opacity: 0.75;
    }
}

@keyframes heroSparkleFlicker {
    0%,
    100% {
        opacity: 0.35;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.82;
    }
    75% {
        opacity: 0.48;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 68px 0;
    }
    .hero {
        padding-top: 72px;
    }
    .hero-stats,
    .solution-grid,
    .metric-stack,
    .contact-mini-grid,
    .hero-top-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .split-intro,
    .cta-banner {
        flex-direction: column;
        align-items: start;
    }
    .trust-strip {
        border-radius: 28px;
        flex-direction: column;
        align-items: start;
    }
    .page-visual-card {
        min-height: 280px;
    }
    .hero-stats-side .hero-stat {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .header-shell {
        padding: 10px 0;
    }
    .logo img {
        width: 48px;
        height: 48px;
    }
    .logo-name {
        font-size: 18px;
    }
    .hero h1,
    .page-hero h1 {
        font-size: 1.8rem;
        line-height: 1.12;
    }
    .section-intro h2 {
        font-size: 1.5rem;
    }
    .hero-text,
    p,
    .trust-strip span {
        font-size: 13px;
    }
    .hero-actions,
    .cta-actions {
        width: 100%;
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .card-shell,
    .service-card,
    .step-card,
    .proof-card,
    .industry-card,
    .pricing-card,
    .mini-card,
    .contact-card,
    .service-panel,
    .contact-side,
    .hero-panel {
        padding: 20px;
        border-radius: 24px;
    }
    .service-tab-list {
        flex-direction: column;
    }
    .service-tab {
        width: 100%;
    }
    .hero-stat strong {
        font-size: 14px;
    }
    .language-picker-panel {
        padding: 16px;
        border-radius: 24px;
        box-shadow: 0 18px 34px rgba(32, 23, 9, 0.1);
    }
    .language-picker-grid {
        grid-template-columns: 1fr;
    }
    .system-step h3,
    .step-card h3,
    .service-card h3,
    .proof-card h3,
    .industry-card h3,
    .pricing-card strong,
    .mini-card h3,
    .contact-card h3,
    .panel-side h4,
    .spotlight-card h3,
    .calendar-card h2 {
        font-size: 1.2rem;
    }
    .main-image-card,
    .page-visual-card,
    .panel-image,
    .compact-image {
        min-height: 200px;
    }
    .loader-mark {
        width: 124px;
        height: 124px;
    }
    .loader-mark img {
        width: 64px;
        height: 64px;
    }
}
