:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --primary: #004a99;
  --primary-dark: #01336a;
  --accent: #f79f1f;
  --text: #1d2939;
  --muted: #526072;
  --border: #e3e8ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.top-strip {
  background: #0a1830;
  color: #d7e3f7;
  font-size: 0.88rem;
}

.top-strip-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.top-strip-wrap p {
  margin: 0;
}

.top-strip-wrap a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand h1 {
  margin: 0;
  font-size: 1.15rem;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  padding: 2px;
}

.nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav-list a.active,
.nav-list a:hover {
  color: var(--primary);
}

.hero {
  background: linear-gradient(130deg, #0e2646, #0a4f94);
  color: #fff;
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.hero-subtitle {
  margin: 10px 0 0;
  color: #d7e7fb;
  font-size: 1.2rem;
}

.hero-subtitle span {
  color: #ffd58a;
}

.lead {
  margin-top: 14px;
  color: #d9e7f8;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #1f1f1f;
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.hero-card,
.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.hero-card {
  color: var(--text);
}

.hero-card ul {
  margin: 0;
  padding-left: 10px;
}

.partner-logos {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  margin-left: 30px;
}

.partner-logos img {
  width: 120px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  border: 1px solid var(--border);
}

.section {
  padding: 56px 0;
}

.section-soft {
  background: #eef3fa;
}

.section-title {
  margin-top: 0;
  margin-bottom: 22px;
}

.brand-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-title-row .section-title {
  margin: 0;
}

.brand-section-logo {
  width: 132px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.area-business-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.thermax-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.thermax-column h4 {
  margin: 0 0 12px;
}

.thermax-products-scroll {
  display: grid;
  gap: 14px;
  max-height: 720px;
  overflow-y: auto;
  padding-right: 6px;
}

.card h3,
.card h4 {
  margin-top: 0;
}

.card img,
.section-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.section-image {
  max-height: 220px;
  object-fit: cover;
}

.profile-media-block {
  margin-bottom: 16px;
}

.profile-gallery {
  position: relative;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
}

.profile-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.profile-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-main-shot {
  min-height: 340px;
}

.profile-side-shot {
  min-height: 340px;
}

.profile-gallery figcaption {
  padding: 10px 12px;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.profile-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(10, 24, 48, 0.9);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-badge strong {
  font-size: 1rem;
}

.profile-badge span {
  font-size: 0.75rem;
  color: #d0def7;
}

.simple-list {
  margin: 0;
  padding-left: 18px;
}

.top-gap {
  margin-top: 16px;
}

.compact-card img {
  height: 170px;
  object-fit: cover;
}

.person-card p {
  margin: 4px 0;
}

.about-highlight {
  margin-top: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
}

.about-highlight h4 {
  margin: 0 0 4px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  text-align: center;
}

.stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 16px;
}

.stats h4 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary);
}

.stats p {
  margin: 6px 0 0;
  color: var(--muted);
}

.page-banner {
  background: linear-gradient(130deg, #0e2646, #0f6ac3);
  color: white;
  padding: 58px 0;
}

.page-banner h2 {
  margin: 0;
}

.page-banner p {
  margin: 8px 0 0;
  color: #d9e7f8;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.pill-grid span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item h3 {
  margin: 0;
  padding: 14px 14px 6px;
  font-size: 1rem;
}

.gallery-item p {
  margin: 0;
  color: var(--muted);
  padding: 0 14px 14px;
  font-size: 0.9rem;
}

.placeholder {
  height: 120px;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, #e0ecfb, #d2e5fd);
  position: relative;
  overflow: hidden;
}

.placeholder span {
  color: var(--primary-dark);
  font-weight: 700;
  position: absolute;
  right: 8px;
  top: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 2px 8px;
}

.img-placeholder {
  height: 170px;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  padding: 10px 12px;
}

.contact-services h4 {
  margin-bottom: 8px;
}

.contact-services ul {
  margin: 0;
  padding-left: 18px;
}

.success-msg {
  color: #0f8f50;
  font-weight: 600;
}

.center {
  text-align: center;
}

.site-footer {
  margin-top: 40px;
  background: #0f1d2d;
  color: #dbe4f2;
}

.footer-note {
  color: #b4c4df;
  margin-top: 8px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  padding: 36px 0;
  grid-template-columns: 1.2fr 1fr 1.2fr;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: #dbe4f2;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-keywords {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
}

.footer-keywords span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.testimonials-section {
  background: linear-gradient(180deg, #f7fbff, #edf4fd);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.testimonial p {
  margin: 0;
}

.testimonial img {
  height: 34px;
  object-fit: contain;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin: 14px 0 0;
  color: var(--primary);
  font-size: 0.95rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
  text-align: center;
  padding: 14px 0;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .footer-grid,
  .thermax-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .profile-gallery {
    grid-template-columns: 1fr;
  }

  .profile-main-shot,
  .profile-side-shot {
    min-height: 260px;
  }

  .profile-badge {
    left: 10px;
    bottom: 10px;
  }
}

@media (max-width: 680px) {
  .top-strip-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .card-grid,
  .area-business-grid,
  .gallery-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .brand-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
