/* Domendomen – Standoff 2 | Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 60px 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eee;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a1a1a;
  text-decoration: none;
}
.logo-link:hover { text-decoration: none; color: #0066cc; }
.logo-link img { width: 40px; height: 40px; object-fit: contain; }
.nav-main { display: flex; align-items: center; gap: 24px; }
.nav-main a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}
.nav-main a:hover { color: #0066cc; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3d7ab5 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.hero .tagline {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Intro block (Lead your team) */
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.intro-image-wrap img { width: 100%; }
.intro h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
}
.intro p { margin: 0 0 24px; color: #444; }
.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.download-badges a {
  display: inline-block;
  height: 44px;
}
.download-badges img { height: 44px; width: auto; }

/* News section */
.news-section { background: #f8f9fa; }
.news-section h2 {
  margin: 0 0 32px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.news-card a { text-decoration: none; color: inherit; }
.news-card a:hover { text-decoration: none; }
.news-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e0e0e0;
}
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0066cc;
  margin-bottom: 8px;
}
.news-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.news-cta-wrap { text-align: center; }
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: #0066cc;
  color: #fff;
}
.btn-primary:hover { background: #0052a3; text-decoration: none; color: #fff; }

/* See the latest */
.see-latest {
  background: linear-gradient(160deg, #1e3a5f 0%, #2d5a87 100%);
  color: #fff;
}
.see-latest .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.see-latest h2 { margin: 0 0 16px; font-size: 1.75rem; font-weight: 700; }
.see-latest p { margin: 0 0 24px; opacity: 0.95; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
}
.social-links a:hover { background: rgba(255,255,255,0.25); text-decoration: none; color: #fff; }
.social-links a i { font-size: inherit; }
.see-latest-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.see-latest-image img { width: 100%; }

/* Carousel */
.carousel-section { padding: 60px 0; background: #fff; }
.carousel-section h2 {
  margin: 0 0 32px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
}
.carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.carousel-track {
  display: flex;
  width: 300%;
  border-radius: 12px;
  transition: transform 0.35s ease-out;
}
.carousel-slide {
  flex: 0 0 33.333%;
  width: 33.333%;
  aspect-ratio: 16/9;
  background: #e0e0e0;
  position: relative;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover { background: #f0f0f0; color: #0066cc; }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel-dots button.active { background: #0066cc; }

/* CTA block */
.cta-block {
  background: #0066cc;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta-block h2 { margin: 0 0 24px; font-size: 1.75rem; font-weight: 700; }
.cta-block .btn-cta {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #0066cc;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta-block .btn-cta:hover { background: #f0f0f0; color: #0052a3; text-decoration: none; }
.cta-image-wrap {
  max-width: 280px;
  margin: 32px auto 0;
  border-radius: 12px;
  overflow: hidden;
}
.cta-image-wrap img { width: 100%; }

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 0 24px;
}
.site-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #333;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.footer-logo:hover { color: #fff; text-decoration: none; }
.footer-logo img { width: 36px; height: 36px; object-fit: contain; }
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ccc;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.footer-social a:hover { color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.footer-social a i { font-size: inherit; }
.footer-badges { display: flex; gap: 12px; }
.footer-badges img { height: 40px; width: auto; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.footer-links a { color: #999; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  font-size: 0.85rem;
  color: #888;
}
.footer-bottom a { color: #999; }

/* Page title (inner pages) */
.page-header {
  background: #f8f9fa;
  padding: 40px 0;
  margin-bottom: 40px;
}
.page-header h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* Content area */
.content-body { max-width: 720px; margin: 0 auto; }
.content-body p { margin: 0 0 1em; }
.content-body h2 { margin: 1.5em 0 0.5em; font-size: 1.25rem; }

/* Contact form */
.contact-form label { display: block; margin-bottom: 6px; font-weight: 500; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 16px;
  font: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }

/* Responsive */
@media (max-width: 768px) {
  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 60px 24px 24px;
    box-shadow: -4px 0 16px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav-main.is-open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .intro .container,
  .see-latest .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro .container > *:first-child { order: 2; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .hero { min-height: 320px; }
  .download-badges { flex-direction: column; align-items: flex-start; }
}
