/* ════════════════════════════════════════════════
   ТЕХКОМПЛЕКС — design system
   RAL 6038 #00B140 | RAL 7036 #908882 | RAL 9005 #0D0D0D
════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:        #00B140;
  --brand-hover:  #009935;
  --brand-light:  #E5F7ED;
  --brand-dark:   #007A2D;
  --grey:         #908882;
  --grey-light:   #C8C3BD;
  --ink:          #0D0D0D;
  --ink-soft:     #1C1C1A;
  --surface:      #F7F6F3;
  --surface-card: #FFFFFF;
  --muted:        #6B6764;
  --border:       #E0DDD9;
  --shadow-sm:    0 1px 3px rgb(13 13 13 / .07);
  --shadow-md:    0 4px 16px rgb(13 13 13 / .09);
  --shadow-lg:    0 16px 48px rgb(13 13 13 / .13);
  --r:            .5rem;
  --r-lg:         1rem;
  --r-xl:         1.5rem;
  --ease:         cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; -webkit-font-smoothing: antialiased; }
body { font-family: 'Onest', system-ui, sans-serif; background: var(--surface); color: var(--ink-soft); line-height: 1.6; }

/* ── Layout ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media(max-width:640px){ .wrap { padding: 0 1rem; } }
.section { padding: clamp(4rem,8vw,7rem) 0; }
.section--dark { background: var(--ink); color: #fff; }
.section--white { background: #fff; }
.section--brand { background: var(--brand); }

/* ── Typography ── */
.tag {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .25rem .875rem; background: var(--brand-light); color: var(--brand);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px; margin-bottom: 1.25rem;
}
.tag--dark { background: rgb(255 255 255 / .1); color: var(--brand); }
.tag--white { background: rgb(255 255 255 / .15); color: #fff; }

.display { font-size: clamp(2.4rem,5vw,6rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.display--sm { font-size: clamp(2rem,4vw,3.5rem); }
.h1 { font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.h2 { font-size: clamp(1.5rem,2.5vw,2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
.h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.35; }
.body-lg { font-size: 1.0625rem; line-height: 1.75; color: var(--muted); }
.body-lg--light { color: rgb(255 255 255 / .65); }
.body-lg--dark { color: rgb(255 255 255 / .7); }
.caption { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.625rem; font-size: .875rem; font-weight: 600;
  border-radius: var(--r); cursor: pointer; border: 2px solid transparent;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), transform 100ms;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-outline--white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline--white:hover { background: #fff; color: var(--ink); }
.btn-ghost { background: none; border-color: transparent; color: var(--brand); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--brand-dark); }
.btn-sm { padding: .5rem 1rem; font-size: .8125rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.arrow { display: inline-block; transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Navigation ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgb(247 246 243 / .9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 200ms var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 2rem; height: 4.25rem; }
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.logo svg { width: 36px; height: 36px; color: var(--brand); }
.logo__name { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3; }
.logo__sub { font-size: .6rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; text-transform: none; }
.nav { display: flex; align-items: center; gap: .25rem; flex: 1; }
.nav__link {
  padding: .4rem .75rem; font-size: .8375rem; font-weight: 500; color: var(--muted);
  border-radius: var(--r); transition: color 150ms, background 150ms; text-decoration: none;
}
.nav__link:hover { color: var(--ink-soft); background: var(--surface); }
.nav__link.active { color: var(--ink-soft); }
.header__actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.lang-switch { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.lang-btn { padding: .3rem .6rem; font-size: .75rem; font-weight: 600; cursor: pointer; border: none; background: none; color: var(--muted); transition: background 150ms, color 150ms; }
.lang-btn.active { background: var(--brand); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-soft); border-radius: 1px; transition: transform 200ms, opacity 200ms; }
@media(max-width:900px){
  .nav { display: none; }
  .hamburger { display: flex; }
  .lang-switch { display: none; }
  .header__actions .btn { display: none; }
}
.mobile-menu {
  display: none; position: fixed; top: 4.25rem; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99; flex-direction: column; gap: 0; padding: 1.5rem;
  border-top: 1px solid var(--border); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 1rem 0; font-size: 1.0625rem; font-weight: 600; color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-lang { display: flex; gap: .75rem; margin-top: 1.5rem; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: var(--ink); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #152d1c 40%, #0a1f10 70%, #0D0D0D 100%);
}
.hero__grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(var(--brand) 1px, transparent 1px),
                    linear-gradient(90deg, var(--brand) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__accent {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: min(700px, 60vw); height: min(700px, 60vw);
  border-radius: 50%; border: 1px solid rgb(0 177 64 / .08);
  background: radial-gradient(circle, rgb(0 177 64 / .07) 0%, transparent 70%);
}
.hero__content { position: relative; z-index: 2; padding: 2rem 0; max-width: 760px; }
.hero__tag { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem 1rem; border: 1px solid rgb(0 177 64 / .35); background: rgb(0 177 64 / .1); color: var(--brand); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px; margin-bottom: 1.75rem; }
.hero__title { color: #fff; margin-bottom: 1.25rem; }
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.125rem); color: rgb(255 255 255 / .6); max-width: 580px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgb(255 255 255 / .35); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll-dot { width: 1px; height: 40px; background: linear-gradient(var(--brand), transparent); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--ink); padding: clamp(4rem,8vw,6rem) 0 clamp(3rem,6vw,5rem);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

/* ── Stats bar ── */
.stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat__num { font-size: 2.25rem; font-weight: 800; color: var(--brand); line-height: 1; }
.stat__label { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

/* ── Product card ── */
.product-card { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.product-card--reverse { direction: rtl; }
.product-card--reverse > * { direction: ltr; }
@media(max-width:900px){ .product-card { grid-template-columns: 1fr; gap: 2rem; } .product-card--reverse { direction: ltr; } }
.product-img {
  aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: linear-gradient(135deg, #1a1a18 0%, #0d2918 50%, #0a0a09 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; }
.product-img__placeholder { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: rgb(255 255 255 / .25); }
.product-img__placeholder svg { width: 64px; height: 64px; }
.badge { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .75rem; background: var(--brand-light); color: var(--brand); font-size: .75rem; font-weight: 700; border-radius: 999px; margin-bottom: 1rem; }
.badge::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.features { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .625rem; }
.feature { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--muted); }
.feature::before { content: ''; flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-light); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l2.5 2.5L12 5.5' stroke='%2300B140' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: cover; margin-top: 2px; }

/* ── Spec table ── */
.spec-table { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 1.5rem; }
.spec-row { display: flex; align-items: start; gap: 1rem; padding: .75rem 1.25rem; border-bottom: 1px solid var(--border); }
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--surface); }
.spec-label { flex: 1; font-size: .8375rem; color: var(--muted); }
.spec-value { font-size: .8375rem; font-weight: 600; color: var(--ink-soft); text-align: right; flex-shrink: 0; max-width: 55%; }
.spec-table-title { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: .875rem 1.25rem; background: var(--surface); border-bottom: 1px solid var(--border); }

/* ── Cards ── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--shadow-sm); transition: box-shadow 200ms var(--ease), transform 200ms var(--ease); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon { width: 3rem; height: 3rem; border-radius: var(--r); background: var(--brand-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card__icon svg { width: 24px; height: 24px; color: var(--brand); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media(max-width:900px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Section headers ── */
.section-head { margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-head--center { text-align: center; }
.section-head--center .tag { margin-left: auto; margin-right: auto; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 600px; margin-top: .875rem; }
.section-sub--center { margin-left: auto; margin-right: auto; }

/* ── CTA banner ── */
.cta-banner { text-align: center; padding: clamp(4rem,8vw,6rem) 1.5rem; }
.cta-banner--brand { background: var(--brand); }
.cta-banner--dark { background: var(--ink); }
.cta-banner__title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; color: #fff; margin-bottom: .875rem; }
.cta-banner__sub { color: rgb(255 255 255 / .7); font-size: 1rem; margin-bottom: 2rem; }

/* ── Service cards ── */
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.75rem; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); border-radius: 999px 0 0 999px; }
.service-num { font-size: 3.5rem; font-weight: 900; color: var(--brand-light); line-height: 1; margin-bottom: .5rem; font-variant-numeric: tabular-nums; }

/* ── Brand pills ── */
.pill { display: inline-flex; padding: .4rem 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-size: .8125rem; font-weight: 600; color: var(--ink-soft); }

/* ── Contact ── */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 2.75rem; height: 2.75rem; flex-shrink: 0; border-radius: var(--r); background: var(--brand-light); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; color: var(--brand); }
.contact-label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.contact-val { font-size: 1rem; font-weight: 600; color: var(--ink-soft); text-decoration: none; }
.contact-val:hover { color: var(--brand); }

/* ── Form ── */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.form-label { font-size: .8125rem; font-weight: 500; color: var(--ink-soft); }
.form-label span { color: var(--brand); }
.form-input, .form-textarea {
  padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r);
  font: inherit; font-size: .9rem; color: var(--ink-soft); background: #fff;
  transition: border-color 150ms, box-shadow 150ms; outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgb(0 177 64 / .12); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-privacy { font-size: .75rem; color: var(--muted); }
.form-success { display: none; padding: 1.25rem; background: var(--brand-light); border: 1px solid var(--brand); border-radius: var(--r-lg); color: var(--brand-dark); font-weight: 500; }
.form-error { display: none; padding: 1.25rem; background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--r-lg); color: #dc2626; font-weight: 500; }

/* ── Portfolio grid ── */
.gallery { columns: 3; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 400ms var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgb(13 13 13 / .8)); display: flex; align-items: flex-end; padding: 1.25rem; opacity: 0; transition: opacity 300ms var(--ease); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-title { color: #fff; font-size: .875rem; font-weight: 600; }
.gallery-img-placeholder { aspect-ratio: 4/3; background: linear-gradient(135deg, #1c1c1a 0%, #0d2918 50%, #0a0a09 100%); display: flex; align-items: center; justify-content: center; color: rgb(255 255 255 / .2); }
@media(max-width:768px){ .gallery { columns: 2; } }
@media(max-width:480px){ .gallery { columns: 1; } }

/* ── About split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:900px){ .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, #1c1c1a, #0d2918); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.cert-item { display: flex; align-items: flex-start; gap: .875rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cert-item:last-child { border-bottom: none; }
.cert-icon { width: 2rem; height: 2rem; flex-shrink: 0; color: var(--brand); margin-top: 2px; }

/* ── Footer ── */
.footer { background: var(--ink); color: rgb(255 255 255 / .65); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
@media(max-width:768px){ .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer__logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__logo svg { width: 36px; height: 36px; color: var(--brand); }
.footer__name { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.footer__desc { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer__title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__link { font-size: .875rem; color: rgb(255 255 255 / .55); text-decoration: none; transition: color 150ms; }
.footer__link:hover { color: var(--brand); }
.footer__bar { border-top: 1px solid rgb(255 255 255 / .08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .8rem; color: rgb(255 255 255 / .35); }

/* ── Analog box ── */
.analog-box { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--brand); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 3rem; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.vis { opacity: 1; transform: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--grey-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--grey); }

/* ── Selection ── */
::selection { background: rgb(0 177 64 / .2); }

/* ── Focus ── */
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 3px; }

/* ── Divider accent ── */
.accent-line { height: 3px; background: linear-gradient(90deg, var(--brand), transparent); border-radius: 3px; margin-bottom: 2.5rem; width: 48px; }

/* ── Parts page ── */
.parts-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn { padding: .5rem 1.125rem; border: 1.5px solid var(--border); border-radius: 999px; font-size: .8125rem; font-weight: 600; color: var(--muted); cursor: pointer; background: none; transition: all 150ms var(--ease); }
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.part-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.5rem; display: flex; flex-direction: column; }
.part-card__name { font-size: 1rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .5rem; }
.part-card__desc { font-size: .8375rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.part-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.part-card__price { font-size: 1.125rem; font-weight: 800; color: var(--brand); }
.part-card[hidden] { display: none; }

/* ── Order modal ── */
.order-modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgb(0 0 0 / .55); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.order-modal-overlay.open { display: flex; }
.order-modal { background: #fff; border-radius: var(--r-xl); max-width: 480px; width: 100%; padding: 2rem; position: relative; animation: fadeUp .3s var(--ease); }
.order-modal__close { position: absolute; top: .75rem; right: 1rem; background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.75rem; line-height: 1; transition: color 150ms; }
.order-modal__close:hover { color: var(--ink); }
.order-modal__product { font-size: .9rem; color: var(--brand); font-weight: 600; margin-bottom: 1.25rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ── MAX button style ── */
.btn-max { background: #5B2D8E; color: #fff; border-color: #5B2D8E; }
.btn-max:hover { background: #4A2476; border-color: #4A2476; }
