:root {
  color-scheme: light;
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #1d1d1d;
  --muted: #6f6f6f;
  --accent: #0056a6;
  --accent-dark: #003d78;
  --border: #e3e7ed;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 60px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header-actions a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  background: #f8faff;
  color: var(--text);
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 12px 24px 18px;
  border-top: 1px solid var(--border);
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 64px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
}

.hero p {
  margin: 0 0 32px;
  max-width: 540px;
  line-height: 1.75;
  color: var(--muted);
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-details {
  display: grid;
  gap: 20px;
}

.info-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(32, 40, 57, 0.08);
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.info-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.section {
  padding: 64px 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.about p,
.solutions p,
.contact p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.highlights-grid,
.services-grid,
.location-grid,
.contact-grid,
.link-grid,
.gallery-grid,
.sigitaspak-grid,
.segments-grid {
  display: grid;
  gap: 24px;
}

.highlights-grid article,
.services-grid article,
.location-grid article,
.contact-grid > div,
.link-grid article,
.gallery-grid article,
.local-gallery-grid article,
.sigitaspak-grid article,
.segments-grid article {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.highlights-grid article:hover,
.services-grid article:hover,
.location-grid article:hover,
.contact-grid > div:hover,
.link-grid article:hover,
.gallery-grid article:hover,
.local-gallery-grid article:hover,
.sigitaspak-grid article:hover,
.segments-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.highlights-grid article h3,
.services-grid article h3,
.location-grid article h3,
.contact-grid h3,
.link-grid h3,
.gallery-grid article h3,
.local-gallery-grid article h3,
.sigitaspak-grid article h3,
.segments-grid article h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.highlights-grid article p,
.services-grid article p,
.location-grid article p,
.contact-grid p,
.link-grid p,
.segments-grid p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.gallery-grid article img,
.local-gallery-grid article img,
.sigitaspak-grid article img,
.segments-grid article img {
  width: 100%;
  min-height: 220px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: 18px;
}

.highlights-grid,
.services-grid,
.gallery-grid,
.local-gallery-grid,
.sigitaspak-grid,
.segments-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-grid,
.contact-grid,
.link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  max-width: 520px;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #ffffff;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
}

@media (max-width: 760px) {
  .topbar,
  .main-nav,
  .hero,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .header-actions {
    justify-content: center;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlights-grid,
  .services-grid,
  .location-grid,
  .contact-grid,
  .link-grid,
  .gallery-grid,
  .sigitaspak-grid,
  .segments-grid {
    grid-template-columns: 1fr;
  }
}
