:root {
  color-scheme: light;
  --bg: #f7fbfc;
  --bg-soft: #eef8fa;
  --surface: rgba(255, 255, 255, .84);
  --surface-strong: #ffffff;
  --text: #13242c;
  --muted: #58717b;
  --muted-2: #748c96;
  --line: rgba(26, 63, 75, .14);
  --brand: #45d4d9;
  --brand-2: #2d9dcc;
  --brand-dark: #12607c;
  --accent: #e8fbfd;
  --shadow: 0 22px 60px rgba(15, 57, 69, .13);
  --shadow-soft: 0 10px 30px rgba(15, 57, 69, .09);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #081317;
    --bg-soft: #0d1d22;
    --surface: rgba(15, 30, 36, .82);
    --surface-strong: #11242b;
    --text: #edf9fb;
    --muted: #aac0c7;
    --muted-2: #91aab3;
    --line: rgba(150, 233, 238, .17);
    --brand: #55e2e7;
    --brand-2: #43b8e9;
    --brand-dark: #98f1f3;
    --accent: rgba(69, 212, 217, .12);
    --shadow: 0 24px 70px rgba(0, 0, 0, .36);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, .24);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #081317;
  --bg-soft: #0d1d22;
  --surface: rgba(15, 30, 36, .82);
  --surface-strong: #11242b;
  --text: #edf9fb;
  --muted: #aac0c7;
  --muted-2: #91aab3;
  --line: rgba(150, 233, 238, .17);
  --brand: #55e2e7;
  --brand-2: #43b8e9;
  --brand-dark: #98f1f3;
  --accent: rgba(69, 212, 217, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 5% 0%, rgba(69, 212, 217, .18), transparent 34rem),
    radial-gradient(circle at 90% 5%, rgba(45, 157, 204, .11), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -.04em; }
h1 { max-width: 12ch; font-size: clamp(3rem, 7vw, 6.1rem); }
h2 { max-width: 13ch; font-size: clamp(2rem, 4vw, 3.85rem); }
h3 { font-size: 1.18rem; letter-spacing: -.02em; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 70%, white); outline-offset: 3px; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section-pad { padding: clamp(3.8rem, 7vw, 7rem) 0; }
.section-tight { padding: clamp(1.3rem, 3vw, 2.2rem) 0; }
.section-muted { background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 52%, transparent 100%); }
.skip-link { position: absolute; left: -999px; top: 1rem; z-index: 100; padding: .7rem 1rem; border-radius: 999px; background: var(--surface-strong); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; min-width: 0; font-weight: 850; letter-spacing: -.03em; }
.brand img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(69, 212, 217, .2)); }
.brand span { font-size: 1.12rem; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.main-nav a { padding: .64rem .82rem; border-radius: 999px; color: var(--muted); font-weight: 720; font-size: .95rem; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--text); background: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: .55rem; margin-left: .45rem; }
.language-menu { position: relative; }
.language-current, .theme-toggle, .menu-toggle {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 780;
}
.language-current { padding: .52rem .86rem; max-width: 142px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.language-list {
  position: absolute;
  right: 0;
  top: calc(100% + .6rem);
  display: none;
  width: 190px;
  padding: .45rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}
.language-menu:hover .language-list, .language-menu:focus-within .language-list, .language-menu.is-open .language-list { display: grid; }
.language-list a { display: flex; align-items: center; min-height: 40px; padding: .58rem .72rem; border-radius: 12px; color: var(--muted); font-weight: 760; }
.language-list a:hover, .language-list a.active { color: var(--text); background: var(--accent); }
.theme-toggle { width: 66px; padding: 0 .38rem; }
.theme-toggle-track { position: relative; display: block; height: 28px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 25%, var(--surface-strong)); }
.theme-toggle-dot { position: absolute; left: 3px; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--surface-strong); box-shadow: 0 2px 8px rgba(0,0,0,.25); transition: transform .2s ease; }
:root[data-theme="dark"] .theme-toggle-dot { transform: translateX(32px); }
.menu-toggle { display: none; padding: .45rem .78rem; }

.eyebrow { margin-bottom: .85rem; color: var(--brand-dark); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero { overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .82fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero-text { max-width: 660px; margin: 1.15rem 0 1.45rem; font-size: clamp(1.07rem, 2vw, 1.24rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .78rem; margin-bottom: .85rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .82rem 1.2rem; border: 1px solid transparent; border-radius: 999px; font-weight: 900; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #06242b; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 14px 36px rgba(69, 212, 217, .25); }
.btn-ghost { color: var(--text); background: var(--surface); border-color: var(--line); }
.inline-cta { width: fit-content; margin-top: .35rem; }
.hero-note { max-width: 620px; margin: 0; color: var(--muted-2); font-size: .95rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .78rem; max-width: 760px; margin-top: 1.55rem; }
.hero-stats div { padding: .95rem; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-soft); }
.hero-stats strong { display: block; color: var(--text); font-size: 1.38rem; line-height: 1; }
.hero-stats span { display: block; margin-top: .42rem; color: var(--muted); font-size: .86rem; }
.hero-visual { display: grid; place-items: center; min-width: 0; }
.hero-logo-card { display: grid; place-items: center; width: min(100%, 420px); aspect-ratio: 1; padding: 1.35rem; border: 1px solid rgba(85, 226, 231, .24); border-radius: 46px; background: radial-gradient(circle at 50% 35%, rgba(69, 212, 217, .18), transparent 52%), #0c171c; box-shadow: var(--shadow); }
.hero-logo-card img { width: 88%; height: 88%; object-fit: contain; }

.trust-strip { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 70%, transparent); }
.trust-grid { display: grid; grid-template-columns: minmax(210px, .9fr) repeat(4, minmax(0, 1fr)); gap: .75rem; align-items: stretch; }
.trust-intro { padding: .65rem 0; }
.trust-intro h2 { max-width: 16ch; font-size: clamp(1.35rem, 2vw, 1.85rem); }
.trust-card { display: grid; align-content: start; gap: .35rem; min-width: 0; padding: .95rem; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-soft); }
.trust-card strong { color: var(--text); line-height: 1.15; }
.trust-card span { color: var(--muted); font-size: .9rem; }

.section-heading { display: grid; gap: .68rem; margin-bottom: 1.55rem; }
.section-heading p:not(.eyebrow) { max-width: 760px; font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card, .step-card, .price-card, .benefit-panel, .legal-card, .about-story, .about-teaser-card, .price-summary-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.service-card { display: grid; gap: .85rem; min-height: 205px; padding: 1.2rem; }
.service-card p { margin: .55rem 0 0; }
.service-icon { position: relative; width: 46px; height: 46px; border-radius: 16px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.service-icon::after { content: ""; position: absolute; inset: 12px; border: 3px solid rgba(6, 36, 43, .55); border-radius: 50%; }
.split-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr); gap: clamp(1.3rem, 4vw, 2.5rem); align-items: center; }
.split-grid p { max-width: 650px; font-size: 1.05rem; }
.corporate-panel { padding: clamp(1.1rem, 3vw, 1.6rem); border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px); background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 38%, transparent), transparent 70%); }
.benefit-panel { padding: 1.15rem; }
.benefit-panel ul { display: grid; gap: .72rem; padding: 0; margin: 0; list-style: none; }
.benefit-panel li { position: relative; min-height: 48px; padding: .75rem .75rem .75rem 2.35rem; border-radius: 16px; background: color-mix(in srgb, var(--accent) 72%, transparent); color: var(--text); font-weight: 760; }
.benefit-panel li::before { content: ""; position: absolute; left: .86rem; top: 1.05rem; width: .66rem; height: .66rem; border-radius: 999px; background: var(--brand); box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand) 18%, transparent); }

.price-teaser-section { position: relative; overflow: hidden; }
.price-teaser-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr); gap: clamp(1rem, 4vw, 2rem); align-items: center; }
.compact-heading { margin-bottom: 0; }
.compact-heading .btn { width: fit-content; margin-top: .25rem; }
.price-teaser-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.price-teaser-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 138px; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); box-shadow: var(--shadow-soft); }
.price-teaser-card span { color: var(--muted); font-weight: 820; }
.price-teaser-card strong { color: var(--text); font-size: clamp(1.65rem, 4vw, 2.25rem); line-height: 1; letter-spacing: -.04em; }
.price-teaser-card small { color: var(--brand-dark); font-weight: 900; }
.about-teaser-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.25rem; align-items: center; padding: clamp(1.15rem, 3vw, 1.8rem); }
.about-teaser-card h2 { max-width: 18ch; }
.about-teaser-card p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; }

.contact-section { padding-top: clamp(2.2rem, 5vw, 4rem); }
.contact-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr); gap: 1.4rem; align-items: center; padding: clamp(1.25rem, 4vw, 2.3rem); border: 1px solid rgba(85, 226, 231, .24); border-radius: calc(var(--radius) + 12px); background: linear-gradient(145deg, #0c171c, #123540); color: #eefbfc; box-shadow: var(--shadow); }
.contact-card p { color: #bfd5dc; }
.contact-card .eyebrow { color: #80edf1; }
.contact-card h2 { color: #fff; }
.contact-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .72rem; }
.contact-link { display: grid; gap: .12rem; min-height: 76px; padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); }
.contact-link:hover { background: rgba(255,255,255,.1); }
.contact-link span { color: #98cbd4; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.contact-link strong { color: #fff; overflow-wrap: anywhere; }

.price-page-hero { padding-bottom: clamp(1.8rem, 4vw, 2.4rem); }
.price-page-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .44fr); gap: clamp(1rem, 4vw, 2rem); align-items: end; }
.price-page-head h1 { max-width: 12ch; }
.price-summary-card { padding: 1.2rem; }
.price-summary-card strong { display: block; margin-bottom: .4rem; color: var(--text); font-size: 1.08rem; line-height: 1.2; }
.price-summary-card p { margin: 0; }
.price-list-section { padding-top: clamp(2rem, 5vw, 4rem); }
.price-category-nav { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1rem; }
.price-category-nav a { padding: .62rem .85rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); box-shadow: var(--shadow-soft); font-weight: 850; }
.price-category-nav a:hover { transform: translateY(-1px); border-color: color-mix(in srgb, var(--brand) 50%, var(--line)); }
.price-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.price-card { scroll-margin-top: 108px; padding: 1.05rem; }
.price-card.featured { grid-column: 1 / -1; background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 16%, var(--surface)), var(--surface)); }
.price-card-head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding-bottom: .82rem; border-bottom: 1px solid var(--line); }
.price-card-head h2 { max-width: none; font-size: clamp(1.32rem, 3vw, 1.95rem); }
.price-list { display: grid; gap: .48rem; padding: 0; margin: .62rem 0 0; list-style: none; }
.price-list li { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: .75rem; align-items: baseline; min-height: 58px; padding: .72rem; border-radius: 15px; background: color-mix(in srgb, var(--bg-soft) 72%, transparent); }
.price-list span { min-width: 0; color: var(--text); font-weight: 760; }
.price-list small { color: var(--muted); white-space: nowrap; }
.price-list strong { color: var(--text); white-space: nowrap; }
.price-note, .page-note { margin: .85rem .18rem 0; color: var(--muted); font-size: .92rem; }

.about-hero { min-height: calc(100vh - 80px); display: grid; align-items: center; }
.about-page-grid { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(1.35rem, 4vw, 3.4rem); align-items: center; }
.about-portrait { position: relative; width: 100%; max-height: 720px; overflow: hidden; border: 1px solid var(--line); border-radius: calc(var(--radius) + 12px); aspect-ratio: 769 / 1077; background: var(--surface-strong); box-shadow: var(--shadow); }
.about-portrait::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.16)); }
.about-portrait picture { display: block; width: 100%; height: 100%; aspect-ratio: inherit; }
.about-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-story { padding: clamp(1.2rem, 4vw, 2.3rem); }
.about-story h1 { max-width: none; margin-bottom: .35rem; }
.about-caption { color: var(--text); font-weight: 850; }
.about-values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .72rem; margin: 1.1rem 0 1.2rem; }
.about-values div { padding: .85rem; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--bg-soft) 70%, transparent); }
.about-values strong { display: block; color: var(--text); font-size: 1.02rem; line-height: 1.1; }
.about-values span { display: block; margin-top: .32rem; color: var(--muted); font-size: .84rem; }
.about-text-block { display: grid; gap: .85rem; margin-bottom: 1.4rem; }
.about-text-block p { margin: 0; color: var(--muted-2); font-size: 1.03rem; line-height: 1.75; }

.site-footer { padding: 2.8rem 0; border-top: 1px solid rgba(255,255,255,.08); background: #081317; color: #dff5f7; }
.footer-grid { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; }
.footer-grid img { width: 136px; height: 136px; object-fit: contain; }
.footer-grid p { margin: .45rem 0 0; color: #9ebbc3; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem; }
.footer-links a { padding: .54rem .72rem; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #dff5f7; }
.footer-links a:hover { background: rgba(255,255,255,.08); }
.legal-page { padding: 5rem 0; }
.legal-card { padding: clamp(1.3rem, 4vw, 2.5rem); }
.legal-card h1 { max-width: none; margin-bottom: 1rem; font-size: clamp(2.3rem, 5vw, 4rem); }
.legal-card h2 { margin-top: 1.7rem; font-size: 1.5rem; }
.legal-card a:not(.btn) { color: var(--brand-dark); font-weight: 800; }
.mobile-quick-contact { display: none; }

@media (max-width: 1050px) {
  .main-nav { display: none; position: fixed; left: 1rem; right: 1rem; top: 88px; z-index: 90; grid-template-columns: 1fr; margin: 0; padding: .55rem; border: 1px solid var(--line); border-radius: 22px; background: var(--surface-strong); box-shadow: var(--shadow); }
  body.nav-open .main-nav { display: grid; }
  .main-nav a { display: flex; align-items: center; min-height: 48px; padding: .78rem .92rem; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-intro { grid-column: 1 / -1; }
  .hero-grid, .split-grid, .price-teaser-grid, .price-page-head, .about-page-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .service-grid, .price-page-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 520px; margin-inline: auto; }
}

@media (max-width: 768px) {
  :root { --radius: 22px; --radius-sm: 15px; }
  body { padding-top: calc(68px + env(safe-area-inset-top)); padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; }
  .container { width: min(100% - 1rem, var(--container)); }
  .section-pad { padding: 2.35rem 0; }
  .section-tight { padding: 1.15rem 0; }
  h1 { max-width: 13ch; font-size: clamp(2.16rem, 11vw, 3.2rem); }
  h2 { max-width: 15ch; font-size: clamp(1.7rem, 8vw, 2.55rem); }
  h3 { font-size: 1.06rem; }
  p { font-size: .98rem; }
  .eyebrow { margin-bottom: .64rem; font-size: .7rem; }

  .nav-shell { min-height: 68px; gap: .4rem; }
  .brand img { width: 44px; height: 44px; }
  .brand span { display: none; }
  .nav-actions { gap: .32rem; margin-left: auto; }
  .language-current, .theme-toggle, .menu-toggle { min-height: 38px; }
  .language-current { max-width: 84px; padding: .42rem .55rem; font-size: .84rem; }
  .language-list { position: fixed; left: .55rem; right: .55rem; top: calc(68px + env(safe-area-inset-top)); width: auto; grid-template-columns: 1fr 1fr; gap: .25rem; border-radius: 20px; z-index: 95; }
  .language-list a { min-height: 44px; }
  .theme-toggle { width: 50px; padding: 0 .28rem; }
  .theme-toggle-track { height: 24px; }
  .theme-toggle-dot { width: 18px; height: 18px; }
  :root[data-theme="dark"] .theme-toggle-dot { transform: translateX(20px); }
  .menu-toggle { padding: .42rem .62rem; font-size: .9rem; }
  .main-nav { left: .55rem; right: .55rem; top: calc(68px + env(safe-area-inset-top)); max-height: calc(100dvh - 82px - env(safe-area-inset-top)); overflow-y: auto; border-radius: 20px; }

  .hero.section-pad { padding-top: 1.25rem; padding-bottom: 2rem; }
  .hero-grid { gap: .9rem; }
  .hero-text { margin: .8rem 0 1rem; font-size: 1.02rem; }
  .hero-cta { display: grid; grid-template-columns: 1fr; gap: .62rem; margin-bottom: .78rem; }
  .btn { width: 100%; min-height: 52px; padding: .84rem 1rem; }
  .inline-cta { width: 100%; }
  .hero-note { font-size: .9rem; }
  .hero-visual { display: none; }
  .hero-stats { display: flex; gap: .62rem; overflow-x: auto; margin-top: .95rem; padding: .08rem .05rem .52rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .hero-stats div { min-width: 162px; scroll-snap-align: start; padding: .82rem; border-radius: 17px; }
  .hero-stats strong { font-size: 1.18rem; }
  .hero-stats span { font-size: .8rem; }

  .trust-grid { display: flex; gap: .62rem; overflow-x: auto; padding-bottom: .45rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .trust-intro, .trust-card { min-width: 220px; scroll-snap-align: start; }
  .trust-intro { padding: .3rem 0; }
  .trust-card { padding: .82rem; }

  .section-heading { gap: .55rem; margin-bottom: 1.15rem; }
  .section-heading p:not(.eyebrow), .split-grid p { font-size: .98rem; }
  .service-grid { gap: .68rem; }
  .service-card { display: grid; grid-template-columns: auto 1fr; gap: .2rem .75rem; min-height: auto; padding: .95rem; border-radius: 20px; }
  .service-card p { margin-top: .35rem; }
  .service-icon { width: 40px; height: 40px; border-radius: 14px; }
  .service-card div { min-width: 0; }
  .corporate-panel { padding: .9rem; border-radius: 24px; }
  .benefit-panel { padding: .9rem; border-radius: 20px; }
  .benefit-panel li { min-height: 46px; padding: .72rem .72rem .72rem 2.22rem; border-radius: 14px; font-size: .94rem; }
  .benefit-panel li::before { left: .8rem; }

  .price-teaser-grid { gap: 1rem; }
  .compact-heading .btn { width: 100%; }
  .price-teaser-cards { grid-template-columns: 1fr; gap: .62rem; }
  .price-teaser-card { min-height: 106px; padding: .9rem; }
  .about-teaser-card { grid-template-columns: 1fr; gap: .9rem; padding: .98rem; border-radius: 22px; }
  .about-teaser-card h2 { max-width: none; }

  .contact-section { padding-top: 1.1rem; }
  .contact-card { gap: 1rem; padding: 1rem; border-radius: 24px; }
  .contact-actions { grid-template-columns: 1fr; gap: .62rem; }
  .contact-link { min-height: 62px; padding: .76rem .85rem; border-radius: 16px; }
  .contact-link span { font-size: .76rem; }

  .price-page-hero { padding-bottom: 1rem; }
  .price-page-head h1 { max-width: none; }
  .price-summary-card { padding: 1rem; border-radius: 20px; }
  .price-category-nav { position: sticky; top: calc(68px + env(safe-area-inset-top)); z-index: 45; flex-wrap: nowrap; overflow-x: auto; padding: .55rem 0 .72rem; margin-bottom: .75rem; background: var(--bg-soft); -webkit-overflow-scrolling: touch; }
  .price-category-nav a { flex: 0 0 auto; white-space: nowrap; padding: .58rem .72rem; }
  .price-page-grid { gap: .72rem; }
  .price-card { padding: .92rem; border-radius: 20px; scroll-margin-top: calc(140px + env(safe-area-inset-top)); }
  .price-card-head { padding-bottom: .65rem; }
  .price-card-head h2 { font-size: 1.22rem; }
  .price-list { gap: .38rem; }
  .price-list li { grid-template-columns: minmax(0, 1fr) auto; gap: .12rem .65rem; min-height: 54px; padding: .66rem; border-radius: 14px; }
  .price-list small { grid-column: 1 / 2; grid-row: 2 / 3; white-space: normal; font-size: .83rem; }
  .price-list strong { grid-column: 2 / 3; grid-row: 1 / 3; align-self: center; font-size: .98rem; }
  .page-note { font-size: .88rem; }

  .about-hero { min-height: auto; padding-top: 1.4rem; }
  .about-page-grid { gap: .95rem; }
  .about-story { order: 1; padding: 1rem; border-radius: 24px; }
  .about-story h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .about-portrait { order: 2; width: min(100%, 320px); max-height: none; border-radius: 24px; aspect-ratio: 769 / 1077; }
  .about-values { display: flex; gap: .58rem; overflow-x: auto; margin: .95rem 0 1rem; padding-bottom: .34rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .about-values div { min-width: 145px; scroll-snap-align: start; padding: .76rem; border-radius: 16px; }
  .about-text-block { gap: .72rem; margin-bottom: 1rem; }
  .about-text-block p { font-size: .96rem; line-height: 1.68; }

  .footer-grid { display: grid; align-items: start; gap: 1rem; }
  .footer-grid img { width: 102px; height: 102px; }
  .footer-links { justify-content: flex-start; gap: .52rem; }
  .footer-links a { padding: .5rem .64rem; }

  .mobile-quick-contact {
    position: fixed;
    left: max(.65rem, env(safe-area-inset-left));
    right: max(.65rem, env(safe-area-inset-right));
    bottom: calc(.6rem + env(safe-area-inset-bottom));
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .46rem;
    padding: .45rem;
    border: 1px solid color-mix(in srgb, var(--brand) 30%, var(--line));
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 93%, transparent);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
  }
  .mobile-quick-contact a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 999px; background: var(--accent); color: var(--text); font-weight: 920; }
  .mobile-quick-contact a:first-child { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #06242b; }
}

@media (max-width: 390px) {
  .container { width: min(100% - .82rem, var(--container)); }
  .brand img { width: 42px; height: 42px; }
  .language-current { max-width: 76px; padding-inline: .44rem; font-size: .8rem; }
  .theme-toggle { width: 46px; }
  .menu-toggle { padding-inline: .52rem; }
  .menu-toggle span { font-size: 0; }
  .menu-toggle span::before { content: "☰"; font-size: 1rem; line-height: 1; }
  .hero-stats div { min-width: 154px; }
  .trust-intro, .trust-card { min-width: 210px; }
  .price-list span { font-size: .94rem; }
  .mobile-quick-contact { left: .45rem; right: .45rem; padding: .4rem; }
  .mobile-quick-contact a { min-height: 46px; font-size: .94rem; }
}

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

/* Mobile viewport safety patch: prevents grid/flex children and long text from widening the page on phones. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html,
  body { overflow-x: clip; }
}

body,
main,
section,
.site-header,
.site-footer,
.container {
  min-width: 0;
  max-width: 100%;
}

.container {
  max-width: min(var(--container), calc(100vw - 2rem));
}

.hero-grid > *,
.split-grid > *,
.price-teaser-grid > *,
.price-page-head > *,
.about-page-grid > *,
.contact-card > *,
.about-teaser-card > *,
.footer-grid > *,
.service-grid > *,
.price-page-grid > *,
.hero-copy,
.about-story,
.corporate-panel,
.benefit-panel,
.price-summary-card,
.legal-card,
.price-card,
.service-card,
.contact-link {
  min-width: 0;
  max-width: 100%;
}

h1,
h2,
h3,
p,
li,
a,
strong,
span,
small,
.btn,
.price-list li,
.price-list span,
.price-list small,
.price-list strong,
.footer-links,
.footer-links a,
.legal-card {
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-stats,
.trust-grid,
.about-values,
.price-category-nav {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .container {
    max-width: calc(100vw - 1rem);
  }

  .hero-grid,
  .split-grid,
  .price-teaser-grid,
  .price-page-head,
  .about-page-grid,
  .contact-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .about-story,
  .legal-card,
  .price-card,
  .price-summary-card,
  .contact-card,
  .corporate-panel,
  .benefit-panel,
  .about-teaser-card {
    overflow: hidden;
  }

  .hero-stats,
  .trust-grid,
  .about-values,
  .price-category-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    contain: inline-size;
  }

  .hero-stats > *,
  .trust-grid > *,
  .about-values > * {
    flex: 0 0 auto;
    max-width: calc(100vw - 1.4rem);
  }

  .price-list li {
    max-width: 100%;
  }

  .price-list strong {
    justify-self: end;
    text-align: right;
  }

  .footer-links {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .container {
    max-width: calc(100vw - .82rem);
  }
}
