
:root{
  --bg:#f3f6fb;
  --surface:#ffffff;
  --surface-soft:#f8fbff;
  --text:#111827;
  --muted:#66758b;
  --line:#dce3ee;
  --line-dark:rgba(255,255,255,.12);
  --accent:#cf2e2e;
  --accent-dark:#b82626;
  --blue:#4060d8;
  --dark:#162032;
  --dark-2:#0f1728;
  --shadow-sm:0 6px 18px rgba(30,41,59,.05);
  --shadow-md:0 16px 38px rgba(15,23,42,.08);
  --shadow-lg:0 28px 64px rgba(15,23,42,.13);
  --radius-sm:14px;
  --radius-md:22px;
  --radius-lg:30px;
  --container:1220px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
body.mobile-nav-open{
  overflow:hidden;
}
img{display:block;max-width:100%}
a{color:inherit}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.mobile-nav-toggle,
.mobile-nav-panel{
  display:none;
}
.mobile-nav-toggle{
  width:50px;
  height:50px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  box-shadow:var(--shadow-sm);
}
.mobile-nav-toggle span{
  width:20px;
  height:2px;
  border-radius:999px;
  background:var(--text);
  transition:.18s ease;
}
.mobile-nav-open .mobile-nav-toggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.mobile-nav-open .mobile-nav-toggle span:nth-child(2){
  opacity:0;
}
.mobile-nav-open .mobile-nav-toggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}
.mobile-nav-panel{
  position:fixed;
  inset:83px 0 0;
  background:rgba(15,23,42,.28);
  backdrop-filter:blur(8px);
  padding:12px;
  z-index:990;
}
.mobile-nav-inner{
  width:min(100%, 420px);
  margin-left:auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:18px;
  box-shadow:var(--shadow-lg);
}
.mobile-nav-links{
  display:grid;
  gap:6px;
}
.mobile-nav-links a{
  display:block;
  text-decoration:none;
  padding:14px 12px;
  border-radius:16px;
  color:#445066;
  font-size:16px;
  font-weight:600;
}
.mobile-nav-links a.active{
  background:#f4f7fc;
  color:var(--accent);
}
.mobile-nav-cta{
  width:100%;
  margin-top:14px;
}
.logo{
  text-decoration:none;
  color:var(--accent);
  font-size:38px;
  font-weight:700;
  font-style:italic;
  letter-spacing:-.03em;
  white-space:nowrap;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  flex:1;
}
.nav a{
  text-decoration:none;
  color:#4a5568;
  font-size:15px;
  font-weight:500;
}
.nav a.active,.nav a:hover{color:var(--accent)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  text-decoration:none;
  transition:transform .22s ease, box-shadow .22s ease, background-position .32s ease, border-color .22s ease, color .22s ease;
  font-weight:600;
  font-size:15px;
  position:relative;
  overflow:hidden;
}
.btn-primary{
  background:linear-gradient(135deg,#d93434 0%,#cf2e2e 45%,#ef5a5a 100%);
  background-size:200% 200%;
  color:#fff;
  box-shadow:0 10px 24px rgba(207,46,46,.18);
  animation:buttonGlow 5.5s ease-in-out infinite;
}
.btn-primary::after,
.btn-secondary::after{
  content:"";
  position:absolute;
  inset:-40% auto -40% -30%;
  width:42%;
  background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.28),rgba(255,255,255,0));
  transform:skewX(-24deg) translateX(-220%);
  pointer-events:none;
}
.btn-primary:hover,
.btn-secondary:hover{
  transform:translateY(-2px);
}
.btn-primary:hover{
  background-position:100% 50%;
  box-shadow:0 16px 32px rgba(207,46,46,.24);
}
.btn-primary:hover::after,
.btn-secondary:hover::after{
  animation:buttonShine .9s ease;
}
.btn-secondary{
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 55%,#eef4fb 100%);
  background-size:200% 200%;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}
.btn-secondary:hover{
  background-position:100% 50%;
  border-color:#cfd8e6;
  box-shadow:0 14px 28px rgba(15,23,42,.08);
}
@keyframes buttonGlow{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}
@keyframes buttonShine{
  from{transform:skewX(-24deg) translateX(-220%)}
  to{transform:skewX(-24deg) translateX(360%)}
}
@media (prefers-reduced-motion: reduce){
  .btn,
  .btn-primary,
  .btn-primary::after,
  .btn-secondary::after{
    animation:none !important;
    transition:none !important;
  }
}
.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg,#f8fbff 0%,#eef4fb 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(207,46,46,.08), transparent 24%),
    radial-gradient(circle at left, rgba(64,96,216,.08), transparent 28%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:42px;
  align-items:start;
  padding:72px 0 80px;
}
.badge{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:12px 18px;
  color:#4a5568;
  font-size:14px;
  box-shadow:var(--shadow-sm);
}
.hero h1{
  margin:24px 0 0;
  max-width:860px;
  font-size:64px;
  line-height:1.03;
  font-weight:600;
  letter-spacing:-.05em;
}
.hero h1 .accent{display:block;color:var(--accent)}
.hero-text{
  margin:24px 0 0;
  max-width:720px;
  color:#586579;
  font-size:20px;
  line-height:1.7;
}
.hero-actions{
  margin-top:32px;
  margin-bottom:18px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.stats{
  margin-top:52px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px 18px 16px;
  box-shadow:var(--shadow-sm);
}
.stat strong{
  display:block;
  font-size:24px;
  line-height:1.15;
  margin-bottom:8px;
  font-weight:600;
}
.stat span{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.media-grid{display:grid;gap:20px}
.hero-big{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:var(--shadow-lg);
}
.hero-small-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.hero-small-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow-md);
}
.section{
  padding:68px 0;
}
.section-dark{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  max-width:780px;
  margin-bottom:28px;
}
.eyebrow{
  display:inline-flex;
  margin-bottom:14px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--blue);
}
.section-head h2{
  margin:0;
  font-size:46px;
  line-height:1.06;
  letter-spacing:-.04em;
  font-weight:600;
}
.section-head p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.72;
}
.cards-3,.cards-2,.cards-4{
  display:grid;
  gap:18px;
}
.cards-3{grid-template-columns:repeat(3,1fr)}
.cards-2{grid-template-columns:repeat(2,1fr)}
.cards-4{grid-template-columns:repeat(4,1fr)}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:26px;
  box-shadow:var(--shadow-sm);
}
.card h3{
  margin:0;
  font-size:26px;
  line-height:1.12;
  letter-spacing:-.03em;
  font-weight:600;
}
.card p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}
.compact-grid .card{
  padding:22px;
  border-radius:22px;
}
.compact-grid .card h3{
  font-size:22px;
}
.compact-grid .card p{
  font-size:14px;
  line-height:1.7;
}
.card .small{
  font-size:14px;
  line-height:1.7;
}
.card-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#eef3ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:18px;
}
.feature-list,.policy-list{
  display:grid;
  gap:16px;
}
.feature{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid var(--line);
  background:var(--surface-soft);
  border-radius:22px;
  padding:18px 20px;
}
.feature .dot{
  width:12px;
  height:12px;
  margin-top:8px;
  border-radius:999px;
  background:var(--accent);
  flex:0 0 12px;
}
.feature p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}
.vacancy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.vacancy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#eef3ff;
  color:var(--blue);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.vacancy h3{
  margin:16px 0 0;
  font-size:28px;
  line-height:1.14;
  letter-spacing:-.03em;
}
.meta{
  margin-top:16px;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.vacancy-details{
  margin-top:18px;
  display:grid;
  gap:8px;
}
.vacancy-details p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
.vacancy-details strong{
  color:var(--text);
}
.search-box{
  max-width:520px;
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:16px 20px;
  box-shadow:var(--shadow-sm);
  margin:34px 0 0;
}
.search-box input{
  width:100%;
  border:none;
  background:transparent;
  outline:none;
  font:inherit;
  color:var(--text);
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.dark-panel{
  background:linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 100%);
  color:#fff;
  border-radius:34px;
  padding:30px;
  box-shadow:var(--shadow-lg);
}
.dark-panel .eyebrow{color:rgba(255,255,255,.68)}
.dark-panel h3{
  margin:0;
  font-size:36px;
  line-height:1.12;
  letter-spacing:-.04em;
}
.dark-panel p{
  margin:18px 0 0;
  color:rgba(255,255,255,.76);
  line-height:1.75;
}
.steps{
  display:grid;
  gap:16px;
  margin-top:28px;
}
.step{
  border:1px solid var(--line-dark);
  background:rgba(255,255,255,.05);
  border-radius:24px;
  padding:18px 18px 18px 20px;
}
.step-number{
  width:40px;height:40px;border-radius:999px;background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:700;margin-bottom:12px
}
.step p{margin:0;color:rgba(255,255,255,.78);font-size:14px;line-height:1.75}
.image-cover{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow-lg);
}
.cta-wrap{
  border-radius:38px;
  background:linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 100%);
  color:#fff;
  padding:34px;
  box-shadow:var(--shadow-lg);
}
.cta-grid{
  display:grid;
  gap:32px;
  grid-template-columns:1.05fr .95fr;
  align-items:start;
}
.cta-wrap h2{
  margin:18px 0 0;
  font-size:52px;
  line-height:1.06;
  letter-spacing:-.05em;
}
.cta-wrap p{
  margin:20px 0 0;
  max-width:680px;
  color:rgba(255,255,255,.76);
  font-size:17px;
  line-height:1.8;
}
.contact-list{
  margin-top:26px;
  display:grid;
  gap:12px;
}
.contact-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  border-radius:22px;
  padding:16px 18px;
}
.contact-row .dot{
  width:12px;height:12px;border-radius:999px;background:#93c5fd;margin-top:8px;flex:0 0 12px
}
.contact-row small{
  display:block;
  color:rgba(255,255,255,.55);
  margin-bottom:6px;
  font-size:12px;
}
.contact-row strong{
  font-size:16px;
  line-height:1.6;
}
.form-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
  border-radius:30px;
  padding:26px;
}
.form-card h3{
  margin:0 0 18px;
  font-size:28px;
  letter-spacing:-.03em;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field-label{
  display:block;
  margin:0 0 8px;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.full{grid-column:1 / -1}
input,textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  border-radius:18px;
  padding:16px 18px;
  font:inherit;
  outline:none;
}
textarea{min-height:140px;resize:vertical}
.checkbox{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:12px;
  line-height:1.7;
  color:rgba(255,255,255,.76);
}
.checkbox.light{color:var(--muted)}
.checkbox input{width:16px;height:16px;margin-top:4px;accent-color:var(--accent)}
.checkbox a,.checkbox button{
  color:inherit;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:4px;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}
.form-status{
  margin:12px 0 0;
  min-height:22px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.form-status.error{
  color:#b42318;
}
.form-status.success{
  color:#18794e;
}
.form-status-light{
  color:rgba(255,255,255,.76);
}
.form-status-light.error{
  color:#ffd1cf;
}
.form-status-light.success{
  color:#d6ffe8;
}
.light-link{color:#fff}
.footer{
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:28px 0 96px;
  color:var(--muted);
  font-size:14px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.footer-links a{
  text-decoration:none;
  color:var(--muted);
}
.chat-toggle{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1100;
}
.chat-box{
  position:fixed;
  right:22px;
  bottom:90px;
  width:380px;
  max-width:calc(100% - 16px);
  border-radius:30px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  z-index:1101;
  display:none;
}
.chat-box.active{display:block}
.chat-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:var(--dark);
  color:#fff;
  padding:18px 20px;
}
.chat-head strong{display:block;font-size:14px}
.chat-head span{display:block;margin-top:4px;font-size:12px;color:rgba(255,255,255,.64)}
.chat-close{
  border:none;
  background:rgba(255,255,255,.1);
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  font-size:12px;
}
.chat-body{
  display:grid;
  gap:14px;
  padding:18px;
}
.chat-msg{
  max-width:85%;
  border:1px solid var(--line);
  background:#f7faff;
  color:#586579;
  border-radius:20px 20px 20px 8px;
  padding:14px 16px;
  font-size:14px;
  line-height:1.7;
}
.chat-note{
  color:#7a879a;
  font-size:12px;
  line-height:1.65;
}
.page-hero{
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg,#f8fbff 0%,#f2f6fd 100%);
}
.page-hero-inner{
  padding:50px 0 52px;
}
.page-hero h1{
  margin:16px 0 0;
  font-size:50px;
  line-height:1.06;
  letter-spacing:-.05em;
  font-weight:600;
}
.page-hero p{
  margin:20px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:17px;
  line-height:1.78;
}
.hero-note{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.hero-note-item{
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  border-radius:20px;
  padding:16px 18px;
  backdrop-filter:blur(8px);
}
.hero-note-item strong{
  display:block;
  font-size:12px;
  line-height:1.4;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue);
}
.hero-note-item span{
  display:block;
  margin-top:8px;
  font-size:14px;
  line-height:1.6;
  color:#445066;
}
.editorial-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.editorial-copy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow-sm);
}
.editorial-copy h2,
.editorial-copy h3{
  margin:0;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.04em;
}
.editorial-copy p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.78;
}
.editorial-points{
  margin-top:22px;
  display:grid;
  gap:12px;
}
.editorial-point{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:14px;
  align-items:start;
}
.editorial-point span{
  width:34px;
  height:34px;
  border-radius:999px;
  background:#eef3ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}
.editorial-point p{
  margin:0;
}
.editorial-media{
  position:relative;
  min-height:100%;
  overflow:hidden;
  border-radius:30px;
  box-shadow:var(--shadow-lg);
}
.editorial-media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}
.media-badge{
  position:absolute;
  left:22px;
  bottom:22px;
  max-width:260px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(15,23,42,.72);
  color:#fff;
  border-radius:20px;
  padding:16px 18px;
  backdrop-filter:blur(8px);
}
.media-badge strong{
  display:block;
  font-size:12px;
  line-height:1.4;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
}
.media-badge span{
  display:block;
  margin-top:8px;
  font-size:14px;
  line-height:1.65;
}
.luxury-panel{
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.luxury-panel h3{
  margin:0;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.04em;
}
.luxury-panel p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}
.mini-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:20px;
}
.mini-card{
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  padding:18px;
}
.mini-card strong{
  display:block;
  font-size:20px;
  line-height:1.2;
}
.mini-card span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.pill-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.pill-links a{
  text-decoration:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-size:13px;
  line-height:1.4;
  color:#445066;
}
.split-visual{
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  gap:18px;
  align-items:stretch;
}
.visual-stack{
  display:grid;
  gap:18px;
}
.visual-stack img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow-md);
}
.policy-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:34px;
  box-shadow:var(--shadow-sm);
}
.policy-block h3{
  margin:0;
  font-size:24px;
  line-height:1.2;
  letter-spacing:-.03em;
}
.policy-block p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}
@media (max-width:1100px){
  .hero-inner,.grid-2,.cta-grid,.cards-3,.cards-4,.vacancy-grid,.editorial-grid,.split-visual{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .hero-note,.mini-card-grid{grid-template-columns:1fr 1fr}
  .cards-2{grid-template-columns:1fr}
  .image-cover{min-height:380px}
  .nav{display:none}
  .header-inner > .btn.btn-primary{display:none}
  .mobile-nav-toggle{display:inline-flex}
  .mobile-nav-open .mobile-nav-panel{display:block}
}
@media (max-width:820px){
  .hero-inner,.grid-2,.cta-grid,.cards-3,.cards-4,.vacancy-grid,.hero-small-grid,.editorial-grid,.split-visual,.hero-note,.mini-card-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .hero{overflow:visible}
  .hero-inner{padding:44px 0 48px;gap:28px}
  .page-hero-inner{padding:38px 0 40px}
  .hero h1,.page-hero h1{font-size:34px;line-height:1.04}
  .hero-text,.page-hero p{font-size:16px;line-height:1.65}
  .section-head h2,.cta-wrap h2{font-size:30px}
  .section{padding:48px 0}
  .hero-actions{margin-top:24px;margin-bottom:14px}
  .hero-note{margin-top:40px}
  .stats{margin-top:40px}
  .hero-actions .btn{flex:1 1 100%}
  .stat{padding:16px 16px 14px}
  .stat strong{font-size:20px}
  .hero-big{height:220px;border-radius:24px}
  .hero-small-grid img{height:160px;border-radius:22px}
  .hero-note-item{padding:14px 16px}
  .form-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;align-items:flex-start}
  .chat-toggle{left:12px;right:12px}
  .chat-box{left:12px;right:12px;width:auto;bottom:84px}
  .editorial-copy,.luxury-panel,.dark-panel,.cta-wrap{padding:24px}
  .editorial-copy h2,.editorial-copy h3,.luxury-panel h3{font-size:30px}
  .visual-stack img,.editorial-media img{height:220px;min-height:220px}
  .mobile-nav-panel{inset:83px 0 0;padding:10px}
  .search-box{margin:24px 0 0;padding:14px 16px}
  .search-box span{font-size:16px}
  .vacancy{padding:22px}
}

/* COOKIE BANNER */
.btn:disabled{opacity:.55;cursor:not-allowed;box-shadow:none}
.cookie-banner{
  position:fixed;
  left:auto;
  right:20px;
  bottom:20px;
  z-index:1300;
  max-width:640px;
  margin:0;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(15,23,42,.98);
  color:#fff;
  border-radius:24px;
  box-shadow:0 24px 60px rgba(15,23,42,.25);
  padding:18px;
  display:none;
}
.cookie-banner.active{display:block}
.cookie-banner p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.65;
}
.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}
.cookie-btn{
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font:inherit;
  font-size:14px;
  font-weight:600;
}
.cookie-btn-primary{
  background:var(--accent);
  color:#fff;
}
.cookie-btn-secondary{
  background:#fff;
  color:var(--text);
}
.cookie-banner a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}
@media (max-width:820px){
  .cookie-banner{left:12px;right:12px;max-width:none}
  .cookie-actions{flex-direction:column}
  .cookie-btn{width:100%}
}
.cookie-active .chat-toggle{
  bottom:150px;
}
.cookie-active .chat-box{
  bottom:212px;
}
@media (max-width:820px){
  .cookie-active .chat-toggle{
    bottom:188px;
  }
  .cookie-active .chat-box{
    bottom:260px;
  }
}
