
:root {
  --navy: #0a1f38;
  --blue: #123f70;
  --steel: #244b73;
  --light-blue: #edf3f9;
  --orange: #c97b17;
  --dark-orange: #a9640d;
  --gold: #d4a441;
  --gray: #f5f7fa;
  --text: #1d2939;
  --muted: #667085;
  --white: #ffffff;
  --border: #d9e2ec;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

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

.top-bar {
  background: linear-gradient(90deg, #0a1f38 0%, #15365f 70%, #c97b17 100%);
  color: var(--white);
  font-size: 14px;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar a { color: var(--white); font-weight: 700; }

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.site-logo-img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 6px;
  background: #ffffff;
  padding: 2px 4px;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-main-text {
  font-size: 25px;
  font-weight: 800;
  color: var(--navy);
}

.logo-tagline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--orange);
  margin-top: 4px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

nav a:hover { color: var(--orange); }

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--dark-orange);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.hero {
  min-height: 650px;
  background:
    linear-gradient(rgba(9, 33, 63, 0.64), rgba(9, 33, 63, 0.76)),
    url("../assets/industrial-hero.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 86px 20px;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 40px;
  align-items: center;
}

.hero-logo-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.hero-logo-img {
  display: block;
  height: 76px;
  width: auto;
  border-radius: 6px;
  background: rgba(255,255,255,0.96);
  padding: 4px 6px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 780px;
}

.hero p {
  font-size: 20px;
  max-width: 760px;
  color: #e6edf7;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 26px;
}

.hero-point {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
}

.rfq-card {
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  border-top: 5px solid var(--orange);
}

.rfq-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.rfq-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 18px;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

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

.page-hero {
  background:
    linear-gradient(rgba(9, 33, 63, 0.84), rgba(9, 33, 63, 0.86)),
    url("../assets/industrial-hero.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 20px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: auto;
}

.page-hero h1 {
  font-size: 48px;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 850px;
}

.page-hero p {
  font-size: 19px;
  color: #e6edf7;
  max-width: 850px;
  margin: 0;
}

.section { padding: 78px 20px; }
.section.gray { background: var(--gray); }
.section.blue-light { background: var(--light-blue); }

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 45px;
}

.section-title span {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.section-title h2 {
  font-size: 38px;
  color: var(--navy);
  margin: 10px 0 14px;
  line-height: 1.2;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  transition: 0.2s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(9, 33, 63, 0.1);
  border-color: #b6c8dd;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fbf3e2;
  color: #a9640d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 16px;
}

.card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.card p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 15px;
}

.small-link {
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.split h2 {
  color: var(--navy);
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.split p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  font-weight: 700;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.process { counter-reset: step; }

.process .card {
  position: relative;
  padding-top: 68px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 24px;
  left: 26px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.brand-cloud a {
  padding: 10px 15px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 100px;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.region-box {
  background: linear-gradient(135deg, #0a1f38 0%, #123f70 65%, #c97b17 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.region-box h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.region-box p {
  color: #d9e6f7;
  margin: 0;
}

.countries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.countries a {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 9px 13px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
}

.cta {
  background:
    linear-gradient(rgba(9, 33, 63, 0.9), rgba(9, 33, 63, 0.9)),
    url("../assets/industrial-hero.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 42px;
  margin: 0 0 16px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #e6edf7;
  font-size: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--light-blue);
  color: var(--navy);
}

td {
  color: var(--muted);
}

.notice {
  background: #fff8eb;
  border: 1px solid #f2d7ad;
  border-left: 5px solid var(--orange);
  padding: 18px;
  border-radius: 10px;
  color: #563813;
}

footer {
  background: #06172d;
  color: var(--white);
  padding: 58px 20px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

footer h4 {
  margin: 0 0 16px;
  font-size: 18px;
}

footer p, footer li, footer a {
  color: #c5d4e8;
  font-size: 14px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aabbd2;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 950px) {
  nav ul { display: none; }
  .hero-content, .split, .region-box, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 38px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-points { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 32px; }
  .section-title h2, .split h2, .cta h2 { font-size: 30px; }
  .top-bar { font-size: 13px; }
  .site-logo-img { height: 48px; }
  .hero-logo-img { height: 58px; }
  .logo-main-text { font-size: 21px; }
  .logo-tagline { display: none; }
}

/* Contact card and contact link polish */
.contact-section,
.section.contact-section {
  background: linear-gradient(135deg, #eaf5ff 0%, #fff4e6 100%);
}

.contact-card,
.contact-info-card,
.contact-section .card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #b8d7f5;
  border-top: 4px solid var(--orange);
  box-shadow: 0 10px 28px rgba(28, 86, 140, 0.10);
}

.contact-card h3,
.contact-info-card h3,
.contact-section .card h3 {
  color: var(--navy);
}

.contact-card a:not(.btn),
.contact-info-card a:not(.btn),
.contact-section .card a:not(.btn),
.container.split a[href^="mailto:"],
.container.split a[href^="tel:"] {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:not(.btn):hover,
.contact-info-card a:not(.btn):hover,
.contact-section .card a:not(.btn):hover,
.container.split a[href^="mailto:"]:hover,
.container.split a[href^="tel:"]:hover {
  color: var(--orange);
  text-decoration: underline;
}

.contact-info-card {
  padding: 28px;
  border-radius: 12px;
}

.contact-info-card h2 {
  color: var(--navy);
  margin-top: 0;
}
