:root {
  --bg: #0d1117;
  --bg-soft: #151b23;
  --text: #101828;
  --muted: #667085;
  --white: #ffffff;
  --line: #e5e7eb;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --metal: #cbd5e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f8fafc;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid #eef0f3;
}

.header__inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand__logo {
  width: 82px;
  height: 82px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 0;
  display: block;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 15px;
  color: #334155;
}

.nav a:hover,
.header__phone:hover {
  color: var(--accent);
}

.header__phone {
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  background:
    radial-gradient(circle at 70% 20%, rgba(15,118,110,.22), transparent 30%),
    linear-gradient(135deg, #0d1117 0%, #17202c 55%, #0f172a 100%);
  color: var(--white);
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.badge,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #0f766e;
  background: #ccfbf1;
}

.hero h1,
.section h2,
.request h2,
.contacts h2 {
  margin: 18px 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 6vw, 72px);
}

.hero p {
  max-width: 680px;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 118, 110, .28);
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.hero__stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}

.hero__stats strong {
  display: block;
  font-size: 18px;
}

.hero__stats span {
  display: block;
  margin-top: 6px;
  color: #94a3b8;
  font-size: 14px;
}

.hero__visual {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}

.hero__visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
  filter: grayscale(.1) contrast(1.08);
}

.section {
  padding: 86px 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
}

.section h2,
.request h2,
.contacts h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.text-block {
  font-size: 18px;
  line-height: 1.75;
  color: #475467;
}

.section--dark {
  color: #fff;
  background: var(--bg);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head p {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.6;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #1f2937, #111827);
  transition: transform .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 212, 191, .45);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.card span {
  display: block;
  margin-top: 18px;
  color: #5eead4;
  font-size: 13px;
  line-height: 1.5;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.advantages div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.advantages b {
  color: var(--accent);
}

.advantages h3 {
  font-size: 21px;
}

.advantages p {
  color: var(--muted);
  line-height: 1.6;
}

.request {
  padding: 86px 0;
  background: linear-gradient(135deg, #ecfeff, #f8fafc);
}

.request__box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.request p {
  color: #475467;
  font-size: 18px;
  line-height: 1.7;
}

.form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  padding: 16px;
  font: inherit;
  outline: none;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--accent);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.contacts p {
  color: #475467;
  font-size: 17px;
  line-height: 1.65;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-links a {
  width: fit-content;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.requisites {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.requisites p {
  margin: 9px 0;
}

.footer {
  padding: 28px 0;
  background: #0d1117;
  color: #94a3b8;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer a {
  color: #fff;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .split,
  .request__box,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .catalog,
  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header__phone {
    display: none;
  }

  .brand__text {
  font-size: 24px;
  color: #111827;
  line-height: 1;
}

  .hero {
    padding: 56px 0;
  }

  .catalog,
  .advantages {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    padding: 14px;
    border-radius: 22px;
  }
}


.topbar {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

.topbar-inner {
  height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.topbar a:hover {
  color: #111827;
}


.topbar a{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color:#2f3b52;
}

.phone-icon{
  width:18px;
  height:18px;
  vertical-align:middle;
  margin-right:6px;
}

.hero__visual{
  padding:10px !important;
  border-radius:18px !important;
}

.hero__visual img{
  border-radius:10px !important;
  max-width:420px;
  margin:auto;
  display:block;
}

@media (min-width: 1000px){
  .hero__visual img{
      max-width:360px;
  }
}

.topbar a{
font-weight:400 !important;
font-size:18px !important;
}
.phone-icon{
width:32px !important;
height:32px !important;
}


.brand__text{
 font-size:42px !important;
 font-weight:700 !important;
 color:#111827;
}

.email-icon{
 width:34px;
 height:34px;
 vertical-align:middle;
 margin-right:10px;
}

.topbar{
 background:#efefef !important;
}

.topbar a{
 color:#111 !important;
 font-size:20px !important;
 font-weight:400 !important;
}

.phone-icon{
 width:40px !important;
 height:40px !important;
 margin-right:10px;
}

.contact-links a{
 color:#111 !important;
 font-weight:400 !important;
 font-size:26px !important;
}


/* ===== ATLANTIS FINAL HARD FIX ===== */

.container {
  width: min(1480px, calc(100% - 120px)) !important;
  margin: 0 auto !important;
}

.topbar {
  background: #eeeeee !important;
  border-bottom: 1px solid #dcdcdc !important;
}

.topbar-inner {
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.topbar a,
.topbar-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.email-icon,
.phone-icon {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  margin: 0 !important;
  flex: 0 0 22px !important;
}

.header {
  position: relative !important;
  top: auto !important;
  z-index: 5 !important;
  background: #fff !important;
  border-bottom: 1px solid #eef0f3 !important;
}

.header__inner {
  height: 112px !important;
  display: grid !important;
  grid-template-columns: minmax(520px, 700px) 1fr !important;
  align-items: center !important;
  gap: 42px !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow: hidden !important;
}

.brand__logo {
  width: 76px !important;
  height: 76px !important;
  flex: 0 0 76px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.brand__text {
  display: block !important;
  color: #050505 !important;
  font-size: clamp(30px, 3.1vw, 44px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.035em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
}

.nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(20px, 2.6vw, 48px) !important;
  min-width: 0 !important;
  width: 100% !important;
}

.nav a {
  color: #050505 !important;
  font-size: clamp(13px, 1.05vw, 17px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.nav a:hover {
  color: #0f766e !important;
}

.hero {
  padding: 82px 0 72px !important;
  background:
    radial-gradient(circle at 70% 20%, rgba(15,118,110,.22), transparent 30%),
    linear-gradient(135deg, #0d1117 0%, #17202c 55%, #0f172a 100%) !important;
}

.hero__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr) !important;
  gap: 72px !important;
  align-items: center !important;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 74px) !important;
  line-height: 1.05 !important;
}

.hero__visual {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.hero__visual img {
  width: 100% !important;
  height: 410px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 18px !important;
  margin: 0 !important;
  max-width: none !important;
  filter: none !important;
  background: transparent !important;
}

.contact-links {
  display: grid !important;
  gap: 18px !important;
  margin-top: 24px !important;
}

.contact-links a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  width: fit-content !important;
  color: #111 !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}

.contact-icon {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain !important;
  flex: 0 0 30px !important;
}

@media (max-width: 1250px) {
  .container {
    width: min(1180px, calc(100% - 48px)) !important;
  }

  .header__inner {
    grid-template-columns: 1fr !important;
    height: auto !important;
    padding: 22px 0 !important;
    gap: 18px !important;
  }

  .brand {
    overflow: visible !important;
  }

  .brand__text {
    font-size: 34px !important;
  }

  .nav {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 22px !important;
  }

  .nav a {
    font-size: 15px !important;
  }
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr !important;
  }

  .hero__visual img {
    height: auto !important;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 1180px) !important;
  }

  .topbar-inner {
    height: auto !important;
    padding: 10px 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .topbar a,
  .topbar-link {
    font-size: 16px !important;
  }

  .email-icon,
  .phone-icon {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
  }

  .brand__logo {
    width: 60px !important;
    height: 60px !important;
    flex-basis: 60px !important;
  }

  .brand__text {
    font-size: 22px !important;
    white-space: normal !important;
  }

  .nav a {
    font-size: 13px !important;
  }
}


/* MENU FONT FIX */
.nav a{
    font-size:17px !important;
    font-weight:600 !important;
    letter-spacing:0.04em !important;
}


/* MENU FINAL */
.nav a{
    font-size:17px !important;
    font-weight:600 !important;
    letter-spacing:0.12em !important;
}


/* BRAND FINAL */
.brand__text{
    font-size:40px !important;
    font-weight:600 !important;
}


/* REMOVE 01 02 03 04 */
.advantages b,
.advantages .number,
.advantages .adv-number,
.card-number{
    display:none !important;
}


/* Hide stats without breaking layout */
.hero__stats{
    display:none !important;
}


/* FINAL PHONE ICON FIX */
.topbar-link,
.topbar a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.email-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    margin: 0 !important;
    flex: 0 0 24px !important;
    vertical-align: middle !important;
}

.phone-icon {
    width: 34px !important;
    height: 34px !important;
    object-fit: contain !important;
    margin: 0 !important;
    flex: 0 0 34px !important;
    vertical-align: middle !important;
}

.contact-icon {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    flex: 0 0 30px !important;
}


/* FINAL ICON ALIGNMENT: phone like email */
.topbar-link,
.topbar a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.email-icon,
.phone-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    margin: 0 !important;
    flex: 0 0 24px !important;
    vertical-align: middle !important;
}

.contact-icon {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    flex: 0 0 30px !important;
}


/* INDUSTRIAL HERO BACKGROUND */
.hero {
    position: relative !important;
    background: url('assets/hero-bg.jpg') center center / cover no-repeat !important;
}

.hero::after {
    content: '';
    position: absolute !important;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.2) !important; /* затемнение для читаемости текста */
    z-index:1;
}

.hero > .hero__grid {
    position: relative !important;
    z-index:2;
}


/* ОСНОВНЫЕ НАПРАВЛЕНИЯ ПОСТАВОК - ТОТ ЖЕ ФОН ЧТО И НА ПЕРВОМ ЭКРАНЕ */
#catalog.section--dark{
    background:
      linear-gradient(rgba(10,15,22,.45), rgba(10,15,22,.45)),
      url('assets/hero-bg.jpg') center center / cover no-repeat !important;
}


/* FINAL CATALOG BACKGROUND - REMOVE BLUE CARDS */
#catalog.section--dark{
    position: relative !important;
    overflow: hidden !important;
    color: #ffffff !important;
    background: url('assets/hero-bg.jpg') center center / cover no-repeat !important;
}

#catalog.section--dark::before{
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0,0,0,.42) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

#catalog.section--dark > .container{
    position: relative !important;
    z-index: 2 !important;
}

#catalog .card{
    background: rgba(0,0,0,.42) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: none !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

#catalog .card:hover{
    border-color: rgba(94,234,212,.55) !important;
    transform: translateY(-4px) !important;
}

#catalog .card h3{
    color: #ffffff !important;
}

#catalog .card p{
    color: rgba(255,255,255,.86) !important;
}

#catalog .section-head p{
    color: rgba(255,255,255,.75) !important;
}


/* WORK HOURS IN CONTACTS */
.work-hours{
    display: inline-flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    width: fit-content !important;
    margin-top: 4px !important;
    color: #111 !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
}

.work-hours__icon{
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #111 !important;
    font-size: 31px !important;
    line-height: 1 !important;
    margin-top: 1px !important;
}

.work-hours strong{
    display: block !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 4px !important;
}

.work-hours span{
    display: block !important;
    font-weight: 400 !important;
    color: #334155 !important;
}


/* REQUISITES BLACK ICON */
.requisites-title{
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.requisites-icon{
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    flex: 0 0 32px !important;
    background: transparent !important;
}


/* FINAL STRUCTURED CONTACTS */
.contact-links--structured{
    display: grid !important;
    gap: 18px !important;
    margin-top: 24px !important;
}

.contact-row{
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    align-items: start !important;
    column-gap: 18px !important;
    width: fit-content !important;
}

.contact-row .contact-icon{
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    margin-top: 3px !important;
    flex: 0 0 30px !important;
}

.contact-row strong{
    display: block !important;
    color: #111111 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 0 8px 0 !important;
}

.contact-row span,
.contact-row a{
    display: block !important;
    color: #111111 !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    line-height: 1.42 !important;
    margin: 0 !important;
}

.contact-row a{
    text-decoration: none !important;
}

.contact-row a:hover{
    color: #0f766e !important;
}

.work-hours{
    margin-top: 0 !important;
}

.work-hours__icon{
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #111111 !important;
    font-size: 31px !important;
    line-height: 1 !important;
    margin-top: 3px !important;
}

.requisites-title{
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    color: #111111 !important;
}

.requisites-icon{
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    flex: 0 0 32px !important;
    background: transparent !important;
}

.requisites p b{
    color: #111111 !important;
}

@media (max-width: 620px){
    .contact-row{
        grid-template-columns: 32px 1fr !important;
        column-gap: 14px !important;
    }

    .contact-row strong{
        font-size: 18px !important;
    }

    .contact-row span,
    .contact-row a{
        font-size: 20px !important;
    }
}


.card-with-image{
 display:flex !important;
 align-items:center !important;
 gap:18px !important;
}

.catalog-image{
 width:120px !important;
 flex:0 0 120px !important;
 object-fit:contain !important;
}

.card-content{
 flex:1;
}


/* PEREHODY IMAGE FINAL FIX */
.card-with-image{
    display:flex !important;
    align-items:center !important;
    gap:18px !important;
}

.catalog-image{
    width:120px !important;
    height:auto !important;
    flex:0 0 120px !important;
    object-fit:contain !important;
}

.card-content{
    flex:1 !important;
}

@media (max-width: 768px){
    .card-with-image{
        flex-direction:column !important;
        align-items:flex-start !important;
    }

    .catalog-image{
        width:95px !important;
        flex:0 0 auto !important;
    }
}
