:root {
    --ink: #061725;
    --ink-soft: #244052;
    --navy: #001020;
    --navy-2: #072033;
    --cream: #fff7e8;
    --cream-2: #f7ecd8;
    --paper: #ffffff;
    --cyan: #00c0f0;
    --cyan-deep: #008fb5;
    --yellow: #ffc818;
    --mint: #9ee7d7;
    --peach: #ffd7a8;
    --border: rgba(6, 23, 37, 0.13);
    --shadow: 0 26px 80px rgba(0, 16, 32, 0.12);
    --shadow-cyan: 0 24px 80px rgba(0, 192, 240, 0.24);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button, input, textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--cream);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 232, 0.84);
    border-bottom: 1px solid rgba(6, 23, 37, 0.08);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 1.18rem;
}

.brand-mark {
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--navy);
}

.brand-mark::before,
.brand-mark::after {
    display: none;
}

.brand-w {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--cyan);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.94rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: rgba(0, 192, 240, 0.12);
    color: var(--ink);
    outline: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

main {
    overflow: hidden;
}

.section {
    padding: 112px 24px;
}

.section.compact {
    padding: 76px 24px;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 192, 240, 0.28);
    border-radius: 999px;
    background: rgba(0, 192, 240, 0.12);
    color: #00627d;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow.dark {
    border-color: rgba(255, 247, 232, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--mint);
}

h1, h2, h3, p {
    margin-top: 0;
}

h1, h2, h3 {
    letter-spacing: -0.055em;
    line-height: 0.95;
}

h1 {
    max-width: 930px;
    margin-bottom: 26px;
    font-size: clamp(3.2rem, 6.2vw, 6.4rem);
    font-weight: 900;
}

h2 {
    max-width: 880px;
    margin-bottom: 22px;
    font-size: clamp(2.9rem, 6.2vw, 6.4rem);
    font-weight: 900;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 850;
}

.lede {
    max-width: 690px;
    color: var(--ink-soft);
    font-size: clamp(1.12rem, 1.7vw, 1.38rem);
    line-height: 1.55;
}

.muted {
    color: rgba(6, 23, 37, 0.68);
    line-height: 1.6;
}

.light-text {
    color: var(--cream);
}

.light-text .lede,
.light-text .muted {
    color: rgba(255, 247, 232, 0.76);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--cream);
    box-shadow: 0 16px 38px rgba(0, 16, 32, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 20px 46px rgba(0, 16, 32, 0.24);
}

.btn-cyan {
    background: var(--cyan);
    color: var(--navy);
    box-shadow: 0 20px 48px rgba(0, 192, 240, 0.28);
}

.btn-ghost {
    border-color: rgba(6, 23, 37, 0.16);
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
}

.btn-ghost.light {
    border-color: rgba(255, 247, 232, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
}

.hero {
    position: relative;
    padding: 32px 24px 72px;
    background: linear-gradient(180deg, #fff7e8 0%, #f2e6d0 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: 54px;
    align-items: center;
}

.hero-copy {
    padding-top: 26px;
}

.hero .lede {
    margin-bottom: 0;
}

.trust-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    color: var(--ink-soft);
    font-weight: 750;
}

.trust-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(6, 23, 37, 0.08);
}

.app-frame {
    position: relative;
    padding: 14px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 2px 1px rgba(0,0,0,0.04), 0 8px 24px rgba(0,16,32,0.09);
}

.app-card {
    overflow: hidden;
    border: 1px solid rgba(6, 23, 37, 0.1);
    border-radius: 28px;
    background: #fffef9;
}

.app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(6, 23, 37, 0.08);
}

.status-dots {
    display: flex;
    gap: 6px;
}

.status-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
}

.status-dots span:nth-child(2) {
    background: var(--yellow);
}

.status-dots span:nth-child(3) {
    background: var(--mint);
}

.demo-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3ead7;
    color: rgba(6, 23, 37, 0.72);
    font-size: 0.78rem;
    font-weight: 850;
}

.app-body {
    padding: 22px;
}

.question-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 22px;
    background: var(--navy);
    color: var(--cream);
}

.question-box p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
}

.answer-bubble {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(0, 192, 240, 0.38);
}

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

.insight-card {
    min-height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(6, 23, 37, 0.08);
    background: #fff9ec;
}

.insight-card:nth-child(2) {
    background: #eefbff;
}

.insight-card:nth-child(3) {
    background: #fff2c8;
}

.insight-card:nth-child(4) {
    background: #eef9f5;
}

.insight-label {
    color: rgba(6, 23, 37, 0.66);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insight-value {
    margin-top: 9px;
    color: var(--ink);
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.insight-card p {
    margin: 12px 0 0;
    color: rgba(6, 23, 37, 0.68);
    font-size: 0.86rem;
    line-height: 1.35;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.op-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(6, 23, 37, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink-soft);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 16, 32, 0.04);
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 192, 240, 0.15);
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: center;
}

.problem-panel {
    padding: 38px;
    border-radius: var(--radius-xl);
    background: var(--navy);
    color: var(--cream);
    box-shadow: 0 30px 80px rgba(0, 16, 32, 0.2);
}

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

.problem-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(255, 247, 232, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.problem-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.02rem;
}

.problem-list span:not(.mini-bubble) {
    color: rgba(255, 247, 232, 0.73);
    line-height: 1.5;
}

.mini-bubble {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 950;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.card {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid rgba(6, 23, 37, 0.1);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 0 18px 46px rgba(0, 16, 32, 0.06);
}

.card.fun-cyan, .card.fun-yellow, .card.fun-mint {
    box-shadow: 0 2px 1px rgba(0,0,0,0.03), 0 12px 32px rgba(0,16,32,0.07);
}

.card p {
    margin-bottom: 0;
    color: rgba(6, 23, 37, 0.68);
    line-height: 1.58;
}

.card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 50%;
    background: #eefbff;
    color: var(--navy);
    font-weight: 950;
    font-size: 1.18rem;
    box-shadow: inset 0 0 0 1px rgba(0, 192, 240, 0.24);
}

.dark-section {
    background: var(--navy);
    color: var(--cream);
}

.workflow {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step {
    min-height: 228px;
    padding: 28px;
    border: 1px solid rgba(255, 247, 232, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
}

.step-no {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--navy);
    font-weight: 950;
    box-shadow: 0 14px 34px rgba(255, 247, 232, 0.16);
}

.step:nth-child(2) .step-no,
.step:nth-child(5) .step-no {
    background: var(--cyan);
}

.step:nth-child(3) .step-no,
.step:nth-child(6) .step-no {
    background: var(--yellow);
}

.step p {
    margin: 0;
    color: rgba(255, 247, 232, 0.72);
    line-height: 1.55;
}

.security-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: stretch;
}

.security-card {
    padding: 38px;
    border-radius: var(--radius-xl);
    background: var(--paper);
    border: 1px solid rgba(6, 23, 37, 0.1);
    box-shadow: var(--shadow);
}

.security-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.security-list li {
    padding: 18px;
    border-radius: 20px;
    background: #fff9ec;
    color: var(--ink-soft);
    font-weight: 800;
}

.security-list li:nth-child(even) {
    background: #eefbff;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.package {
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 23, 37, 0.1);
    background: var(--paper);
    box-shadow: 0 18px 46px rgba(0, 16, 32, 0.06);
}

.package.featured {
    transform: translateY(-12px);
    background: var(--navy);
    color: var(--cream);
    box-shadow: 0 28px 70px rgba(0, 16, 32, 0.22), 0 0 0 7px rgba(0, 192, 240, 0.1);
}

.package .tag {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0, 192, 240, 0.12);
    color: #00627d;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package.featured .tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--mint);
}

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

.package li {
    display: flex;
    gap: 10px;
    color: rgba(6, 23, 37, 0.72);
    line-height: 1.45;
}

.package.featured li,
.package.featured p {
    color: rgba(255, 247, 232, 0.76);
}

.check {
    color: var(--cyan-deep);
    font-weight: 950;
}

.package.featured .check {
    color: var(--yellow);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: clamp(34px, 6vw, 68px);
    border-radius: 38px;
    background: var(--navy);
    color: var(--cream);
    box-shadow: 0 30px 80px rgba(0, 16, 32, 0.2);
}

.cta-panel h2 {
    max-width: 740px;
    margin-bottom: 14px;
}

.contact-box {
    min-width: 285px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 247, 232, 0.14);
}

.contact-box p {
    margin-bottom: 12px;
    color: rgba(255, 247, 232, 0.72);
}

.contact-box a {
    display: block;
    font-weight: 900;
    font-size: 1.08rem;
}

.page-hero {
    padding: 90px 24px 70px;
    background:
        radial-gradient(circle at 14% 5%, rgba(0, 192, 240, 0.22), transparent 28rem),
        linear-gradient(180deg, #fff7e8, #f8eddb);
}

.page-hero h1 {
    max-width: 980px;
}

.timeline {
    display: grid;
    gap: 18px;
    margin-top: 42px;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    border-radius: 24px;
    background: var(--paper);
    border: 1px solid rgba(6, 23, 37, 0.1);
    box-shadow: 0 14px 30px rgba(0, 16, 32, 0.05);
}

.legal-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.legal-toc a {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid rgba(6, 23, 37, 0.1);
    color: var(--ink-soft);
    font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
    color: var(--ink);
    border-color: rgba(0, 192, 240, 0.5);
    outline: none;
}

.legal-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 200, 24, 0.16);
    border: 1px solid rgba(255, 200, 24, 0.32);
}

.legal-block h3 {
    margin: 32px 0 10px;
    color: var(--ink);
    font-size: 1.12rem;
}

.legal-block ul {
    margin: 12px 0 0;
    padding-left: 22px;
}

.legal-block a {
    color: var(--cyan-deep);
    font-weight: 800;
}

.legal-block {
    padding: 30px;
    margin-top: 24px;
    border-radius: 24px;
    border: 1px solid rgba(6, 23, 37, 0.1);
    background: var(--paper);
}

.legal-block p,
.legal-block li {
    color: rgba(6, 23, 37, 0.72);
    line-height: 1.65;
}

.site-footer {
    padding: 60px 24px;
    background: #f6ead5;
    border-top: 1px solid rgba(6, 23, 37, 0.08);
}

.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-grid p {
    color: rgba(6, 23, 37, 0.66);
    line-height: 1.55;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(6, 23, 37, 0.68);
    font-weight: 750;
}

.footer-links a:hover {
    color: var(--cyan-deep);
}

.footer-title {
    margin-bottom: 14px;
    font-weight: 900;
}

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

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 247, 232, 0.98);
        box-shadow: var(--shadow);
        border: 1px solid rgba(6, 23, 37, 0.08);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 16px;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero-grid,
    .two-col,
    .security-shell,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 42px;
    }

    .cards-grid,
    .workflow,
    .pricing-row,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .package.featured {
        transform: none;
    }
}

@media (max-width: 640px) {
    .nav-wrap {
        padding: 14px 16px;
    }

    .brand {
        font-size: 1.05rem;
    }

    .section,
    .section.compact,
    .hero,
    .page-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    h1 {
        font-size: clamp(3.15rem, 17vw, 4.7rem);
    }

    h2 {
        font-size: clamp(2.45rem, 13vw, 3.75rem);
    }

    .actions {
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .insight-grid,
    .cards-grid,
    .workflow,
    .security-list,
    .pricing-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .question-box {
        align-items: flex-start;
    }

    .answer-bubble {
        width: 46px;
        height: 46px;
    }

    .card,
    .problem-panel,
    .security-card,
    .package {
        padding: 24px;
    }

    .cta-panel {
        border-radius: 28px;
    }
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(6, 23, 37, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.lang-switch a {
    min-width: 34px;
    padding: 7px 9px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.lang-switch a.is-active {
    background: var(--navy);
    color: var(--cream);
}

.quote-band {
    padding: 0 24px 80px;
}

.quote-band .container {
    border-top: 1px solid rgba(6, 23, 37, 0.1);
    padding-top: 64px;
}

.quote-band p {
    max-width: 900px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.pricing-note {
    margin: 28px 0 0;
    color: var(--ink-soft);
    font-weight: 850;
}

.question-cards .card {
    min-height: 230px;
}

.question-cards .card-icon {
    margin-bottom: 20px;
}

@media (max-width: 980px) {
    .lang-switch {
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .lang-switch a {
        min-width: 31px;
        padding: 7px 8px;
    }

    .quote-band {
        padding-left: 18px;
        padding-right: 18px;
    }
}
