:root {
    color-scheme: only light;
    touch-action: manipulation;
    --color-bg: #ffffff;
    --color-text: #0f172a;
    --color-text-secondary: #475569;
    --color-border: #e2e8f0;
    --color-accent: #2563eb;
    --color-accent-violet: #7c3aed;
    --radius: 1.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.02);
}
body {
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

/* Scrollbars stay subtle, but use the same blue-to-violet language as Webdo. */
html {
    scrollbar-color: #4f46e5 #eff6ff;
    scrollbar-width: thin;
}
html::-webkit-scrollbar { width: .8rem; height: .8rem; }
html::-webkit-scrollbar-track {
    border: 3px solid #fff;
    border-radius: 9999px;
    background: #eff6ff;
}
html::-webkit-scrollbar-thumb {
    min-height: 3rem;
    border: 3px solid #fff;
    border-radius: 9999px;
    background: linear-gradient(180deg, #2563eb, #7c3aed);
}
html::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #1d4ed8, #6d28d9); }
html::-webkit-scrollbar-corner { background: #eff6ff; }

.webdo-header-modules-menu__grid,
.webdo-language-switch__menu,
.phone-country__options {
    scrollbar-color: #4f46e5 #eef2ff;
    scrollbar-width: thin;
}
.webdo-header-modules-menu__grid::-webkit-scrollbar,
.webdo-language-switch__menu::-webkit-scrollbar,
.phone-country__options::-webkit-scrollbar { width: .55rem; }
.webdo-header-modules-menu__grid::-webkit-scrollbar-track,
.webdo-language-switch__menu::-webkit-scrollbar-track,
.phone-country__options::-webkit-scrollbar-track {
    border-radius: 9999px;
    background: #eef2ff;
}
.webdo-header-modules-menu__grid::-webkit-scrollbar-thumb,
.webdo-language-switch__menu::-webkit-scrollbar-thumb,
.phone-country__options::-webkit-scrollbar-thumb {
    border: 2px solid #eef2ff;
    border-radius: 9999px;
    background: linear-gradient(180deg, #3b82f6, #7c3aed);
}
.gradient-text {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-bg {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-violet) 100%);
}
.card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

/* The module catalogue mirrors the launcher visible after logging in to Shop. */
.webdo-modules-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f8fafc;
}
.webdo-modules-section::before,
.webdo-modules-section::after {
    position: absolute;
    z-index: -1;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    content: "";
    filter: blur(64px);
    opacity: .7;
}
.webdo-modules-section::before {
    top: -7rem;
    right: -5rem;
    background: linear-gradient(225deg, rgba(204,251,241,.7), transparent 72%);
}
.webdo-modules-section::after {
    bottom: -8rem;
    left: -6rem;
    background: linear-gradient(45deg, rgba(209,250,229,.7), transparent 72%);
}
.webdo-modules-section__content { position: relative; z-index: 1; }
.webdo-applications-intro {
    max-width: 44rem;
    margin: 0 auto 4rem;
    text-align: center;
}
.webdo-applications-intro h2 { text-wrap: balance; }
.webdo-applications-intro > p {
    max-width: 41rem;
    margin-right: auto;
    margin-left: auto;
}
.webdo-modules-badge {
    display: inline-block;
    padding: .375rem 1rem;
    border: 1px solid #ccfbf1;
    border-radius: 9999px;
    background: #f0fdfa;
    color: #0f766e;
    font-size: .875rem;
    font-weight: 500;
}
.webdo-carousel { position: relative; }
.webdo-horizontal-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .4rem .25rem 1.15rem;
    scroll-behavior: smooth;
    scroll-padding-inline: .25rem;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}
.webdo-horizontal-carousel .service-card-link,
.webdo-horizontal-carousel .webdo-shop-module-card {
    flex: 0 0 clamp(15.5rem, 22vw, 17.5rem);
    scroll-snap-align: start;
}
.webdo-horizontal-carousel::-webkit-scrollbar { display: none; }
.webdo-carousel__control {
    position: absolute;
    top: calc(50% - .55rem);
    z-index: 2;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe3ee;
    border-radius: 9999px;
    background: rgba(255,255,255,.96);
    color: #0b2a55;
    box-shadow: 0 .75rem 1.6rem rgba(15,23,42,.16);
    cursor: pointer;
    transition: background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.webdo-carousel__control:hover,
.webdo-carousel__control:focus-visible {
    background: #0b2a55;
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(15,23,42,.24);
    outline: 0;
}
.webdo-carousel__control--previous { left: -1.25rem; }
.webdo-carousel__control--next { right: -1.25rem; }
.webdo-carousel__control--previous:hover { transform: translateX(-2px); }
.webdo-carousel__control--next:hover { transform: translateX(2px); }
.webdo-carousel__control[hidden] { display: none; }
.webdo-shop-module-card {
    position: relative;
    height: 100%;
    padding: 1.25rem;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 .35rem 1.2rem rgba(15,23,42,.055);
    transition: transform .3s ease, box-shadow .3s ease;
}
.webdo-shop-module-card--link {
    display: block;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
.webdo-shop-module-card:hover {
    transform: translateY(-.25rem) scale(1.02);
    box-shadow: 0 .9rem 1.8rem rgba(15,23,42,.12);
}
.webdo-shop-module-icon {
    display: flex;
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1.35rem;
    color: #fff;
    box-shadow: 0 .9rem 1.75rem rgba(15,23,42,.19), inset 0 1px 0 rgba(255,255,255,.3);
    transition: transform .3s ease, box-shadow .3s ease;
}
.webdo-shop-module-card:hover .webdo-shop-module-icon {
    transform: scale(1.05);
    box-shadow: 0 1.1rem 2rem rgba(15,23,42,.23), inset 0 1px 0 rgba(255,255,255,.3);
}
.webdo-shop-module-card__action {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    color: #1d4ed8;
    font-size: .82rem;
    font-weight: 700;
}
.webdo-shop-module-card--link:hover .webdo-shop-module-card__action { color: #0b2a55; }
.webdo-shop-module-icon__svg { display: block; width: 2.5rem; height: 2.5rem; filter: drop-shadow(0 1px 1px rgba(15,23,42,.2)); }
.webdo-application-hero-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 1.8rem;
}
.webdo-application-hero-icon .webdo-shop-module-icon__svg { width: 3.5rem; height: 3.5rem; }
.webdo-service-hero-icon--mobile { background: linear-gradient(135deg, #f472b6, #ec4899 52%, #7c3aed); }
.webdo-application-page-hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}
@media (min-width: 64rem) {
    .webdo-application-page-hero {
        padding-top: 4.25rem;
        padding-bottom: 5rem;
    }
}
.webdo-shop-module-icon--ai-assistant { background: linear-gradient(135deg, #c084fc, #8b5cf6 52%, #2563eb); }
.webdo-shop-module-icon--web { background: linear-gradient(135deg, #38bdf8, #0ea5e9 52%, #2563eb); }
.webdo-shop-module-icon--shop { background: linear-gradient(135deg, #e879f9, #ec4899 52%, #f43f5e); }
.webdo-shop-module-icon--pos { background: linear-gradient(135deg, #22d3ee, #3b82f6 52%, #4f46e5); }
.webdo-shop-module-icon--crm { background: linear-gradient(135deg, #fb923c, #f97316 52%, #ef4444); }
.webdo-shop-module-icon--sales { background: linear-gradient(135deg, #fcd34d, #fbbf24 52%, #f97316); }
.webdo-shop-module-icon--finance { background: linear-gradient(135deg, #34d399, #10b981 52%, #0d9488); }
.webdo-shop-module-icon--employee { background: linear-gradient(135deg, #22d3ee, #14b8a6 52%, #059669); }
.webdo-shop-module-icon--hr { background: linear-gradient(135deg, #f472b6, #d946ef 52%, #7c3aed); }
.webdo-shop-module-icon--fleet { background: linear-gradient(135deg, #94a3b8, #0891b2 52%, #1d4ed8); }
.webdo-shop-module-icon--work { background: linear-gradient(135deg, #818cf8, #6366f1 52%, #7c3aed); }
.webdo-shop-module-icon--projects { background: linear-gradient(135deg, #60a5fa, #3b82f6 52%, #4f46e5); }
.webdo-shop-module-icon--boards { background: linear-gradient(135deg, #fbbf24, #f97316 52%, #f43f5e); }
.webdo-shop-module-icon--booking { background: linear-gradient(135deg, #22d3ee, #06b6d4 52%, #0284c7); }
.webdo-shop-module-icon--calendar { background: linear-gradient(135deg, #818cf8, #8b5cf6 52%, #c026d3); }
.webdo-shop-module-icon--stock { background: linear-gradient(135deg, #a3e635, #22c55e 52%, #059669); }
.webdo-shop-module-icon--dms { background: linear-gradient(135deg, #60a5fa, #3b82f6 52%, #4f46e5); }
.webdo-shop-module-icon--media { background: linear-gradient(135deg, #2dd4bf, #14b8a6 52%, #0891b2); }
.webdo-shop-module-icon--wiki { background: linear-gradient(135deg, #fde047, #f59e0b 52%, #f97316); }
.webdo-shop-module-icon--notifications { background: linear-gradient(135deg, #a78bfa, #8b5cf6 52%, #7e22ce); }
.webdo-shop-module-icon--activity { background: linear-gradient(135deg, #38bdf8, #3b82f6 52%, #4f46e5); }
.webdo-shop-module-icon--reviews { background: linear-gradient(135deg, #fb7185, #f43f5e 52%, #db2777); }
.webdo-shop-module-icon--subscriptions { background: linear-gradient(135deg, #c084fc, #8b5cf6 52%, #c026d3); }
.webdo-shop-module-icon--data-objects { background: linear-gradient(135deg, #94a3b8, #64748b 52%, #334155); }
.webdo-shop-module-icon--dashboard { background: linear-gradient(135deg, #a78bfa, #6366f1 52%, #2563eb); }
@media (max-width: 639px) {
    .webdo-horizontal-carousel .service-card-link,
    .webdo-horizontal-carousel .webdo-shop-module-card { flex-basis: calc(100vw - 4rem); }
    .webdo-carousel__control { width: 2.5rem; height: 2.5rem; }
    .webdo-carousel__control--previous { left: .25rem; }
    .webdo-carousel__control--next { right: .25rem; }
}
.service-card-link a {
    color: inherit;
    text-decoration: none;
}
.service-card-link:focus-within {
    outline: 3px solid rgba(37,99,235,0.16);
    outline-offset: 4px;
}
.tech-details summary,
.faq-details summary {
    list-style: none;
}
.tech-details summary::-webkit-details-marker,
.faq-details summary::-webkit-details-marker {
    display: none;
}
.tech-details summary i {
    transition: transform .2s ease;
}
.tech-details[open] summary i {
    transform: rotate(180deg);
}
.privacy-content {
    font-size: 1rem;
    line-height: 1.8;
}
.privacy-content h2 {
    margin-top: 2rem;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}
.privacy-content p + p {
    margin-top: 1rem;
}
.privacy-content a {
    color: #1d4ed8;
    font-weight: 700;
}
.icon-circle {
    width: 3.5rem; height: 3.5rem;
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: #fff;
    transition: box-shadow .25s ease;
}
.site-header a[href],
.site-header button,
.mobile-menu a[href],
.mobile-menu button {
    cursor: pointer;
}
.webdo-header-primary {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(15,23,42,.1);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
}
.webdo-header-primary__inner {
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: min-height .25s ease;
}
.webdo-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1;
    text-decoration: none;
}
.webdo-brand__tagline {
    max-width: 0;
    overflow: hidden;
    margin-left: 0;
    padding-left: 0;
    border-left: 0 solid var(--color-border);
    background: none;
    color: #64748b;
    -webkit-text-fill-color: #64748b;
    font-family: "Manrope", sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    opacity: 0;
    transform: translateX(-.55rem);
    transition: max-width .3s ease, margin-left .26s ease, padding-left .26s ease, border-width .26s ease, opacity .16s ease, transform .26s ease;
    white-space: nowrap;
}
.webdo-header-actions,
.webdo-header-contact-details {
    display: flex;
    align-items: center;
}
.webdo-header-actions {
    flex: 1;
    margin-left: clamp(2.5rem, 7vw, 7rem);
    min-width: 0;
    justify-content: space-between;
    gap: .7rem;
}
.webdo-header-preferences {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
    align-items: center;
    gap: .7rem;
}
.webdo-header-contact-details {
    gap: 1.1rem;
}
.webdo-header-contact-block {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-right: 1.1rem;
    border-right: 1px solid var(--color-border);
}
.webdo-header-contact-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #1d4ed8;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.webdo-header-contact-link i {
    color: #64748b;
    font-size: .95rem;
}
.webdo-header-contact-link--email {
    padding-left: 0;
    border-left: 0;
}
.webdo-header-contact-link:hover { color: #2563eb; }
.webdo-header-call-button {
    display: inline-flex;
    min-height: 2.18rem;
    padding: .45rem .82rem;
    align-items: center;
    border-radius: .48rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-violet) 100%);
    color: #fff;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37,99,235,0.28);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
    white-space: nowrap;
}
.webdo-header-call-button:hover { color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,0.36); filter: brightness(1.05); transform: translateY(-1px); }
.webdo-header-cta,
.webdo-mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.3rem;
    padding: .55rem .85rem;
    border-radius: .55rem;
    background: #0f172a;
    color: #fff;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
}
.webdo-header-cta:hover,
.webdo-mobile-menu-cta:hover {
    background: #1e293b;
    color: #fff;
    transform: translateY(-1px);
}
.webdo-header-navigation {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(196,181,253,.28);
    background:
        radial-gradient(circle at 9% -90%, rgba(96,165,250,.7), transparent 42%),
        radial-gradient(circle at 92% 45%, rgba(168,85,247,.38), transparent 47%),
        linear-gradient(108deg, #172554 0%, #312e81 53%, #4c1d95 100%);
    transition: opacity .2s ease, min-height .25s ease;
}
.webdo-header-navigation__inner {
    display: flex;
    min-height: 3.45rem;
    align-items: stretch;
    justify-content: center;
}
.webdo-desktop-nav {
    display: flex;
    align-items: stretch;
    gap: clamp(.2rem, 1.5vw, 1rem);
}
.webdo-desktop-nav a,
.webdo-desktop-nav__modules-toggle {
    display: flex;
    min-width: 2.9rem;
    padding: 0 .85rem;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.84);
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
    transition: color .16s ease, background .16s ease;
}
.webdo-desktop-nav a:hover:not([aria-current="page"]),
.webdo-desktop-nav__modules-toggle:hover,
.webdo-desktop-nav__modules-toggle[aria-expanded="true"] {
    background: rgba(255,255,255,.12);
    color: #fff;
}
.webdo-desktop-nav a[aria-current="page"] {
    background: rgba(255,255,255,.96);
    color: #4338ca;
}
.webdo-desktop-nav__home i { font-size: .95rem; }
.webdo-desktop-nav__modules-toggle { gap: .45rem; }
.webdo-desktop-nav__modules-toggle i { font-size: .65rem; transition: transform .18s ease; }
.webdo-desktop-nav__modules-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.webdo-header-modules-menu {
    position: absolute;
    top: 100%;
    right: max(1rem, calc((100vw - 80rem) / 2));
    z-index: 60;
    width: min(24rem, calc(100vw - 2rem));
    max-height: min(40rem, calc(100dvh - 8.5rem));
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 1.4rem 3rem rgba(15,23,42,.19);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-.55rem);
    transition: opacity .18s ease, transform .18s ease;
}
.webdo-header-modules-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(.55rem);
}
.webdo-header-modules-menu__inner > p {
    margin: 0;
    padding: .85rem 1rem .7rem;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.webdo-header-modules-menu__grid {
    display: grid;
    max-height: min(40rem, 100dvh - 8.5rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .25rem;
    overflow-y: auto;
    padding: .5rem;
    overscroll-behavior: contain;
}
.webdo-header-module-link {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: .75rem .3rem;
    border-radius: .75rem;
    color: #64748b;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: .69rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.webdo-header-module-link:hover,
.webdo-header-module-link:focus-visible { background: #f1f5f9; color: #0f172a; outline: 0; }
.webdo-header-module-link .webdo-shop-module-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: .5rem;
    border-radius: .75rem;
    box-shadow: 0 .45rem 1rem rgba(15,23,42,.18), inset 0 1px 0 rgba(255,255,255,.3);
    transition: transform .2s ease;
}
.webdo-header-module-link:hover .webdo-shop-module-icon,
.webdo-header-module-link:focus-visible .webdo-shop-module-icon { transform: scale(1.05); }
.webdo-header-module-link .webdo-shop-module-icon__svg { width: 1.85rem; height: 1.85rem; }
.webdo-mobile-menu-toggle { display: none; }
.site-header.is-scrolled {
    box-shadow: 0 .8rem 1.8rem rgba(7,23,45,.13);
}
@media (min-width: 901px) {
    .site-header.is-scrolled .webdo-header-primary__inner { min-height: 3.7rem; }
    .site-header.is-scrolled .webdo-header-navigation { display: none; }
    .site-header.is-scrolled .webdo-header-contact-details { display: none; }
    .site-header.is-scrolled .webdo-brand__tagline {
        max-width: 23rem;
        margin-left: .5rem;
        padding-left: .75rem;
        border-left-width: 1px;
        opacity: 1;
        transform: translateX(0);
    }
}

/* Language switch */
.webdo-language-switch {
    position: relative;
    width: max-content;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1;
}
.webdo-language-switch__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-width: 3.55rem;
    min-height: 2.18rem;
    padding: .28rem .42rem;
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    background: #fff;
    color: #475569;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.webdo-language-switch__toggle:hover,
.webdo-language-switch__toggle[aria-expanded="true"] {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: 0 2px 8px rgba(37,99,235,.1);
}
.webdo-language-switch__flag {
    display: block;
    width: 1.5rem;
    height: auto;
    overflow: hidden;
    border-radius: .15rem;
    box-shadow: 0 0 0 1px rgba(15,23,42,.14);
}
.webdo-language-switch__chevron {
    width: .8rem;
    height: .8rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform .2s;
}
.webdo-language-switch__toggle[aria-expanded="true"] .webdo-language-switch__chevron {
    transform: rotate(180deg);
}
.webdo-language-switch__menu {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    z-index: 60;
    display: grid;
    width: min(19rem, calc(100vw - 3rem));
    min-width: 0;
    max-height: min(18rem, calc(100dvh - 5rem));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .18rem;
    overflow-y: auto;
    padding: .3rem;
    border: 1px solid var(--color-border);
    border-radius: .75rem;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
}
.webdo-language-switch__menu[hidden] { display: none; }
.webdo-language-switch__link {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: .6rem;
    min-height: 2.3rem;
    padding: .4rem .5rem;
    border-radius: .5rem;
    color: #334155;
    font-size: .8125rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background .2s, color .2s;
}
.webdo-language-switch__link:hover,
.webdo-language-switch__link:focus-visible {
    background: #eff6ff;
    color: #1d4ed8;
}

@media (max-width: 30rem) {
    .webdo-language-switch__menu {
        position: fixed;
        top: 4.6rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-height: calc(100dvh - 5.6rem);
    }
}

/* The static Tailwind bundle does not include the md:block utility used by
   the desktop language switch, so keep that visibility rule with the switch. */
@media (min-width: 48rem) {
    .md\:block { display: block; }
}

/* Contact form */
.wd-form-label {
    display: block; margin-bottom: .375rem;
    font-size: .875rem; font-weight: 600; color: #334155;
}
.wd-form-input {
    width: 100%;
    padding: .875rem 1rem;
    font-size: .9375rem;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    background: #fff;
    color: var(--color-text);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.wd-form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.wd-form-input::placeholder { color: #94a3b8; }
.phone-country-field {
    position: relative;
    display: flex;
    width: 100%;
}
.phone-country {
    position: relative;
    z-index: 12;
    flex: 0 0 auto;
}
.phone-country__toggle {
    display: inline-flex;
    height: 100%;
    min-height: 3.25rem;
    padding: .75rem .7rem .75rem .85rem;
    align-items: center;
    gap: .45rem;
    border: 1px solid var(--color-border);
    border-right: 0;
    border-radius: 1rem 0 0 1rem;
    background: #f8fafc;
    color: #334155;
    cursor: pointer;
    font: inherit;
    font-size: .875rem;
    font-weight: 700;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.phone-country__toggle:hover,
.phone-country__toggle:focus-visible {
    border-color: var(--color-accent);
    background: #eff6ff;
    outline: 0;
}
.phone-country-field .wd-form-input {
    min-width: 0;
    border-radius: 0 1rem 1rem 0;
}
.phone-country-field:focus-within .wd-form-input {
    border-color: var(--color-accent);
}
.phone-country__flag {
    display: block;
    width: 1.5rem;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.14);
    border-radius: .2rem;
    box-shadow: 0 1px 2px rgba(15,23,42,.12);
}
.phone-country__flag svg {
    display: block;
    width: 100%;
    height: auto;
}
.phone-country__emoji {
    display: grid;
    width: 100%;
    aspect-ratio: 3 / 2;
    place-items: center;
    background: #f8fafc;
    font-size: 1rem;
    line-height: 1;
}
.phone-country__chevron {
    width: .8rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform .2s;
}
.phone-country__toggle[aria-expanded="true"] .phone-country__chevron {
    transform: rotate(180deg);
}
.phone-country__menu {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(19rem, calc(100vw - 3rem));
    max-height: 20rem;
    padding: .45rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    background: rgba(255,255,255,.98);
    box-shadow: 0 1.25rem 3rem rgba(15,23,42,.18);
}
.phone-country__menu[hidden] {
    display: none;
}
.phone-country__search {
    position: relative;
    display: block;
    margin-bottom: .35rem;
}
.phone-country__search svg {
    position: absolute;
    top: 50%;
    left: .75rem;
    width: 1rem;
    fill: none;
    stroke: #64748b;
    stroke-linecap: round;
    stroke-width: 1.7;
    transform: translateY(-50%);
    pointer-events: none;
}
.phone-country__search input {
    width: 100%;
    min-height: 2.55rem;
    padding: .55rem 2.1rem;
    border: 1px solid var(--color-border);
    border-radius: .72rem;
    outline: 0;
    background: #f8fafc;
    color: #1e293b;
    font: inherit;
    font-size: .875rem;
}
.phone-country__search input::placeholder {
    color: #64748b;
}
.phone-country__search input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.phone-country__search input::-webkit-search-cancel-button {
    cursor: pointer;
}
.phone-country__options {
    display: grid;
    min-height: 0;
    max-height: 15rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}
.phone-country__option {
    display: grid;
    grid-template-columns: 1.5rem minmax(0, 1fr) auto;
    width: 100%;
    padding: .68rem .7rem;
    align-items: center;
    gap: .65rem;
    border: 0;
    border-radius: .7rem;
    background: transparent;
    color: #334155;
    cursor: pointer;
    font: inherit;
    text-align: left;
}
.phone-country__option[hidden] {
    display: none;
}
.phone-country__option:hover,
.phone-country__option:focus-visible,
.phone-country__option[aria-selected="true"] {
    background: #eff6ff;
    color: #1d4ed8;
    outline: 0;
}
.phone-country__option strong {
    font-size: .82rem;
}
.phone-country__name {
    overflow: hidden;
    font-size: .875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.phone-country__empty {
    margin: 0;
    padding: 1rem .7rem;
    color: #64748b;
    font-size: .875rem;
    text-align: center;
}
.phone-country__empty[hidden] {
    display: none;
}
.wd-form-textarea { min-height: 7rem; resize: vertical; }
.wd-form-error {
    margin-top: .375rem;
    font-size: .8125rem;
    color: #dc2626;
    min-height: 1.25rem;
}
.wd-btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .875rem 2rem;
    font-size: .9375rem; font-weight: 700; color: #fff;
    border: none; border-radius: 9999px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-violet) 100%);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, filter .2s;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.wd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
    filter: brightness(1.05);
}
.wd-btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .875rem 2rem;
    font-size: .9375rem; font-weight: 700; color: var(--color-text);
    border: 1.5px solid var(--color-border); border-radius: 9999px;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
}
.wd-btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: #eff6ff;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 4.8rem 0 auto;
    z-index: 50;
    padding: .75rem 1.1rem 1.1rem;
    border-top: 1px solid rgba(255,255,255,.14);
    border-radius: 0;
    background: #0a2341;
    box-shadow: 0 1.25rem 2.5rem rgba(3,12,25,.28);
    opacity: 0;
    transform: scale(.96) translateY(-8px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
.mobile-menu.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.webdo-mobile-menu-phone {
    display: flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .75rem 1rem;
    border-radius: .8rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 .5rem 1.1rem rgba(37,99,235,.28);
}
.webdo-mobile-menu-phone:hover { color: #fff; filter: brightness(1.08); }
.webdo-mobile-nav { display: grid; }
.webdo-mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}
.webdo-mobile-nav a[aria-current="page"] { color: #8cc0ff; }
.webdo-mobile-nav a span { display: inline-flex; align-items: center; gap: .65rem; }
.webdo-mobile-nav a > i { font-size: .8rem; }
.webdo-mobile-menu-cta { width: 100%; margin-top: 1rem; min-height: 3rem; }

@media (min-width: 901px) {
    .mobile-menu { display: none; }
}

/* Contact section map */
.contact-map-frame { height: 220px; border-radius: 1rem; }

/* Honeypot */
.contact-form__honeypot { position: absolute; left: -9999px; opacity: 0; }

@media (max-width: 900px) {
    .webdo-header-modules-menu { display: none !important; }
    .webdo-brand { font-size: 1.9rem; }
    .webdo-header-primary__inner { min-height: 4.8rem; }
    .webdo-header-actions { flex: 0 0 auto; margin-left: 0; }
    .webdo-brand__tagline { display: none; }
    .webdo-header-contact-details,
    .webdo-header-cta { display: none; }
    .webdo-header-navigation { display: none; }
    .webdo-mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.18rem;
        height: 2.18rem;
        padding: 0;
        border: 1px solid var(--color-border);
        border-radius: 9999px;
        background: #fff;
        color: #475569;
        transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
    }
    .webdo-mobile-menu-toggle:hover,
    .webdo-mobile-menu-toggle[aria-expanded="true"] {
        border-color: #93c5fd;
        background: #eff6ff;
        color: #1d4ed8;
        box-shadow: 0 2px 8px rgba(37,99,235,.1);
    }
    .webdo-mobile-menu-toggle i { font-size: .9rem; }
    .contact-map-frame { height: 180px; }
}

/* iOS zvětšuje stránku při zaostření vstupu s písmem menším než 16 px. */
@media (hover: none) and (pointer: coarse) {
    .wd-form-input,
    .phone-country__search input {
        font-size: 16px;
    }
}
