* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --text-body: #4d6277;
            --text-muted: #5c6f81;
            --text-heading: #304b63;
            --leading-snug: 1.35;
            --leading-normal: 1.62;
            --leading-relaxed: 1.72;
            --section-pad-x: clamp(20px, 4vw, 40px);
            --section-gap-y: clamp(48px, 6vw, 72px);
            --fab-btn: 56px;
            --fab-gap: 12px;
            --fab-bottom: 25px;
            --fab-right: 25px;
            --demo-fab-gap: 16px;
            --demo-strip-w: 44px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: var(--leading-normal);
            color: var(--text-body);
            background: #f5f2ea;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

/* Force consistent UI font in English mode */
body.lang-en,
body.lang-en * {
    font-family: var(--font-sans);
}

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-sans);
            color: var(--text-heading);
            font-weight: 700;
            line-height: var(--leading-snug);
            letter-spacing: -0.02em;
        }

        p {
            line-height: var(--leading-relaxed);
        }

        input, textarea, button, select {
            font-family: inherit;
        }

        /* TOP BAR */
        .top-bar {
            position: sticky;
            top: 0;
            z-index: 10050;
            width: 100%;
            background: #b7d4dc;
            padding: 15px 20px;
            padding-top: max(15px, env(safe-area-inset-top, 0px));
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: clamp(8px, 2vw, 18px);
            box-shadow: 0 2px 12px rgba(31, 52, 71, 0.08);
        }

        .top-left {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-shrink: 0;
            margin-right: auto;
        }

        .top-logo {
            height: 60px;
            width: auto;
            display: block;
        }

        .nav-wrap {
            flex: 0 1 auto;
            min-width: 0;
        }

        .top-bar .nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 6px 18px;
            margin: 0;
            padding: 0;
        }

        button.top-lang-btn {
            padding: 8px 12px;
            border: none;
            background: #f59b42;
            color: #fff;
            margin: 0;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.02em;
            line-height: 1;
            min-height: 36px;
        }

        .top-bar .nav a {
            text-decoration: none;
            color: #304b63;
            margin: 0;
            font-size: 17px;
            font-weight: 600;
            letter-spacing: 0.01em;
        }

        .top-bar .nav a:hover {
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .top-bar .nav a[aria-current="page"] {
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 2px;
        }

        .top-lang {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .top-bar-trail {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px;
            flex-shrink: 0;
        }

        .nav-toggle {
            display: none;
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            padding: 0;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.35);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            transition: background 0.2s ease;
        }

        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.55);
        }

        .nav-toggle:focus-visible {
            outline: 2px solid #304b63;
            outline-offset: 2px;
        }

        .nav-toggle-bar {
            display: block;
            width: 22px;
            height: 2px;
            background: #304b63;
            border-radius: 1px;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        .top-bar.nav-open .nav-toggle-bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .top-bar.nav-open .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }

        .top-bar.nav-open .nav-toggle-bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-backdrop {
            display: none;
            -webkit-appearance: none;
            appearance: none;
            font: inherit;
        }

        @media (max-width: 768px) {

            .nav-backdrop {
                display: block;
                position: fixed;
                inset: 0;
                z-index: 10040;
                background: rgba(31, 52, 71, 0.42);
                border: 0;
                padding: 0;
                margin: 0;
                cursor: pointer;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.25s ease;
                border-radius: 0;
            }

            .top-bar.nav-open .nav-backdrop {
                opacity: 1;
                pointer-events: auto;
            }

        }

        @media (max-width: 768px) {

            .top-bar {
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: center;
                padding: 10px 12px;
                padding-top: max(10px, env(safe-area-inset-top, 0px));
                row-gap: 8px;
                column-gap: 8px;
            }

            .top-logo {
                height: 48px;
            }

            .top-left {
                margin-right: 0;
                flex: 1 1 auto;
                min-width: 0;
                max-width: calc(100% - 210px);
                order: 1;
                position: relative;
                z-index: 10046;
            }

            .top-bar-trail {
                order: 2;
                margin-left: auto;
                position: relative;
                z-index: 10046;
                gap: 6px;
            }

            .nav-toggle {
                display: inline-flex;
                width: 40px;
                height: 40px;
            }

            .nav-wrap {
                order: 3;
                flex-basis: 100%;
                width: 100%;
                max-width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.38s ease;
                position: relative;
                z-index: 10045;
            }

            .top-bar.nav-open .nav-wrap {
                max-height: min(72vh, 440px);
                overflow-y: auto;
                margin-top: 10px;
                padding: 8px 10px 2px;
                border-top: 1px solid rgba(48, 75, 99, 0.14);
                background: #ffffff;
                border-radius: 14px;
                box-shadow: 0 10px 25px rgba(31, 52, 71, 0.16);
            }

            .top-bar .nav {
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0;
            }

            .top-bar .nav a {
                padding: 14px 10px;
                border-bottom: 1px solid rgba(48, 75, 99, 0.14);
                font-size: 16px;
                color: #1f3547;
                font-weight: 700;
            }

            .top-bar .nav a:last-child {
                border-bottom: none;
            }

            .top-bar .nav a[aria-current="page"] {
                color: #f07e1c;
            }

        }

        /* CONTACT PAGE */
        .contact-page {
            padding: clamp(36px, 5vw, 52px) var(--section-pad-x) var(--section-gap-y);
        }

        .contact-container {
            max-width: 1480px;
            margin: auto;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
            gap: clamp(32px, 4vw, 48px);
            align-items: start;
        }

        /* LEFT */
        .contact-content h5 {
            font-size: clamp(18px, 1.25vw, 24px);
            color: #f59b42;
            margin-bottom: clamp(12px, 2vw, 16px);
            font-weight: 700;
        }

        .contact-content h1 {
            font-size: clamp(34px, 5vw, 54px);
            color: var(--text-heading);
            line-height: 1.14;
            margin-bottom: clamp(18px, 3vw, 26px);
            font-weight: 800;
            max-width: 18ch;
        }

        .contact-content {
            min-width: 0;
        }

        .contact-page-logo {
            height: 56px;
            width: auto;
            display: block;
            margin-bottom: 14px;
        }

        .contact-content p {
            font-size: clamp(17px, 1.2vw, 18px);
            color: var(--text-muted);
            line-height: var(--leading-relaxed);
            margin-bottom: clamp(10px, 1.25vw, 14px);
            max-width: 46ch;
        }

        /* HERO PHOTO (no boxed frame — matches page background) */
        .contact-page-photo {
            justify-self: start;
            align-self: start;
            width: min(100%, 580px);
            max-height: clamp(380px, 56vh, 580px);
            height: auto;
            object-fit: contain;
            object-position: left center;
            display: block;
            margin: 0;
            padding: 0;
            background-color: #f5f2ea;
        }

        .tag {
            position: absolute;
            background: #fff;
            padding: 14px 18px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            color: #304b63;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .tag1 {
            top: 30px;
            left: -15px;
        }

        .tag2 {
            bottom: 110px;
            right: -15px;
        }

        .tag3 {
            bottom: 30px;
            left: 20px;
        }

        @media(max-width:992px) {

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-page-photo {
                max-height: clamp(300px, 46vh, 460px);
                width: min(100%, 480px);
            }

        }

        /* MOBILE */
        @media(max-width:768px) {

            .top-bar {
                gap: 10px;
            }

            .contact-page {
                padding: 45px 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .contact-content h1 {
                font-size: 34px;
            }

            .contact-content p {
                font-size: 16px;
            }

            .contact-page-photo {
                margin-top: 8px;
                max-height: min(440px, 82vw);
                width: min(100%, 100%);
                object-position: left center;
            }

            .contact-form-section .contact-form-outer {
                padding: 0 4px;
            }

            .contact-form-intro h2 {
                font-size: 26px;
            }

            .contact-form-intro>.form-intro-line {
                font-size: 15px;
            }

            .contact-form-card {
                padding: 24px 20px !important;
            }

            .tag {
                font-size: 13px;
                padding: 10px 14px;
            }

            .tag1 {
                left: 10px;
            }

            .tag2 {
                right: 10px;
            }

            .tag3 {
                left: 10px;
            }

        }

        /* CONTACT MESSAGE FORM */
        .contact-form-section {
            padding: clamp(40px, 5vw, 56px) var(--section-pad-x) clamp(52px, 6vw, 68px);
            background: linear-gradient(180deg, #efe9df 0%, #f5f2ea 45%, #f8f6f2 100%);
            scroll-margin-top: 100px;
        }

        .contact-form-outer {
            max-width: 920px;
            margin: 0 auto;
        }

        .contact-form-intro {
            text-align: center;
            margin-bottom: 28px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-form-intro .form-badge {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #304b63;
            background: rgba(183, 212, 220, 0.55);
            padding: 8px 18px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .contact-form-intro h2 {
            font-size: clamp(26px, 3.6vw, 34px);
            font-weight: 800;
            color: var(--text-heading);
            line-height: var(--leading-snug);
            margin-bottom: clamp(10px, 1.5vw, 14px);
            letter-spacing: -0.02em;
        }

        .contact-form-intro>.form-intro-line {
            font-size: clamp(16px, 1.2vw, 17px);
            color: var(--text-muted);
            line-height: var(--leading-relaxed);
            margin: 0 auto;
            max-width: 36rem;
        }

        .contact-form-card {
            background: #fffefd;
            border-radius: 28px;
            padding: 38px 42px 40px;
            border: 1px solid rgba(48, 75, 99, 0.08);
            box-shadow:
                0 4px 0 rgba(245, 155, 66, 0.22),
                0 24px 52px rgba(48, 75, 99, 0.11);
        }

        .contact-message-form {
            display: block;
        }

        .form-fields-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px 24px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            text-align: left;
        }

        .form-field-span2 {
            grid-column: 1 / -1;
        }

        .form-field label {
            font-size: 14px;
            font-weight: 700;
            color: #304b63;
            margin-bottom: 8px;
        }

        .form-field label .req {
            color: #f59b42;
            font-weight: 800;
        }

        .form-field input,
        .form-field textarea {
            width: 100%;
            padding: 14px 16px;
            font-size: 16px;
            font-family: inherit;
            border: 1px solid #d5dde4;
            border-radius: 14px;
            background: #fafbfc;
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .form-field textarea {
            min-height: 132px;
            resize: vertical;
            line-height: var(--leading-relaxed);
        }

        .form-field input:hover,
        .form-field textarea:hover {
            border-color: #b7d4dc;
            background: #fff;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: #7eb8c6;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(183, 212, 220, 0.45);
        }

        .form-actions {
            margin-top: 26px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 14px;
        }

        .form-submit-btn {
            display: block;
            width: 100%;
            padding: 16px 24px;
            font-size: 17px;
            font-weight: 800;
            font-family: inherit;
            color: #fff;
            background: linear-gradient(135deg, #f5a84d 0%, #f59b42 50%, #e8892e 100%);
            border: none;
            border-radius: 14px;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(245, 155, 66, 0.35);
            transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
        }

        .form-submit-btn:hover {
            filter: brightness(1.05);
            box-shadow: 0 10px 28px rgba(245, 155, 66, 0.42);
        }

        .form-submit-btn:active {
            transform: translateY(1px);
        }

        .form-feedback {
            font-size: 15px;
            font-weight: 600;
            color: #2d6a4f;
            text-align: center;
            padding: 12px 16px;
            border-radius: 12px;
            background: rgba(45, 106, 79, 0.1);
            border: 1px solid rgba(45, 106, 79, 0.2);
            min-height: 0;
        }

        .form-feedback:empty {
            display: none;
        }

        @media(max-width:640px) {
            .form-fields-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .form-field-span2 {
                grid-column: 1;
            }
        }

        @media(max-width:768px) {
            .contact-form-section {
                padding: 36px 20px 48px;
            }

            .contact-form-intro h2 {
                font-size: 28px;
            }

            .contact-form-intro>.form-intro-line {
                font-size: 16px;
            }

            .contact-form-card {
                padding: 28px 22px 30px;
                border-radius: 22px;
            }
        }

        /* SIMPLE CONTACT STRIP */
        .contact-info {
            padding: clamp(40px, 5vw, 52px) var(--section-pad-x);
            background: #f5f2ea;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .contact-info-container {
            max-width: 1300px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            flex: 1;
            min-width: 260px;
        }

        .contact-item-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(145deg, #d4eaf0, #b7d4dc);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 18px rgba(48, 75, 99, 0.12);
            overflow: visible;
        }

        .contact-item-emoji {
            font-size: 3.25rem;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        a.contact-value-link {
            color: inherit;
            text-decoration: none;
            font-weight: 600;
        }

        a.contact-value-link:hover {
            color: #f59b42;
            text-decoration: underline;
        }

        .contact-item-body {
            min-width: 0;
        }

        .strip-addr-note {
            display: block;
            margin-top: 4px;
            font-size: 14px;
            color: #888;
        }

        .contact-item h4 {
            font-size: 17px;
            color: var(--text-heading);
            margin-bottom: 6px;
            font-weight: 700;
        }

        .contact-item p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: var(--leading-normal);
        }

        .contact-item span {
            font-size: 14px;
            color: #999;
        }

        @media(max-width:768px) {

            .contact-info {
                padding: 35px 20px;
            }

            .contact-info-container {
                flex-direction: column;
                gap: 25px;
            }

            .contact-item-icon {
                width: 48px;
                height: 48px;
            }

            .contact-item-emoji {
                font-size: 2.7rem;
            }

            .contact-item h4 {
                font-size: 16px;
            }

            .contact-item p {
                font-size: 14px;
            }

        }

        /* EXTRA INFO SECTION — stepped list (no cards), matches site palette */
        .contact-extra {
            padding: clamp(40px, 6vw, 60px) var(--section-pad-x);
            background: linear-gradient(165deg, #e9f1f4 0%, #f5f2ea 42%, #f0eae3 100%);
            border-top: 1px solid rgba(48, 75, 99, 0.06);
            border-bottom: 1px solid rgba(48, 75, 99, 0.06);
        }

        .contact-extra-inner {
            max-width: 860px;
            margin: 0 auto;
        }

        .contact-extra-heading {
            margin-bottom: clamp(22px, 3vw, 32px);
            padding-bottom: clamp(18px, 2.5vw, 24px);
            border-bottom: 2px solid rgba(245, 155, 66, 0.45);
        }

        .contact-extra-heading h2 {
            font-size: clamp(28px, 3.4vw, 38px);
            margin-bottom: 12px;
            color: var(--text-heading);
        }

        .contact-extra-heading > p {
            font-size: clamp(15px, 1.35vw, 17px);
            color: var(--text-muted);
            max-width: 56ch;
            line-height: var(--leading-relaxed);
            margin: 0;
        }

        .contact-extra-list {
            list-style: none;
            margin: 0;
            padding: 0;
            counter-reset: extra-step;
        }

        .contact-extra-step {
            display: grid;
            grid-template-columns: clamp(38px, 5vw, 44px) minmax(0, 1fr);
            gap: clamp(14px, 2vw, 20px);
            align-items: start;
            padding: clamp(18px, 2.8vw, 24px) 0;
            border-bottom: 1px solid rgba(48, 75, 99, 0.1);
        }

        .contact-extra-step:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .contact-extra-step-marker {
            width: clamp(38px, 5vw, 42px);
            height: clamp(38px, 5vw, 42px);
            border-radius: 50%;
            background: linear-gradient(145deg, #c5dce3 0%, #b7d4dc 55%, #a8cad4 100%);
            border: 2px solid rgba(245, 155, 66, 0.55);
            box-shadow: 0 4px 12px rgba(48, 75, 99, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 15px;
            font-weight: 800;
            color: var(--text-heading);
        }

        .contact-extra-step-marker::before {
            counter-increment: extra-step;
            content: counter(extra-step);
        }

        .contact-extra-step-body h3 {
            font-size: clamp(16px, 1.35vw, 18px);
            margin: 0 0 6px 0;
            color: var(--text-heading);
            font-weight: 700;
        }

        .contact-extra-step-body p {
            margin: 0;
            font-size: clamp(14px, 1.25vw, 16px);
            color: var(--text-body);
            line-height: var(--leading-relaxed);
        }

        @media(max-width: 768px) {
            .contact-extra {
                padding: 36px 18px 44px;
            }

            .contact-extra-heading > p {
                max-width: none;
            }

            .contact-extra-step {
                grid-template-columns: 36px minmax(0, 1fr);
                gap: 12px;
                padding: 16px 0;
            }

            .contact-extra-step-marker {
                width: 36px;
                height: 36px;
                font-size: 14px;
                margin-top: 0;
            }
        }

        /* Sticky column: Book free demo + WhatsApp + Call (aligned like home) */
        .contact-fab-stack {
            position: fixed;
            right: calc(var(--fab-right) + env(safe-area-inset-right, 0px));
            bottom: calc(var(--fab-bottom) + env(safe-area-inset-bottom, 0px));
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-fab-stack .demo-tab {
            margin-bottom: var(--demo-fab-gap);
        }

        .contact-fab-stack .whatsapp {
            margin-bottom: var(--fab-gap);
        }

        .contact-fab-stack .btn {
            width: var(--fab-btn);
            height: var(--fab-btn);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            text-decoration: none;
            flex-shrink: 0;
        }

        .contact-fab-stack .whatsapp {
            background: #25d366;
        }

        .contact-fab-stack .phone {
            background: #007bff;
        }

        .contact-fab-stack .btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        .contact-fab-stack svg {
            width: 26px;
            height: 26px;
        }

        @media (max-width: 600px) {
            :root {
                --fab-btn: 50px;
                --fab-gap: 12px;
                --fab-bottom: 20px;
                --fab-right: 20px;
                --demo-fab-gap: 14px;
                --demo-strip-w: 42px;
            }

            .contact-fab-stack svg {
                width: 22px;
                height: 22px;
            }

            .demo-tab {
                font-size: 11px;
                min-height: 108px;
                padding: 10px 7px;
                border-radius: 11px;
            }
        }

        /* Vertical “Book for free demo” strip — stacked above FAB row */
        .demo-tab {
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            bottom: auto;
            z-index: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            align-self: center;
            flex-shrink: 0;
            width: var(--demo-strip-w);
            min-height: 118px;
            max-height: min(220px, calc(100vh - 120px));
            padding: 12px 8px;
            box-sizing: border-box;
            background: #ff6a00;
            color: #fff;
            text-decoration: none;
            font-size: clamp(11px, 2.6vw, 13px);
            font-weight: 600;
            letter-spacing: 0.06em;
            line-height: 1.35;
            text-align: center;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            border-radius: 12px;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
            transition: background 0.25s ease, box-shadow 0.25s ease;
        }

        .demo-tab:hover {
            background: #e65f00;
            box-shadow: 0 7px 22px rgba(0, 0, 0, 0.28);
        }
