/* VECC company website styling */
:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2937;
  background: #f8fafc;
  line-height: 1.7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  background: #07263c;
  color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand .logo {
  width: 72px;
  height: auto;
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 0.35rem;
}
.brand h1 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
}
.brand p {
  margin: 0.25rem 0 0;
  color: #d1d5db;
  font-size: 0.95rem;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  background: linear-gradient(180deg, #0d4d78 0%, #0f577a 55%, #eef2ff 100%);
  color: #ffffff;
  padding: 5rem 0 4rem;
}
.hero-content {
  max-width: 760px;
}
.hero h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}
.hero p {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  max-width: 38rem;
}
.btn {
  display: inline-block;
  background: #f59e0b;
  color: #08101d;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.section {
  padding: 4rem 0;
}
.about p,
.approach p,
.values p {
  max-width: 42rem;
}
.section h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #0f172a;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.values ul,
.service-cards ul,
.approach ul {
  padding-left: 1.25rem;
  margin: 0;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.image-grid img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
  min-height: 220px;
}
.values li,
.service-cards li,
.approach li {
  margin-bottom: 0.75rem;
}
.services .service-cards {
  display: grid;
  gap: 1.5rem;
}
.services article,
.team article,
.approach {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}
.services article h3,
.team article h3 {
  margin-top: 0;
  font-size: 1.25rem;
}
.team-grid {
  display: grid;
  gap: 1.25rem;
}
.team article {
  padding: 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #ffffff;
}
.team article p {
  margin: 0.75rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  color: #cbd5e1;
}
.site-footer {
  background: #0b1724;
  color: #cbd5e1;
  padding: 3rem 0;
}
.site-footer a {
  color: #f8fafc;
  text-decoration: none;
}
@media (max-width: 900px) {
  .header-inner,
  .footer-grid,
  .grid-2,
  .image-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    display: grid;
    gap: 1rem;
  }
}
@media (max-width: 620px) {
  .hero {
    padding: 3rem 0 2rem;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
