@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@700;800;900&display=swap');

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
}

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

.top-bar {
  background: #111111;
  border-bottom: 1px solid #222222;
  padding: 0 48px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #aaaaaa;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.top-bar a:hover,
.top-bar a.active {
  color: #ffffff;
}

header {
  background: #0a0a0a;
  padding: 0 48px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #1a1a1a;
}

main,
footer,
.top-bar,
header,
.page-hero {
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  position: relative;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
  align-self: center;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
  max-width: 220px;
  min-width: 150px;
  opacity: 1 !important;
  visibility: visible !important;
}

footer .site-logo {
  width: min(100%, 240px);
  height: auto;
  max-width: 240px;
  min-width: 160px;
}

.contact-btn,
.back-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 32px;
  min-height: 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-btn:hover,
.back-btn:hover {
  background: #ffffff;
  color: #000000;
}

.hero {
  position: relative;
  background: #0a0a0a;
  min-height: calc(100vh - 132px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0;
}

.hero-stripes {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 340px;
  height: 340px;
  overflow: hidden;
  z-index: 1;
}

.hero-stripes::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: repeating-linear-gradient(-45deg, #f0c030 0px, #f0c030 18px, transparent 18px, transparent 44px);
  opacity: 0.9;
  clip-path: polygon(42% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 48px;
  max-width: 760px;
  width: 100%;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0c030;
  margin-bottom: 16px;
  font-weight: 600;
  display: block;
}

.hero-title {
  font-size: clamp(54px, 5.5vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-title .yellow {
  color: #f0c030;
}

.hero-title .white {
  color: #ffffff;
  font-weight: 300;
}

.hero-sub {
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-cta,
.btn-outline-gold,
.sbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f0c030;
  background: #f0c030;
  color: #000000;
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}

.hero-cta:hover,
.btn-outline-gold:hover,
.sbtn:hover {
  background: transparent;
  color: #f0c030;
}

.btn-outline-gold {
  background: transparent;
  color: #f0c030;
}

.btn-outline-gold:hover {
  background: #f0c030;
  color: #000000;
}

.stats-bar {
  background: #0f0f0f;
  border-top: 1px solid #1e1e1e;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #1e1e1e;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 58px;
  font-weight: 900;
  color: #f0c030;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666666;
}

.about-wrap,
.solutions-wrap,
.clients-wrap,
.contact-wrap,
.legal-wrap {
  max-width: 1304px;
  margin: 0 auto;
  padding: 100px 48px;
}

.about-inner,
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-inner h2,
.solutions-hdr h2,
.clients-wrap h2,
.contact-left h2,
.page-hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.about-inner p,
.contact-left > p,
.client-card p,
.sol-card p,
.content p,
.content li,
.footer-brand p,
.disclaimer,
.footer-legal p,
.flegal-links a,
.fcol a,
.contact-detail,
.award-box p,
.page-hero p,
.form-status {
  color: #888888;
}

.success-boxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.success-box,
.client-card,
.sol-card,
.cform,
.award-box {
  background: #111111;
  border: 1px solid #1e1e1e;
}

.success-box {
  border-left: 3px solid #f0c030;
  padding: 22px 26px;
}

.success-box h4,
.sol-card h3,
.client-card h3,
.cform h3 {
  color: #ffffff;
}

.success-box h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.success-box p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

.solutions-wrap {
  background: #0f0f0f;
}

.solutions-hdr {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.solutions-hdr h2 em,
.contact-left h2 em {
  color: #f0c030;
  font-style: normal;
}

.sol-grid,
.client-grid {
  display: grid;
  gap: 2px;
  align-items: stretch;
}

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

.client-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sol-card,
.client-card {
  padding: 38px;
  transition: background 0.25s;
  height: 100%;
}

.sol-card:hover,
.client-card:hover,
.success-box:hover {
  background: #161616;
}

.sol-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid #2b2b2b;
  color: #f0c030;
  font-size: 24px;
}

.sol-card h3,
.client-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.clients-wrap > p {
  font-size: 17px;
  color: #666666;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.client-num {
  font-size: 12px;
  font-weight: 700;
  color: #f0c030;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 18px;
}

.contact-wrap {
  background: #0f0f0f;
}

.contact-left h2 {
  margin-bottom: 18px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
}

.c-icon {
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  color: #f0c030;
}

.award-box {
  border-left: 3px solid #f0c030;
  padding: 14px 18px;
  margin-bottom: 10px;
}

.award-box strong {
  font-size: 12px;
  color: #f0c030;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.cform {
  padding: 44px;
  width: 100%;
}

.cform h3 {
  font-size: 21px;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.fg {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  padding: 13px 15px;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f0c030;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 22px;
  font-size: 14px;
  margin-top: 12px;
}

.page-hero {
  background: #0f0f0f;
  border-bottom: 1px solid #1a1a1a;
  padding: 60px 48px;
}

.page-hero p {
  font-size: 14px;
  margin-top: 10px;
}

.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px;
}

.content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e1e1e;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.content ul {
  margin: 10px 0 14px 20px;
}

.content a,
.contact-detail a,
.footer-brand a,
.fcol a:hover,
.cookie a {
  color: #f0c030;
}

footer {
  background: #070707;
  border-top: 1px solid #131313;
  padding: 60px 48px 32px;
}

.footer-top {
  max-width: 1304px;
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  margin-top: 14px;
}

.fcol h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.fcol ul {
  list-style: none;
}

.fcol li {
  margin-bottom: 11px;
}

.fcol a {
  font-size: 14px;
  transition: color 0.2s;
}

.footer-bottom {
  max-width: 1304px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid #131313;
}

.disclaimer {
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal p,
.flegal-links a {
  font-size: 12px;
}

.flegal-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 480px;
  width: min(480px, calc(100% - 48px));
  background: #111111;
  border: 1px solid #2a2a2a;
  padding: 22px 24px;
  z-index: 999;
  font-size: 13px;
  color: #888888;
  line-height: 1.6;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.cookie p {
  margin-bottom: 16px;
}

.cookie-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.ck-accept,
.ck-deny {
  flex: 1;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.ck-accept {
  background: #f0c030;
  color: #000000;
  border: none;
}

.ck-accept:hover {
  background: #ffd84d;
}

.ck-deny {
  background: transparent;
  color: #666666;
  border: 1px solid #333333;
}

.ck-deny:hover {
  border-color: #666666;
  color: #aaaaaa;
}

.seo-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .about-wrap,
  .solutions-wrap,
  .clients-wrap,
  .contact-wrap,
  .legal-wrap,
  .content,
  footer,
  .page-hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .top-bar,
  header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-content {
    max-width: 680px;
    padding-left: 32px;
    padding-right: 32px;
  }

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

@media (max-width: 900px) {
  .top-bar,
  header {
    padding: 16px 20px;
  }

  .top-bar {
    gap: 16px 22px;
    justify-content: center;
  }

  .top-bar a {
    font-size: 12px;
  }

  header {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  header .logo,
  .footer-brand .logo {
    align-self: flex-start;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-stripes {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-sub {
    max-width: 100%;
  }

  .stats-bar,
  .about-inner,
  .sol-grid,
  .client-grid,
  .contact-inner,
  .footer-top,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-wrap,
  .solutions-wrap,
  .clients-wrap,
  .contact-wrap,
  .legal-wrap,
  .content,
  footer,
  .page-hero {
    padding: 60px 20px;
  }

  .solutions-hdr {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  header .logo,
  .footer-brand .logo {
    display: inline-flex;
    width: 100%;
    max-width: 220px;
  }

  .site-logo {
    width: min(100%, 180px);
    height: auto;
    max-width: 180px;
    min-width: 120px;
  }

  footer .site-logo {
    width: min(100%, 200px);
    height: auto;
    max-width: 200px;
    min-width: 130px;
  }

  .contact-btn,
  .back-btn,
  .hero-cta,
  .btn-outline-gold,
  .sbtn {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 54px);
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .stats-bar {
    padding: 28px 20px;
    gap: 20px;
  }

  .stat {
    padding: 0;
  }

  .stat + .stat::before {
    display: none;
  }

  .stat-num {
    font-size: 42px;
  }

  .about-inner h2,
  .solutions-hdr h2,
  .clients-wrap h2,
  .contact-left h2,
  .page-hero h1 {
    font-size: 34px;
  }

  .sol-card,
  .client-card,
  .success-box,
  .cform {
    padding: 24px 20px;
  }

  .cookie {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 18px;
  }

  .cookie-btns {
    flex-direction: column;
  }

  .footer-top {
    margin-bottom: 28px;
  }

  .footer-brand p,
  .content p,
  .content li,
  .contact-left > p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  header .logo,
  .footer-brand .logo {
    max-width: 190px;
  }

  .site-logo {
    width: min(100%, 150px);
    height: auto;
    max-width: 150px;
    min-width: 110px;
  }

  footer .site-logo {
    width: min(100%, 170px);
    height: auto;
    max-width: 170px;
    min-width: 120px;
  }

  .top-bar {
    padding: 12px 16px;
    justify-content: flex-start;
  }

  .top-bar a {
    width: calc(50% - 11px);
  }

  header {
    padding: 14px 16px;
  }

  .hero-content,
  .about-wrap,
  .solutions-wrap,
  .clients-wrap,
  .contact-wrap,
  .legal-wrap,
  .content,
  footer,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 48px 0;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero-title {
    font-size: clamp(34px, 12vw, 44px);
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-inner h2,
  .solutions-hdr h2,
  .clients-wrap h2,
  .contact-left h2,
  .page-hero h1 {
    font-size: 28px;
  }

  .flegal-links {
    gap: 12px 16px;
  }
}
