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

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

*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --background: #162131;
  --background-2: #1d2a3d;
  --background-3: #223249;
  --surface: rgba(30, 43, 61, 0.94);
  --surface-2: rgba(35, 49, 69, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --foreground: #f8fafc;
  --foreground-soft: rgba(248, 250, 252, 0.82);
  --foreground-muted: rgba(248, 250, 252, 0.66);
  --primary: #ff8c42;
  --primary-hover: #f07f35;
  --border: rgba(97, 116, 144, 0.42);
  --border-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(6, 10, 19, 0.28);
  --shadow-soft: 0 14px 34px rgba(6, 10, 19, 0.22);
  --radius: 12px;
  --radius-lg: 18px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #172334 0%, #162131 100%);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.65;
}

body.home-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, #152131 0%, #162131 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.85rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
}

p {
  color: var(--foreground-soft);
}

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

.narrow {
  max-width: 860px;
  margin: 0 auto;
}

.center-text { text-align: center; }
.left-text { text-align: left; }
.top-space { margin-top: 1.4rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 33, 49, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  height: 200px;
  width: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.72rem 0.95rem;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.9);
  transition: 0.22s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.site-nav a.active {
  background: rgba(255, 140, 66, 0.12);
  color: var(--primary);
}

.site-nav .quote-link {
  background: var(--primary);
  color: #fff;
}

.site-nav .quote-link:hover {
  background: var(--primary-hover);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: #f8fafc;
  border-radius: 2px;
  transition: 0.25s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-ai,
.hero {
  position: relative;
  overflow: hidden;
}

.hero-ai::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.055), transparent 45%);
  pointer-events: none;
}

.hero-ai {
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 0 4.5rem;
}

.hero-ai-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.hero-ai-title {
  max-width: 900px;
  margin: 0 auto 1.35rem;
}

.hero-ai-subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  color: var(--foreground-soft);
}

.hero-ai-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero {
  padding: 7rem 0 4rem;
  min-height: 42vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero p,
.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-top: 1rem;
  max-width: 760px;
  color: var(--foreground-soft);
}

.btn-primary,
.btn-secondary,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: 0.22s ease;
  border: 1px solid transparent;
}

.btn-primary,
.button {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(255, 140, 66, 0.15);
}

.btn-primary:hover,
.button:hover {
  transform: translateY(-1px);
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-secondary,
.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover,
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section,
.section-dark,
.section-deep,
.section-panel,
.section-commitment {
  padding: 5.5rem 0;
}

.section,
.section-commitment {
  background: var(--background);
}

.highlight,
.section-dark,
.section-panel {
  background: var(--background-3);
}

.section-deep {
  background: var(--background-2);
}

.section-head {
  margin-bottom: 3rem;
}

.section-title,
.section-title-xl,
.section-title-lg {
  margin-bottom: 1rem;
}

.section-title,
.section-title-lg {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.section-text,
.section-lead {
  font-size: 1rem;
  color: var(--foreground-soft);
  line-height: 1.85;
}

.section-subtitle {
  color: var(--foreground-muted);
  font-size: 1rem;
}

.grid,
.cards-grid,
.commitment-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

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

.card,
.info-card {
  background: linear-gradient(180deg, rgba(33, 46, 65, 0.98), rgba(29, 42, 60, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.55rem;
  box-shadow: var(--shadow-soft);
}

.info-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.info-card:hover,
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 140, 66, 0.35);
}

.card h3,
.info-card h3 {
  margin-bottom: 0.7rem;
}

.card p,
.info-card p {
  color: var(--foreground-muted);
}

.card-icon,
.panel-icon,
.commitment-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(255, 140, 66, 0.12);
  color: var(--primary);
  font-size: 1.05rem;
}

.panel-icon,
.commitment-icon {
  width: 56px;
  height: 56px;
  font-size: 1.2rem;
}

.split,
.skid-layout,
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.skid-layout {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.skid-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wide-card {
  grid-column: 1 / -1;
}

.wide-card-flex {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--foreground-soft);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.map-embed {
  min-height: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.form-field span {
  color: var(--foreground-soft);
  font-weight: 600;
  font-size: 0.94rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  outline: none;
  transition: 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 140, 66, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.12);
}

.form-status {
  margin-left: 1rem;
  color: var(--foreground-soft);
}

.honeypot { display: none; }

.site-footer {
  background: #1a2434;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 2rem;
}

.footer-wrap {
  display: grid;
  gap: 2rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-copy,
.footer-links a,
.footer-contact a,
.footer-contact p,
.footer-bottom p,
.footer-bottom a {
  color: var(--foreground-muted);
}

.footer-links,
.footer-contact,
.footer-bottom-links {
  display: grid;
  gap: 0.75rem;
}

.site-footer h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .grid-3,
  .cards-grid,
  .commitment-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-panel,
  .skid-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.9rem;
    background: rgba(29, 42, 60, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    width: 100%;
    padding: 0.95rem 1rem;
  }

  .header-inner {
    min-height: 180px;
  }

  .hero-ai {
    min-height: 82vh;
    padding-top: 6rem;
  }

  .section,
  .section-dark,
  .section-deep,
  .section-panel,
  .section-commitment {
    padding: 4.5rem 0;
  }

  .grid-3,
  .cards-grid,
  .commitment-grid,
  .skid-right,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .wide-card { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(94%, var(--container)); }

  .brand-logo,
  .footer-logo { height: 40px; }

  .brand-tagline { font-size: 0.66rem; }

  .hero-ai-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .button {
    width: 100%;
    max-width: 320px;
  }

  .card,
  .info-card { padding: 1.25rem; }
}

.cards-grid {
  margin-bottom: 3rem;
}

.skid-layout {
  align-items: start;
  margin-top: 2rem;
}
.certifications-section {
  padding: 5rem 0;
}

.cert-head {
  margin-bottom: 2.5rem;
}

.cert-lead {
  max-width: 760px;
  margin: 0 auto;
}

.cert-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.cert-info-card {
  text-align: center;
  padding: 1.7rem 1.4rem;
}

.cert-info-card h3 {
  margin-bottom: 0.8rem;
}

.cert-info-card p {
  color: var(--foreground-soft);
}

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

.cert-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  min-height: 210px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(33, 46, 65, 0.98), rgba(29, 42, 60, 0.98));
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 66, 0.35);
  box-shadow: 0 20px 50px rgba(255, 140, 66, 0.14);
}

.cert-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-card-media img {
  display: block;
  width: 100%;
  max-width: 210px;
  max-height: 78px;
  object-fit: contain;
  margin: 0 auto;
}

.cert-card-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--foreground);
}

.cert-strip {
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .cert-info-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cert-info-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-card {
    min-height: auto;
  }

  .cert-card-media {
    min-height: 118px;
  }
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.cert-card {
  background: #1c2b40;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.cert-card:hover {
  transform: translateY(-5px);
}

.cert-card img {
  height: 60px;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
