/* ═══════════════════════════════════════════════════════════
   SIMPLE MIND — SHARED DESIGN SYSTEM
   Edit tokens here to restyle the entire site at once.
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --white:      #FFFFFF;
  --bg-alt:     #F5F7FB;
  --bg-dark:    #0B1427;
  --bg-dark2:   #162040;
  --ink:        #0F172A;
  --ink2:       #334155;
  --ink3:       #64748B;
  --ink4:       #94A3B8;
  --rule:       #E2E8F0;
  --blue:       #1A56DB;
  --blue-light: #3B82F6;
  --blue-pale:  #EFF6FF;
  --blue-mid:   #DBEAFE;
  --green:      #059669;
  --green-pale: #ECFDF5;
  --amber:      #D97706;
  --amber-pale: #FFFBEB;

  /* Typography */
  --font-serif: 'Sora', sans-serif;
  --font-sans:  'Sora', sans-serif;
  --font-mono:  'Sora', sans-serif;

  /* Radii */
  --r:    10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Layout */
  --max: 1200px;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --sh-md: 0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
  --sh-lg: 0 16px 40px rgba(15,23,42,.10), 0 4px 12px rgba(15,23,42,.06);
  --sh-xl: 0 32px 64px rgba(15,23,42,.13), 0 8px 20px rgba(15,23,42,.07);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--ink); font-family: var(--font-sans); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }
@media (max-width: 768px) { .container { padding: 0 1.75rem; } }

/* ── SECTION LABELS — global pill/capsule style ── */
.section-label { display: inline-flex; align-items: center; gap: 10px; background: var(--blue-pale); border: 1px solid var(--blue-mid); padding: 5px 14px; border-radius: 100px; margin-bottom: 1.25rem; }
.section-label::before { content: ''; display: block; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.section-label::after { display: none; }
.section-label span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); font-weight: 500; }

/* Dark-background sections — adjust pill colours */
.cta-box .section-label,
.delivery-section .section-label,
.location-section .section-label,
.ai-visual-section .section-label,
.difference-section .section-label { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.cta-box .section-label::before,
.delivery-section .section-label::before,
.location-section .section-label::before,
.ai-visual-section .section-label::before,
.difference-section .section-label::before { background: rgba(147,197,253,.8); }
.cta-box .section-label span,
.delivery-section .section-label span,
.location-section .section-label span,
.ai-visual-section .section-label span,
.difference-section .section-label span { color: rgba(147,197,253,.8); }

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 1rem; letter-spacing: -.01em; }
.section-header h2 em { font-style: italic; color: var(--blue); }
.section-header p { color: var(--ink3); font-size: 1.05rem; line-height: 1.75; max-width: 520px; }
.section-header.centered p { margin: 0 auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: .9rem; font-weight: 600; padding: 13px 26px; border-radius: var(--r); transition: all .2s ease; cursor: pointer; white-space: nowrap; }
.btn-solid { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn-solid:hover { background: #1344B8; border-color: #1344B8; box-shadow: 0 6px 20px rgba(26,86,219,.25); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink2); border: 2px solid var(--rule); }
.btn-outline:hover { border-color: var(--ink4); background: var(--bg-alt); }
.btn-text { background: none; border: none; color: var(--blue); font-size: .875rem; font-weight: 600; padding: 0; gap: 6px; transition: gap .2s; display: inline-flex; align-items: center; }
.btn-text:hover { gap: 10px; }
.btn-white { background: var(--white); color: var(--ink); border: 2px solid var(--white); }
.btn-white:hover { background: rgba(255,255,255,.92); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.8); border: 2px solid rgba(255,255,255,.25); }
.btn-outline-white:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); color: var(--white); }

/* ── CHIPS ── */
.chip { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; padding: 4px 11px; border-radius: 100px; }
.chip-blue { background: var(--blue-pale); color: var(--blue); border: 1px solid var(--blue-mid); }
.chip-green { background: var(--green-pale); color: var(--green); border: 1px solid #A7F3D0; }
.chip-blue::before, .chip-green::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.chip-amber { background: var(--amber-pale); color: var(--amber); border: 1px solid #FDE68A; }
.chip-gray { background: #F1F5F9; color: var(--ink3); border: 1px solid var(--rule); }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); box-shadow: var(--sh-sm); transition: box-shadow .25s, transform .25s, border-color .25s; }
.card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: #CBD5E1; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── PULSE ANIMATION ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes slide-logos { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════
   NAV (shared across all pages)
══════════════════════════════════════════════════════════ */
#main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(16px) saturate(1.8); border-bottom: 1px solid var(--rule); transition: box-shadow .3s; }
#main-nav.elevated { box-shadow: var(--sh-md); }
.nav-inner { display: flex; align-items: center; height: 68px; gap: 2rem; max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }
@media (max-width: 768px) { .nav-inner { gap: 1.5rem; padding: 0 1.75rem; height: 60px; } }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 700; color: var(--ink); flex-shrink: 0; letter-spacing: -.01em; }
.nav-logo-mark { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), #4F8EF7); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; flex: 1; justify-content: center; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--ink3); padding: 6px 14px; border-radius: 8px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--ink); background: var(--bg-alt); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.mobile-menu-btn { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--rule); border-radius: 8px; margin-left: auto; }
.mobile-menu-btn span { display: block; width: 16px; height: 1.5px; background: var(--ink3); border-radius: 2px; }
.mobile-drawer { display: none; }

/* ══════════════════════════════════════════════════════════
   TRUSTED BY / LOGO TICKER
══════════════════════════════════════════════════════════ */
#trusted { padding: 2.5rem 0; background: var(--bg-alt); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; }
.trusted-label { text-align: center; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink4); margin-bottom: 1.5rem; }
.logos-wrap { position: relative; overflow: hidden; }
.logos-wrap::before, .logos-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.logos-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.logos-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg-alt), transparent); }
.logos-track { display: flex; align-items: center; gap: 3rem; white-space: nowrap; width: max-content; animation: slide-logos 28s linear infinite; }
.logo-chip { display: flex; align-items: center; gap: 7px; font-size: .875rem; font-weight: 600; color: #94A3B8; flex-shrink: 0; transition: color .2s; }
.logo-chip:hover { color: var(--ink3); }
.logo-chip svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   CTA BANNER (shared)
══════════════════════════════════════════════════════════ */
.cta-section { padding: 7rem 0; background: var(--bg-alt); }
@media (max-width: 768px) { .cta-section { padding: 5rem 0; } }
@media (max-width: 640px) { .cta-section { padding: 3rem 0; } }
.cta-box { background: linear-gradient(135deg, #0B1427 0%, #162040 60%, #1E3A8A 100%); border-radius: var(--r-xl); padding: 5rem; position: relative; overflow: hidden; text-align: center; }
@media (max-width: 768px) { .cta-box { padding: 4rem 2rem; } }
@media (max-width: 640px) { .cta-box { padding: 3rem 1.5rem; } }
.cta-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(59,130,246,.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(129,140,248,.12) 0%, transparent 50%); pointer-events: none; }
.cta-dot-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 32px 32px; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-serif); font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -.01em; }
.cta-inner h2 em { font-style: italic; color: #93C5FD; }
.cta-inner p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   FOOTER (shared)
══════════════════════════════════════════════════════════ */
footer { background: var(--bg-dark); color: rgba(255,255,255,.7); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-brand-logo { display: flex; align-items: center; gap: 9px; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.footer-logo-mark { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--blue), #4F8EF7); display: flex; align-items: center; justify-content: center; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 240px; margin-bottom: 1.75rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.5); transition: all .2s; }
.footer-social a:hover { background: rgba(255,255,255,.12); color: var(--white); }
.footer-col h4 { font-size: .75rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col li a:hover { color: var(--white); }
.footer-products-note { font-size: .8rem; color: rgba(255,255,255,.3); margin-top: 1rem; }
.footer-bottom { padding: 1.75rem 0; border-top: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom span { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.3); transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════
   FORM (shared)
══════════════════════════════════════════════════════════ */
.form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--sh-lg); }
@media (max-width: 768px) { .form-wrap { padding: 2rem; } }
@media (max-width: 640px) { .form-wrap { padding: 1.5rem; } }
.form-wrap h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.75rem; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: .775rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .07em; color: var(--ink3); margin-bottom: .45rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; background: var(--bg-alt); border: 1.5px solid var(--rule); border-radius: var(--r); padding: .75rem 1rem; color: var(--ink); font-family: var(--font-sans); font-size: .9rem; outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.1); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 10px; padding-right: 2.5rem; }
.form-ok { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-ok .ok-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-ok h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.form-ok p { color: var(--ink3); font-size: .9rem; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero { padding: 8rem 0 5rem; position: relative; overflow: hidden; background: var(--white); }
@media (max-width: 768px) { .page-hero { padding: 6rem 0 4rem; } }
@media (max-width: 640px) { .page-hero { padding: 4rem 0 3rem; } }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px); background-size: 36px 36px; opacity: .3; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top, var(--white), transparent); pointer-events: none; }
.page-hero .hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero .section-label { margin-bottom: 1.5rem; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5rem); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.5rem; color: var(--ink); }
.page-hero h1 em { font-style: italic; color: var(--blue); }
.page-hero .hero-sub { font-size: 1.15rem; color: var(--ink3); line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem; }
.page-hero .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════ */
.stats-section { padding: 5rem 0; background: var(--bg-alt); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
@media (max-width: 768px) { .stats-section { padding: 3.5rem 0; } }
@media (max-width: 640px) { .stats-section { padding: 3rem 0; } }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 1024px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-col { text-align: center; padding: 2rem 1rem; position: relative; }
.stat-col:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 25%; bottom: 25%; width: 1px; background: var(--rule); }
.stat-col .s-num { font-family: var(--font-serif); font-size: clamp(2.75rem, 5vw, 4rem); font-weight: 400; color: var(--ink); line-height: 1; margin-bottom: .4rem; letter-spacing: -.02em; }
.stat-col .s-num .accent { color: var(--blue); }
.stat-col .s-label { font-size: .875rem; color: var(--ink3); font-weight: 500; }
.stat-col .s-sub { font-size: .75rem; color: var(--ink4); margin-top: 4px; font-family: var(--font-mono); }

/* ══════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════ */
.process-section { padding: 8rem 0; background: var(--white); }
@media (max-width: 768px) { .process-section { padding: 5rem 0; } }
@media (max-width: 640px) { .process-section { padding: 4rem 0; } }
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--r-xl); overflow: hidden; margin-top: 4rem; }
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
.process-col { background: var(--white); padding: 2rem 1.5rem; transition: background .2s; }
.process-col:hover { background: var(--blue-pale); }
.process-col:hover .p-num { color: var(--blue); }
.p-num { font-family: var(--font-serif); font-size: 2.75rem; font-weight: 400; color: #E2E8F0; line-height: 1; margin-bottom: .875rem; transition: color .2s; letter-spacing: -.02em; }
.p-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.p-desc { font-size: .8rem; color: var(--ink3); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-section { padding: 8rem 0; background: var(--bg-alt); }
@media (max-width: 768px) { .faq-section { padding: 5rem 0; } }
@media (max-width: 640px) { .faq-section { padding: 4rem 0; } }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--sh-md); }
.faq-q { width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .95rem; font-weight: 600; color: var(--ink); text-align: left; cursor: pointer; background: none; border: none; font-family: var(--font-sans); }
.faq-q .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; transition: transform .25s, background .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-pale); border-color: var(--blue-mid); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: .9rem; color: var(--ink3); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .mobile-menu-btn { display: flex; }
  .container { padding: 0 1.25rem; }
  .cta-box { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; border-radius: var(--r); }
  .footer-grid { grid-template-columns: 1fr; }
}


line-normal {
    font-family:'Sora',sans-serif;
}



/* v11: Official full image logo in header and footer */
.nav-logo-image-only {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.site-main-logo {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}
.footer-logo-image-only {
  display: flex;
  align-items: center;
}
.site-footer-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .site-main-logo {
    height: 36px;
    max-width: 180px;
  }
  .site-footer-logo {
    height: 44px;
    max-width: 150px;
    border-radius: 10px;
  }
}


/* Mobile nav open state — kept for v9 page compatibility */
@media (max-width: 640px) {
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 1rem 1.5rem;
    gap: .25rem;
    box-shadow: var(--sh-lg);
    z-index: 99;
  }
  .mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .mobile-menu-btn span { transition: transform .2s, opacity .2s; }
}


/* ═══════════════════════════════════════════════════════════
   LANGUAGE TOGGLE — SM i18n v1
═══════════════════════════════════════════════════════════ */

/* RTL global flip */
[dir="rtl"] {
  --text-align-start: right;
}
[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] li,
[dir="rtl"] .section-header,
[dir="rtl"] .section-header p {
  text-align: right;
}
[dir="rtl"] .nav-inner,
[dir="rtl"] .nav-links,
[dir="rtl"] .nav-cta,
[dir="rtl"] .footer-grid,
[dir="rtl"] .footer-bottom,
[dir="rtl"] .footer-social,
[dir="rtl"] .hero-ctas,
[dir="rtl"] .hero-proof,
[dir="rtl"] .proof-avatars {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  justify-content: center;
}
[dir="rtl"] .section-header.centered {
  text-align: center;
}
[dir="rtl"] .section-label {
  flex-direction: row-reverse;
}
[dir="rtl"] .container {
  direction: rtl;
}
[dir="rtl"] .footer-col ul {
  padding-right: 0;
}
[dir="rtl"] .sm-lang-dropdown {
  left: auto;
}

/* ── Language toggle button ── */
.sm-lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.sm-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink2);
  font-size: .8rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.sm-lang-btn:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.08);
}
.sm-lang-toggle.open .sm-lang-btn {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
}
.sm-lang-flag {
  font-size: 1rem;
  line-height: 1;
}
.sm-lang-chevron {
  width: 14px;
  height: 14px;
  transition: transform .2s;
  flex-shrink: 0;
}
.sm-lang-toggle.open .sm-lang-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.sm-lang-dropdown {
  display: none;
  position: fixed;
  top: 76px;
  width: 260px;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  z-index: 99999;
  overflow: visible;
}
.sm-lang-toggle.open .sm-lang-dropdown {
  display: block;
  animation: smDropIn .18s ease;
}
@keyframes smDropIn {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Search bar */
.sm-lang-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-alt);
}
.sm-lang-search-icon {
  width: 15px;
  height: 15px;
  color: var(--ink4);
  flex-shrink: 0;
}
.sm-lang-search {
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: .83rem;
  color: var(--ink);
  outline: none;
}
.sm-lang-search::placeholder {
  color: var(--ink4);
}

/* List */
.sm-lang-list {
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}
.sm-lang-list::-webkit-scrollbar { width: 4px; }
.sm-lang-list::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }

.sm-lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background .12s;
  font-size: .83rem;
}
.sm-lang-item:hover {
  background: var(--bg-alt);
}
.sm-lang-item.active {
  background: var(--blue-pale);
}
.sm-lang-item-flag {
  font-size: .95rem;
  flex-shrink: 0;
  width: 22px;
}
.sm-lang-item-native {
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sm-lang-item-eng {
  color: var(--ink4);
  font-size: .76rem;
  flex-shrink: 0;
}
.sm-lang-rtl-badge {
  font-size: .65rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-pale);
  border: 1px solid var(--amber);
  border-radius: 4px;
  padding: 1px 5px;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.sm-lang-check {
  color: var(--blue);
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: auto;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .sm-lang-label { display: none; }
  .sm-lang-btn { padding: 0 9px; gap: 4px; }
  .sm-lang-dropdown {
    width: 240px;
  }
}
