:root {
  --ink: #111319;
  --muted: #4d5665;
  --line: #d6deea;
  --blue: #0c52b4;
  --blue-2: #1341a3;
  --badge-bg: #dbe5f6;
  --hero-blue: #97add5;
  --bg-soft: #f8f8f8;
  --footer-bg: #e8f1ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
}

.page-container {
  width: min(1240px, calc(100% - 24px));
  margin-inline: auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 8px;
  backdrop-filter: saturate(130%) blur(10px);
  background: #f8f8f8;
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.brand-logo {
  width: 40px;
  height: 36px;
}

.brand-text {
  font: 800 30px/1 "Sora", sans-serif;
  letter-spacing: -0.02em;
  color: #07080c;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 9px;
  background: #0d0f15;
  color: #fff;
  padding: 8px 11px;
  font: 700 12px/1 "Manrope", sans-serif;
}

.menu-toggle.navbar-toggler,
.menu-toggle.navbar-toggler:focus {
  border: 0;
  box-shadow: none;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #05060a;
  border-radius: 13px;
}

.main-nav .nav-link {
  color: rgba(236, 238, 241, 0.96);
  border-radius: 9px;
  padding: 8px 12px;
  font: 600 12px/1 "Manrope", sans-serif;
  transition: all 180ms ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible {
  color: #fff;
}

.main-nav .nav-link.active {
  color: #111622;
  background: #e8edf8;
}

.navbar .navbar-collapse {
  flex-grow: 0;
}

.section-pad {
  padding-block: 72px;
}

.section-title {
  margin: 16px 0 10px;
  font: 800 57px/1.1 "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.section-copy {
  margin: 0;
  max-width: 980px;
  font-size: 18px;
  color: #2e3542;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  padding: 8px 11px;
  background: var(--badge-bg);
  color: #212835;
  font: 500 13px/1 "Manrope", sans-serif;
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0b5cd1, #0d3d98);
}

.badge-icon img {
  width: 13px;
  height: 13px;
  filter: brightness(5);
}

.btn-main,
.btn-ghost {
  min-height: 44px;
  border-radius: 11px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 15px/1 "Manrope", sans-serif;
  transition: all 160ms ease;
}

.btn-main {
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--blue-2));
  border: 1px solid transparent;
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid #1f57b9;
  color: #15223d;
  background: transparent;
}

.btn-ghost:hover {
  color: #15223d;
  background: #edf3ff;
}

.page-footer {
  margin-top: 48px;
  padding: 30px 0;
  border-top: 1px solid #ced9ec;
  background: var(--footer-bg);
}

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

.footer-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #20304e;
  font-size: 13px;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  color: #273249;
  font-size: 13px;
}

.services-hero {
  background: var(--hero-blue);
  padding: 96px 0 100px;
}

.services-hero .section-title {
  text-align: center;
  max-width: 1080px;
  margin-inline: auto;
}

.services-hero .section-copy {
  margin: 0 auto;
  max-width: 1050px;
  text-align: center;
  font-size: 22px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-catalog {
  background: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 12px 0 0;
  font: 800 42px/1.1 "Sora", sans-serif;
  letter-spacing: -0.02em;
}

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

.service-card {
  border: 1px solid #d6deea;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(9, 24, 52, 0.07);
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-body {
  padding: 14px;
}

.service-title {
  margin: 0;
  font: 800 24px/1.2 "Sora", sans-serif;
}

.service-body p {
  margin: 8px 0 0;
  color: #3a4251;
  font-size: 15px;
}

.service-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.service-list li {
  display: flex;
  gap: 7px;
  color: #202734;
  font-size: 14px;
}

.service-list li::before {
  content: "\2713";
  color: #0b4ea8;
  font-weight: 800;
}

.service-card.wide {
  grid-column: span 2;
}

.why-choose {
  margin-top: 28px;
  border-radius: 18px;
  padding: 22px;
  background: #f8fafd;
  border: 1px solid #d8e2f0;
}

.why-choose h3 {
  margin: 0 0 12px;
  font: 800 30px/1.1 "Sora", sans-serif;
}

.why-choose ul {
  margin: 0;
  padding-left: 18px;
  color: #2b3444;
  display: grid;
  gap: 6px;
}

.about-trust {
  background: #f8f8f8;
}

.about-main h1 {
  margin: 16px 0 14px;
  font: 800 52px/1.1 "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.about-main p {
  margin: 0;
  max-width: 690px;
  font-size: 17px;
  color: #343c49;
}

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

.value-card {
  border: 1px solid #dde4ef;
  border-radius: 14px;
  background: #fff;
  padding: 13px;
}

.value-card h3 {
  margin: 0;
  font: 800 18px/1.25 "Sora", sans-serif;
}

.value-card p {
  margin: 8px 0 0;
  color: #495262;
  font-size: 14px;
}

.stories {
  background: #fff;
}

.story-card {
  border: 1px solid #d6deea;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.story-body {
  padding: 14px;
}

.story-body h4 {
  margin: 0;
  font: 800 23px/1.2 "Sora", sans-serif;
}

.story-body p {
  margin: 8px 0 0;
  color: #3e4757;
  font-size: 15px;
}

.products-hero {
  background: #f2f6fd;
}

.products-hero .section-title {
  text-align: center;
}

.products-hero .section-copy {
  margin: 0 auto;
  text-align: center;
}

.product-card {
  border: 1px solid #d6deea;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  height: 100%;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid #e0e6ef;
}

.product-head img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.product-head h3 {
  margin: 0;
  font: 800 30px/1 "Sora", sans-serif;
}

.product-card .product-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-body {
  padding: 14px;
}

.product-body p {
  margin: 0;
  color: #3b4453;
  font-size: 15px;
}

.product-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-detail-hero {
  background: #f5f8fd;
}

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

.detail-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.detail-brand h1 {
  margin: 0;
  font: 800 48px/1 "Sora", sans-serif;
}

.detail-visual {
  border-radius: 18px;
  overflow: hidden;
  margin-top: 20px;
}

.detail-visual img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.feature-card {
  border: 1px solid #d6deea;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.feature-card h3 {
  margin: 0;
  font: 800 28px/1.2 "Sora", sans-serif;
}

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

.feature-list li {
  color: #2d3543;
  font-size: 15px;
  display: flex;
  gap: 8px;
}

.feature-list li::before {
  content: "\2713";
  color: #0f53b3;
  font-weight: 800;
}

.leadership-gallery {
  margin-bottom: 14px;
}

.leadership-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d6deea;
  background: #fff;
  box-shadow: 0 10px 24px rgba(9, 24, 52, 0.08);
  padding: 8px;
}

.leadership-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.leadership-photo-main {
  margin-bottom: 10px;
}

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

.leadership-photo-grid .leadership-photo {
  height: auto;
}

.contact-layout {
  background: #fff;
}

.contact-card,
.contact-form {
  border: 1px solid #d7dfeb;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  height: 100%;
}

.contact-card h3,
.contact-form h3 {
  margin: 0 0 12px;
  font: 800 30px/1.2 "Sora", sans-serif;
}

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

.contact-list li {
  color: #2f3744;
  font-size: 15px;
}

.contact-list strong {
  color: #16223c;
}

.contact-list a {
  color: #0f4eab;
  text-decoration: underline;
}

.form-status {
  margin: 0;
  color: #0f4eab;
  font-size: 13px;
  font-weight: 600;
}

.admin-layout {
  background: #fff;
}

.admin-card {
  border: 1px solid #d7dfeb;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
}

.admin-card h3 {
  margin: 0 0 12px;
  font: 800 30px/1.2 "Sora", sans-serif;
}

.admin-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.admin-meta {
  margin: 0 0 12px;
  font-size: 13px;
  color: #425070;
}

.admin-empty {
  margin: 0;
  color: #55627d;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #d7dfeb;
  border-radius: 12px;
}

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

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e3e9f3;
  padding: 10px;
  vertical-align: top;
  font-size: 13px;
}

.admin-table th {
  font-weight: 700;
  color: #15223d;
  background: #f4f7fd;
}

.admin-list {
  margin: 0;
  padding-left: 16px;
}

.admin-list li {
  margin-bottom: 4px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border-color: #cdd7e8;
  min-height: 44px;
  font-size: 14px;
}

textarea.form-control {
  min-height: 120px;
}

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

  .site-header .navbar .navbar-collapse {
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    z-index: 30;
  }

  .site-header .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 9px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(12, 19, 35, 0.2);
  }

  .section-title {
    font-size: 42px;
  }

  .services-hero .section-copy {
    font-size: 17px;
  }

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

  .service-card.wide {
    grid-column: span 2;
  }

  .about-main h1 {
    font-size: 42px;
  }

  .values-grid {
    margin-top: 18px;
  }

  .detail-brand h1 {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .page-container {
    width: min(100%, calc(100% - 16px));
  }

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

  .brand-logo {
    width: 34px;
    height: 31px;
  }

  .brand-text {
    font-size: 22px;
  }

  .section-pad {
    padding-block: 50px;
  }

  .section-title {
    font-size: 33px;
  }

  .section-head h2 {
    font-size: 31px;
  }

  .section-copy {
    font-size: 15px;
  }

  .services-hero {
    padding: 70px 0;
  }

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

  .service-card.wide {
    grid-column: span 1;
  }

  .about-main h1 {
    font-size: 34px;
  }

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

  .product-head h3 {
    font-size: 24px;
  }

  .detail-brand h1 {
    font-size: 31px;
  }

  .detail-brand img {
    width: 60px;
    height: 60px;
  }

  .feature-card h3,
  .contact-card h3,
  .contact-form h3,
  .admin-card h3 {
    font-size: 24px;
  }

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