:root {
  --steel-bg: #060b16;
  --steel-bg-2: #0d1525;
  --steel-panel: rgba(17, 27, 39, 0.9);
  --steel-card: rgba(16, 22, 32, 0.9);
  --steel-line: rgba(255, 188, 88, 0.45);
  --steel-gold: #ffb341;
  --steel-gold-2: #f5a824;
  --steel-text: #f4f6fb;
  --steel-muted: #b7c0d2;
  --steel-shadow: rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }

body {
  background: var(--steel-bg);
  color: var(--steel-text);
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
.steelpro-nav ul li {
    list-style: none;
}
.steelpro-homepage {
  background:
    radial-gradient(circle at top left, rgba(255, 179, 65, 0.12), transparent 26%),
    linear-gradient(180deg, #02080f 0%, #091321 100%);
  min-height: 100vh;
}

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

.steelpro-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  backdrop-filter: blur(12px);
  background: rgba(10, 16, 24, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.steelpro-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.steelpro-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
/* =========================
   FOOTER
========================= */

.steelpro-footer {
    margin-top: 80px;
    padding: 70px 0 25px;
    background: #111315;
    color: #fff;
}

.steelpro-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 55px;
}

.steelpro-footer .steelpro-logo-wrap {
    margin-bottom: 25px;
}

.steelpro-footer .steelpro-logo-name {
    color: #fff;
}

.steelpro-footer .steelpro-logo-sub {
    color: #999;
}

.steelpro-footer-brand > p {
    max-width: 350px;
    margin: 0 0 25px;
    color: #a9adb1;
    font-size: 14px;
    line-height: 1.7;
}

.steelpro-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.steelpro-footer-column h4 {
    position: relative;
    margin: 0 0 12px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.steelpro-footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #f5b800;
}

.steelpro-footer-column a {
    color: #a9adb1;
    font-size: 14px;
    text-decoration: none;
    transition: .2s ease;
}

.steelpro-footer-column a:hover {
    color: #f5b800;
    transform: translateX(3px);
}

.steelpro-footer-contacts p {
    margin: 0;
    color: #a9adb1;
    font-size: 14px;
}

.steelpro-footer-contacts .steelpro-footer-phone {
    margin-bottom: 4px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.steelpro-footer-contacts .steelpro-footer-phone:hover {
    color: #f5b800;
    transform: none;
}

.steelpro-whatsapp {
    margin-top: 10px;
    color: #f5b800 !important;
    font-weight: 600;
}

.steelpro-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.1);

    color: #73777b;
    font-size: 13px;
}

.steelpro-footer-bottom a {
    color: #73777b;
    text-decoration: none;
    transition: .2s ease;
}

.steelpro-footer-bottom a:hover {
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .steelpro-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

}

@media (max-width: 600px) {

    .steelpro-footer {
        margin-top: 50px;
        padding-top: 50px;
    }

    .steelpro-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .steelpro-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}
.steelpro-logo-mark {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #111;
  background: linear-gradient(135deg, #ffca65, #e6941b);
  box-shadow: 0 0 18px rgba(255, 179, 65, 0.35);
}

.steelpro-logo-name {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.steelpro-logo-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-muted);
}

.steelpro-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.steelpro-nav a,
.steelpro-phone,
.steelpro-hours {
  color: var(--steel-text);
  text-decoration: none;
  font-size: 0.93rem;
}

.steelpro-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.steelpro-phone {
  font-weight: 700;
}

.steelpro-hours {
  color: var(--steel-muted);
  font-size: 0.76rem;
}

.steelpro-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  border: 1px solid var(--steel-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.steelpro-button:hover {
  transform: translateY(-1px);
}

.steelpro-button-primary {
  background: linear-gradient(135deg, #ffbf49, #e99813);
  color: #141414;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255, 179, 65, 0.25);
}

.steelpro-button-secondary {
  background: rgba(255,255,255,0.02);
  color: var(--steel-text);
}

.steelpro-button-lg {
  min-width: 230px;
}

.steelpro-hero {
  padding: 56px 0 28px;
}

.steelpro-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.steelpro-badge {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--steel-muted);
  margin-bottom: 20px;
}

.steelpro-hero-copy h1 {
  font-size: 54px;
  line-height: 0.95;
  margin: 0 0 22px;
  font-weight: 900;
  letter-spacing: -0.05em;
  max-width: 620px;
}

.steelpro-hero-copy h1 span {
  display: block;
}

.steelpro-checklist {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  gap: 10px 16px;
  color: var(--steel-muted);
  font-size: 0.96rem;
}

.steelpro-checklist li {
  position: relative;
  padding-left: 18px;
}

.steelpro-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--steel-gold);
}

.steelpro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.steelpro-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--steel-muted);
  font-size: 0.9rem;
}

.steelpro-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 35px 80px rgba(0,0,0,0.32);
}

.steelpro-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.12), rgba(0,0,0,0.3));
  z-index: 1;
}

.steelpro-image-card img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.steelpro-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 36px;
}

.steelpro-benefit-item {
  background: linear-gradient(180deg, rgba(18,28,39,0.9), rgba(10,17,24,0.85));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 180px;
  text-align: center;
}

.steelpro-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.steelpro-benefit-item h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.steelpro-benefit-item p {
  color: var(--steel-muted);
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}

.steelpro-services {
  padding-top: 16px;
  padding-bottom: 20px;
}

.steelpro-section-heading {
  margin-bottom: 22px;
}

.steelpro-section-heading h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin: 0;
  letter-spacing: -0.04em;
}

.steelpro-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.steelpro-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 255px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

.steelpro-service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.steelpro-service-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-weight: 700;
  background: rgba(12,16,22,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.steelpro-center-button {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.steelpro-calculator {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 28px;
  padding-top: 42px;
  padding-bottom: 20px;
  align-items: flex-start;
}

.steelpro-calc-panel,
.steelpro-projects {
  background: linear-gradient(180deg, rgba(16,22,31,0.9), rgba(7,12,19,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
}

.steelpro-calc-copy h3 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 10px;
}

.steelpro-calc-copy p {
  color: var(--steel-muted);
  margin-bottom: 20px;
}

.steelpro-form-row {
  margin-bottom: 18px;
}

.steelpro-form-row label {
  display: block;
  color: var(--steel-muted);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.steelpro-form-row select,
.steelpro-form-row input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  color: var(--steel-text);
  padding: 0.9rem 1rem;
  font-size: 1rem;
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.steelpro-calc-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 26px;
  color: var(--steel-muted);
}

.steelpro-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.steelpro-project-grid img {
  display: block;
  width: 100%;
  border-radius: 16px;
  min-height: 180px;
  object-fit: cover;
	    max-height: 180px;
}

.steelpro-project-more {
  margin-top: 22px;
  text-align: right;
}

.steelpro-project-more a {
  color: var(--steel-gold);
  text-decoration: none;
  font-weight: 700;
}

.steelpro-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 10px;
}

.steelpro-stat-item {
  text-align: center;
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

.steelpro-stat-item strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--steel-gold);
  margin-bottom: 8px;
}

.steelpro-stat-item span {
  color: var(--steel-muted);
}

.steelpro-request {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  padding-top: 46px;
  padding-bottom: 70px;
  align-items: center;
}

.steelpro-request-copy {
  background: linear-gradient(135deg, #f7b13c, #e58e13);
  color: #0d1117;
  padding: 28px 30px;
  border-radius: 26px;
}

.steelpro-request-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.steelpro-request-copy p {
  margin: 0 0 18px;
  color: rgba(13,17,23,0.85);
}

.steelpro-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.steelpro-request-list {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px 22px;
  display: grid;
  gap: 18px;
  font-weight: 600;
}

.steelpro-cert {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffce6c 0%, #f0a32b 100%);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 12px auto 0;
}

@media (max-width: 1100px) {
  .steelpro-topbar,
  .steelpro-hero-inner,
  .steelpro-calculator,
  .steelpro-request {
    grid-template-columns: 1fr;
    display: grid;
  }

  .steelpro-topbar {
    gap: 18px;
  }

  .steelpro-nav,
  .steelpro-header-right {
    justify-content: flex-start;
  }

  .steelpro-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steelpro-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steelpro-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .steelpro-service-grid,
  .steelpro-benefits,
  .steelpro-stats,
  .steelpro-project-grid,
  .inline-fields {
    grid-template-columns: 1fr;
  }

  .steelpro-header {
    position: static;
  }

  .steelpro-logo-name {
    font-size: 1.5rem;
  }

  .steelpro-nav {
    gap: 10px 16px;
  }

  .steelpro-button,
  .steelpro-button-lg {
    width: 100%;
  }

  .steelpro-actions,
  .steelpro-request-actions {
    flex-direction: column;
  }
}

/* Hide the default WordPress site title on the homepage only */
.home .wp-block-site-title,
.home .site-title,
body.home .wp-block-site-title,
body.home .site-title {
  display: none !important;
}



/* =========================================================
   MOBILE HEADER
========================================================= */

.steelpro-logo-wrap {
    text-decoration: none;
    color: inherit;
}

.steelpro-header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}


/* Бургер по умолчанию скрыт */

.steelpro-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;

    background: rgba(255,255,255,.04);

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.steelpro-menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    border-radius: 5px;

    background: #fff;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* Мобильное меню */

.steelpro-mobile-menu {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    /*
     * Перебиваем старое правило,
     * которое превращает topbar в grid
     */

    .steelpro-topbar {
        display: flex;
        grid-template-columns: none;

        align-items: center;
        justify-content: space-between;

        padding: 14px 0;
    }


    /* Скрываем компьютерное меню */

    .steelpro-desktop-nav {
        display: none;
    }


    /* Скрываем контакты справа */

    .steelpro-header-right {
        display: none;
    }


    /* Показываем бургер */

    .steelpro-menu-toggle {
        display: flex;
        flex: 0 0 46px;
    }


    /*
     * Делаем header sticky и на телефоне.
     * У тебя старый CSS отключает sticky на 700px.
     */

    .steelpro-header {
        position: sticky;
        top: 0;
    }


    /* Мобильное выпадающее меню */

    .steelpro-mobile-menu {
        display: block;

        position: fixed;

        top: 74px;
        left: 0;
        right: 0;

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        background:
            linear-gradient(
                180deg,
                rgba(5, 11, 20, .99),
                rgba(8, 17, 29, .99)
            );

        border-bottom: 1px solid rgba(255,255,255,.08);

        box-shadow: 0 25px 60px rgba(0,0,0,.45);

        transition:
            max-height .35s ease,
            opacity .25s ease,
            visibility .25s ease;
    }


    /* Открытое состояние */

    .steelpro-header.menu-open .steelpro-mobile-menu {
        max-height: calc(100vh - 74px);

        overflow-y: auto;

        opacity: 1;
        visibility: visible;
    }


    /* Меню WordPress */

    .steelpro-mobile-nav {
        width: min(100% - 32px, 1280px);

        margin: 0 auto;

        padding: 18px 0;
    }


    .steelpro-mobile-nav ul {
        list-style: none;

        margin: 0;
        padding: 0;

        display: flex;
        flex-direction: column;
    }


    .steelpro-mobile-nav li {
        margin: 0;
        padding: 0;

        border-bottom: 1px solid rgba(255,255,255,.07);
    }


    .steelpro-mobile-nav a {
        display: flex;

        align-items: center;
        justify-content: space-between;

        padding: 17px 4px;

        color: #fff;

        text-decoration: none;

        font-size: 17px;
        font-weight: 600;

        transition: color .2s ease;
    }


    .steelpro-mobile-nav a::after {
        content: "→";

        color: var(--steel-gold);

        font-size: 18px;
    }


    .steelpro-mobile-nav a:hover {
        color: var(--steel-gold);
    }


    /* Контакты внутри меню */

    .steelpro-mobile-contacts {
        width: min(100% - 32px, 1280px);

        margin: 0 auto;

        padding: 20px 0 28px;

        display: flex;
        flex-direction: column;

        gap: 10px;
    }


    .steelpro-mobile-label {
        color: var(--steel-muted);

        font-size: 12px;

        text-transform: uppercase;

        letter-spacing: .12em;
    }


    .steelpro-mobile-phone {
        color: #fff;

        font-size: 22px;
        font-weight: 800;

        text-decoration: none;
    }


    .steelpro-mobile-hours {
        color: var(--steel-muted);

        font-size: 13px;

        margin-bottom: 10px;
    }


    .steelpro-mobile-contacts .steelpro-button {
        width: 100%;
    }


    /* Анимация бургера → крест */

    .steelpro-header.menu-open
    .steelpro-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .steelpro-header.menu-open
    .steelpro-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .steelpro-header.menu-open
    .steelpro-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .steelpro-container {
        width: calc(100% - 28px);
    }


    /* HEADER */

    .steelpro-topbar {
        min-height: 68px;
        padding: 10px 0;
    }

    .steelpro-logo-wrap {
        min-width: 0;
        gap: 9px;
    }

    .steelpro-logo-mark {
        width: 38px;
        height: 38px;

        border-radius: 9px;
    }

    .steelpro-logo-name {
        font-size: 1.25rem;
    }

    .steelpro-logo-sub {
        font-size: .55rem;
        letter-spacing: .12em;
    }

    .steelpro-mobile-menu {
        top: 68px;
    }


    /* HERO */

    .steelpro-hero {
        padding: 32px 0 20px;
    }

    .steelpro-hero-inner {
        display: flex;
        flex-direction: column;

        gap: 28px;
    }

    .steelpro-badge {
        margin-bottom: 16px;

        font-size: .72rem;
    }

    .steelpro-hero-copy h1 {
        font-size: 32px;
        line-height: .98;
        letter-spacing: -.045em;
        margin-bottom: 20px;
    }

    .steelpro-checklist {
        gap: 8px 14px;

        font-size: .87rem;
    }

    .steelpro-actions {
        gap: 10px;
    }

    .steelpro-actions .steelpro-button {
        width: 100%;
    }

    .steelpro-hero-meta {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        font-size: .78rem;
    }

    .steelpro-image-card {
        border-radius: 18px;
    }

    .steelpro-image-card img {
        min-height: 0;
        height: auto;

        aspect-ratio: 4 / 3;

        object-fit: cover;
    }


    /* BENEFITS */

    .steelpro-benefits {
        grid-template-columns: 1fr 1fr;

        gap: 10px;

        margin-top: 10px;
    }

    .steelpro-benefit-item {
        min-height: 0;

        padding: 18px 12px;

        border-radius: 14px;
    }

    .steelpro-icon {
        font-size: 1.6rem;

        margin-bottom: 9px;
    }

    .steelpro-benefit-item h3 {
        font-size: .95rem;
    }

    .steelpro-benefit-item p {
        font-size: .78rem;

        line-height: 1.4;
    }


    /* SERVICES */

    .steelpro-section-heading h2 {
        font-size: 32px;
    }

    .steelpro-service-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .steelpro-service-card {
        min-height: 210px;

        border-radius: 14px;
    }

    .steelpro-service-label {
        left: 8px;
        right: 8px;
        bottom: 8px;

        padding: 9px 6px;

        font-size: 13px;
    }


    /* CALCULATOR */

    .steelpro-calculator {
        display: flex;

        flex-direction: column;

        gap: 18px;

        padding-top: 30px;
    }

    .steelpro-calc-panel,
    .steelpro-projects {
        width: 100%;

        padding: 20px 16px;

        border-radius: 18px;
    }

    .steelpro-calc-copy h3 {
        font-size: 30px;
    }

    .inline-fields {
        grid-template-columns: 1fr;
    }


    /* PROJECTS */

    .steelpro-project-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .steelpro-project-grid img {
        min-height: 130px;
        height: 130px;

        border-radius: 10px;
    }

    .steelpro-project-more {
        text-align: center;
    }


    /* STATS */

    .steelpro-stats {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .steelpro-stat-item {
        padding: 15px 8px;

        border-radius: 14px;
    }

    .steelpro-stat-item strong {
        font-size: 28px;
    }

    .steelpro-stat-item span {
        font-size: 12px;
    }


    /* REQUEST */

    .steelpro-request {
        display: flex;

        flex-direction: column;

        gap: 14px;

        padding-top: 30px;
        padding-bottom: 45px;
    }

    .steelpro-request-copy,
    .steelpro-request-list {
        width: 100%;
    }

    .steelpro-request-copy {
        padding: 22px 18px;

        border-radius: 18px;
    }

    .steelpro-request-copy h2 {
        font-size: 30px;
    }

    .steelpro-request-actions {
        flex-direction: column;
    }

    .steelpro-request-actions .steelpro-button {
        width: 100%;
    }


    /* FOOTER */

    .steelpro-footer {
        margin-top: 20px;

        padding: 45px 0 20px;
    }

    .steelpro-footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 35px;
    }

    .steelpro-footer-brand > p {
        max-width: none;
    }

    .steelpro-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .steelpro-logo-sub {
        display: none;
    }

    .steelpro-logo-name {
        font-size: 1.15rem;
    }

    .steelpro-hero-copy h1 {
        font-size: 34px;
    }

    .steelpro-benefits {
        grid-template-columns: 1fr;
    }

}

body.steelpro-menu-active {
    overflow: hidden;
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.sp-services-hero {
    padding: 50px 0 70px;
}

.sp-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;

    color: var(--steel-muted);
    font-size: 13px;
}

.sp-breadcrumbs a {
    color: var(--steel-muted);
    text-decoration: none;
}

.sp-breadcrumbs a:hover {
    color: var(--steel-gold);
}


/* HERO */

.sp-services-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sp-services-hero-copy h1 {
    margin: 0 0 24px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: .95;
    letter-spacing: -.055em;
    font-weight: 900;
}

.sp-services-hero-copy h1 span {
    color: var(--steel-gold);
}

.sp-services-hero-copy > p {
    max-width: 650px;

    margin: 0 0 30px;

    color: var(--steel-muted);

    font-size: 18px;
    line-height: 1.65;
}

.sp-services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sp-services-hero-image {
    position: relative;
    overflow: hidden;

    min-height: 520px;

    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.1);

    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.sp-services-hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,0,0,.4)
        );
}

.sp-services-hero-image img {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* SECTION HEADING */

.sp-all-services {
    padding: 80px 0;
}

.sp-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 40px;
}

.sp-section-label {
    display: block;

    margin-bottom: 10px;

    color: var(--steel-gold);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .16em;
}

.sp-section-top h2,
.sp-process-heading h2,
.sp-advantages-copy h2 {
    margin: 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;

    letter-spacing: -.04em;
}

.sp-section-top > p {
    max-width: 500px;

    margin: 0;

    color: var(--steel-muted);

    line-height: 1.6;
}


/* SERVICE CARDS */

.sp-services-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.sp-service-item {
    display: grid;

    grid-template-columns: .95fr 1.05fr;

    overflow: hidden;

    min-height: 390px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(18,27,38,.96),
            rgba(8,14,22,.96)
        );

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.sp-service-item:hover {
    transform: translateY(-4px);

    border-color: rgba(255,179,65,.4);
}

.sp-service-image {
    position: relative;

    display: block;

    overflow: hidden;
}

.sp-service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 60%,
            rgba(8,14,22,.7)
        );
}

.sp-service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.sp-service-item:hover .sp-service-image img {
    transform: scale(1.04);
}

.sp-service-number {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--steel-gold);

    color: #111;

    font-weight: 900;
}

.sp-service-content {
    display: flex;
    flex-direction: column;

    padding: 28px 26px;
}

.sp-service-content h3 {
    margin: 0 0 12px;

    font-size: 28px;
}

.sp-service-content > p {
    margin: 0 0 18px;

    color: var(--steel-muted);

    font-size: 14px;
    line-height: 1.55;
}

.sp-service-content ul {
    margin: 0 0 22px;
    padding: 0;

    list-style: none;
}

.sp-service-content li {
    position: relative;

    margin-bottom: 8px;

    padding-left: 18px;

    color: #d9deea;

    font-size: 13px;
}

.sp-service-content li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--steel-gold);
}

.sp-service-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 16px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #fff;

    text-decoration: none;

    font-weight: 700;
}

.sp-service-link span {
    color: var(--steel-gold);

    font-size: 20px;

    transition: transform .2s ease;
}

.sp-service-link:hover span {
    transform: translateX(5px);
}


/* PROCESS */

.sp-process {
    padding: 80px 0;
}

.sp-process-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.sp-process-heading h2 span {
    color: var(--steel-gold);
}

.sp-process-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;
}

.sp-process-item {
    position: relative;

    min-height: 220px;

    padding: 24px 20px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    background: rgba(255,255,255,.025);
}

.sp-process-item strong {
    display: block;

    margin-bottom: 40px;

    color: var(--steel-gold);

    font-size: 14px;
}

.sp-process-item h3 {
    margin: 0 0 8px;

    font-size: 20px;
}

.sp-process-item p {
    margin: 0;

    color: var(--steel-muted);

    font-size: 13px;
    line-height: 1.5;
}


/* ADVANTAGES */

.sp-services-advantages {
    padding: 40px 0 80px;
}

.sp-advantages-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    padding: 55px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(19,29,41,.95),
            rgba(7,13,21,.95)
        );

    border: 1px solid rgba(255,255,255,.08);
}

.sp-advantages-copy h2 span {
    color: var(--steel-gold);
}

.sp-advantages-copy p {
    max-width: 500px;

    color: var(--steel-muted);

    line-height: 1.6;
}

.sp-advantages-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.sp-advantages-grid > div {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 150px;

    padding: 22px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    background: rgba(255,255,255,.025);
}

.sp-advantages-grid strong {
    color: var(--steel-gold);

    font-size: 34px;
}

.sp-advantages-grid span {
    margin-top: 4px;

    color: var(--steel-muted);
}


/* CTA */

.sp-services-cta {
    padding: 20px 0 80px;
}

.sp-services-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 45px 50px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #ffbc43,
            #e99715
        );

    color: #10141b;
}

.sp-services-cta-box > div:first-child {
    max-width: 700px;
}

.sp-services-cta-box span {
    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
}

.sp-services-cta-box h2 {
    margin: 7px 0 10px;

    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;

    letter-spacing: -.04em;
}

.sp-services-cta-box p {
    margin: 0;

    color: rgba(0,0,0,.7);
}

.sp-services-cta-actions {
    display: flex;
    flex-direction: column;

    min-width: 260px;

    gap: 14px;
}

.sp-cta-dark {
    border-color: #10141b;

    background: #10141b;

    color: #fff;
}

.sp-cta-phone {
    color: #10141b;

    text-align: center;
    text-decoration: none;

    font-size: 18px;
    font-weight: 900;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .sp-services-hero-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .sp-services-grid {
        grid-template-columns: 1fr;
    }

    .sp-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .sp-services-hero {
        padding: 25px 0 45px;
    }

    .sp-breadcrumbs {
        margin-bottom: 25px;
    }

    .sp-services-hero-grid {
        grid-template-columns: 1fr;
    }

    .sp-services-hero-copy h1 {
        font-size: 42px;
    }

    .sp-services-hero-copy > p {
        font-size: 15px;
    }

    .sp-services-hero-actions {
        flex-direction: column;
    }

    .sp-services-hero-actions .steelpro-button {
        width: 100%;
    }

    .sp-services-hero-image {
        min-height: 320px;

        border-radius: 20px;
    }


    /* heading */

    .sp-all-services {
        padding: 50px 0;
    }

    .sp-section-top {
        display: block;
    }

    .sp-section-top > p {
        margin-top: 18px;
    }


    /* services */

    .sp-service-item {
        display: block;

        min-height: 0;
    }

    .sp-service-image {
        height: 240px;
    }

    .sp-service-image::after {
        background:
            linear-gradient(
                180deg,
                transparent,
                rgba(8,14,22,.3)
            );
    }

    .sp-service-content {
        padding: 22px 18px;
    }


    /* process */

    .sp-process {
        padding: 50px 0;
    }

    .sp-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-process-item {
        min-height: 190px;

        padding: 18px 14px;
    }

    .sp-process-item strong {
        margin-bottom: 25px;
    }


    /* advantages */

    .sp-advantages-box {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px 18px;

        border-radius: 20px;
    }

    .sp-advantages-grid {
        gap: 8px;
    }

    .sp-advantages-grid > div {
        min-height: 120px;

        padding: 15px;
    }

    .sp-advantages-grid strong {
        font-size: 26px;
    }

    .sp-advantages-grid span {
        font-size: 12px;
    }


    /* CTA */

    .sp-services-cta-box {
        flex-direction: column;
        align-items: stretch;

        padding: 28px 20px;

        border-radius: 20px;
    }

    .sp-services-cta-actions {
        min-width: 0;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */

.sp-about-page {
    overflow: hidden;
}


/* HERO */

.sp-about-hero {
    padding: 45px 0 65px;
}

.sp-about-breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;

    margin-bottom: 40px;

    color: var(--steel-muted);
    font-size: 13px;
}

.sp-about-breadcrumbs a {
    color: var(--steel-muted);
    text-decoration: none;
}

.sp-about-breadcrumbs a:hover {
    color: var(--steel-gold);
}

.sp-about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
    align-items: center;
}

.sp-about-label {
    display: block;

    margin-bottom: 13px;

    color: var(--steel-gold);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .16em;
}

.sp-about-hero-copy h1 {
    max-width: 700px;

    margin: 0 0 25px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: .95;

    letter-spacing: -.055em;
    font-weight: 900;
}

.sp-about-hero-copy h1 span {
    color: var(--steel-gold);
}

.sp-about-hero-copy > p {
    max-width: 630px;

    margin: 0 0 30px;

    color: var(--steel-muted);

    font-size: 18px;
    line-height: 1.65;
}

.sp-about-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.sp-about-hero-image {
    position: relative;

    min-height: 540px;

    overflow: hidden;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,.1);

    box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.sp-about-hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,0,0,.55)
        );
}

.sp-about-hero-image img {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sp-about-image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 2;

    display: flex;
    flex-direction: column;

    padding: 18px 22px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;

    background: rgba(5,10,16,.82);

    backdrop-filter: blur(10px);
}

.sp-about-image-badge strong {
    color: var(--steel-gold);

    font-size: 32px;
}

.sp-about-image-badge span {
    color: var(--steel-muted);

    font-size: 13px;
}


/* STATS */

.sp-about-stats {
    padding: 15px 0 70px;
}

.sp-about-stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,.09);
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.sp-about-stat {
    display: flex;
    flex-direction: column;

    padding: 30px;

    border-right: 1px solid rgba(255,255,255,.09);
}

.sp-about-stat:last-child {
    border-right: 0;
}

.sp-about-stat strong {
    margin-bottom: 5px;

    color: var(--steel-gold);

    font-size: clamp(28px, 3vw, 42px);
}

.sp-about-stat span {
    color: var(--steel-muted);

    font-size: 13px;
}


/* ABOUT COMPANY */

.sp-about-company {
    padding: 80px 0;
}

.sp-about-company-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;
}

.sp-about-company-title h2,
.sp-about-production-content h2,
.sp-about-section-heading h2 {
    margin: 0;

    font-size: clamp(40px, 4vw, 60px);
    line-height: 1;

    letter-spacing: -.045em;
}

.sp-about-company-title h2 span,
.sp-about-production-content h2 span {
    color: var(--steel-gold);
}

.sp-about-company-text {
    max-width: 680px;
}

.sp-about-company-text p {
    margin: 0 0 20px;

    color: var(--steel-muted);

    font-size: 16px;
    line-height: 1.75;
}

.sp-about-company-text .sp-about-lead {
    color: #fff;

    font-size: 23px;
    line-height: 1.45;

    font-weight: 600;
}


/* PRODUCTION */

.sp-about-production {
    padding: 70px 0 100px;
}

.sp-about-production-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 65px;

    align-items: center;
}

.sp-about-production-image {
    height: 680px;

    overflow: hidden;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,.09);
}

.sp-about-production-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sp-about-production-content > p {
    max-width: 570px;

    margin: 24px 0 35px;

    color: var(--steel-muted);

    line-height: 1.7;
}

.sp-production-list {
    display: flex;
    flex-direction: column;
}

.sp-production-item {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.09);
}

.sp-production-item > span {
    color: var(--steel-gold);

    font-size: 13px;
    font-weight: 800;
}

.sp-production-item h3 {
    margin: 0 0 6px;

    font-size: 18px;
}

.sp-production-item p {
    max-width: 500px;

    margin: 0;

    color: var(--steel-muted);

    font-size: 14px;
    line-height: 1.5;
}


/* WHY */

.sp-about-why {
    padding: 80px 0 100px;
}

.sp-about-section-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.sp-about-section-heading > p {
    max-width: 540px;

    margin: 18px 0 0;

    color: var(--steel-muted);

    line-height: 1.6;
}

.sp-about-why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.sp-about-why-card {
    min-height: 260px;

    padding: 26px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(18,27,38,.9),
            rgba(7,13,21,.9)
        );

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.sp-about-why-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255,179,65,.35);
}

.sp-why-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 45px;

    border-radius: 50%;

    background: rgba(255,179,65,.1);

    color: var(--steel-gold);

    font-size: 12px;
    font-weight: 900;
}

.sp-about-why-card h3 {
    margin: 0 0 10px;

    font-size: 20px;
}

.sp-about-why-card p {
    margin: 0;

    color: var(--steel-muted);

    font-size: 14px;
    line-height: 1.6;
}


/* PROCESS */

.sp-about-process {
    padding: 60px 0 100px;
}

.sp-about-process-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;
}

.sp-about-process-item {
    min-height: 210px;

    padding: 22px 20px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    background: rgba(255,255,255,.025);
}

.sp-about-process-item strong {
    display: block;

    margin-bottom: 45px;

    color: var(--steel-gold);

    font-size: 13px;
}

.sp-about-process-item h3 {
    margin: 0 0 8px;

    font-size: 19px;
}

.sp-about-process-item p {
    margin: 0;

    color: var(--steel-muted);

    font-size: 13px;
    line-height: 1.5;
}


/* CTA */

.sp-about-cta {
    padding: 20px 0 80px;
}

.sp-about-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 50px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #ffbd46,
            #e99412
        );

    color: #0c1118;
}

.sp-about-cta-copy {
    max-width: 750px;
}

.sp-about-cta-copy > span {
    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.sp-about-cta-copy h2 {
    margin: 8px 0 12px;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;

    letter-spacing: -.045em;
}

.sp-about-cta-copy p {
    max-width: 620px;

    margin: 0;

    color: rgba(0,0,0,.68);

    line-height: 1.55;
}

.sp-about-cta-actions {
    display: flex;
    flex-direction: column;

    min-width: 270px;

    gap: 15px;
}

.sp-about-cta-button {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 16px 22px;

    border-radius: 12px;

    background: #0c1118;

    color: #fff;

    text-decoration: none;

    font-weight: 800;
}

.sp-about-cta-phone {
    color: #0c1118;

    text-align: center;
    text-decoration: none;

    font-size: 19px;
    font-weight: 900;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sp-about-hero-grid {
        gap: 30px;
    }

    .sp-about-company-grid {
        gap: 50px;
    }

    .sp-about-production-grid {
        gap: 35px;
    }

    .sp-about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-about-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .sp-about-hero {
        padding: 25px 0 45px;
    }

    .sp-about-breadcrumbs {
        margin-bottom: 25px;
    }

    .sp-about-hero-grid {
        grid-template-columns: 1fr;
    }

    .sp-about-hero-copy h1 {
        font-size: 42px;
    }

    .sp-about-hero-copy > p {
        font-size: 15px;
    }

    .sp-about-hero-actions {
        flex-direction: column;
    }

    .sp-about-hero-actions .steelpro-button {
        width: 100%;
    }

    .sp-about-hero-image {
        min-height: 330px;

        border-radius: 20px;
    }


    /* STATS */

    .sp-about-stats {
        padding-bottom: 40px;
    }

    .sp-about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-about-stat {
        padding: 20px 14px;

        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .sp-about-stat strong {
        font-size: 25px;
    }

    .sp-about-stat span {
        font-size: 11px;
    }


    /* ABOUT */

    .sp-about-company {
        padding: 50px 0;
    }

    .sp-about-company-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .sp-about-company-title h2,
    .sp-about-production-content h2,
    .sp-about-section-heading h2 {
        font-size: 36px;
    }

    .sp-about-company-text .sp-about-lead {
        font-size: 19px;
    }


    /* PRODUCTION */

    .sp-about-production {
        padding: 40px 0 60px;
    }

    .sp-about-production-grid {
        grid-template-columns: 1fr;
    }

    .sp-about-production-image {
        height: 360px;

        border-radius: 20px;
    }


    /* WHY */

    .sp-about-why {
        padding: 50px 0 60px;
    }

    .sp-about-why-grid {
        grid-template-columns: 1fr 1fr;

        gap: 9px;
    }

    .sp-about-why-card {
        min-height: 230px;

        padding: 17px 14px;
    }

    .sp-why-icon {
        margin-bottom: 30px;
    }

    .sp-about-why-card h3 {
        font-size: 16px;
    }

    .sp-about-why-card p {
        font-size: 12px;
    }


    /* PROCESS */

    .sp-about-process {
        padding: 40px 0 60px;
    }

    .sp-about-process-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .sp-about-process-item {
        min-height: 180px;

        padding: 17px 14px;
    }

    .sp-about-process-item strong {
        margin-bottom: 28px;
    }


    /* CTA */

    .sp-about-cta {
        padding-bottom: 50px;
    }

    .sp-about-cta-box {
        flex-direction: column;
        align-items: stretch;

        padding: 28px 20px;

        border-radius: 20px;
    }

    .sp-about-cta-actions {
        min-width: 0;
    }

}


/* VERY SMALL */

@media (max-width: 400px) {

    .sp-about-why-grid,
    .sp-about-process-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   CONTACTS PAGE
========================================================= */

.sp-contacts-page {
    overflow: hidden;
}

.sp-contacts-label {
    display: block;

    margin-bottom: 12px;

    color: var(--steel-gold);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .16em;
}


/* =========================================================
   HERO
========================================================= */

.sp-contacts-hero {
    padding: 45px 0 70px;
}

.sp-contacts-breadcrumbs {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 55px;

    color: var(--steel-muted);

    font-size: 13px;
}

.sp-contacts-breadcrumbs a {
    color: var(--steel-muted);

    text-decoration: none;
}

.sp-contacts-breadcrumbs a:hover {
    color: var(--steel-gold);
}

.sp-contacts-hero-grid {
    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 80px;

    align-items: end;
}

.sp-contacts-hero-copy h1 {
    max-width: 850px;

    margin: 0 0 25px;

    font-size: clamp(50px, 6vw, 84px);
    line-height: .93;

    letter-spacing: -.06em;

    font-weight: 900;
}

.sp-contacts-hero-copy h1 span {
    color: var(--steel-gold);
}

.sp-contacts-hero-copy > p {
    max-width: 680px;

    margin: 0;

    color: var(--steel-muted);

    font-size: 18px;
    line-height: 1.65;
}


/* hero right */

.sp-contacts-hero-side {
    padding: 28px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(18,27,38,.95),
            rgba(7,13,21,.95)
        );
}

.sp-contacts-side-label {
    display: block;

    margin-bottom: 15px;

    color: var(--steel-muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.sp-contacts-big-phone {
    display: block;

    margin-bottom: 8px;

    color: #fff;

    text-decoration: none;

    font-size: clamp(22px, 2.2vw, 32px);

    font-weight: 900;
}

.sp-contacts-big-phone:hover {
    color: var(--steel-gold);
}

.sp-contacts-hero-side p {
    margin: 0 0 22px;

    color: var(--steel-muted);

    font-size: 13px;
}

.sp-contacts-hero-side .steelpro-button {
    width: 100%;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.sp-contacts-info {
    padding: 30px 0 90px;
}

.sp-contacts-info-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.sp-contact-card {
    display: flex;
    flex-direction: column;

    min-height: 290px;

    padding: 24px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(18,27,38,.88),
            rgba(7,13,21,.9)
        );

    color: #fff;

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

a.sp-contact-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255,179,65,.4);
}

.sp-contact-card-top {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: auto;
}

.sp-contact-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255,179,65,.09);

    color: var(--steel-gold);

    font-size: 12px;

    font-weight: 900;
}

.sp-contact-arrow {
    color: var(--steel-gold);

    font-size: 24px;

    transition: transform .2s ease;
}

a.sp-contact-card:hover .sp-contact-arrow {
    transform: translate(3px, -3px);
}

.sp-contact-card-label {
    display: block;

    margin-bottom: 8px;

    color: var(--steel-muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.sp-contact-card-content strong {
    display: block;

    margin-bottom: 10px;

    font-size: 22px;
}

.sp-contact-card-content p {
    margin: 0;

    color: var(--steel-muted);

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   FORM
========================================================= */

.sp-contacts-request {
    padding: 80px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.018),
            transparent
        );
}

.sp-contacts-request-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: start;
}

.sp-contacts-request-copy {
    position: sticky;

    top: 120px;
}

.sp-contacts-request-copy h2 {
    max-width: 600px;

    margin: 0 0 22px;

    font-size: clamp(42px, 4.5vw, 64px);

    line-height: .98;

    letter-spacing: -.05em;
}

.sp-contacts-request-copy h2 span {
    color: var(--steel-gold);
}

.sp-contacts-request-copy > p {
    max-width: 570px;

    margin: 0 0 35px;

    color: var(--steel-muted);

    line-height: 1.7;
}

.sp-request-benefits {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.sp-request-benefits > div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #dce2ec;

    font-size: 14px;
}

.sp-request-benefits span {
    color: var(--steel-gold);

    font-weight: 900;
}


/* form box */

.sp-contact-form-box {
    padding: 38px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(18,27,38,.96),
            rgba(8,14,22,.96)
        );

    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.sp-contact-form-heading {
    margin-bottom: 30px;
}

.sp-contact-form-heading h3 {
    margin: 0 0 8px;

    font-size: 32px;
}

.sp-contact-form-heading p {
    margin: 0;

    color: var(--steel-muted);

    font-size: 14px;
}

.sp-contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.sp-contact-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.sp-contact-field label {
    color: #dce2ec;

    font-size: 13px;

    font-weight: 700;
}

.sp-contact-field input,
.sp-contact-field select,
.sp-contact-field textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 12px;

    outline: none;

    background: rgba(255,255,255,.035);

    color: #fff;

    font: inherit;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.sp-contact-field textarea {
    resize: vertical;

    min-height: 130px;
}

.sp-contact-field input::placeholder,
.sp-contact-field textarea::placeholder {
    color: #697484;
}

.sp-contact-field input:focus,
.sp-contact-field select:focus,
.sp-contact-field textarea:focus {
    border-color: var(--steel-gold);

    background: rgba(255,255,255,.055);
}

.sp-contact-field select option {
    background: #101822;

    color: #fff;
}

.sp-contact-submit {
    width: 100%;

    margin-top: 5px;

    border: 0;

    cursor: pointer;
}

.sp-contact-form-note {
    color: var(--steel-muted);

    text-align: center;

    font-size: 11px;
}


/* =========================================================
   LOCATION / MAP
========================================================= */

.sp-contacts-location {
    padding: 80px 0;
}

.sp-contacts-location-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 35px;
}

.sp-contacts-location-heading h2 {
    margin: 0;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -.04em;
}

.sp-contacts-location-heading > p {
    max-width: 450px;

    margin: 0;

    color: var(--steel-muted);

    line-height: 1.6;
}


/* временная карта */

.sp-contacts-map {
    overflow: hidden;

    min-height: 480px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 26px;
}

.sp-map-placeholder {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 480px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255,179,65,.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #111a25,
            #080e16
        );
}

.sp-map-placeholder::before,
.sp-map-placeholder::after {
    content: "";

    position: absolute;

    background: rgba(255,255,255,.035);
}

.sp-map-placeholder::before {
    left: 0;
    right: 0;

    top: 48%;

    height: 1px;
}

.sp-map-placeholder::after {
    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;
}

.sp-map-pin {
    position: absolute;

    top: calc(50% - 70px);

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: var(--steel-gold);

    box-shadow:
        0 0 0 10px rgba(255,179,65,.1),
        0 0 0 20px rgba(255,179,65,.04);
}

.sp-map-pin span {
    color: #111;

    font-size: 18px;
}

.sp-map-info {
    position: relative;

    z-index: 2;

    margin-top: 110px;

    padding: 20px 25px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 16px;

    background: rgba(5,10,16,.85);

    text-align: center;

    backdrop-filter: blur(10px);
}

.sp-map-info > span {
    display: block;

    margin-bottom: 6px;

    color: var(--steel-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .1em;
}

.sp-map-info strong {
    display: block;

    font-size: 20px;
}

.sp-map-info p {
    margin: 6px 0 0;

    color: var(--steel-muted);

    font-size: 12px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.sp-contacts-bottom {
    padding: 30px 0 80px;
}

.sp-contacts-bottom-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 50px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #ffbd46,
            #e99514
        );

    color: #0b1017;
}

.sp-contacts-bottom-box > div:first-child {
    max-width: 750px;
}

.sp-contacts-bottom-box > div:first-child > span {
    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.sp-contacts-bottom-box h2 {
    margin: 8px 0 12px;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1;

    letter-spacing: -.045em;
}

.sp-contacts-bottom-box p {
    max-width: 600px;

    margin: 0;

    color: rgba(0,0,0,.65);

    line-height: 1.5;
}

.sp-contacts-bottom-actions {
    display: flex;

    flex-direction: column;

    gap: 14px;

    min-width: 270px;
}

.sp-contact-dark-button {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 16px 22px;

    border-radius: 12px;

    background: #0b1017;

    color: #fff;

    text-decoration: none;

    font-weight: 800;
}

.sp-contact-bottom-phone {
    color: #0b1017;

    text-align: center;

    text-decoration: none;

    font-size: 19px;

    font-weight: 900;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sp-contacts-hero-grid {
        grid-template-columns: 1fr .7fr;

        gap: 35px;
    }

    .sp-contacts-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-contacts-request-grid {
        gap: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .sp-contacts-hero {
        padding: 25px 0 45px;
    }

    .sp-contacts-breadcrumbs {
        margin-bottom: 30px;
    }

    .sp-contacts-hero-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .sp-contacts-hero-copy h1 {
        font-size: 43px;
    }

    .sp-contacts-hero-copy > p {
        font-size: 15px;
    }

    .sp-contacts-hero-side {
        padding: 20px;
    }


    /* cards */

    .sp-contacts-info {
        padding: 15px 0 55px;
    }

    .sp-contacts-info-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .sp-contact-card {
        min-height: 230px;

        padding: 16px;

        border-radius: 16px;
    }

    .sp-contact-card-content strong {
        font-size: 17px;
    }

    .sp-contact-card-content p {
        font-size: 11px;
    }


    /* request */

    .sp-contacts-request {
        padding: 55px 0;
    }

    .sp-contacts-request-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .sp-contacts-request-copy {
        position: static;
    }

    .sp-contacts-request-copy h2 {
        font-size: 38px;
    }

    .sp-contact-form-box {
        padding: 22px 16px;

        border-radius: 20px;
    }

    .sp-contact-form-heading h3 {
        font-size: 26px;
    }


    /* location */

    .sp-contacts-location {
        padding: 55px 0;
    }

    .sp-contacts-location-heading {
        display: block;
    }

    .sp-contacts-location-heading h2 {
        font-size: 36px;
    }

    .sp-contacts-location-heading > p {
        margin-top: 15px;
    }

    .sp-contacts-map,
    .sp-map-placeholder {
        min-height: 360px;
    }


    /* bottom CTA */

    .sp-contacts-bottom {
        padding: 10px 0 50px;
    }

    .sp-contacts-bottom-box {
        flex-direction: column;

        align-items: stretch;

        padding: 28px 20px;

        border-radius: 20px;
    }

    .sp-contacts-bottom-actions {
        min-width: 0;
    }

}


/* VERY SMALL */

@media (max-width: 400px) {

    .sp-contacts-info-grid {
        grid-template-columns: 1fr;
    }

    .sp-contact-card {
        min-height: 210px;
    }

}

/* =========================================================
   CONTACTS HERO NEW
========================================================= */

.sp-contacts-hero-new {
    position: relative;

    padding: 45px 0 75px;

    overflow: hidden;
}


/* мягкое золотое свечение */

.sp-contacts-hero-new::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -350px;
    right: -150px;

    border-radius: 50%;

    background: rgba(255, 179, 65, .07);

    filter: blur(80px);

    pointer-events: none;
}


/* =========================================================
   MAIN
========================================================= */

.sp-contact-hero-main {
    display: grid;

    grid-template-columns: 1.45fr .55fr;

    gap: 70px;

    align-items: end;

    padding: 30px 0 55px;
}


/* TITLE */

.sp-contact-hero-title h1 {
    margin: 0;

    font-size: clamp(58px, 7vw, 100px);

    line-height: .88;

    letter-spacing: -.065em;

    font-weight: 900;
}

.sp-contact-hero-title h1 span {
    color: var(--steel-gold);
}


/* DESCRIPTION */

.sp-contact-hero-description {
    padding-bottom: 7px;
}

.sp-contact-hero-description > p {
    margin: 0 0 25px;

    color: var(--steel-muted);

    font-size: 16px;

    line-height: 1.65;
}


/* ONLINE */

.sp-contact-response {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #dce2eb;

    font-size: 12px;
}

.sp-contact-response i {
    display: block;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #4ed27b;

    box-shadow:
        0 0 0 5px rgba(78, 210, 123, .08);
}


/* =========================================================
   CONTACT BAR
========================================================= */

.sp-contact-hero-bar {
    display: grid;

    grid-template-columns:
        1.3fr
        .75fr
        .75fr
        1.15fr;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(19,28,40,.96),
            rgba(8,14,22,.96)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.25);
}


/* ITEM */

.sp-contact-hero-item {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 145px;

    padding: 25px 27px;

    border-right:
        1px solid rgba(255,255,255,.08);

    color: #fff;

    text-decoration: none;
}


/* LABEL */

.sp-contact-hero-small {
    display: block;

    margin-bottom: 10px;

    color: var(--steel-muted);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .14em;
}


/* VALUE */

.sp-contact-hero-item strong {
    font-size: 20px;

    line-height: 1.2;
}


/* SUB */

.sp-contact-hero-sub {
    margin-top: 5px;

    color: var(--steel-muted);

    font-size: 11px;
}


/* PHONE */

.sp-contact-hero-phone {
    transition:
        background .2s ease;
}

.sp-contact-hero-phone:hover {
    background:
        rgba(255,255,255,.035);
}

.sp-contact-hero-phone:hover strong {
    color: var(--steel-gold);
}


/* ARROW */

.sp-contact-hero-arrow {
    position: absolute;

    top: 22px;
    right: 22px;

    color: var(--steel-gold);

    font-size: 20px;

    transition: transform .2s ease;
}

.sp-contact-hero-phone:hover
.sp-contact-hero-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   WHATSAPP
========================================================= */

.sp-contact-hero-whatsapp {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-height: 145px;

    padding: 25px 28px;

    background:
        linear-gradient(
            135deg,
            #ffbd46,
            #e99716
        );

    color: #10141a;

    text-decoration: none;

    transition:
        transform .2s ease,
        filter .2s ease;
}

.sp-contact-hero-whatsapp:hover {
    filter: brightness(1.06);
}

.sp-contact-hero-whatsapp > span {
    display: flex;

    flex-direction: column;

    gap: 3px;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;
}

.sp-contact-hero-whatsapp small {
    color: #10141a;

    font-size: 17px;

    font-weight: 900;

    text-transform: none;

    letter-spacing: normal;
}

.sp-contact-hero-whatsapp strong {
    white-space: nowrap;

    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sp-contact-hero-main {
        grid-template-columns: 1fr .6fr;

        gap: 35px;
    }

    .sp-contact-hero-bar {
        grid-template-columns: 1fr 1fr;
    }

    .sp-contact-hero-item {
        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .sp-contacts-hero-new {
        padding: 25px 0 45px;
    }


    /* main */

    .sp-contact-hero-main {
        display: block;

        padding: 20px 0 35px;
    }


    .sp-contact-hero-title h1 {
        font-size: clamp(46px, 14vw, 64px);

        line-height: .92;
    }


    .sp-contact-hero-description {
        margin-top: 28px;

        padding: 0;
    }


    .sp-contact-hero-description > p {
        max-width: 500px;

        font-size: 14px;
    }


    /* contact bar */

    .sp-contact-hero-bar {
        grid-template-columns: 1fr 1fr;

        border-radius: 17px;
    }


    .sp-contact-hero-item {
        min-height: 125px;

        padding: 18px 16px;
    }


    .sp-contact-hero-item strong {
        font-size: 16px;
    }


    .sp-contact-hero-phone strong {
        font-size: 15px;
    }


    /* WhatsApp на всю ширину */

    .sp-contact-hero-whatsapp {
        grid-column: 1 / -1;

        min-height: 95px;

        padding: 20px;

        border-top:
            1px solid rgba(255,255,255,.08);
    }


    .sp-contact-hero-whatsapp small {
        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .sp-contact-hero-bar {
        grid-template-columns: 1fr;
    }

    .sp-contact-hero-item {
        min-height: 105px;

        border-right: 0;
    }

    .sp-contact-hero-whatsapp {
        grid-column: auto;
    }

}

/* =========================================================
   PROJECTS PAGE
========================================================= */

.sp-projects-page {
    overflow: hidden;
}

.sp-projects-label {
    display: block;

    margin-bottom: 12px;

    color: var(--steel-gold);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .16em;
}


/* =========================================================
   HERO
========================================================= */

.sp-projects-hero {
    padding: 45px 0 75px;
}

.sp-projects-breadcrumbs {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 55px;

    color: var(--steel-muted);

    font-size: 13px;
}

.sp-projects-breadcrumbs a {
    color: var(--steel-muted);

    text-decoration: none;
}

.sp-projects-breadcrumbs a:hover {
    color: var(--steel-gold);
}


.sp-projects-hero-grid {
    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 80px;

    align-items: end;
}


.sp-projects-hero-title h1 {
    max-width: 850px;

    margin: 0;

    font-size: clamp(58px, 7vw, 100px);

    line-height: .88;

    letter-spacing: -.065em;

    font-weight: 900;
}

.sp-projects-hero-title h1 span {
    color: var(--steel-gold);
}


.sp-projects-hero-text {
    padding-bottom: 5px;
}

.sp-projects-hero-text > p {
    margin: 0 0 30px;

    color: var(--steel-muted);

    font-size: 16px;

    line-height: 1.65;
}


.sp-projects-hero-stats {
    display: flex;

    gap: 35px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.09);
}

.sp-projects-hero-stats > div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.sp-projects-hero-stats strong {
    color: var(--steel-gold);

    font-size: 24px;
}

.sp-projects-hero-stats span {
    color: var(--steel-muted);

    font-size: 11px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.sp-projects-portfolio {
    padding: 30px 0 90px;
}


/* FILTER */

.sp-projects-filter {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;
}


.sp-project-filter {
    padding: 11px 17px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 999px;

    background: rgba(255,255,255,.025);

    color: var(--steel-muted);

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.sp-project-filter:hover {
    color: #fff;

    border-color: rgba(255,179,65,.4);
}


.sp-project-filter.active {
    background: var(--steel-gold);

    border-color: var(--steel-gold);

    color: #111;
}


/* =========================================================
   GRID
========================================================= */

.sp-projects-grid {
    display: grid;

    grid-template-columns: repeat(12, 1fr);

    grid-auto-flow: dense;

    gap: 14px;
}


/* обычная карточка */

.sp-project-card {
    grid-column: span 4;

    height: 430px;

    overflow: hidden;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,.08);

    background: #101720;
}


/* большая */

.sp-project-card.sp-project-large {
    grid-column: span 8;

    height: 560px;
}


/* широкая */

.sp-project-card.sp-project-wide {
    grid-column: span 8;

    height: 430px;
}


/* IMAGE */

.sp-project-image {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    color: #fff;

    text-decoration: none;
}


.sp-project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}


.sp-project-card:hover img {
    transform: scale(1.045);
}


/* OVERLAY */

.sp-project-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    padding: 26px;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 35%,
            rgba(3,7,12,.2) 50%,
            rgba(3,7,12,.94) 100%
        );

    transition:
        background .25s ease;
}


.sp-project-card:hover .sp-project-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 25%,
            rgba(3,7,12,.3) 50%,
            rgba(3,7,12,.97) 100%
        );
}


/* INFO */

.sp-project-info > span {
    display: block;

    margin-bottom: 7px;

    color: var(--steel-gold);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .14em;
}


.sp-project-info h2 {
    max-width: 500px;

    margin: 0 0 6px;

    font-size: 25px;

    line-height: 1.1;

    letter-spacing: -.025em;
}


.sp-project-large .sp-project-info h2 {
    font-size: 34px;
}


.sp-project-info p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 12px;
}


/* ARROW */

.sp-project-open {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50%;

    background: rgba(5,10,16,.5);

    color: var(--steel-gold);

    font-size: 20px;

    backdrop-filter: blur(10px);

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.sp-project-card:hover .sp-project-open {
    background: var(--steel-gold);

    color: #111;

    transform: translate(3px, -3px);
}


/* =========================================================
   NUMBERS
========================================================= */

.sp-projects-numbers {
    padding: 60px 0 100px;
}


.sp-projects-numbers-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    padding: 50px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(18,27,38,.95),
            rgba(7,13,21,.95)
        );
}


.sp-projects-numbers-copy h2 {
    margin: 0 0 20px;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -.045em;
}


.sp-projects-numbers-copy h2 span {
    color: var(--steel-gold);
}


.sp-projects-numbers-copy p {
    max-width: 500px;

    margin: 0;

    color: var(--steel-muted);

    line-height: 1.6;
}


.sp-projects-numbers-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.sp-projects-numbers-grid > div {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 135px;

    padding: 20px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 16px;

    background: rgba(255,255,255,.025);
}


.sp-projects-numbers-grid strong {
    color: var(--steel-gold);

    font-size: 31px;
}


.sp-projects-numbers-grid span {
    margin-top: 3px;

    color: var(--steel-muted);

    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.sp-projects-cta {
    padding: 10px 0 80px;
}


.sp-projects-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 50px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #ffbd46,
            #e99514
        );

    color: #0b1017;
}


.sp-projects-cta-box > div:first-child {
    max-width: 750px;
}


.sp-projects-cta-box > div:first-child > span {
    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .1em;
}


.sp-projects-cta-box h2 {
    margin: 8px 0 12px;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1;

    letter-spacing: -.045em;
}


.sp-projects-cta-box p {
    max-width: 620px;

    margin: 0;

    color: rgba(0,0,0,.65);

    line-height: 1.5;
}


.sp-projects-cta-actions {
    display: flex;

    flex-direction: column;

    gap: 14px;

    min-width: 270px;
}


.sp-projects-cta-button {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 16px 22px;

    border-radius: 12px;

    background: #0b1017;

    color: #fff;

    text-decoration: none;

    font-weight: 800;
}


.sp-projects-cta-phone {
    color: #0b1017;

    text-align: center;

    text-decoration: none;

    font-size: 19px;

    font-weight: 900;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sp-projects-hero-grid {
        grid-template-columns: 1fr .6fr;

        gap: 40px;
    }


    .sp-project-card {
        grid-column: span 6;
    }


    .sp-project-card.sp-project-large,
    .sp-project-card.sp-project-wide {
        grid-column: span 6;

        height: 460px;
    }


    .sp-projects-numbers-box {
        gap: 35px;

        padding: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* HERO */

    .sp-projects-hero {
        padding: 25px 0 45px;
    }


    .sp-projects-breadcrumbs {
        margin-bottom: 30px;
    }


    .sp-projects-hero-grid {
        display: block;
    }


    .sp-projects-hero-title h1 {
        font-size: clamp(46px, 14vw, 64px);

        line-height: .92;
    }


    .sp-projects-hero-text {
        margin-top: 28px;
    }


    .sp-projects-hero-text > p {
        font-size: 14px;
    }


    /* FILTER */

    .sp-projects-portfolio {
        padding: 10px 0 55px;
    }


    .sp-projects-filter {
        flex-wrap: nowrap;

        overflow-x: auto;

        margin-right: -14px;

        padding-right: 14px;
        padding-bottom: 8px;

        scrollbar-width: none;
    }


    .sp-projects-filter::-webkit-scrollbar {
        display: none;
    }


    .sp-project-filter {
        flex: 0 0 auto;
    }


    /* GRID */

    .sp-projects-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }


    .sp-project-card,
    .sp-project-card.sp-project-large,
    .sp-project-card.sp-project-wide {
        grid-column: auto;

        height: 270px;

        border-radius: 14px;
    }


    /*
     * Первый проект делаем большим
     * на всю ширину.
     */

    .sp-project-card:first-child {
        grid-column: 1 / -1;

        height: 390px;
    }


    .sp-project-overlay {
        padding: 15px;
    }


    .sp-project-info h2,
    .sp-project-large .sp-project-info h2 {
        font-size: 17px;
    }


    .sp-project-info p {
        font-size: 10px;
    }


    .sp-project-open {
        display: none;
    }


    /* NUMBERS */

    .sp-projects-numbers {
        padding: 30px 0 60px;
    }


    .sp-projects-numbers-box {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 25px 18px;

        border-radius: 20px;
    }


    .sp-projects-numbers-copy h2 {
        font-size: 37px;
    }


    .sp-projects-numbers-grid {
        gap: 8px;
    }


    .sp-projects-numbers-grid > div {
        min-height: 110px;

        padding: 14px;
    }


    .sp-projects-numbers-grid strong {
        font-size: 25px;
    }


    /* CTA */

    .sp-projects-cta {
        padding-bottom: 50px;
    }


    .sp-projects-cta-box {
        flex-direction: column;

        align-items: stretch;

        padding: 28px 20px;

        border-radius: 20px;
    }


    .sp-projects-cta-actions {
        min-width: 0;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 420px) {

    .sp-projects-grid {
        grid-template-columns: 1fr;
    }


    .sp-project-card,
    .sp-project-card.sp-project-large,
    .sp-project-card.sp-project-wide,
    .sp-project-card:first-child {
        grid-column: auto;

        height: 330px;
    }

}
/* =========================================================
   PROJECT LIGHTBOX
========================================================= */

.sp-lightbox {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 90px;

    background: rgba(3, 7, 12, .94);

    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


/* OPEN */

.sp-lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* CONTENT */

.sp-lightbox-content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 1400px;
    max-height: 90vh;
}


/* IMAGE */

.sp-lightbox-image {
    display: block;

    max-width: 100%;
    max-height: 82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 30px 100px rgba(0,0,0,.6);

    transform: scale(.96);

    opacity: 0;

    transition:
        transform .3s ease,
        opacity .3s ease;
}


.sp-lightbox.active .sp-lightbox-image {
    transform: scale(1);

    opacity: 1;
}


/* CAPTION */

.sp-lightbox-caption {
    margin-top: 14px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    text-align: center;
}


/* =========================================================
   CLOSE
========================================================= */

.sp-lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: #fff;

    font-size: 32px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.sp-lightbox-close:hover {
    background: var(--steel-gold);

    color: #111;

    transform: rotate(90deg);
}


/* =========================================================
   ARROWS
========================================================= */

.sp-lightbox-prev,
.sp-lightbox-next {
    position: absolute;

    top: 50%;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: #fff;

    font-size: 38px;
    font-weight: 300;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background .2s ease,
        color .2s ease;
}


.sp-lightbox-prev {
    left: 25px;
}


.sp-lightbox-next {
    right: 25px;
}


.sp-lightbox-prev:hover,
.sp-lightbox-next:hover {
    background: var(--steel-gold);

    color: #111;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .sp-lightbox {
        padding: 65px 12px 30px;
    }


    .sp-lightbox-image {
        max-height: 75vh;

        border-radius: 8px;
    }


    .sp-lightbox-close {
        top: 12px;
        right: 12px;

        width: 42px;
        height: 42px;

        font-size: 27px;
    }


    .sp-lightbox-prev,
    .sp-lightbox-next {
        width: 42px;
        height: 42px;

        top: auto;
        bottom: 15px;

        transform: none;

        background: rgba(10,15,22,.8);

        font-size: 30px;
    }


    .sp-lightbox-prev {
        left: calc(50% - 52px);
    }


    .sp-lightbox-next {
        right: calc(50% - 52px);
    }


    .sp-lightbox-caption {
        margin-bottom: 45px;
    }

}