:root{
  --bg:#f3f1e8;
  --bg-soft:#fbfaf5;
  --ink:#171716;
  --ink-2:#2f312d;
  --muted:#6a6d64;
  --line:rgba(23,23,22,.12);
  --panel:rgba(255,255,255,.78);
  --panel-strong:#ffffff;
  --dark:#151514;
  --dark-2:#23231f;
  --accent:#ffca18;
  --accent-2:#f4b600;
  --green:#20342d;
  --telegram:#229ed9;
  --radius:28px;
  --radius-lg:42px;
  --shadow:0 24px 70px rgba(30,30,25,.14);
  --shadow-soft:0 12px 38px rgba(30,30,25,.10);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,202,24,.18), transparent 32rem),
    radial-gradient(circle at 86% 12%, rgba(30,52,45,.10), transparent 34rem),
    linear-gradient(180deg,#f8f6ed 0%, var(--bg) 48%, #ebe7db 100%);
  color:var(--ink);
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
  background-image:
    linear-gradient(rgba(23,23,22,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,22,.045) 1px, transparent 1px);
  background-size:84px 84px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.22) 60%, transparent 100%);
}
body::after{
  content:"";
  position:fixed;
  width:58vw;
  height:58vw;
  right:-24vw;
  top:20vh;
  border-radius:50%;
  background:rgba(255,202,24,.16);
  filter:blur(70px);
  pointer-events:none;
  z-index:-3;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button,input,select,textarea{font:inherit}
button{cursor:pointer}

.site-shell{
  width:min(100% - 28px, 1420px);
  margin:0 auto;
  padding:18px 0 32px;
}
.site-header{
  position:sticky;
  top:14px;
  z-index:50;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  min-height:78px;
  padding:12px;
  border:1px solid rgba(23,23,22,.11);
  border-radius:28px;
  background:rgba(251,250,245,.76);
  backdrop-filter:blur(18px);
  box-shadow:0 14px 46px rgba(28,28,24,.08);
  transition:box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  background:rgba(251,250,245,.92);
  border-color:rgba(23,23,22,.15);
  box-shadow:0 18px 54px rgba(28,28,24,.13);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo-wrap{
  width:56px;
  height:56px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(23,23,22,.10);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}
.brand-logo-wrap img{
  width:54px;
  height:48px;
  object-fit:contain;
  transform:scale(1.42) translateY(2px);
}
.brand-copy{
  display:grid;
  line-height:1.05;
}
.brand-copy strong{
  font-size:1rem;
  letter-spacing:.13em;
  font-weight:900;
}
.brand-copy small{
  color:var(--muted);
  margin-top:5px;
  font-weight:700;
  white-space:nowrap;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.nav a{
  color:var(--ink-2);
  font-size:.92rem;
  font-weight:800;
  padding:12px 13px;
  border-radius:999px;
  transition:background .2s ease, color .2s ease;
}
.nav a:hover{background:#fff; color:#000}
.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.header-link{
  font-size:.88rem;
  font-weight:900;
  color:var(--ink);
  padding:11px 13px;
  border:1px solid rgba(23,23,22,.12);
  border-radius:999px;
  background:#fff;
  white-space:nowrap;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.header-link:hover{transform:translateY(-1px); border-color:rgba(23,23,22,.24)}
.lang-switch{
  display:flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background:#ece8dc;
  border:1px solid rgba(23,23,22,.08);
}
.lang-switch button{
  width:40px;
  height:36px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  font-weight:900;
  font-size:.82rem;
}
.lang-switch button.active{
  background:var(--dark);
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.16);
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(23,23,22,.13);
  background:#fff;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  background:var(--ink);
  border-radius:99px;
  transition:transform .2s ease, opacity .2s ease;
}
.site-header.menu-open .menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.site-header.menu-open .menu-toggle span:nth-child(2){opacity:0}
.site-header.menu-open .menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.section{
  width:min(100% - 16px, var(--max));
  margin:0 auto;
  padding:72px 0;
}
.eyebrow{
  margin:0 0 14px;
  color:#7b6300;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:900;
  font-size:.78rem;
}
h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:22px;
  max-width:760px;
  font-size:clamp(3rem, 7vw, 6.8rem);
  line-height:.94;
  letter-spacing:-.075em;
  font-weight:950;
}
h2{
  margin-bottom:16px;
  font-size:clamp(2rem, 4vw, 4.2rem);
  line-height:1;
  letter-spacing:-.06em;
  font-weight:950;
}
h3{
  margin-bottom:10px;
  font-size:1.35rem;
  line-height:1.15;
  letter-spacing:-.035em;
  font-weight:900;
}
p{
  color:var(--muted);
  line-height:1.7;
  font-size:1.02rem;
}
.centered{text-align:center; margin-inline:auto}
.section-head{max-width:820px; margin-bottom:34px}
.section-head p:not(.eyebrow){font-size:1.08rem}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
  align-items:center;
  gap:44px;
  min-height:calc(100vh - 116px);
  padding-top:52px;
}
.hero-copy{position:relative; z-index:2}
.hero-copy::before{
  content:"";
  position:absolute;
  left:-26px;
  top:88px;
  width:132px;
  height:132px;
  border-radius:50%;
  background:var(--accent);
  z-index:-1;
  opacity:.24;
  filter:blur(10px);
}
.hero-text{
  max-width:710px;
  color:#55584f;
  font-size:clamp(1.06rem, 1.6vw, 1.32rem);
  line-height:1.68;
  margin-bottom:22px;
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 30px;
}
.hero-tags span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(23,23,22,.12);
  color:var(--ink-2);
  font-weight:900;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:950;
  line-height:1;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#131313;
  background:linear-gradient(135deg, var(--accent), #ffd95a);
  box-shadow:0 16px 34px rgba(255,181,0,.24);
}
.btn-ghost{
  background:#fff;
  border-color:rgba(23,23,22,.12);
  color:var(--ink);
  box-shadow:0 12px 28px rgba(20,20,16,.07);
}
.btn-telegram{
  color:#fff;
  background:linear-gradient(135deg,#229ed9,#47b8ee);
  box-shadow:0 16px 34px rgba(34,158,217,.20);
}
.btn-dark{
  color:#fff;
  background:var(--dark);
  box-shadow:0 16px 34px rgba(0,0,0,.17);
}
.hero-visual{
  position:relative;
  min-height:590px;
  isolation:isolate;
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:42px -18px 34px 42px;
  border-radius:56px;
  background:linear-gradient(145deg,#171716,#2f312b);
  transform:rotate(-2.5deg);
  box-shadow:var(--shadow);
  z-index:-2;
}
.hero-visual::after{
  content:"";
  position:absolute;
  right:18px;
  top:10px;
  width:184px;
  height:184px;
  background:var(--accent);
  clip-path:polygon(100% 0,0 0,100% 100%);
  z-index:-1;
  opacity:.95;
}
.visual-card{
  position:absolute;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.68);
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.20);
}
.visual-card--logo{
  left:18px;
  top:36px;
  width:min(78%, 410px);
  aspect-ratio:1.24;
  display:grid;
  place-items:center;
  padding:20px;
}
.visual-card--logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(1.06) translateY(10px);
}
.visual-card--illustration{
  right:0;
  bottom:66px;
  width:min(88%, 500px);
  aspect-ratio:1.6;
}
.visual-card--illustration img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.visual-note{
  position:absolute;
  left:4px;
  bottom:8px;
  width:min(88%, 440px);
  display:grid;
  gap:7px;
  padding:20px 22px;
  border-radius:28px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow-soft);
}
.visual-note strong{
  font-size:1.05rem;
  font-weight:950;
}
.visual-note span{color:var(--muted); line-height:1.5; font-weight:700}

.intro-panel{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:34px;
  align-items:center;
  padding:44px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.64));
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow-soft);
}
.intro-panel p:last-child{
  margin:0;
  font-size:1.12rem;
  color:#55584f;
}
.intro-panel h2{margin-bottom:0}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.service-card{
  position:relative;
  min-height:280px;
  padding:26px;
  border-radius:30px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.service-card::before{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  right:-48px;
  top:-48px;
  border-radius:50%;
  background:rgba(255,202,24,.22);
}
.service-card::after{
  content:"";
  position:absolute;
  left:26px;
  bottom:24px;
  width:54px;
  height:6px;
  border-radius:999px;
  background:var(--accent);
}
.service-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  margin-bottom:64px;
  border-radius:16px;
  background:var(--dark);
  color:#fff;
  font-weight:950;
}
.service-card h3{position:relative; z-index:1}
.service-card p{position:relative; z-index:1; margin:0}

.process-section{width:min(100% - 16px, 1260px)}
.showcase-card{
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  gap:34px;
  align-items:stretch;
  padding:34px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg,#161615,#272720);
  color:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.showcase-card::before{
  content:"";
  position:absolute;
  right:-100px;
  top:-140px;
  width:380px;
  height:380px;
  border-radius:50%;
  background:rgba(255,202,24,.18);
}
.showcase-copy{
  position:relative;
  z-index:1;
  padding:28px 0 28px 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.showcase-card .eyebrow{color:var(--accent)}
.showcase-card h2{max-width:520px; color:#fff}
.showcase-card p{color:rgba(255,255,255,.72); max-width:560px}
.process-map{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.process-map article{
  min-height:230px;
  padding:24px;
  border-radius:28px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
}
.process-map article:nth-child(1){background:rgba(255,202,24,.16)}
.process-map span{
  display:inline-flex;
  width:46px;
  height:46px;
  align-items:center;
  justify-content:center;
  margin-bottom:34px;
  border-radius:15px;
  background:#fff;
  color:#111;
  font-weight:950;
}
.process-map h3{color:#fff}
.process-map p{margin:0; color:rgba(255,255,255,.70); line-height:1.55}

.split-section{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:28px;
  align-items:start;
}
.split-section .section-head{margin:0; position:sticky; top:128px}
.social-cards{
  display:grid;
  gap:16px;
}
.social-card{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
  min-height:204px;
  padding:24px;
  border-radius:32px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.social-card:hover{
  transform:translateY(-3px);
  border-color:rgba(23,23,22,.18);
  box-shadow:0 22px 58px rgba(30,30,25,.14);
}
.social-avatar{
  width:76px;
  height:76px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(23,23,22,.10);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.social-avatar img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(1.16) translateY(3px);
}
.social-card h3{margin-bottom:6px}
.social-card p{font-weight:900; color:var(--ink); margin:0 0 8px}
.social-card span:not(.social-avatar){color:var(--muted); line-height:1.55}
.social-card strong{
  justify-self:end;
  padding:12px 16px;
  border-radius:999px;
  background:var(--dark);
  color:#fff;
  white-space:nowrap;
}
.social-card--instagram strong{background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af)}
.social-card--telegram strong{background:linear-gradient(135deg,#229ed9,#4fc3f7)}

.consultation-section{padding-top:36px; padding-bottom:36px}
.consultation-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  padding:36px 40px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg, rgba(255,202,24,.90), rgba(255,221,101,.82));
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(23,23,22,.08);
}
.consultation-card .eyebrow{color:#4e4100}
.consultation-card h2{max-width:720px; margin-bottom:10px}
.consultation-card p{max-width:860px; color:#403a18; margin:0}

.existing-section{
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  gap:28px;
  align-items:stretch;
}
.existing-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.existing-copy p:not(.eyebrow){font-size:1.08rem}
.existing-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.existing-card{
  padding:28px;
  border-radius:32px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow-soft);
}
.existing-card span{
  display:inline-block;
  margin-bottom:28px;
  padding:9px 13px;
  border-radius:999px;
  background:#f0ead9;
  color:#645000;
  font-weight:950;
  font-size:.86rem;
}
.existing-card h3{font-size:1.55rem}
.existing-card p{margin:0}

.contact-section{width:min(100% - 16px, 1260px); padding-bottom:52px}
.contact-panel{
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  gap:28px;
  padding:34px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg,#fff,rgba(255,255,255,.76));
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow);
}
.contact-copy{
  padding:16px 4px 16px 8px;
}
.contact-copy h2{max-width:560px}
.contact-copy p:not(.eyebrow){max-width:560px}
.direct-links{
  display:grid;
  gap:10px;
  margin-top:28px;
}
.direct-links a{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  padding:16px 18px;
  border-radius:22px;
  background:#f7f5ed;
  border:1px solid rgba(23,23,22,.09);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.direct-links a:hover{transform:translateY(-1px); border-color:rgba(23,23,22,.18); background:#fff}
.direct-links span{
  color:var(--muted);
  font-weight:900;
  font-size:.88rem;
}
.direct-links strong{
  color:var(--ink);
  text-align:right;
  font-size:.94rem;
}
.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding:22px;
  border-radius:32px;
  background:#171716;
  color:#fff;
  box-shadow:0 18px 44px rgba(0,0,0,.18);
}
.contact-form label{
  display:grid;
  gap:8px;
}
.contact-form span{
  font-weight:900;
  color:rgba(255,255,255,.76);
  font-size:.92rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
  padding:16px 16px;
  transition:border-color .18s ease, background .18s ease;
}
.contact-form select option{color:#111}
.contact-form textarea{resize:vertical; min-height:138px}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:rgba(255,202,24,.70);
  background:rgba(255,255,255,.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{color:rgba(255,255,255,.38)}
.form-wide{grid-column:1/-1}
.contact-form button{width:100%; border:0}
.contact-form button:disabled{opacity:.7; cursor:wait; transform:none}
.form-status{
  min-height:24px;
  margin:0;
  color:rgba(255,255,255,.70);
  font-weight:800;
  line-height:1.45;
}
.form-status.success{color:#b9ffcb}
.form-status.error{color:#ffd0d0}

.footer{
  width:min(100% - 16px, var(--max));
  margin:0 auto;
  padding:34px 0 4px;
  border-top:1px solid rgba(23,23,22,.12);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
}
.footer-brand img{
  width:82px;
  height:62px;
  object-fit:contain;
  background:#fff;
  border-radius:20px;
  border:1px solid rgba(23,23,22,.10);
}
.footer-brand p{max-width:520px; margin:0}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}
.footer-links a{
  padding:10px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(23,23,22,.10);
  font-weight:900;
  color:var(--ink-2);
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  color:var(--muted);
}
.footer-bottom p{margin:0; font-weight:800; font-size:.95rem}
.footer-bottom a{font-weight:950}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{opacity:1; transform:translateY(0)}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.15s}
.delay-3{transition-delay:.22s}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1; transform:none; transition:none}
  .btn,.header-link,.social-card,.direct-links a{transition:none}
}

@media (max-width:1180px){
  .site-header{grid-template-columns:auto auto; justify-content:space-between}
  .nav{
    position:absolute;
    left:12px;
    right:12px;
    top:calc(100% + 10px);
    display:none;
    grid-template-columns:1fr;
    padding:12px;
    border-radius:24px;
    background:rgba(251,250,245,.96);
    border:1px solid rgba(23,23,22,.12);
    box-shadow:var(--shadow-soft);
  }
  .nav.open{display:grid}
  .nav a{padding:14px 16px; background:#fff}
  .menu-toggle{display:block}
  .header-link--hide{display:none}
  .hero{grid-template-columns:1fr; min-height:0; padding-top:64px}
  .hero-visual{min-height:560px; max-width:720px; width:100%; margin:0 auto}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .split-section,.existing-section,.contact-panel{grid-template-columns:1fr}
  .split-section .section-head{position:static}
}

@media (max-width:820px){
  .site-shell{width:min(100% - 16px, 1420px); padding-top:8px}
  .site-header{top:8px; min-height:70px; border-radius:22px; padding:8px}
  .brand-logo-wrap{width:48px; height:48px; border-radius:16px}
  .brand-copy strong{font-size:.9rem}
  .brand-copy small{font-size:.72rem}
  .header-link{display:none}
  .lang-switch button{width:34px; height:32px}
  .menu-toggle{width:42px; height:42px}
  .section{width:min(100% - 10px, var(--max)); padding:54px 0}
  h1{font-size:clamp(2.65rem, 13vw, 4.3rem); letter-spacing:-.065em}
  h2{font-size:clamp(2rem, 9vw, 3.2rem)}
  .hero{gap:26px; padding-top:44px}
  .hero-actions .btn{width:100%}
  .hero-tags span{font-size:.88rem}
  .hero-visual{min-height:470px}
  .hero-visual::before{inset:42px 0 34px 20px; border-radius:42px}
  .hero-visual::after{width:140px; height:140px; right:10px}
  .visual-card{border-radius:28px}
  .visual-card--logo{left:0; width:86%}
  .visual-card--illustration{width:92%; bottom:70px}
  .visual-note{width:94%; padding:17px 18px}
  .intro-panel,.showcase-card,.consultation-card,.contact-panel{border-radius:32px; padding:24px; grid-template-columns:1fr}
  .service-grid,.process-map{grid-template-columns:1fr}
  .service-card{min-height:230px}
  .service-number{margin-bottom:42px}
  .showcase-copy{padding:0}
  .process-map article{min-height:190px}
  .social-card{grid-template-columns:1fr; align-items:start; min-height:auto}
  .social-card strong{justify-self:start}
  .consultation-card .btn{width:100%}
  .contact-form{grid-template-columns:1fr; padding:18px; border-radius:26px}
  .footer-brand{align-items:flex-start}
  .footer-bottom{display:grid}
}

@media (max-width:520px){
  .brand-copy small{display:none}
  .brand-logo-wrap{width:44px; height:44px}
  .hero-visual{min-height:410px}
  .visual-card--logo{aspect-ratio:1.14; top:34px}
  .visual-card--illustration{bottom:78px}
  .hero-copy::before{left:-14px; top:76px}
  .service-card,.existing-card{padding:22px; border-radius:26px}
  .direct-links a{display:grid; gap:5px; justify-content:stretch}
  .direct-links strong{text-align:left}
}

/* GEDEON FINAL ADDITIONS */
.brand{justify-self:start}
.brand-copy{display:none!important}
.brand-logo-wrap{width:68px;height:68px;border-radius:20px}
.brand-logo-wrap img{width:64px;height:56px;transform:scale(1.38) translateY(2px)}

.hero-visual{min-height:620px}
.hero-visual::before{inset:48px -12px 44px 28px;transform:rotate(-1.8deg)}
.hero-visual::after{right:18px;top:18px;width:170px;height:170px}
.hero-visual .visual-card--logo{display:none!important}
.hero-visual .visual-card--illustration{left:0!important;right:auto!important;top:42px!important;bottom:auto!important;width:100%!important;aspect-ratio:4/3!important;border-radius:42px}
.hero-visual .visual-card--illustration img{width:100%;height:100%;object-fit:cover}
.visual-note{left:28px;right:28px;bottom:34px;width:auto}

.service-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.service-card{display:flex;flex-direction:column;gap:0;overflow:hidden;min-height:auto;padding:24px}
.service-card::after{display:none}
.service-card::before{width:220px;height:220px;right:-90px;top:-90px;pointer-events:none}
.service-media{position:relative;z-index:1;margin:-2px -2px 20px;border-radius:24px;overflow:hidden;box-shadow:0 16px 40px rgba(30,30,25,.10)}
.service-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 58%,rgba(0,0,0,.20));pointer-events:none}
.service-media img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.service-number{position:relative;z-index:1;width:50px;height:50px;margin:0 0 18px}
.service-summary{margin-bottom:14px!important}
.service-list{list-style:none;padding:0;margin:0;display:grid;gap:10px;position:relative;z-index:1}
.service-list li{position:relative;padding-left:18px;color:var(--ink-2);font-size:.98rem;line-height:1.55}
.service-list li::before{content:"";position:absolute;left:0;top:.62em;width:8px;height:8px;border-radius:50%;background:var(--accent)}

.stage-gallery{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:30px 0 24px}
.stage-slide{position:relative;min-height:210px;border-radius:24px;overflow:hidden;background:#111;color:#fff;box-shadow:0 18px 48px rgba(0,0,0,.18)}
.stage-slide::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.55))}
.stage-slide img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.stage-slide span,.stage-slide strong{position:absolute;z-index:1;left:18px}
.stage-slide span{top:16px;width:38px;height:38px;border-radius:999px;background:rgba(255,202,24,.92);color:#111;display:grid;place-items:center;font-weight:950;font-size:.86rem}
.stage-slide strong{bottom:18px;font-size:1.05rem;letter-spacing:-.02em}

@media (max-width:1180px){
  .hero-visual{min-height:580px}
}
@media (max-width:1080px){
  .stage-gallery{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:900px){
  .hero-visual{min-height:560px;max-width:720px;width:100%;margin:0 auto}
  .hero-visual .visual-card--illustration{top:34px!important;border-radius:34px}
  .service-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .stage-gallery{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:8px}
  .stage-slide{min-width:76%;scroll-snap-align:start}
}
@media (max-width:520px){
  .brand-logo-wrap{width:48px;height:48px}
  .brand-logo-wrap img{width:46px;height:42px}
  .hero-visual{min-height:430px}
  .hero-visual .visual-card--illustration{top:26px!important;border-radius:28px}
  .visual-note{left:12px;right:12px;bottom:18px;padding:18px}
  .service-card{padding:20px;border-radius:26px}
}
/* END GEDEON FINAL ADDITIONS */


/* GEDEON LAYOUT FIXES V4 */
.hero{
  grid-template-columns:minmax(0,1.02fr) minmax(340px,.98fr);
  align-items:start;
  gap:34px;
  min-height:0;
  padding-top:42px;
}
.hero h1{
  max-width:9.2ch;
  font-size:clamp(3rem,5.25vw,5.4rem);
  line-height:.98;
  margin-bottom:18px;
}
.hero-copy{padding-top:18px}
.hero-text{max-width:620px;margin-bottom:20px}
.hero-tags{
  max-width:640px;
  gap:12px;
  margin:0 0 22px;
}
.hero-tags span{
  text-align:center;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
}
.hero-actions{
  gap:14px;
  max-width:640px;
}
.hero-visual{
  min-height:auto!important;
  max-width:560px;
  width:100%;
  margin-left:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.hero-visual::before,
.hero-visual::after,
.hero-visual .visual-card--logo{display:none!important}
.hero-visual .visual-card--illustration{
  position:relative!important;
  inset:auto!important;
  left:auto!important;
  right:auto!important;
  top:auto!important;
  bottom:auto!important;
  width:100%!important;
  aspect-ratio:4 / 3!important;
  border-radius:36px!important;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.20);
}
.hero-visual .visual-card--illustration img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.visual-note{
  position:relative!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  width:100%!important;
  padding:22px 24px!important;
  border-radius:28px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow-soft);
}
.visual-note strong{display:block;margin-bottom:8px}

.showcase-card{
  grid-template-columns:1fr;
  gap:26px;
}
.showcase-copy{
  padding:0;
  max-width:760px;
}
.stage-gallery--detailed{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin:0;
}
.stage-slide--detailed{
  min-height:320px;
  border-radius:28px;
}
.stage-slide--detailed::after{
  background:linear-gradient(180deg,rgba(0,0,0,.10) 6%,rgba(0,0,0,.35) 48%,rgba(0,0,0,.76) 100%);
}
.stage-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:10px;
  padding:20px;
}
.stage-overlay span,
.stage-overlay strong,
.stage-overlay p{position:relative;left:auto;bottom:auto;top:auto;margin:0}
.stage-overlay span{
  position:absolute;
  top:16px;
  left:16px;
  width:40px;
  height:40px;
  border-radius:999px;
  background:rgba(255,202,24,.94);
  color:#111;
  display:grid;
  place-items:center;
  font-weight:950;
  font-size:.86rem;
}
.stage-overlay strong{
  font-size:1.18rem;
  line-height:1.15;
}
.stage-overlay p{
  color:rgba(255,255,255,.88);
  font-size:.96rem;
  line-height:1.45;
  max-width:92%;
}

@media (max-width:1180px){
  .hero{
    grid-template-columns:1fr;
    gap:26px;
  }
  .hero-copy{padding-top:0}
  .hero h1{max-width:11ch;font-size:clamp(2.9rem,8vw,4.9rem)}
  .hero-visual{max-width:720px;margin:0 auto}
}
@media (max-width:900px){
  .hero-tags,
  .hero-actions{justify-content:center;max-width:none}
  .hero-copy{text-align:left}
  .hero-visual .visual-card--illustration{border-radius:30px!important}
  .stage-gallery--detailed{grid-template-columns:1fr}
}
@media (max-width:640px){
  .hero-copy{text-align:center}
  .hero-text{margin-left:auto;margin-right:auto}
  .hero h1{max-width:none;font-size:clamp(2.7rem,12vw,4rem)}
  .hero-tags{justify-content:center}
  .hero-actions{justify-content:center}
  .visual-note{text-align:left}
  .stage-slide--detailed{min-height:280px}
}
@media (max-width:520px){
  .hero{padding-top:32px}
  .hero-visual{gap:14px}
  .hero-visual .visual-card--illustration{border-radius:24px!important}
  .visual-note{padding:18px!important;border-radius:22px}
  .hero-tags{display:flex;flex-direction:column;align-items:center}
  .hero-tags span{width:100%;max-width:280px}
  .stage-slide--detailed{min-height:260px;border-radius:24px}
  .stage-overlay{padding:16px}
  .stage-overlay p{font-size:.92rem;max-width:100%}
}
/* END GEDEON LAYOUT FIXES V4 */


/* GEDEON V5 IMAGE AND CONTACT UPDATES */
.header-actions{gap:7px}
.header-link--phone-ua{letter-spacing:-.02em}

.consultation-card{
  grid-template-columns:minmax(0,.92fr) minmax(320px,.82fr);
  align-items:stretch;
  gap:28px;
  padding:30px;
}
.consultation-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  min-width:0;
  padding:8px 0 8px 6px;
}
.consultation-copy .btn{margin-top:24px}
.consultation-media,
.existing-media,
.existing-card-media{
  margin:0;
  position:relative;
  overflow:hidden;
  background:#111;
}
.consultation-media{
  min-height:320px;
  border-radius:32px;
  box-shadow:0 22px 54px rgba(75,58,0,.22);
}
.consultation-media img,
.existing-media img,
.existing-card-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.consultation-media::after,
.existing-media::after,
.existing-card-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(0,0,0,.16));
}

.existing-section{
  align-items:start;
}
.existing-copy{
  justify-content:flex-start;
  min-width:0;
}
.existing-media{
  width:100%;
  aspect-ratio:4/3;
  margin-top:24px;
  border-radius:32px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(23,23,22,.10);
}
.existing-card{
  overflow:hidden;
  padding:0;
}
.existing-card-media{
  width:100%;
  aspect-ratio:4/3;
  border-radius:32px 32px 0 0;
}
.existing-card span,
.existing-card h3,
.existing-card p{
  margin-left:28px;
  margin-right:28px;
}
.existing-card span{
  margin-top:24px;
  margin-bottom:20px;
}
.existing-card p{
  margin-bottom:28px;
}
.existing-card h3{
  margin-bottom:12px;
}

@media (max-width:1320px){
  .header-link--phone-ua{display:none}
}
@media (max-width:1180px){
  .consultation-card{grid-template-columns:1fr;gap:22px}
  .consultation-media{min-height:auto;aspect-ratio:4/3}
}
@media (max-width:820px){
  .consultation-card{padding:22px;border-radius:32px}
  .consultation-copy{padding:0;align-items:stretch}
  .consultation-copy .btn{width:100%}
  .consultation-media,.existing-media{border-radius:26px}
  .existing-card-media{border-radius:26px 26px 0 0}
  .existing-card span,.existing-card h3,.existing-card p{margin-left:22px;margin-right:22px}
  .existing-card p{margin-bottom:24px}
}
@media (max-width:520px){
  .consultation-card{padding:18px;border-radius:28px}
  .consultation-media,.existing-media{border-radius:22px}
  .existing-card-media{border-radius:22px 22px 0 0}
}
/* END GEDEON V5 IMAGE AND CONTACT UPDATES */

/* GEDEON V5 FINAL RESPONSIVE FIXES */
.header-phone-ua{
  white-space:nowrap;
  letter-spacing:-.02em;
}

.consultation-card{
  grid-template-columns:minmax(0,.92fr) minmax(320px,.86fr) !important;
  align-items:stretch !important;
  gap:28px !important;
  padding:30px !important;
  overflow:hidden;
}
.consultation-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  min-width:0;
  padding:8px 0 8px 6px;
}
.consultation-content .btn{margin-top:24px}
.consultation-visual{
  margin:0;
  min-height:320px;
  border-radius:32px;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(23,23,22,.10);
  box-shadow:0 22px 54px rgba(75,58,0,.22);
  position:relative;
}
.consultation-visual::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(0,0,0,.14));
}
.consultation-visual img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.existing-section{
  grid-template-columns:minmax(0,.86fr) minmax(360px,1.14fr) !important;
  align-items:center !important;
}
.existing-copy{
  min-width:0;
  justify-content:center;
}
.existing-visual{
  margin:0;
  width:100%;
  border-radius:36px;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow);
  position:relative;
}
.existing-visual::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(0,0,0,.12));
}
.existing-visual img{
  width:100%;
  aspect-ratio:4 / 3;
  display:block;
  object-fit:cover;
}
.existing-grid{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:22px;
  margin-top:8px;
}
.existing-card--with-media{
  padding:0 !important;
  overflow:hidden;
  border-radius:34px;
  background:rgba(255,255,255,.86);
}
.existing-card-media{
  position:relative;
  width:100%;
  min-height:300px;
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:#111;
  border-radius:34px 34px 0 0 !important;
  margin:0;
}
.existing-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  position:absolute;
  inset:0;
}
.existing-card-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,.05) 0%,rgba(0,0,0,.25) 56%,rgba(0,0,0,.58) 100%);
}
.existing-card-media span{
  position:absolute;
  left:20px;
  bottom:18px;
  z-index:1;
  display:inline-block;
  margin:0 !important;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.90);
  color:#151514;
  font-weight:950;
  font-size:.86rem;
  box-shadow:0 12px 30px rgba(0,0,0,.14);
}
.existing-card-body{
  padding:28px;
}
.existing-card-body h3,
.existing-card-body p{
  margin-left:0 !important;
  margin-right:0 !important;
}
.existing-card-body h3{
  font-size:1.55rem;
  margin-bottom:12px !important;
}
.existing-card-body p{
  margin-bottom:0 !important;
}

@media (max-width:1400px){
  .header-phone-ua{display:none}
}
@media (max-width:1180px){
  .consultation-card{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }
  .consultation-content{padding:0}
  .consultation-visual{min-height:auto}
  .consultation-visual img{aspect-ratio:4 / 3}
  .existing-section{
    grid-template-columns:1fr !important;
    align-items:start !important;
  }
  .existing-visual{
    max-width:760px;
    width:100%;
    margin:0 auto;
  }
  .existing-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
}
@media (max-width:820px){
  .consultation-card{
    padding:22px !important;
    border-radius:32px;
  }
  .consultation-content{align-items:stretch}
  .consultation-content .btn{width:100%}
  .consultation-visual{border-radius:26px}
  .existing-grid{grid-template-columns:1fr !important}
  .existing-visual{border-radius:28px}
  .existing-card--with-media{border-radius:28px}
  .existing-card-media{
    min-height:240px;
    border-radius:28px 28px 0 0 !important;
  }
  .existing-card-body{padding:22px}
}
@media (max-width:520px){
  .consultation-card{
    padding:18px !important;
    border-radius:28px;
  }
  .consultation-visual{border-radius:22px}
  .existing-visual{border-radius:24px}
  .existing-card--with-media{border-radius:24px}
  .existing-card-media{
    min-height:220px;
    border-radius:24px 24px 0 0 !important;
  }
  .existing-card-media span{left:16px;bottom:14px}
  .existing-card-body{padding:20px}
}
/* END GEDEON V5 FINAL RESPONSIVE FIXES */

/* GEDEON LOGO FIT FIX */
.brand-logo-wrap img{
  width:82% !important;
  height:82% !important;
  object-fit:contain !important;
  transform:none !important;
}
/* END GEDEON LOGO FIT FIX */

/* GEDEON V6 HERO BUTTON DISTRIBUTION */
@media (min-width:901px){
  .hero-tags,
  .hero-actions{
    width:100%;
    max-width:760px;
  }

  .hero-tags{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    align-items:stretch;
  }

  .hero-tags span{
    width:100%;
    min-height:48px;
    justify-content:center;
    text-align:center;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
    min-height:58px;
    padding-left:16px;
    padding-right:16px;
    text-align:center;
    white-space:normal;
    line-height:1.15;
  }
}

@media (min-width:1181px){
  .hero-copy{
    width:100%;
  }
}
/* END GEDEON V6 HERO BUTTON DISTRIBUTION */


/* GEDEON V7 PROMINENT LOGO */
.brand{
  min-width:clamp(128px, 12vw, 170px) !important;
}
.brand-logo-wrap{
  width:clamp(118px, 10.5vw, 152px) !important;
  height:76px !important;
  border-radius:22px !important;
  background:#fff !important;
  padding:6px !important;
  display:grid !important;
  place-items:center !important;
}
.brand-logo-wrap img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  transform:none !important;
}
.hero-brand-main{
  width:clamp(180px, 17vw, 270px);
  min-height:112px;
  margin:0 0 22px;
  padding:14px 18px;
  border-radius:28px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(23,23,22,.12);
  box-shadow:0 18px 44px rgba(20,20,16,.10);
  display:grid;
  place-items:center;
}
.hero-brand-main img{
  width:100%;
  height:auto;
  max-height:124px;
  object-fit:contain;
}
@media (max-width:1180px){
  .brand{min-width:auto !important}
  .brand-logo-wrap{
    width:112px !important;
    height:70px !important;
    border-radius:20px !important;
  }
  .hero-brand-main{margin-left:auto;margin-right:auto}
}
@media (max-width:820px){
  .brand-logo-wrap{
    width:96px !important;
    height:60px !important;
    border-radius:18px !important;
    padding:5px !important;
  }
  .hero-brand-main{
    width:min(230px, 72vw);
    min-height:100px;
    margin:0 auto 20px;
    padding:12px 16px;
    border-radius:24px;
  }
}
@media (max-width:520px){
  .brand-logo-wrap{
    width:82px !important;
    height:52px !important;
    border-radius:16px !important;
  }
  .hero-brand-main{
    width:min(220px, 74vw);
    min-height:96px;
  }
}
/* END GEDEON V7 PROMINENT LOGO */


/* GEDEON V8 HEADER LOGO CLEANUP */
.hero-brand-main{display:none!important}
.site-header .brand{
  min-width:auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.site-header .brand-logo-wrap{
  width:86px!important;
  height:86px!important;
  padding:8px!important;
  border-radius:22px!important;
  background:#fff!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
}
.site-header .brand-logo-wrap img{
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  transform:none!important;
}
@media (max-width:1180px){
  .site-header .brand-logo-wrap{
    width:78px!important;
    height:78px!important;
    border-radius:20px!important;
    padding:7px!important;
  }
}
@media (max-width:820px){
  .site-header .brand-logo-wrap{
    width:64px!important;
    height:64px!important;
    border-radius:18px!important;
    padding:6px!important;
  }
}
@media (max-width:520px){
  .site-header .brand-logo-wrap{
    width:58px!important;
    height:58px!important;
    border-radius:16px!important;
    padding:5px!important;
  }
}
/* END GEDEON V8 HEADER LOGO CLEANUP */


/* GEDEON V12 HERO CTA CLEANUP */
.hero-tags{display:none!important}
@media (min-width:901px){
  .hero-actions{
    width:100%;
    max-width:760px;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
    align-items:stretch;
    margin-top:26px;
  }
  .hero-actions .btn{
    width:100%;
    min-height:58px;
    padding-left:16px;
    padding-right:16px;
    text-align:center;
    white-space:normal;
    line-height:1.15;
  }
}
@media (max-width:900px){
  .hero-actions{margin-top:24px}
}
/* END GEDEON V12 HERO CTA CLEANUP */


/* GEDEON V13 MOBILE AND CONTENT STRUCTURE */
.visual-note{
  text-align:center!important;
}
.visual-note strong,
.visual-note span{
  display:block!important;
  text-align:center!important;
}
.visual-note strong{margin-bottom:8px!important}

.intro-panel{
  grid-template-columns:1fr!important;
  text-align:center!important;
  justify-items:center!important;
  align-items:center!important;
}
.intro-panel > div,
.intro-panel > p{
  max-width:920px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.intro-panel .eyebrow,
.intro-panel h2,
.intro-panel p{
  text-align:center!important;
}
.intro-panel h2{
  margin-bottom:14px!important;
}

.service-card{
  text-align:center!important;
}
.service-heading{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 18px;
  text-align:center;
}
.service-heading .service-number{
  margin:0!important;
  flex:0 0 auto;
}
.service-heading h3{
  margin:0!important;
  text-align:center!important;
}
.service-card > .service-number{
  margin-left:auto!important;
  margin-right:auto!important;
}
.service-media{
  width:100%;
}
.service-summary{
  text-align:center!important;
  margin-left:auto!important;
  margin-right:auto!important;
  margin-bottom:14px!important;
}
.service-list{
  text-align:left!important;
  max-width:620px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}

.process-section .showcase-copy,
.split-section .section-head,
.consultation-content,
.existing-copy,
.contact-copy{
  text-align:center!important;
}
.process-section .showcase-copy{
  align-items:center!important;
  justify-content:center!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.process-section .showcase-copy .eyebrow,
.split-section .section-head .eyebrow,
.consultation-content .eyebrow,
.existing-copy .eyebrow,
.contact-copy .eyebrow{
  text-align:center!important;
  width:100%;
}
.split-section .section-head{
  justify-self:center!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.consultation-content,
.existing-copy,
.contact-copy{
  margin-left:auto!important;
  margin-right:auto!important;
}

.social-cards{
  align-items:stretch;
}
.social-card{
  grid-template-columns:1fr!important;
  text-align:center!important;
  justify-items:center!important;
  align-items:center!important;
  gap:16px!important;
}
.social-card > div,
.social-card-copy{
  display:grid!important;
  justify-items:center!important;
  gap:6px!important;
  text-align:center!important;
}
.social-card h3,
.social-card p{
  text-align:center!important;
}
.social-card p{
  margin:0!important;
  color:var(--muted);
  line-height:1.4;
}
.social-card > div > span:not(.social-icon){
  display:none!important;
}
.social-avatar{
  display:none!important;
}
.social-icon{
  width:74px;
  height:74px;
  border-radius:24px;
  display:grid;
  place-items:center;
  margin:0 auto 2px;
  background:#fff;
  border:1px solid rgba(23,23,22,.10);
  box-shadow:var(--shadow-soft);
}
.social-icon svg{
  width:36px;
  height:36px;
  display:block;
}
.social-icon--instagram{
  color:#171716;
  background:linear-gradient(145deg,#ffffff,#f2efe5);
}
.social-icon--telegram{
  color:#fff;
  background:linear-gradient(135deg,#229ed9,#47b8ee);
}
.social-card strong{
  justify-self:center!important;
  text-align:center!important;
}

.direct-links a{
  justify-items:center!important;
  text-align:center!important;
}
.direct-links span,
.direct-links strong{
  text-align:center!important;
}
.contact-form label > span{
  display:block!important;
  text-align:center!important;
}

.custom-select{
  position:relative;
  width:100%;
}
.custom-select-trigger{
  width:100%;
  min-height:56px;
  padding:0 18px;
  border:1px solid rgba(23,23,22,.12);
  border-radius:18px;
  background:#fff;
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(20,20,16,.05);
}
.custom-select-trigger:focus-visible{
  outline:3px solid rgba(255,202,24,.45);
  outline-offset:2px;
}
.custom-select-arrow{
  font-size:1.2rem;
  line-height:1;
  transition:transform .2s ease;
}
.custom-select.open .custom-select-arrow{
  transform:rotate(180deg);
}
.custom-select-menu{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 8px);
  z-index:80;
  display:none;
  padding:8px;
  border-radius:22px;
  background:rgba(251,250,245,.98);
  border:1px solid rgba(23,23,22,.12);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}
.custom-select.open .custom-select-menu{
  display:grid;
  gap:6px;
}
.custom-select-menu button{
  width:100%;
  border:0;
  border-radius:16px;
  background:transparent;
  padding:13px 14px;
  color:var(--ink);
  font-weight:900;
  text-align:center;
}
.custom-select-menu button:hover,
.custom-select-menu button.selected,
.custom-select-menu button[aria-selected="true"]{
  background:linear-gradient(135deg,var(--accent),#ffd95a);
  color:#111;
}

.footer{
  text-align:center!important;
}
.footer-brand{
  justify-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  align-items:center!important;
}
.footer-brand img{
  margin-left:auto!important;
  margin-right:auto!important;
}
.footer-brand p{
  text-align:center!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.footer-links{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  align-items:center!important;
  justify-items:stretch!important;
  width:100%;
}
.footer-link{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px;
  min-height:48px;
  padding:12px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(23,23,22,.12);
  font-weight:900;
  text-align:center!important;
  box-shadow:0 10px 24px rgba(20,20,16,.05);
}
.footer-link--full{
  grid-column:1 / -1;
}
.footer-link span:last-child{
  text-align:center!important;
}
.footer-icon{
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  color:var(--ink);
}
.footer-icon svg{
  width:17px;
  height:17px;
  display:block;
}
.footer-icon--telegram{color:#229ed9}
.footer-icon--instagram{color:#171716}
.footer-icon--whatsapp{color:#1fa855}
.footer-icon--phone{color:#171716}
.footer-icon--email{color:#171716}

.footer-bottom{
  display:grid!important;
  justify-items:center!important;
  text-align:center!important;
  gap:12px!important;
}
.footer-bottom p{
  text-align:center!important;
}
.footer-bottom a[data-scroll-top]{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 22px;
  border-radius:999px;
  background:var(--dark);
  color:#fff;
  font-weight:950;
  margin-left:auto!important;
  margin-right:auto!important;
}

@media (max-width:820px){
  .service-heading{
    gap:10px;
    margin-bottom:16px;
  }
  .service-heading .service-number{
    width:44px!important;
    height:44px!important;
    border-radius:14px!important;
  }
  .service-heading h3{
    font-size:1.3rem!important;
  }
  .social-card{
    padding:24px!important;
  }
  .direct-links a{
    display:grid!important;
    gap:5px!important;
    justify-content:stretch!important;
  }
  .footer-links{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .footer-link--full{
    grid-column:1 / -1;
  }
}
@media (max-width:520px){
  .visual-note{
    text-align:center!important;
  }
  .footer-link{
    font-size:.92rem;
    padding:11px 10px;
  }
  .custom-select-menu{
    border-radius:20px;
  }
}
/* END GEDEON V13 MOBILE AND CONTENT STRUCTURE */


.contact-form .custom-select-trigger span,
.contact-form .custom-select-menu button span,
.contact-form .custom-select-current{
  color:var(--ink)!important;
}
.contact-form .custom-select-arrow{
  color:var(--ink)!important;
}


/* GEDEON V14 CLEAN FULL CYCLE AND CONTACT ICONS */
.intro-panel{display:none!important}

.social-icon{
  color:inherit;
  background:transparent!important;
  box-shadow:none!important;
  border:0!important;
}
.brand-social-svg{
  width:64px;
  height:64px;
  display:block;
  filter:drop-shadow(0 12px 24px rgba(0,0,0,.14));
}
.social-card--instagram .social-icon,
.social-card--telegram .social-icon{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
}
.social-card--instagram .brand-social-svg,
.social-card--telegram .brand-social-svg{
  width:70px;
  height:70px;
}

.direct-links--icons{
  grid-template-columns:1fr;
}
.direct-links--icons a{
  justify-content:flex-start;
  gap:14px;
}
.contact-icon{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
}
.contact-icon .brand-social-svg{
  width:44px;
  height:44px;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.12));
}
.contact-text{
  display:grid;
  gap:3px;
  min-width:0;
}
.contact-text > span{
  color:var(--muted);
  font-weight:900;
  font-size:.82rem;
}
.contact-text strong{
  color:var(--ink);
  overflow-wrap:anywhere;
}

.footer-links{display:none!important}
.footer{
  text-align:center;
}
.footer-brand{
  justify-content:center!important;
  text-align:center;
  flex-direction:column;
}
.footer-brand p{
  margin-left:auto!important;
  margin-right:auto!important;
}
.footer-bottom{
  justify-content:center!important;
  text-align:center;
  flex-wrap:wrap;
}
.footer-bottom a{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:44px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(23,23,22,.10);
  color:var(--ink)!important;
  font-weight:950;
}

@media (min-width:821px){
  .direct-links--icons{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .direct-links--icons a:nth-child(3),
  .direct-links--icons a:nth-child(4),
  .direct-links--icons a:nth-child(7){
    grid-column:1 / -1;
  }
}
@media (max-width:820px){
  .social-card--instagram .brand-social-svg,
  .social-card--telegram .brand-social-svg{
    width:64px;
    height:64px;
  }
  .direct-links--icons a{
    justify-content:center!important;
    text-align:center;
    flex-direction:column;
    padding:18px;
  }
  .contact-text{
    justify-items:center;
  }
}
/* END GEDEON V14 */


/* GEDEON V15 ICON AND CONTACT POLISH */
.social-icon img,
.contact-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.social-card .social-icon{
  width:84px!important;
  height:84px!important;
  border-radius:24px;
  overflow:hidden;
}
.social-card .social-icon img{
  border-radius:24px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.contact-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
}
.contact-icon img,
.contact-icon .brand-social-svg{
  width:48px!important;
  height:48px!important;
}
.contact-icon--phone .brand-social-svg{
  transform:translateY(1px);
}
.contact-icon--email .brand-social-svg{
  filter:drop-shadow(0 8px 18px rgba(255,202,24,.25));
}
.direct-links--icons a{
  justify-content:center!important;
  align-items:center!important;
  text-align:center!important;
  flex-direction:column!important;
  padding:18px 16px!important;
}
.direct-links--icons .contact-text{
  justify-items:center!important;
  text-align:center!important;
}
.direct-links--icons .contact-text strong,
.direct-links--icons .contact-text span{
  text-align:center!important;
}
.custom-select-trigger{
  justify-content:space-between;
  padding:0 16px 0 20px;
}
.custom-select-current{
  flex:1;
  text-align:center;
  margin-left:18px;
}
.custom-select-arrow{
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),#ffe58b);
  display:grid;
  place-items:center;
  box-shadow:0 8px 18px rgba(255,202,24,.24);
}
.custom-select-arrow::before{
  content:"";
  width:9px;
  height:9px;
  border-right:2.5px solid #171716;
  border-bottom:2.5px solid #171716;
  transform:rotate(45deg) translateY(-1px);
}
.custom-select.open .custom-select-arrow::before{
  transform:rotate(-135deg) translate(-1px,-1px);
}
@media (min-width:821px){
  .direct-links--icons{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .direct-links--icons a:nth-child(3),
  .direct-links--icons a:nth-child(4),
  .direct-links--icons a:nth-child(7){
    grid-column:auto;
  }
}
@media (max-width:820px){
  .custom-select-current{margin-left:0}
}
/* END GEDEON V15 */

/* GEDEON V16 BACK TOP BUTTON */
.footer-bottom a[data-scroll-top]{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  min-height:52px!important;
  padding:14px 24px!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,#ffca18,#ffe58b)!important;
  color:#171716!important;
  border:1px solid rgba(23,23,22,.22)!important;
  box-shadow:0 14px 32px rgba(255,202,24,.25),0 8px 18px rgba(23,23,22,.10)!important;
  font-weight:950!important;
  text-decoration:none!important;
  opacity:1!important;
}
.footer-bottom a[data-scroll-top]::before{
  content:"↑";
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#171716;
  color:#ffca18;
  font-size:1.1rem;
  font-weight:950;
  line-height:1;
}
.footer-bottom a[data-scroll-top]:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(255,202,24,.32),0 10px 22px rgba(23,23,22,.12)!important;
}
.footer-bottom a[data-scroll-top]:focus-visible{
  outline:3px solid rgba(255,202,24,.45);
  outline-offset:3px;
}
@media (max-width:520px){
  .footer-bottom a[data-scroll-top]{
    width:100%!important;
    max-width:270px!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }
}
/* END GEDEON V16 BACK TOP BUTTON */


/* GEDEON V17 CONTACT REQUEST SELECT FIX */
.contact-form label > span[data-i18n="formTopic"]{
  text-align:center!important;
}
.contact-form .custom-select-trigger{
  display:grid!important;
  grid-template-columns:28px minmax(0,1fr) 28px!important;
  align-items:center!important;
  column-gap:12px!important;
  justify-content:normal!important;
}
.contact-form .custom-select-trigger [data-custom-select-current],
.contact-form .custom-select-current{
  grid-column:2!important;
  width:100%!important;
  min-width:0!important;
  margin-left:0!important;
  text-align:center!important;
  justify-self:center!important;
  color:var(--ink)!important;
}
.contact-form .custom-select-arrow{
  grid-column:3!important;
  justify-self:end!important;
}
.contact-form .custom-select-menu button{
  text-align:center!important;
  justify-content:center!important;
}
/* END GEDEON V17 CONTACT REQUEST SELECT FIX */

/* GEDEON V18 DESKTOP CONTACT FORM COMPACT FIX */
@media (min-width: 901px){
  .contact-panel{
    grid-template-columns:minmax(0,.98fr) minmax(440px,560px)!important;
    align-items:start!important;
  }
  .contact-form{
    width:100%!important;
    max-width:560px!important;
    justify-self:end!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px 14px!important;
    padding:20px!important;
    border-radius:28px!important;
  }
  .contact-form label{
    gap:6px!important;
    align-content:start!important;
  }
  .contact-form label > span{
    display:block!important;
    margin:0 0 2px!important;
    line-height:1.15!important;
    font-size:.84rem!important;
    text-align:left!important;
  }
  .contact-form label > span[data-i18n="formTopic"]{
    text-align:left!important;
  }
  .contact-form input,
  .contact-form textarea{
    min-height:46px!important;
    padding:11px 14px!important;
    border-radius:15px!important;
    font-size:.95rem!important;
    line-height:1.35!important;
  }
  .contact-form .custom-select-trigger{
    min-height:46px!important;
    padding:0 12px!important;
    border-radius:15px!important;
    font-size:.95rem!important;
  }
  .contact-form .custom-select-arrow{
    width:24px!important;
    height:24px!important;
    flex-basis:24px!important;
  }
  .contact-form .custom-select-arrow::before{
    width:8px!important;
    height:8px!important;
  }
  .contact-form textarea{
    min-height:128px!important;
    padding-top:13px!important;
  }
  .contact-form button[type="submit"]{
    min-height:48px!important;
    padding-top:12px!important;
    padding-bottom:12px!important;
  }
}
@media (min-width: 1181px){
  .contact-panel{
    grid-template-columns:minmax(0,1fr) minmax(460px,580px)!important;
  }
  .contact-form{
    max-width:580px!important;
  }
}
/* END GEDEON V18 DESKTOP CONTACT FORM COMPACT FIX */
