:root {
 --bg: #07111f;
 --bg-soft: #0d1b2e;
 --bg-card: rgba(255,255,255,0.08);
 --bg-card-strong: rgba(255,255,255,0.12);
 --text: #f5f7fb;
 --muted: #b8c2d6;
 --line: rgba(255,255,255,0.14);
 --gold: #d9b76f;
 --gold-soft: #ffe0a1;
 --blue: #76a9ff;
 --green: #7dd3a8;
 --shadow: 0 24px 70px rgba(0,0,0,0.38);
 --radius: 24px;
 --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
 margin: 0;
 overflow-x: hidden;
 font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 background:
  radial-gradient(circle at 15% 15%, rgba(118,169,255,0.22), transparent 30%),
  radial-gradient(circle at 80% 10%, rgba(217,183,111,0.20), transparent 28%),
  linear-gradient(180deg, #07111f 0%, #0a1424 52%, #07111f 100%);
 color: var(--text);
 line-height: 1.55;
}

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

.container {
 width: min(var(--max), calc(100% - 38px));
 margin-inline: auto;
}

.topbar {
 position: sticky;
 top: 0;
 z-index: 40;
 backdrop-filter: blur(18px);
 background: rgba(7,17,31,0.74);
 border-bottom: 1px solid var(--line);
}

.nav {
 min-height: 78px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 22px;
}

.brand {
 display: flex;
 align-items: center;
 gap: 13px;
 min-width: 240px;
}

.brand-mark {
 width: 46px;
 height: 46px;
 border-radius: 16px;
 display: grid;
 place-items: center;
 color: #09101c;
 font-weight: 900;
 background: linear-gradient(135deg, var(--gold-soft), var(--gold));
 box-shadow: 0 12px 36px rgba(217,183,111,0.25);
}

.brand small {
 display: block;
 color: var(--muted);
 font-size: 12px;
 margin-top: 2px;
}


/* Language-specific visual logo in the main navigation */
.brand-logo-link {
 min-width: 260px;
 flex-shrink: 0;
 gap: 0;
}

.brand-logo-img {
 display: block;
 width: auto;
 height: 54px;
 max-width: none;
 object-fit: contain;
 object-position: left center;
 flex: 0 0 auto;
 image-rendering: auto;
 filter: drop-shadow(0 12px 30px rgba(0,0,0,0.28));
}

@media (max-width: 1040px) {
 .brand-logo-link { min-width: 230px; }
 .brand-logo-img { height: 50px; max-width: none; }
}

@media (max-width: 680px) {
 .brand-logo-link { min-width: 0; }
 .brand-logo-img { height: 42px; max-width: none; }
}

@media (max-width: 390px) {
 .brand-logo-img { height: 38px; }
}

.menu {
 display: flex;
 align-items: center;
 gap: 18px;
 color: var(--muted);
 font-size: 14px;
}

.menu a:hover { color: var(--text); }

.actions {
 display: flex;
 align-items: center;
 gap: 10px;
 flex-wrap: wrap;
 justify-content: flex-end;
}

.lang-select {
 display: flex;
 gap: 5px;
 padding: 5px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: rgba(255,255,255,0.06);
}

.lang-select button {
 border: 0;
 border-radius: 999px;
 padding: 8px 10px;
 cursor: pointer;
 color: var(--muted);
 background: transparent;
 font-weight: 700;
 font-size: 12px;
}

.lang-select button.active {
 background: var(--gold);
 color: #07111f;
}

.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 border: 1px solid transparent;
 border-radius: 999px;
 padding: 12px 18px;
 font-weight: 800;
 cursor: pointer;
 transition: transform .18s ease, background .18s ease, border-color .18s ease;
 white-space: nowrap;
}

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

.btn-primary {
 color: #07111f;
 background: linear-gradient(135deg, var(--gold-soft), var(--gold));
 box-shadow: 0 16px 38px rgba(217,183,111,0.23);
}

.btn-ghost {
 color: var(--text);
 background: rgba(255,255,255,0.06);
 border-color: var(--line);
}

.hero {
 padding: 92px 0 54px;
 position: relative;
 overflow: hidden;
}

.hero-grid {
 display: grid;
 grid-template-columns: 1.05fr .95fr;
 gap: 42px;
 align-items: center;
}

.eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 9px;
 color: var(--gold-soft);
 border: 1px solid rgba(217,183,111,0.35);
 background: rgba(217,183,111,0.10);
 padding: 8px 13px;
 border-radius: 999px;
 font-weight: 800;
 font-size: 13px;
 margin-bottom: 22px;
}

h1 {
 margin: 0;
 font-size: clamp(42px, 7vw, 76px);
 line-height: 0.96;
 letter-spacing: -0.06em;
}

.hero p.lead {
 color: var(--muted);
 font-size: clamp(18px, 2vw, 22px);
 margin: 24px 0 30px;
 max-width: 710px;
}

.hero-quote {
 margin-top: 30px;
 border-left: 4px solid var(--gold);
 padding: 16px 0 16px 20px;
 color: var(--gold-soft);
 font-size: 20px;
 font-weight: 800;
}

.hero-card {
 position: relative;
 border: 1px solid var(--line);
 background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
 border-radius: 34px;
 box-shadow: var(--shadow);
 padding: 30px;
 overflow: hidden;
}

.hero-card:before {
 content: "";
 position: absolute;
 inset: -80px -80px auto auto;
 width: 220px;
 height: 220px;
 border-radius: 50%;
 background: rgba(217,183,111,0.22);
 filter: blur(6px);
}

.profile-block {
 position: relative;
 min-height: 395px;
 border-radius: 28px;
 background:
  linear-gradient(160deg, rgba(118,169,255,0.25), transparent 55%),
  linear-gradient(135deg, #13233a, #091424);
 border: 1px solid rgba(255,255,255,0.12);
 padding: 28px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
}

.profile-avatar {
 position: absolute;
 top: 30px;
 left: 28px;
 width: 92px;
 height: 92px;
 border-radius: 28px;
 display: grid;
 place-items: center;
 background: linear-gradient(135deg, var(--gold-soft), var(--gold));
 color: #07111f;
 font-size: 34px;
 font-weight: 950;
 letter-spacing: -0.06em;
 box-shadow: 0 20px 55px rgba(217,183,111,0.25);
}

.inline-avatar {
 position: static;
 margin-bottom: 24px;
}

.profile-block h2 {
 margin: 0 0 8px;
 font-size: 34px;
 letter-spacing: -0.04em;
}

.profile-block p { color: var(--muted); margin: 0; }

.badge-row {
 display: flex;
 gap: 9px;
 flex-wrap: wrap;
 margin-top: 18px;
}

.badge {
 padding: 8px 11px;
 border-radius: 999px;
 background: rgba(255,255,255,0.09);
 border: 1px solid var(--line);
 color: var(--text);
 font-size: 12px;
 font-weight: 800;
}

.stats {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 14px;
 margin-top: 38px;
}

.stat {
 border: 1px solid var(--line);
 background: rgba(255,255,255,0.06);
 border-radius: 22px;
 padding: 20px;
}

.stat strong {
 display: block;
 font-size: 28px;
 color: var(--gold-soft);
 line-height: 1;
}

.stat span {
 color: var(--muted);
 font-size: 13px;
}

section { padding: 70px 0; }

.section-head {
 display: flex;
 align-items: flex-end;
 justify-content: space-between;
 gap: 28px;
 margin-bottom: 30px;
}

.section-head h2 {
 margin: 0;
 font-size: clamp(32px, 4vw, 50px);
 line-height: 1;
 letter-spacing: -0.05em;
 max-width: 780px;
}

.section-head p {
 color: var(--muted);
 max-width: 430px;
 margin: 0;
}

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

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

.card {
 border: 1px solid var(--line);
 background: var(--bg-card);
 border-radius: var(--radius);
 padding: 24px;
 box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}

.card:hover { background: var(--bg-card-strong); }

.icon {
 width: 46px;
 height: 46px;
 border-radius: 16px;
 display: grid;
 place-items: center;
 background: rgba(217,183,111,0.14);
 border: 1px solid rgba(217,183,111,0.26);
 color: var(--gold-soft);
 font-size: 22px;
 margin-bottom: 16px;
}

.card h3 {
 margin: 0 0 10px;
 font-size: 22px;
 letter-spacing: -0.03em;
}

.card p { color: var(--muted); margin: 0 0 16px; }

.checklist {
 list-style: none;
 padding: 0;
 margin: 0;
 display: grid;
 gap: 9px;
 color: #dce4f3;
 font-size: 14px;
}

.checklist li {
 display: flex;
 gap: 9px;
 align-items: flex-start;
}

.checklist li:before {
 content: "✓";
 color: var(--green);
 font-weight: 950;
 flex: 0 0 auto;
}

.feature-strip {
 display: grid;
 grid-template-columns:.92fr 1.08fr;
 gap: 20px;
 align-items: stretch;
}

.big-card {
 border-radius: 32px;
 padding: 34px;
 background:
  linear-gradient(140deg, rgba(217,183,111,0.18), rgba(118,169,255,0.11)),
  rgba(255,255,255,0.07);
 border: 1px solid var(--line);
 box-shadow: var(--shadow);
}

.big-card h2,
.big-card h3 { margin-top: 0; }

.steps {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 16px;
 counter-reset: step;
}

.step {
 position: relative;
 min-height: 210px;
 border: 1px solid var(--line);
 background: rgba(255,255,255,0.07);
 border-radius: var(--radius);
 padding: 24px;
}

.step:before {
 counter-increment: step;
 content: counter(step);
 display: grid;
 place-items: center;
 width: 42px;
 height: 42px;
 border-radius: 14px;
 background: var(--gold);
 color: #07111f;
 font-weight: 950;
 margin-bottom: 26px;
}

.step h3 { margin: 0 0 10px; }
.step p { color: var(--muted); margin: 0; }

.insurance-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 14px;
}

.mini {
 border: 1px solid var(--line);
 border-radius: 20px;
 background: rgba(255,255,255,0.06);
 padding: 18px;
}

.mini strong { display:block; margin-bottom: 5px; }
.mini span { color: var(--muted); font-size: 13px; }

.calculators {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 16px;
}

.calc-card {
 border: 1px solid var(--line);
 border-radius: 22px;
 padding: 22px;
 background: rgba(255,255,255,0.07);
}

.calc-card h3 { margin: 0 0 8px; }
.calc-card p { color: var(--muted); margin: 0 0 18px; font-size: 14px; }

.input-row { display: grid; gap: 8px; margin-bottom: 10px; }
.input-row label { color: var(--muted); font-size: 12px; font-weight: 700; }

input, select, textarea {
 width: 100%;
 border: 1px solid var(--line);
 border-radius: 14px;
 padding: 12px 13px;
 color: var(--text);
 background: rgba(0,0,0,0.22);
 outline: none;
}

input:focus, textarea:focus { border-color: rgba(217,183,111,0.62); }

.result {
 margin-top: 12px;
 padding: 12px;
 border-radius: 15px;
 background: rgba(217,183,111,0.11);
 border: 1px solid rgba(217,183,111,0.24);
 color: var(--gold-soft);
 font-weight: 800;
 min-height: 48px;
}

.about {
 display: grid;
 grid-template-columns:.82fr 1.18fr;
 gap: 22px;
 align-items: stretch;
}

.contact-box {
 display: grid;
 gap: 12px;
 margin-top: 20px;
}

.contact-line {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 12px;
 border: 1px solid var(--line);
 background: rgba(255,255,255,0.06);
 border-radius: 18px;
 padding: 14px 16px;
 color: var(--muted);
}

.contact-line strong { color: var(--text); }

.review-card {
 text-align: center;
 padding: 40px;
}

.stars { color: var(--gold-soft); font-size: 28px; letter-spacing: 4px; margin-bottom: 14px; }

.cta { padding: 82px 0; }

.cta-card {
 text-align: center;
 border: 1px solid rgba(217,183,111,0.28);
 background:
  radial-gradient(circle at 20% 20%, rgba(217,183,111,0.22), transparent 38%),
  linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
 border-radius: 38px;
 box-shadow: var(--shadow);
 padding: clamp(34px, 6vw, 66px);
}

.cta-card h2 {
 margin: 0 0 16px;
 font-size: clamp(34px, 5vw, 60px);
 line-height: 1;
 letter-spacing: -0.06em;
}

.cta-card p {
 margin: 0 auto 28px;
 max-width: 780px;
 color: var(--muted);
 font-size: 18px;
}

.contact-actions { justify-content:center; }

footer {
 border-top: 1px solid var(--line);
 padding: 42px 0;
 color: var(--muted);
 background: rgba(0,0,0,0.14);
}

footer strong { color: var(--text); }

.footer-grid {
 display: grid;
 grid-template-columns: 1.2fr.8fr;
 gap: 24px;
 align-items: start;
}

.footer-links {
 display: flex;
 gap: 16px;
 justify-content: flex-end;
 flex-wrap: wrap;
}

.footer-links a { color: var(--text); opacity:.82; }

.legal-page {
 padding: 72px 0;
}

.legal-card {
 max-width: 880px;
 margin: 0 auto;
}

.legal-card h1 {
 font-size: clamp(36px, 6vw, 58px);
 margin-bottom: 24px;
}

.legal-card p,
.legal-card li {
 color: var(--muted);
}

@media (max-width: 1040px) {
 .menu { display: none; }
 .hero-grid,.feature-strip,.about,.footer-grid { grid-template-columns: 1fr; }
 .stats,.steps,.calculators { grid-template-columns: repeat(2, 1fr); }
 .grid-3 { grid-template-columns: repeat(2, 1fr); }
 .insurance-grid { grid-template-columns: repeat(2, 1fr); }
 .section-head { align-items: flex-start; flex-direction: column; }
 .footer-links { justify-content: flex-start; }
}

@media (max-width: 680px) {
 .container { width: min(var(--max), calc(100% - 24px)); }
 .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
 .brand { min-width: 0; }
 .actions { width: 100%; justify-content: space-between; }
 .hero { padding-top: 48px; }
 .stats,.steps,.grid-3,.grid-2,.calculators,.insurance-grid { grid-template-columns: 1fr; }
 .hero-card { padding: 18px; border-radius: 26px; }
 .profile-block { min-height: 350px; }
 .card,.big-card { padding: 22px; }
 .contact-line { align-items: flex-start; flex-direction: column; }
}


.profile-photo-wrap {
 overflow: hidden;
 background: rgba(255,255,255,0.08);
 border: 1px solid rgba(255,255,255,0.25);
}

.profile-photo {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.featured-banner-card {
 padding: 14px;
}

.featured-banner-image {
 width: 100%;
 display: block;
 border-radius: 22px;
 box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}


/* Updated profile photo and Google reviews */
.profile-photo-wrap {
 width: 112px;
 height: 112px;
 border-radius: 50%;
 overflow: hidden;
 background: rgba(255,255,255,0.08);
 border: 3px solid rgba(217,183,111,0.85);
 box-shadow: 0 20px 55px rgba(217,183,111,0.24);
}

.profile-photo {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 42%;
 display: block;
}

.collaboration-line {
 color: #dfe7f6;
 background: rgba(255,255,255,0.065);
 border: 1px solid rgba(217,183,111,0.25);
 border-radius: 20px;
 padding: 16px 18px;
 margin: 0 0 24px;
 max-width: 760px;
 font-weight: 650;
}

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

.google-review-card {
 border: 1px solid var(--line);
 background: rgba(255,255,255,0.075);
 border-radius: var(--radius);
 padding: 24px;
 box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}

.review-top {
 display: flex;
 align-items: center;
 gap: 14px;
 margin-bottom: 18px;
}

.google-badge {
 width: 46px;
 height: 46px;
 border-radius: 50%;
 display: grid;
 place-items: center;
 font-weight: 950;
 color: #07111f;
 background: linear-gradient(135deg, #ffffff, var(--gold-soft));
 border: 1px solid rgba(217,183,111,0.55);
}

.small-stars {
 font-size: 15px;
 letter-spacing: 2px;
 margin-top: 2px;
}

.google-review-card p {
 color: var(--muted);
 margin: 0 0 18px;
}

.google-review-card a {
 color: var(--gold-soft);
 font-weight: 850;
}

.reviews-actions {
 margin-top: 24px;
 display: flex;
 justify-content: center;
}

@media (max-width: 1040px) {
 .reviews-grid {
  grid-template-columns: 1fr;
 }
}



.mobile-menu-toggle {
 display: none;
 border: 1px solid var(--line);
 background: rgba(255,255,255,0.08);
 color: var(--text);
 border-radius: 14px;
 padding: 10px 13px;
 font-size: 22px;
 line-height: 1;
 cursor: pointer;
}

.badge a,
.contact-line a,
footer a {
 color: inherit;
 text-decoration: none;
}

.service-link {
 display: inline-flex;
 margin-top: 18px;
 color: var(--gold-soft);
 font-weight: 850;
 border-bottom: 1px solid rgba(217,183,111,0.45);
}

.service-link:hover {
 color: var(--text);
}

.mini-link {
 display: block;
 transition: transform .18s ease, background .18s ease;
}

.mini-link:hover {
 transform: translateY(-2px);
 background: rgba(255,255,255,0.105);
}

.page-hero {
 padding: 74px 0 42px;
}

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

.page-lead {
 color: var(--muted);
 font-size: clamp(18px, 2vw, 22px);
 max-width: 880px;
 margin: 24px 0 0;
}

.page-layout {
 display: grid;
 grid-template-columns: 0.8fr 1.2fr;
 gap: 22px;
 align-items: start;
}

.page-aside {
 position: sticky;
 top: 100px;
}

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

.page-list li {
 padding: 12px 14px;
 border: 1px solid var(--line);
 border-radius: 16px;
 background: rgba(255,255,255,0.055);
 color: #dce4f3;
}

.page-list li:before {
 content: "✓";
 color: var(--green);
 font-weight: 950;
 margin-right: 8px;
}

.page-cta-row {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 24px;
}

.breadcrumb {
 color: var(--muted);
 font-size: 14px;
 margin-bottom: 22px;
}

.breadcrumb a {
 color: var(--gold-soft);
}

.company-logos-note {
 color: var(--muted);
 font-size: 14px;
 margin-top: 14px;
}

@media (max-width: 1040px) {
 .mobile-menu-toggle {
  display: inline-flex;
 }

 .nav {
  position: relative;
 }

 .menu {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7,17,31,0.96);
 }

 .menu.menu-open {
  display: flex;
 }

 .menu a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
 }

 .page-layout {
  grid-template-columns: 1fr;
 }

 .page-aside {
  position: static;
 }
}

@media (max-width: 680px) {
 .hero-actions,
 .contact-actions,
 .page-cta-row {
  align-items: stretch;
  flex-direction: column;
  width: 100%;
 }

 .hero-actions .btn,
 .contact-actions .btn,
 .page-cta-row .btn {
  width: 100%;
 }

 .featured-banner-card {
  padding: 8px;
 }

 .featured-banner-image {
  border-radius: 16px;
 }

 .collaboration-line {
  font-size: 15px;
  padding: 14px;
 }
}


/* Dynamic Google reviews carousel */
.reviews-marquee-section {
 overflow: hidden;
}

.reviews-marquee-wrap {
 position: relative;
 display: grid;
 gap: 18px;
 overflow: hidden;
 padding: 18px 0 28px;
 -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
 mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.reviews-fade {
 position: absolute;
 top: 0;
 width: 110px;
 height: 100%;
 z-index: 3;
 pointer-events: none;
}

.reviews-fade-left {
 left: 0;
 background: linear-gradient(90deg, rgba(7,17,31,0.96), rgba(7,17,31,0));
}

.reviews-fade-right {
 right: 0;
 background: linear-gradient(270deg, rgba(7,17,31,0.96), rgba(7,17,31,0));
}

.reviews-track {
 display: flex;
 gap: 18px;
 width: max-content;
 will-change: transform;
}

.reviews-track-left {
 animation: reviewsScrollLeft 52s linear infinite;
}

.reviews-track-right {
 animation: reviewsScrollRight 56s linear infinite;
}

.reviews-marquee-wrap:hover.reviews-track {
 animation-play-state: paused;
}

.review-marquee-card {
 width: min(380px, 82vw);
 min-height: 235px;
 flex: 0 0 auto;
 border: 1px solid var(--line);
 border-radius: 26px;
 background:
  radial-gradient(circle at 18% 14%, rgba(217,183,111,0.16), transparent 34%),
  rgba(255,255,255,0.075);
 padding: 24px;
 box-shadow: 0 15px 45px rgba(0,0,0,0.18);
 transform: scale(0.94);
 opacity: 0.66;
 transition: transform .35s ease, opacity .35s ease, background .35s ease, border-color .35s ease;
}

.review-marquee-card.active-review {
 transform: scale(1.055);
 opacity: 1;
 background:
  radial-gradient(circle at 18% 14%, rgba(217,183,111,0.24), transparent 38%),
  rgba(255,255,255,0.12);
 border-color: rgba(217,183,111,0.48);
 z-index: 2;
}

.review-card-head {
 display: flex;
 align-items: center;
 gap: 14px;
 margin-bottom: 16px;
}

.review-marquee-card p {
 color: var(--muted);
 margin: 0 0 18px;
}

.review-marquee-card a {
 color: var(--gold-soft);
 font-weight: 850;
}

@keyframes reviewsScrollLeft {
 from { transform: translateX(0); }
 to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes reviewsScrollRight {
 from { transform: translateX(calc(-50% - 9px)); }
 to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
 .reviews-track-left,
 .reviews-track-right {
  animation: none;
 }
}

@media (max-width: 680px) {
 .reviews-marquee-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
 }

 .reviews-fade {
  width: 46px;
 }

 .review-marquee-card {
  width: 82vw;
  min-height: 260px;
  padding: 20px;
 }

 .review-marquee-card.active-review {
  transform: scale(1.02);
 }
}


/* Global language selector update */
.nav .lang-select {
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .nav .actions {
    gap: 8px;
  }

  .nav .lang-select {
    order: 1;
  }

  .nav .actions .btn {
    order: 2;
  }
}


/* Multilingual dynamic banner replacing the static image banner */
.dynamic-banner-section {
  padding: 72px 0 34px;
}

.dynamic-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(217,183,111,0.30);
  border-radius: 38px;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 18% 18%, rgba(217,183,111,0.24), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(118,169,255,0.20), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
}

.dynamic-banner:before {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(217,183,111,0.14);
  filter: blur(6px);
}

.dynamic-banner-content {
  position: relative;
  z-index: 2;
}

.dynamic-banner-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
  max-width: 760px;
}

.dynamic-banner-content p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  margin: 22px 0 26px;
  max-width: 720px;
}

.dynamic-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dynamic-banner-visual {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.banner-profile-orbit {
  width: 156px;
  height: 156px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), rgba(118,169,255,0.85));
  box-shadow: 0 22px 58px rgba(0,0,0,0.28);
}

.banner-profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  border: 4px solid rgba(7,17,31,0.92);
}

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

.banner-service-card {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.075);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.banner-service-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(217,183,111,0.42);
}

.banner-service-card span {
  font-size: 24px;
}

.banner-service-card strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

@media (max-width: 1040px) {
  .dynamic-banner {
    grid-template-columns: 1fr;
  }

  .banner-profile-orbit {
    margin: 0;
  }

  .dynamic-banner-visual {
    grid-template-columns: 156px 1fr;
    align-items: center;
  }
}

@media (max-width: 680px) {
  .dynamic-banner-section {
    padding-top: 44px;
  }

  .dynamic-banner {
    border-radius: 28px;
    padding: 22px;
  }

  .dynamic-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dynamic-banner-actions .btn {
    width: 100%;
  }

  .dynamic-banner-visual {
    grid-template-columns: 1fr;
  }

  .banner-profile-orbit {
    width: 132px;
    height: 132px;
    margin: 0 auto;
  }

  .banner-service-grid {
    grid-template-columns: 1fr;
  }

  .banner-service-card {
    min-height: 74px;
  }
}


/* SEO multilingual static pages */
.lang-links a {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  background: transparent;
  font-weight: 700;
  font-size: 12px;
}

.lang-links a.active {
  background: var(--gold);
  color: #07111f;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.055);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 10px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-item p {
  color: var(--muted);
  margin: 10px 0 0;
}


/* Professional SVG icons */
.icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(217,183,111,0.18), rgba(118,169,255,0.12));
  border: 1px solid rgba(217,183,111,0.22);
  color: var(--gold-soft);
  margin-bottom: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.icon-svg {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
}

.banner-service-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--gold-soft);
  border: 1px solid rgba(217,183,111,0.24);
}

.banner-service-card .icon-svg {
  width: 22px;
  height: 22px;
}

.card .icon + h3 {
  margin-top: 0;
}

@media (max-width: 680px) {
  .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .icon-svg {
    width: 25px;
    height: 25px;
  }

  .banner-service-card span {
    width: 38px;
    height: 38px;
  }
}


/* Restored dynamic Google reviews carousel */
.reviews-marquee-section {
  overflow: hidden;
}

.reviews-marquee-wrap {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px 0 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.reviews-fade {
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.reviews-fade-left {
  left: 0;
  background: linear-gradient(90deg, rgba(7,17,31,0.96), rgba(7,17,31,0));
}

.reviews-fade-right {
  right: 0;
  background: linear-gradient(270deg, rgba(7,17,31,0.96), rgba(7,17,31,0));
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.reviews-track-left {
  animation: reviewsScrollLeft 52s linear infinite;
}

.reviews-track-right {
  animation: reviewsScrollRight 56s linear infinite;
}

.reviews-marquee-wrap:hover .reviews-track {
  animation-play-state: paused;
}

.review-marquee-card {
  width: min(380px, 82vw);
  min-height: 235px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 14%, rgba(217,183,111,0.16), transparent 34%),
    rgba(255,255,255,0.075);
  padding: 24px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.18);
  transform: scale(0.94);
  opacity: 0.66;
  transition: transform .35s ease, opacity .35s ease, background .35s ease, border-color .35s ease;
}

.review-marquee-card.active-review {
  transform: scale(1.055);
  opacity: 1;
  background:
    radial-gradient(circle at 18% 14%, rgba(217,183,111,0.24), transparent 38%),
    rgba(255,255,255,0.12);
  border-color: rgba(217,183,111,0.48);
  z-index: 2;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.google-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #07111f;
  background: linear-gradient(135deg, #ffffff, var(--gold-soft));
  border: 1px solid rgba(217,183,111,0.55);
  flex: 0 0 auto;
}

.small-stars {
  font-size: 15px;
  letter-spacing: 2px;
  margin-top: 2px;
}

.review-marquee-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.review-marquee-card a {
  color: var(--gold-soft);
  font-weight: 850;
}

.reviews-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@keyframes reviewsScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes reviewsScrollRight {
  from { transform: translateX(calc(-50% - 9px)); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track-left,
  .reviews-track-right {
    animation: none;
  }
}

@media (max-width: 680px) {
  .reviews-marquee-wrap {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }

  .reviews-fade {
    width: 46px;
  }

  .review-marquee-card {
    width: 82vw;
    min-height: 260px;
    padding: 20px;
  }

  .review-marquee-card.active-review {
    transform: scale(1.02);
  }
}


/* Homepage hero silhouette portrait */
.hero-visual-card {
  position: relative;
}

.hero-portrait-stage {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(217,183,111,0.28);
  background:
    radial-gradient(circle at 20% 16%, rgba(217,183,111,0.16), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(118,169,255,0.18), transparent 34%),
    linear-gradient(155deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.hero-portrait-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-portrait-glow-one {
  width: 220px;
  height: 220px;
  left: -45px;
  top: 24px;
  background: rgba(217,183,111,0.16);
}

.hero-portrait-glow-two {
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: -24px;
  background: rgba(118,169,255,0.14);
}

.hero-portrait-cutout {
  position: absolute;
  right: 18px;
  bottom: 0;
  height: 98%;
  width: auto;
  max-width: min(100%, 520px);
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
  z-index: 2;
}

.hero-floating-badge {
  position: absolute;
  z-index: 3;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(217,183,111,0.34);
  background: rgba(7,17,31,0.82);
  backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0,0,0,0.18);
  font-size: 13px;
  font-weight: 800;
}

.hero-floating-badge a {
  color: inherit;
}

.hero-floating-badge-top {
  top: 24px;
  left: 24px;
}

.hero-floating-badge-bottom {
  bottom: 28px;
  right: 28px;
}

.hero-identity-card {
  position: absolute;
  left: 24px;
  bottom: 26px;
  z-index: 3;
  max-width: min(62%, 320px);
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(217,183,111,0.24);
  background: rgba(7,17,31,0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.hero-identity-card strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

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

@media (max-width: 1040px) {
  .hero-portrait-stage {
    min-height: 560px;
  }

  .hero-portrait-cutout {
    right: 0;
    max-width: 470px;
  }

  .hero-identity-card {
    max-width: min(68%, 340px);
  }
}

@media (max-width: 680px) {
  .hero-portrait-stage {
    min-height: 540px;
    border-radius: 28px;
  }

  .hero-floating-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero-floating-badge-top {
    top: 16px;
    left: 16px;
  }

  .hero-floating-badge-bottom {
    right: 16px;
    bottom: 16px;
  }

  .hero-identity-card {
    left: 16px;
    bottom: 16px;
    right: 16px;
    max-width: none;
    padding: 16px 18px;
  }

  .hero-identity-card strong {
    font-size: 18px;
  }

  .hero-identity-card span {
    font-size: 13px;
  }

  .hero-portrait-cutout {
    right: -22px;
    height: 95%;
    max-width: 380px;
  }
}


/* Floating AI assistant and WhatsApp */
.floating-contact-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-action-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  backdrop-filter: blur(12px);
}

.float-action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.38);
}

.float-action-button svg {
  width: 25px;
  height: 25px;
  display: block;
}

.float-ai-button {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #07111f;
}

.float-whatsapp-button {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
}

.ai-assistant-panel {
  position: fixed;
  right: 22px;
  bottom: 96px;
  width: min(390px, calc(100vw - 28px));
  max-height: min(690px, calc(100vh - 126px));
  z-index: 119;
  border: 1px solid rgba(217,183,111,0.28);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(217,183,111,0.16), transparent 36%),
    linear-gradient(155deg, rgba(13,27,46,0.98), rgba(7,17,31,0.98));
  box-shadow: 0 28px 78px rgba(0,0,0,0.48);
  transform: translateY(16px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.ai-assistant-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ai-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}

.ai-assistant-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #07111f;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ai-assistant-title strong {
  display: block;
  line-height: 1.1;
}

.ai-assistant-title span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.ai-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.ai-assistant-body {
  padding: 16px;
  overflow: auto;
  max-height: calc(min(690px, calc(100vh - 126px)) - 72px);
}

.ai-message {
  border-radius: 18px;
  padding: 13px 14px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.48;
}

.ai-message.bot {
  background: rgba(255,255,255,0.075);
  border: 1px solid var(--line);
  color: #e7edf8;
}

.ai-message.user {
  margin-left: auto;
  max-width: 88%;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 760;
}

.ai-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 14px 0;
}

.ai-quick-button {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 15px;
  background: rgba(255,255,255,0.065);
  color: var(--text);
  padding: 10px 11px;
  text-align: left;
  cursor: pointer;
  font-weight: 760;
  font-size: 13px;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.ai-quick-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.105);
  border-color: rgba(217,183,111,0.32);
}

.ai-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ai-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 850;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

.ai-cta-link.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #07111f;
  border-color: transparent;
}

.ai-disclaimer {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(118,169,255,0.08);
  border: 1px solid rgba(118,169,255,0.18);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .floating-contact-stack {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .float-action-button {
    width: 52px;
    height: 52px;
  }

  .ai-assistant-panel {
    right: 14px;
    bottom: 82px;
    width: calc(100vw - 28px);
    border-radius: 24px;
  }

  .ai-quick-grid {
    grid-template-columns: 1fr;
  }
}


/* Assistant free question input */
.ai-input-area {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
}

.ai-input-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ai-input-row {
  display: flex;
  gap: 8px;
}

.ai-input-row input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  padding: 11px 13px;
  font-size: 13px;
}

.ai-send-button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  cursor: pointer;
  font-weight: 900;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.ai-suggestion-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.ai-message.bot strong {
  color: var(--gold-soft);
}

@media (max-width: 680px) {
  .ai-input-row {
    flex-direction: column;
  }

  .ai-send-button {
    min-height: 42px;
  }
}


/* Improved guided assistant: chronological message stream */
.ai-message-stream {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
  scroll-behavior: smooth;
}

.ai-message-stream .ai-message {
  margin-bottom: 0;
}

.ai-message-time {
  display: block;
  margin-top: 6px;
  color: rgba(231,237,248,0.62);
  font-size: 10px;
  font-weight: 700;
}

.ai-message.user .ai-message-time {
  color: rgba(7,17,31,0.62);
}

.ai-assistant-body {
  scroll-behavior: smooth;
}

@media (max-width: 680px) {
  .ai-message-stream {
    max-height: 220px;
  }
}


/* AI assistant layout */
.ai-top-down-layout {
  display: flex;
  flex-direction: column;
}

.ai-top-down-layout .ai-input-area {
  order: 1;
  margin-top: 0;
}

.ai-top-down-layout .ai-quick-grid {
  order: 2;
}

.ai-top-down-layout .ai-message-stream {
  order: 3;
  max-height: none;
  overflow: visible;
  padding: 12px 4px 0 0;
  margin-top: 2px;
  border-top: 1px solid var(--line);
}

.ai-top-down-layout .ai-cta-row {
  order: 4;
}

.ai-top-down-layout .ai-disclaimer {
  order: 5;
}

.ai-top-down-layout .ai-message {
  animation: aiMessageDrop .18s ease-out both;
}

@keyframes aiMessageDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Franchise advisory block */
.franchise-box {
  margin: 30px 0 28px;
  border: 1px solid rgba(217,183,111,0.28);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 10% 0%, rgba(217,183,111,0.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

.franchise-box h3 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.franchise-box h4 {
  margin: 26px 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.franchise-box p {
  color: var(--muted);
}

.franchise-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(217,183,111,0.34);
  background: rgba(217,183,111,0.10);
  color: var(--gold-soft);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.franchise-choice {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.065);
}

.franchise-choice strong {
  display: block;
  color: var(--gold-soft);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 9px;
}

.franchise-choice span {
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin: 22px 0;
  background: rgba(0,0,0,0.14);
}

.franchise-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.franchise-table th,
.franchise-table td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  vertical-align: top;
}

.franchise-table th {
  color: var(--gold-soft);
  background: rgba(217,183,111,0.08);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.franchise-table td {
  color: #dce4f3;
}

.franchise-table tr:last-child td { border-bottom: 0; }

.franchise-note,
.franchise-risk {
  border: 1px solid rgba(118,169,255,0.24);
  border-radius: 20px;
  background: rgba(118,169,255,0.08);
  padding: 17px 18px;
  margin-top: 16px;
}

.franchise-risk {
  border-color: rgba(217,183,111,0.30);
  background: rgba(217,183,111,0.10);
}

.franchise-note strong,
.franchise-risk strong {
  color: var(--gold-soft);
}

@media (max-width: 760px) {
  .franchise-grid { grid-template-columns: 1fr; }
  .franchise-box { border-radius: 22px; }
}

.landing-logo-img { display: block; width: min(360px, 90%); height: auto; margin: 0 0 22px; }


.priority-section {
  padding: 82px 0;
  position: relative;
}

.priority-section + .priority-section {
  padding-top: 18px;
}

.priority-steps .step {
  min-height: 235px;
}

.priority-card-grid .card,
.case-card {
  height: 100%;
}

.priority-card .checklist {
  gap: 11px;
}

.case-card {
  border: 1px solid rgba(217,183,111,0.24);
  border-radius: var(--radius);
  padding: 26px;
  background:
    radial-gradient(circle at 18% 12%, rgba(217,183,111,0.16), transparent 34%),
    rgba(255,255,255,0.07);
  box-shadow: 0 16px 46px rgba(0,0,0,0.2);
}

.case-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(217,183,111,0.14);
  border: 1px solid rgba(217,183,111,0.28);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.case-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.case-card p {
  margin: 0;
  color: var(--muted);
}

.why-grid {
  align-items: stretch;
}

.why-main-card p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
}

.why-actions {
  justify-content: flex-start;
}

.why-list-card {
  display: grid;
  gap: 14px;
}

.why-list-card article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.07);
}

.why-list-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 17px;
}

.why-list-card span {
  color: var(--muted);
  display: block;
}

.mobile-conversion-bar {
  display: none;
}

@media (max-width: 1040px) {
  .priority-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

  .priority-section {
    padding: 56px 0;
  }

  .priority-section + .priority-section {
    padding-top: 10px;
  }

  .priority-steps {
    grid-template-columns: 1fr;
  }

  .priority-steps .step {
    min-height: auto;
  }

  .why-actions {
    width: 100%;
  }

  .why-actions .btn {
    width: 100%;
  }

  .mobile-conversion-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 150;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 24px;
    background: rgba(7,17,31,0.88);
    box-shadow: 0 24px 70px rgba(0,0,0,0.42);
    backdrop-filter: blur(18px);
  }

  .mobile-conversion-link {
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    font-size: 14px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255,255,255,0.07);
  }

  .mobile-conversion-link.primary {
    color: #07111f;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  }

  .mobile-conversion-link svg {
    width: 18px;
    height: 18px;
  }

  .floating-contact-stack {
    bottom: 92px;
  }

  .float-whatsapp-button {
    display: none;
  }

  .ai-assistant-panel {
    bottom: 154px;
    max-height: calc(100vh - 178px);
  }
}


.legal-notice-box,
.booking-terms-note,
.ai-sensitive-warning {
  border: 1px solid rgba(217,183,111,0.32);
  background: rgba(217,183,111,0.08);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
}

.legal-notice-box {
  margin: 20px 0 18px;
}

.legal-notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.legal-notice-box p,
.booking-terms-note {
  font-size: 0.95rem;
  line-height: 1.65;
}

.booking-terms-note {
  margin: 14px 0 0;
}

.legal-table-wrap {
  margin: 16px 0 22px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  color: var(--gold-soft);
  background: rgba(217,183,111,0.08);
  font-weight: 800;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.ai-sensitive-warning {
  margin-top: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}

.cookie-consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 260;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent-card {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(217,183,111,0.36);
  border-radius: 28px;
  padding: 22px;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(217,183,111,0.20), transparent 34%),
    linear-gradient(145deg, rgba(13,27,46,0.98), rgba(7,17,31,0.98));
  box-shadow: 0 26px 80px rgba(0,0,0,0.50);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.cookie-consent-copy h2,
.cookie-preferences-card h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}

.cookie-consent-copy p,
.cookie-preferences-card p {
  margin: 0;
  color: var(--muted);
}

.cookie-consent-copy a,
.cookie-preferences-card a {
  color: var(--gold-soft);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-consent-kicker {
  margin: 0 0 8px !important;
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cookie-consent-actions,
.cookie-preferences-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(217,183,111,0.30);
  padding: 11px 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(217,183,111,0.58);
  box-shadow: 0 12px 26px rgba(0,0,0,0.24);
}

.cookie-btn-primary {
  color: #07111f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.cookie-btn-secondary {
  background: rgba(255,255,255,0.08);
}

.cookie-btn-link {
  color: var(--gold-soft);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.cookie-preferences-modal {
  position: fixed;
  inset: 0;
  z-index: 270;
  display: grid;
  place-items: center;
  padding: 22px;
}

.cookie-preferences-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,8,18,0.70);
  backdrop-filter: blur(8px);
}

.cookie-preferences-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 34px));
  overflow: auto;
  border: 1px solid rgba(217,183,111,0.36);
  border-radius: 30px;
  padding: 26px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(217,183,111,0.18), transparent 34%),
    linear-gradient(145deg, rgba(13,27,46,0.99), rgba(7,17,31,0.99));
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.cookie-preferences-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  font-size: 26px;
  line-height: 1;
}

.cookie-preferences-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cookie-preference-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.055);
}

.cookie-preference-row strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.cookie-preference-row span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.cookie-switch {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  text-align: center;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch > span {
  width: 54px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  position: relative;
  transition: background .18s ease, border-color .18s ease;
}

.cookie-switch > span::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform .18s ease;
}

.cookie-switch input:checked + span {
  border-color: rgba(217,183,111,0.72);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
  background: #07111f;
}

.cookie-switch input:focus-visible + span,
.cookie-btn:focus-visible,
.cookie-preferences-close:focus-visible,
.footer-cookie-preferences:focus-visible {
  outline: 3px solid rgba(217,183,111,0.65);
  outline-offset: 3px;
}

.cookie-switch em {
  max-width: 90px;
  font-style: normal;
}

.cookie-saved-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 280;
  transform: translate(-50%, 12px);
  opacity: 0;
  border: 1px solid rgba(217,183,111,0.36);
  border-radius: 999px;
  padding: 12px 18px;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 42px rgba(0,0,0,0.34);
  font-weight: 900;
  transition: opacity .22s ease, transform .22s ease;
}

.cookie-saved-notice.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer-cookie-preferences {
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  font: inherit;
  opacity: .82;
}

.footer-cookie-preferences:hover {
  color: var(--gold-soft);
  opacity: 1;
}

@media (max-width: 780px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 96px;
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 24px;
    padding: 18px;
  }

  .cookie-consent-actions,
  .cookie-preferences-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-preferences-modal {
    padding: 12px;
  }

  .cookie-preferences-card {
    max-height: calc(100vh - 24px);
    border-radius: 24px;
    padding: 22px;
  }

  .cookie-preference-row {
    grid-template-columns: 1fr;
  }

  .cookie-switch {
    align-items: flex-start;
  }

  .cookie-switch em {
    max-width: none;
  }
}



/* Investment education / historical simulation page */
.investment-opening {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 18px;
}

.investment-key-message,
.investment-method-box,
.investment-contact-box {
  border: 1px solid rgba(217,183,111,0.28);
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(217,183,111,0.13), rgba(118,169,255,0.08));
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  margin: 20px 0 26px;
}

.investment-key-message strong,
.investment-contact-box h3,
.investment-method-box h3 {
  color: var(--gold-soft);
}

.investment-steps,
.investment-metrics,
.source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}

.investment-steps > div,
.investment-metrics > div,
.source-grid > a {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
}

.investment-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 900;
}

.investment-steps strong,
.investment-metrics strong,
.source-grid strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.investment-steps p,
.investment-metrics p,
.source-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.source-grid > a {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.source-grid > a:hover {
  transform: translateY(-2px);
  border-color: rgba(217,183,111,0.42);
  background: rgba(255,255,255,0.09);
}

.investment-contact-box {
  background: linear-gradient(135deg, rgba(118,169,255,0.14), rgba(217,183,111,0.13));
}

@media (max-width: 760px) {
  .investment-steps,
  .investment-metrics,
  .source-grid {
    grid-template-columns: 1fr;
  }
}

.investment-page h2 { margin-bottom: 14px; }
.investment-simulator { margin: 28px 0 34px; }
.simulator-panel {
  border: 1px solid rgba(217,183,111,0.28);
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  box-shadow: 0 18px 45px rgba(0,0,0,0.24);
}
.simulator-kicker {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.simulator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.simulator-form label { display: grid; gap: 8px; color: var(--text); font-weight: 800; }
.simulator-form label > span { font-size: 0.92rem; }
.simulator-wide { grid-column: 1 / -1; }
.input-affix { display: flex; align-items: center; gap: 10px; }
.input-affix strong {
  min-width: 54px;
  border: 1px solid rgba(217,183,111,0.34);
  border-radius: 16px;
  padding: 14px 10px;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  text-align: center;
}
.simulator-form input,
.simulator-form select {
  width: 100%;
  min-height: 51px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(7,17,31,0.74);
  font: inherit;
  outline: none;
}
.simulator-form input:focus,
.simulator-form select:focus {
  border-color: rgba(217,183,111,0.68);
  box-shadow: 0 0 0 4px rgba(217,183,111,0.12);
}
.simulator-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.simulator-microcopy,
.simulator-data-note { color: var(--muted); font-size: 0.92rem; }
.simulator-status {
  margin: 16px 0;
  border: 1px solid rgba(118,169,255,0.25);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(118,169,255,0.08);
}
.simulator-results.is-hidden { display: none; }
.simulator-summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.simulator-summary-row > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.055);
}
.simulator-summary-row span,
.result-card span { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.simulator-summary-row strong { display: block; margin-top: 6px; color: var(--gold-soft); }
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.result-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
}
.result-card-gold { border-color: rgba(217,183,111,0.36); background: rgba(217,183,111,0.10); }
.result-card strong { display: block; margin: 8px 0; color: var(--text); font-size: clamp(1.25rem, 2vw, 1.72rem); line-height: 1.15; }
.result-card p { margin: 0; color: var(--muted); font-size: .93rem; }
.simulator-highlight {
  margin: 20px 0;
  border: 1px solid rgba(217,183,111,0.36);
  border-radius: 24px;
  padding: 20px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(217,183,111,0.16), rgba(118,169,255,0.08));
  font-weight: 750;
}
.simulator-chart {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: rgba(7,17,31,0.42);
}
.chart-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.2fr) minmax(130px, 3fr) minmax(90px, 1fr);
  align-items: center;
  gap: 12px;
}
.chart-row span { color: var(--muted); font-weight: 800; font-size: .9rem; }
.chart-row > div {
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
}
.chart-row i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118,169,255,0.76), rgba(217,183,111,0.92));
  transition: width .45s ease;
}
.chart-row strong { color: var(--text); text-align: right; font-size: .92rem; }
.investment-explain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.investment-explain-grid > div {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.055);
}
@media (max-width: 900px) {
  .simulator-summary-row,
  .result-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .simulator-form,
  .simulator-summary-row,
  .result-grid,
  .investment-explain-grid { grid-template-columns: 1fr; }
  .chart-row { grid-template-columns: 1fr; gap: 7px; }
  .chart-row strong { text-align: left; }
  .simulator-panel { padding: 18px; border-radius: 22px; }
}


.pillar-3b-box {
  margin: 24px 0;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(217,183,111,0.28);
  background: linear-gradient(145deg, rgba(217,183,111,0.10), rgba(255,255,255,0.04));
}
.pillar-3b-box h3 { margin-top: 0; }
.pillar-3b-box .small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.data-update-stamp {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 8px 0 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.08);
  color: var(--text);
  font-size: 0.92rem;
}
.data-update-stamp strong { color: var(--gold-soft); }

@media (min-width: 1041px) {
  .topbar .nav {
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr) 286px;
    align-items: center;
    gap: 18px;
    min-height: 78px;
  }

  .topbar .brand-logo-link,
  .topbar .brand {
    width: 286px;
    min-width: 286px;
    max-width: 286px;
    flex: 0 0 286px;
    overflow: hidden;
  }

  .topbar .brand-logo-img {
    width: 100%;
    height: auto;
    max-width: 286px;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
  }

  .topbar .menu {
    min-width: 0;
    justify-content: center;
    gap: clamp(10px, 1.15vw, 16px);
    font-size: 13.5px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .topbar .menu a {
    flex: 0 1 auto;
  }

  .topbar .actions {
    width: 286px;
    min-width: 286px;
    max-width: 286px;
    flex: 0 0 286px;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .topbar .lang-select,
  .topbar .lang-links {
    width: 146px;
    min-width: 146px;
    justify-content: center;
    flex: 0 0 146px;
  }

  .topbar .lang-links a,
  .topbar .lang-select button {
    width: 30px;
    min-width: 30px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .topbar .actions > .btn {
    width: 130px;
    min-width: 130px;
    flex: 0 0 130px;
    padding-left: 12px;
    padding-right: 12px;
    text-align: center;
  }
}

@media (min-width: 1041px) and (max-width: 1130px) {
  .topbar .nav {
    grid-template-columns: 250px minmax(0, 1fr) 274px;
    gap: 14px;
  }

  .topbar .brand-logo-link,
  .topbar .brand {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    flex-basis: 250px;
  }

  .topbar .brand-logo-img {
    max-width: 250px;
    max-height: 48px;
  }

  .topbar .menu {
    gap: 10px;
    font-size: 12.8px;
  }

  .topbar .actions {
    width: 274px;
    min-width: 274px;
    max-width: 274px;
    flex-basis: 274px;
  }

  .topbar .lang-select,
  .topbar .lang-links {
    width: 140px;
    min-width: 140px;
    flex-basis: 140px;
  }

  .topbar .actions > .btn {
    width: 124px;
    min-width: 124px;
    flex-basis: 124px;
    font-size: 13px;
  }
}

@media (max-width: 1040px) {
  .topbar .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .topbar .brand-logo-link,
  .topbar .brand {
    min-width: 0;
    max-width: min(300px, 68vw);
    width: auto;
    overflow: hidden;
  }

  .topbar .brand-logo-img {
    width: 100%;
    height: auto;
    max-width: min(300px, 68vw);
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
  }

  .topbar .mobile-menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .topbar .menu {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .topbar .actions {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .topbar .lang-select,
  .topbar .lang-links {
    flex: 0 0 auto;
    min-width: 146px;
    justify-content: center;
  }

  .topbar .actions > .btn {
    flex: 0 0 auto;
    min-width: 132px;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .topbar .nav {
    align-items: center;
    padding: 14px 0;
  }

  .topbar .brand-logo-link,
  .topbar .brand {
    max-width: min(245px, 64vw);
  }

  .topbar .brand-logo-img {
    max-width: min(245px, 64vw);
    max-height: 42px;
  }

  .topbar .actions {
    gap: 8px;
  }

  .topbar .lang-select,
  .topbar .lang-links {
    min-width: 142px;
  }

  .topbar .actions > .btn {
    min-width: 128px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 390px) {
  .topbar .brand-logo-link,
  .topbar .brand {
    max-width: min(210px, 60vw);
  }

  .topbar .brand-logo-img {
    max-width: min(210px, 60vw);
    max-height: 38px;
  }

  .topbar .actions > .btn {
    min-width: 120px;
    font-size: 13px;
  }
}


.ai-message span:first-child {
  white-space: pre-line;
}

.ai-avatar {
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.ai-cta-link.secondary {
  font-size: 11px;
  opacity: 0.78;
  background: rgba(255,255,255,0.045);
}

.ai-cta-link.secondary:hover {
  opacity: 1;
}

.ai-sensitive-warning {
  color: rgba(255,255,255,0.9);
}


/* Production refinements */
.insight-box,
.legal-reminder,
.investment-disclaimer-box {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(217,183,111,0.32);
  border-radius: 22px;
  background: rgba(217,183,111,0.08);
  color: #e9eef8;
}

.insight-box h3,
.legal-reminder strong {
  color: var(--gold-soft);
}

.insight-box p:last-child,
.legal-reminder p:last-child {
  margin-bottom: 0;
}

.subtle-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-consent-card-simple {
  grid-template-columns: 1fr auto;
  max-width: 920px;
}

.cookie-preferences-card-simple {
  max-width: 680px;
}

.cookie-switch-static {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 8px 12px;
  border: 1px solid rgba(217,183,111,0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ai-assistant-panel {
  max-width: calc(100vw - 28px);
}

.ai-input-row input {
  min-width: 0;
}

@media (max-width: 680px) {
  .floating-contact-stack {
    right: 12px;
    bottom: 92px;
  }

  .float-action-button {
    width: 48px;
    height: 48px;
  }

  .ai-assistant-panel {
    left: 12px;
    right: 12px;
    bottom: 150px;
    width: auto;
    max-height: calc(100vh - 174px);
  }

  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 76px;
  }

  .cookie-consent-card-simple {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cookie-consent-actions,
  .cookie-preferences-actions {
    justify-content: stretch;
  }

  .cookie-btn,
  .cookie-consent-actions .cookie-btn,
  .cookie-preferences-actions .cookie-btn {
    width: 100%;
  }

  .page-layout {
    gap: 16px;
  }

  .page-aside {
    order: 2;
  }

  article.card {
    order: 1;
  }
}

@media (max-width: 390px) {
  .ai-assistant-panel {
    bottom: 144px;
    max-height: calc(100vh - 166px);
  }
}
