@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7f8f9;
  --surface: #ffffff;
  --surface-muted: #eff3f6;
  --ink: #1f3142;
  --muted: #455b6d;
  --line: #e2e8f0;
  --brand: #2e739f;
  --brand-dark: #205a7f;
  --accent: #f3b16a;
  --shadow-soft: 0 12px 30px rgba(27, 59, 88, 0.08);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

[hidden] {
  display: none !important;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

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

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

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

.brand-link {
  display: inline-block;
  width: min(220px, 100%);
}

.brand-logo {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: #f1f5f9;
  color: var(--brand-dark);
}

.mobile-nav {
  display: none;
}

.mobile-nav-link {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 10px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  transition: all 0.2s ease;
}

.mobile-nav-link.is-active {
  border-color: var(--brand);
  background: rgba(46, 115, 159, 0.1);
  color: var(--brand-dark);
}

.section {
  padding: 36px 0;
}

.section-muted {
  background: var(--surface-muted);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink);
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.hero-left {
  display: grid;
  gap: 22px;
  align-content: start;
}

.hero-intro {
  display: grid;
  gap: 12px;
}

.hero-title {
  max-width: 20ch;
  font-size: clamp(2rem, 4.3vw, 2.65rem);
  line-height: 1.2;
  font-weight: 800;
}

.hero-text {
  max-width: 62ch;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: all 0.2s ease;
}

.btn-primary {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}

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

.btn-outline {
  border: 1px solid #bfd7ea;
  background: #fff;
  color: var(--brand);
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: #9fc4de;
  color: var(--brand-dark);
}

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

.quick-fact {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  padding: 10px 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-fact:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.quick-fact-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #66768a;
  font-weight: 800;
}

.quick-fact-icon {
  width: 16px;
  height: 16px;
  color: #6f8aa0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-fact-value {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
}

.programs-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.programs-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.programs-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.program-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}

.program-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
  background: rgba(46, 115, 159, 0.1);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-badge {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #7c541f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge-square {
  border-radius: 8px;
  border-color: rgba(46, 115, 159, 0.22);
  background: rgba(46, 115, 159, 0.1);
  color: var(--brand);
}

.hero-right {
  display: grid;
  gap: 22px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.why-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 16px;
  background: #f8fafc;
  padding: 18px;
}

.why-card h2 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
}

.why-list {
  margin-top: 12px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 9px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-icon {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  background: rgba(46, 115, 159, 0.1);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-fact-icon svg,
.program-icon svg,
.icon-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.info-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--ink);
}

.info-text {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.visual-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visual-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 220px;
  object-fit: cover;
}

.visual-card figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #334155;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.cert-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.cert-list li {
  border: 1px solid var(--line);
  border-left: 4px solid #fed7aa;
  border-radius: 10px;
  background: #fff;
  padding: 10px 13px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s ease;
}

.cert-list li:hover {
  border-left-color: var(--brand);
}

.iso-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  padding: 18px;
}

.iso-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.iso-panel > p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.iso-list {
  margin-top: 12px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 9px;
}

.iso-list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 9px 11px;
  display: grid;
  gap: 2px;
}

.iso-list strong {
  font-size: 0.9rem;
  color: #1e293b;
}

.iso-list span {
  font-size: 0.8rem;
  color: var(--muted);
}

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

.process-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.process-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 800;
}

.process-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 22px;
}

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

.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  padding: 14px;
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
}

.contact-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-link {
  color: var(--brand);
  font-weight: 600;
}

.contact-link:hover {
  color: var(--brand-dark);
}

.consultation-form {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  padding: 18px;
}

.consultation-form h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.consultation-form > p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid label {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}

.form-field {
  width: 100%;
  margin-top: 4px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  padding: 9px 11px;
  color: var(--ink);
  font-size: 0.9rem;
  font-family: inherit;
}

.form-field::placeholder {
  color: #64748b;
}

.form-field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(46, 115, 159, 0.2);
  outline: none;
}

textarea.form-field {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#form-status {
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  background: var(--surface-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 34px 0 24px;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand .brand-logo {
  width: min(220px, 100%);
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.footer-links {
  margin: 10px 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 7px;
}

.footer-links a,
.footer-contact a,
.footer-location {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.footer-contact {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.social-links {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: #94a3b8;
  color: #334155;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.copyright {
  margin: 0;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
}

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

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

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

@media (max-width: 920px) {
  .header-inner {
    padding-bottom: 10px;
  }

  .primary-nav {
    display: none;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 12px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-image {
    max-height: 300px;
  }

  .cert-layout,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 32px 0;
  }

  .hero-wrapper,
  .contact-panel {
    padding: 18px;
  }

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

  .quick-facts,
  .delivery-grid,
  .gallery-grid,
  .expertise-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .programs-list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-image {
    max-height: 260px;
  }

  .visual-card img {
    max-height: 200px;
  }
}

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

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
