*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d2240;
  --navy-mid: #163257;
  --blue: #1a4f9c;
  --blue-bright: #2563eb;
  --blue-light: #3b82f6;
  --accent: #1d6fd8;
  --white: #ffffff;
  --off-white: #f5f8ff;
  --gray-light: #e8eef8;
  --gray: #6b7a99;
  --text: #1a2b4a;
  --text-light: #4a5c7a;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.topbar a:hover {
  color: #fff;
}
.topbar-loc,
.topbar-email {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── NAV ─── */
nav {
  background: #fff;
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(13, 34, 64, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg {
  width: 28px;
  height: 28px;
}
.logo-text {
  line-height: 1.1;
}
.logo-text strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo-text span {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  border-bottom-color: var(--blue-bright);
}
.nav-cta {
  background: var(--blue-bright);
  color: #fff !important;
  border-radius: 6px;
  padding: 9px 20px !important;
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
  color: #fff !important;
}

/* ─── HERO ─── */
#home {
  position: relative;
  min-height: 520px;
  background: url("../assets/landingpage.png") no-repeat center center/cover;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(29, 111, 216, 0.2) 0%, transparent 35%);
}
.hero-molecule {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  opacity: 0.12;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 100px 32px;
  max-width: 800px;
  padding-left: 64px;
  backdrop-filter: blur(10px);
  -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 34, 64, 0.05);
  border: none;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 76px);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero h1 span {
  color: #60a5fa;
}
.hero-sub {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 650px;
}
.hero-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 40px;
}
.hero-address svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue-bright);
  color: #fff;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.05);
  color: var(--blue-bright);
}

/* ─── TRUST BAR ─── */
.trustbar {
  background: var(--navy);
  padding: 24px 0;
}
.trustbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border-right: none;
}
.trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}
.trust-label {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
}
.trust-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ─── SECTIONS ─── */
section {
  padding: 80px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--blue-bright);
  border-radius: 2px;
  margin: 16px 0 32px;
}
.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}

/* ─── ABOUT ─── */
#about {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-inner {
  text-align: center;
  color: #fff;
  padding: 40px;
}
.about-stat {
  margin-bottom: 28px;
}
.about-stat .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-stat .num span {
  color: #60a5fa;
}
.about-stat .desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
}
.about-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px auto;
}
.about-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
}
.highlight-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--off-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
}
.highlight-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ─── PRODUCTS ─── */
#products {
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(13, 34, 64, 0.12);
  transform: translateY(-4px);
}
.product-img {
  height: 200px;
  background: linear-gradient(135deg, #eef4ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border-bottom: 1.5px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(29, 111, 216, 0.06) 100%);
}
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.product-body .tagline {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.app-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.app-list {
  list-style: none;
  margin-bottom: 20px;
}
.app-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-light);
}
.app-list li:last-child {
  border-bottom: none;
}
.app-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.product-forms {
  margin-bottom: 20px;
}
.form-badge {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin: 3px 3px 0 0;
}
.btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 12px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: auto;
}
.btn-detail:hover {
  background: var(--blue-bright);
}

/* ─── INDUSTRIES ─── */
#industries {
  background: var(--off-white);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--gray-light);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.industry-card:hover {
  box-shadow: 0 8px 32px rgba(13, 34, 64, 0.1);
  border-color: var(--blue-light);
}
.industry-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue-bright);
}
.industry-card h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── WHY CHOOSE US ─── */
#why {
  background: var(--navy);
}
#why .section-title {
  color: #fff;
}
#why .section-label {
  color: #60a5fa;
}
#why .section-divider {
  background: #60a5fa;
}
.why-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px;
  transition: background 0.2s;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.why-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: rgba(96, 165, 250, 0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h4 {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ─── VISION MISSION ─── */
#vision {
  background: #fff;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  border-radius: 14px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.vm-card.vision {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.vm-card.mission {
  background: linear-gradient(135deg, var(--blue) 0%, #1d6fd8 100%);
}
.vm-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.vm-card-label span {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.vm-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  margin-bottom: 16px;
}
.vm-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.mission-list {
  list-style: none;
}
.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}
.mission-list li:last-child {
  border-bottom: none;
}
.mission-list li::before {
  content: "→";
  flex-shrink: 0;
  color: #93c5fd;
  font-weight: 700;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  border: 1.5px solid var(--gray-light);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
}
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.contact-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  border: 1.5px solid var(--gray-light);
}
.contact-form-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-form-card .sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: 7px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  background: var(--off-white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-submit {
  width: 100%;
  padding: 13px;
  border-radius: 7px;
  background: var(--blue-bright);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--navy);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 60px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid,
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trustbar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    padding: 60px 32px;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .products-grid,
  .industries-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 32px;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trustbar-inner {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
  }
}