:root {
  --bg: #09090b;
  --bg-soft: #101014;
  --panel: #151519;
  --panel-2: #1b1b20;
  --text: #f4f2ee;
  --muted: #b9b7b0;
  --subtle: #77736c;
  --line: rgba(255,255,255,.11);
  --orange: #ffa012;
  --orange-soft: rgba(255,160,18,.13);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Futura, "Avenir Next", Montserrat, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 1000;
  background: var(--orange);
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(9,9,11,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .25s;
}
.site-header.scrolled { border-color: var(--line); background: rgba(9,9,11,.92); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; }
.brand-logo { width: 184px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 700; transition: .2s; }
.site-nav a:hover,
.site-nav a:focus { color: var(--text); }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 7px 4px; transition: .2s; }

.section { position: relative; padding: 112px 0; }
.hero { min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 150px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,160,18,.14), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #09090b 0%, #111116 52%, #050506 100%);
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--orange); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: .76rem; }
.hero h1,
.section-heading h2,
.why-content h2,
.contact-content h2 { margin: 0; color: var(--text); line-height: 1.02; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(2.85rem, 5.55vw, 5.35rem); max-width: 760px; }
.hero-subtitle { font-size: clamp(1.02rem, 1.28vw, 1.2rem); max-width: 720px; margin: 28px 0 0; color: #d7d4cd; }
.hero-actions,
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; border: 1px solid transparent; transition: .2s; }
.btn:focus { outline: 3px solid rgba(255,160,18,.45); outline-offset: 3px; }
.btn-primary { background: var(--orange); color: #111; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,160,18,.22); }
.btn-secondary { border-color: rgba(255,255,255,.22); color: var(--text); background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: var(--orange); background: var(--orange-soft); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.hero-meta span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-visual { min-height: 520px; }
.visual-card { position: relative; height: 100%; min-height: 520px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: var(--shadow); overflow: hidden; }
.image-card img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center center; filter: brightness(.72); }
.visual-panel { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; padding: 22px; border-radius: 18px; background: rgba(8,8,10,.78); backdrop-filter: blur(18px); border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(0,0,0,.34); }
.visual-panel p { margin: 8px 0 0; color: var(--muted); }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.wide { max-width: 850px; }
.section-heading h2,
.why-content h2,
.contact-content h2 { font-size: clamp(2.1rem, 4.2vw, 4.1rem); }
.section-heading p,
.why-content p,
.contact-content p { color: var(--muted); font-size: 1.08rem; }

.trust,
.process { background: var(--bg-soft); }
.trust-grid,
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.compact-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1180px; }
.trust-item,
.service-card,
.step,
.contact-card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border-radius: var(--radius); padding: 24px; }
.trust-item { min-height: 156px; }
.trust-item h3,
.service-card h3,
.step h3 { margin: 0 0 10px; font-size: 1.03rem; }
.trust-item p,
.service-card p,
.step p { margin: 0; color: var(--muted); }
.service-card { min-height: 158px; transition: .2s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(255,160,18,.45); }

.image-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0 26px; }
.image-strip figure { position: relative; min-height: 310px; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.image-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.76); }
.image-strip figure:after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgba(0,0,0,.72), transparent); }
.image-strip figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.step { position: relative; min-height: 222px; }
.step span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(255,160,18,.35); background: var(--orange-soft); border-radius: 50%; color: var(--orange); font-weight: 800; margin-bottom: 24px; }
.step h3 { font-size: .99rem; }
.step p { font-size: .94rem; line-height: 1.45; }

.client-reasons { background: linear-gradient(135deg, #09090b, #121216); }
.reason-grid { grid-template-columns: repeat(3, 1fr); }

.why-grid,
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.photo-block { position: relative; min-height: 470px; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.image-block img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; filter: brightness(.82); }
.photo-block:after { content: ""; position: absolute; inset: 58% 0 0; background: linear-gradient(to top, rgba(0,0,0,.68), transparent); pointer-events: none; }
.photo-block > div { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 1; padding: 0; background: transparent; }
.photo-block span { display: block; font-size: 1.35rem; font-weight: 800; }
.photo-block small { display: block; color: var(--muted); margin-top: 6px; }

.contact { background: radial-gradient(circle at 80% 20%, rgba(255,160,18,.13), transparent 32%), var(--bg-soft); }
.contact-card { font-style: normal; display: grid; gap: 8px; padding: 34px; width: min(100%, 540px); justify-self: start; }
.contact-card strong { font-size: 1.28rem; }
.contact-card span { color: var(--muted); }
.contact-card a { color: var(--text); font-weight: 700; }
.contact-card a:hover { color: var(--orange); }
.contact-card hr { width: 100%; border: 0; border-top: 1px solid var(--line); margin: 12px 0; }

.site-footer { padding: 54px 0; background: #050506; border-top: 1px solid var(--line); }
.footer-grid-clean { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.footer-logo { width: 190px; height: auto; margin-bottom: 18px; }
.site-footer h3 { margin: 0 0 12px; }
.site-footer p { margin: 0 0 8px; color: var(--muted); }
.site-footer a { display: block; color: var(--muted); margin: 6px 0; }
.site-footer a:hover { color: var(--orange); }
.footer-contact { text-align: right; justify-self: end; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual,
  .visual-card { min-height: 420px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .header-inner { height: 72px; }
  .brand-logo { width: 150px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: 72px; left: 20px; right: 20px; display: grid; gap: 0; padding: 10px; background: rgba(15,15,18,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 16px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .hero { padding-top: 116px; }
  .trust-grid,
  .card-grid,
  .image-strip { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4.3rem); }
  .footer-grid-clean { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; justify-self: start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .trust-grid,
  .card-grid,
  .timeline,
  .image-strip,
  .reason-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .contact-actions { display: grid; }
  .btn { width: 100%; }
  .visual-panel { left: 14px; right: 14px; bottom: 14px; }
  .photo-block > div { left: 20px; right: 20px; bottom: 20px; }
  .contact-card { padding: 24px; }
}


/* Premium motion and technical visual layer */
.ambient-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,160,18,.18), transparent 64%);
  filter: blur(12px);
  pointer-events: none;
  opacity: .62;
  animation: floatOrb 9s ease-in-out infinite;
}
.orb-one { left: -110px; top: 18%; }
.orb-two { right: -140px; bottom: 6%; animation-delay: -4s; opacity: .32; }
.tech-lines { position:absolute; inset:0; pointer-events:none; opacity:.35; overflow:hidden; }
.tech-lines span { position:absolute; height:1px; width:34vw; background:linear-gradient(90deg, transparent, rgba(255,160,18,.42), transparent); transform:rotate(-18deg); animation: lineDrift 9s linear infinite; }
.tech-lines span:nth-child(1){ top:22%; left:3%; }
.tech-lines span:nth-child(2){ top:54%; right:8%; animation-delay:-3s; }
.tech-lines span:nth-child(3){ bottom:16%; left:36%; animation-delay:-6s; }

@keyframes floatOrb { 0%,100%{ transform:translate3d(0,0,0) scale(1);} 50%{ transform:translate3d(18px,-18px,0) scale(1.05);} }
@keyframes lineDrift { 0%{ transform:translateX(-8%) rotate(-18deg); opacity:.12;} 45%{ opacity:.5;} 100%{ transform:translateX(8%) rotate(-18deg); opacity:.12;} }

.section-divider { height:1px; width:min(var(--max), calc(100% - 40px)); margin:0 auto; position:relative; background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); }
.section-divider span { position:absolute; left:0; top:0; height:1px; width:120px; background:linear-gradient(90deg, transparent, var(--orange)); animation: scanLine 4.8s ease-in-out infinite; }
.section-divider.reverse span { animation-direction: reverse; }
@keyframes scanLine { 0%{ left:0; opacity:.15;} 50%{ opacity:.85;} 100%{ left:calc(100% - 120px); opacity:.15;} }

.btn { gap: 8px; overflow:hidden; }
.btn-arrow { display:inline-block; transition: transform .22s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.trust-item, .service-card, .contact-card, .visual-card, .photo-block, .image-strip figure {
  position: relative;
}
.trust-item::after, .service-card::after, .contact-card::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(255,160,18,.12), transparent 38%);
  opacity:0;
  transition:.25s ease;
  pointer-events:none;
}
.trust-item:hover::after, .service-card:hover::after, .contact-card:hover::after { opacity:1; }
.trust-item:hover, .contact-card:hover { border-color: rgba(255,160,18,.34); }

.mini-icon, .service-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255,160,18,.1);
  border: 1px solid rgba(255,160,18,.26);
  color: var(--orange);
}
.mini-icon svg, .service-icon svg { width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.service-icon { width:38px; height:38px; margin-bottom:16px; }
.service-icon svg { width:20px; height:20px; }

.image-strip figure img, .image-card img, .image-block img { transition: transform 1.2s ease, filter .45s ease; }
.image-strip figure:hover img, .visual-card:hover img, .photo-block:hover img { transform: scale(1.035); filter: brightness(.86); }
.hero-meta span { transition:.2s ease; }
.hero-meta span:hover { color:var(--text); border-color:rgba(255,160,18,.42); background:rgba(255,160,18,.08); }

/* Renewed process section */
.timeline { display:none; }
.process-layout {
  display:grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(36px, 6vw, 84px);
  align-items:start;
}
.process-intro {
  position: sticky;
  top: 118px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 12%, rgba(255,160,18,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.process-kicker {
  margin:0 0 18px;
  color:var(--orange);
  font-size:.76rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
}
.process-intro h3 { margin:0 0 14px; font-size:clamp(1.7rem, 2.6vw, 2.75rem); line-height:1.02; letter-spacing:-.04em; }
.process-intro p { margin:0; color:var(--muted); font-size:1.02rem; }
.process-line { position:relative; display:grid; gap:0; }
.process-line::before {
  content:"";
  position:absolute;
  left:32px;
  top:14px;
  bottom:14px;
  width:1px;
  background:linear-gradient(to bottom, rgba(255,160,18,.8), rgba(255,160,18,.08));
}
.process-line::after {
  content:"";
  position:absolute;
  left:32px;
  top:14px;
  width:1px;
  height:var(--process-progress, 0%);
  max-height:calc(100% - 28px);
  background:var(--orange);
  box-shadow:0 0 24px rgba(255,160,18,.48);
}
.process-step {
  position:relative;
  display:grid;
  grid-template-columns: 66px 1fr;
  gap:22px;
  padding:0 0 34px;
}
.process-step:last-child { padding-bottom:0; }
.process-number {
  position:relative;
  z-index:1;
  width:66px;
  height:66px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111116;
  border:1px solid rgba(255,160,18,.45);
  color:var(--orange);
  font-weight:900;
  box-shadow:0 0 0 8px var(--bg-soft);
}
.process-step div {
  padding: 6px 0 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.process-step:last-child div { border-bottom:0; padding-bottom:0; }
.process-step h3 { margin:0 0 8px; font-size:1.25rem; }
.process-step p { margin:0; color:var(--muted); max-width:620px; }
.process-step.visible .process-number { animation: pulseDot 1.35s ease both; }
@keyframes pulseDot { 0%{ box-shadow:0 0 0 8px var(--bg-soft), 0 0 0 0 rgba(255,160,18,.0);} 45%{ box-shadow:0 0 0 8px var(--bg-soft), 0 0 0 14px rgba(255,160,18,.12);} 100%{ box-shadow:0 0 0 8px var(--bg-soft), 0 0 0 0 rgba(255,160,18,0);} }

/* Cleaner 2x2 trust block */
.compact-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trust-item { min-height: 178px; }

@media (max-width: 1080px) {
  .process-layout { grid-template-columns:1fr; }
  .process-intro { position:relative; top:auto; }
}
@media (max-width: 820px) {
  .section-divider { width:min(100% - 28px, var(--max)); }
  .compact-trust { grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px) {
  .compact-trust { grid-template-columns:1fr; }
  .process-step { grid-template-columns: 54px 1fr; gap:16px; }
  .process-number { width:54px; height:54px; box-shadow:0 0 0 6px var(--bg-soft); }
  .process-line::before, .process-line::after { left:27px; }
  .process-step h3 { font-size:1.08rem; }
}

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

/* Final layout refinements */
.headline-line { white-space: nowrap; }

.visual-break {
  padding: 0 0 112px;
  background: var(--bg-soft);
}
.visual-break-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.visual-break-image { margin: 0; min-height: 460px; position: relative; overflow: hidden; }
.visual-break-image::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.58)); pointer-events:none; }
.visual-break-image img { width:100%; height:100%; min-height:460px; object-fit:cover; filter: brightness(.76); transition: transform 1.2s ease, filter .45s ease; }
.visual-break-inner:hover .visual-break-image img { transform: scale(1.025); filter: brightness(.83); }
.visual-break-copy { padding: clamp(34px, 4.6vw, 64px); align-self: center; }
.visual-break-copy h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); line-height:1.02; letter-spacing:-.055em; }
.visual-break-copy p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 1.05rem; }

.detail-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}
.detail-media figure {
  position: relative;
  margin: 0;
  min-height: 285px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}
.detail-media figure::after { content:""; position:absolute; inset:45% 0 0; background:linear-gradient(to top, rgba(0,0,0,.78), transparent); pointer-events:none; }
.detail-media img { width:100%; height:100%; object-fit:cover; filter:brightness(.72); transition: transform 1.2s ease, filter .45s ease; }
.detail-media figure:hover img { transform:scale(1.035); filter:brightness(.83); }
.detail-media figcaption { position:absolute; left:20px; right:20px; bottom:18px; z-index:1; font-size:.8rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }

@media (max-width: 1080px) {
  .visual-break-inner { grid-template-columns: 1fr; }
  .visual-break-image, .visual-break-image img { min-height: 360px; }
}
@media (max-width: 820px) {
  .headline-line { white-space: normal; }
  .visual-break { padding-bottom: 78px; }
  .detail-media { grid-template-columns: 1fr; }
}

/* Image placement refinement: supporting visuals, not gallery blocks */
.detail-media { display: none !important; }
.process-intro { overflow: hidden; }
.process-support-image {
  margin: 28px 0 0;
  position: relative;
  min-height: 210px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.process-support-image::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to top, rgba(0,0,0,.76), transparent);
  pointer-events: none;
}
.process-support-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: brightness(.72);
  transition: transform 1.2s ease, filter .45s ease;
}
.process-support-image:hover img {
  transform: scale(1.035);
  filter: brightness(.82);
}
.process-support-image figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  margin: 0;
  font-size: .74rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
@media (max-width: 1080px) {
  .process-support-image { max-width: 520px; }
}


/* Language selection */
.language-page { min-height: 100vh; overflow: hidden; }
.language-shell { min-height: 100vh; display: grid; place-items: center; padding: 28px; position: relative; }
.language-bg { position: absolute; inset: 0; background: radial-gradient(circle at 18% 20%, rgba(255,160,18,.18), transparent 28%), radial-gradient(circle at 88% 72%, rgba(255,255,255,.08), transparent 30%), linear-gradient(135deg, #09090b, #121216 55%, #050506); }
.language-bg::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 64px 64px; opacity: .7; }
.language-modal { position: relative; z-index: 1; width: min(620px, 100%); padding: clamp(34px, 6vw, 64px); border: 1px solid var(--line); border-radius: 30px; background: rgba(14,14,17,.78); backdrop-filter: blur(18px); box-shadow: var(--shadow); text-align: center; }
.language-logo { width: min(260px, 72%); margin: 0 auto 34px; }
.language-modal h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -.05em; }
.language-modal h1 span { color: var(--muted); }
.language-actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.language-link { margin-top: 14px !important; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
@media (max-width: 560px) { .language-actions { display: grid; } }


/* Targeted final corrections */
.language-modal h1 { font-size: clamp(1.55rem, 3.2vw, 2.45rem); letter-spacing: -.035em; }
.nav-language { color: var(--orange) !important; border: 1px solid rgba(255,160,18,.32); border-radius: 999px; padding: 9px 13px !important; margin-left: 4px; }
.nav-language:hover, .nav-language:focus { background: rgba(255,160,18,.1); color: var(--text) !important; }
.client-reasons .section-heading.wide { max-width: 1100px; }
.client-reasons .section-heading h2 { max-width: 1100px; }
@media (max-width: 820px) { .nav-language { margin-left: 0; border-radius: 14px; } }


/* Mobile hero crop adjustment */
@media (max-width: 768px){
  .hero img,
  .hero-image img,
  .hero__image img{
    object-fit: cover;
    object-position: center 72%;
  }
}


/* Logo aspect-ratio fix: prevent browser from stretching logos when width/height attributes are present */
.language-logo,
.brand-logo,
.footer-logo {
  height: auto !important;
  object-fit: contain !important;
}

.language-logo {
  max-height: 120px;
}

@media (max-width: 560px) {
  .language-logo {
    width: min(240px, 78%);
    max-height: 96px;
  }
}
