* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #f9fafb;
  color: #111827;
  line-height: 1.6;
}

header {
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}



.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #111827;
}

.logo-sub {
  font-size: 0.65rem;
  color: #6b7280;
  letter-spacing: 0.25em;
}

nav a {
  color: #374151;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

nav a:hover {
  color: #e02020;
}

nav a.active {
  color: #e02020;
  border-bottom: 2px solid #e02020;
  padding-bottom: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  border-bottom: 1px solid #e5e7eb;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  color: #e02020;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  color: #4b5563;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.88rem;
  background: #e02020;
  color: #ffffff;
  border: 1px solid #e02020;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #c01818;
  border-color: #c01818;
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.88rem;
  background: transparent;
  color: #e02020;
  border: 1px solid #e02020;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: #fff0f0;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.hero-badge span {
  color: #e02020;
}

/* Main layout */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

/* Sections */
.section {
  margin-top: 3rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.card p {
  font-size: 0.9rem;
  color: #6b7280;
}

p {
  color: #374151;
  font-size: 0.97rem;
}

ul li {
  color: #374151;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

/* Contact */
.contact-block {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.contact-block p {
  margin-bottom: 0.4rem;
  color: #374151;
}

/* Footer */
footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ── Tablet (max 900px) ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* ── Mobile (max 600px) ── */
@media (max-width: 600px) {

  /* Nav */
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  nav a {
    margin-left: 0;
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f9fafb;
  }

  nav a.active {
    background: #fff0f0;
    border-color: #e02020;
    border-bottom: 1px solid #e02020;
    padding-bottom: 0.3rem;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-sub {
    font-size: 0.93rem;
  }

  .hero-image-wrap img {
    max-height: 240px;
    border-radius: 0.875rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }

  /* Buttons */
  .btn-row {
    flex-direction: column;
    gap: 0.65rem;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
    width: 100%;
    padding: 0.75rem 1rem;
  }

  /* Main */
  main {
    padding: 1.5rem 1rem 2.5rem;
  }

  .section {
    margin-top: 2rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  /* Cards */
  .section-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.2rem;
  }

  /* Contact */
  .contact-block p {
    font-size: 0.9rem;
  }

  /* Footer */
  footer {
    padding: 1.25rem 1rem;
    font-size: 0.75rem;
  }
}

/* Increased section spacing */
.section {
  margin-top: 4.5rem;
}

/* Service environment grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card-label {
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
}

/* Outcome section */
.outcome-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.outcome-image img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.outcome-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.outcome-text ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.97rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.outcome-text ul li::before {
  content: "→";
  color: #e02020;
  font-weight: 700;
  flex-shrink: 0;
}

.outcome-text .outcome-tagline {
  margin-top: 1.25rem;
  background: #fff5f5;
  border-left: 3px solid #e02020;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
}

.outcome-text .outcome-tagline p {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.25rem;
}

.outcome-text .outcome-tagline p:last-child {
  margin-bottom: 0;
}

/* Responsive - service and outcome */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcome-wrap {
    grid-template-columns: 1fr;
  }

  .outcome-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-card img {
    height: 130px;
  }
}

/* Vision page - World Today image */
.vision-single-img {
  margin-top: 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.vision-single-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 1.25rem;
}

/* Vision page - Future 3 images grid */
.vision-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.vision-img-grid-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.vision-img-grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.vision-img-grid-item img:hover {
  transform: scale(1.03);
}

.vision-img-grid-item .vision-img-label {
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

/* Responsive */
@media (max-width: 600px) {
  .vision-img-grid {
    grid-template-columns: 1fr;
  }

  .vision-single-img img {
    max-height: 240px;
  }
}


/* Contact page layout */
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-hero-image {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  position: sticky;
  top: 90px;
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 1.25rem;
}

.contact-details-col .section {
  margin-top: 2rem;
}

.contact-details-col .section:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-hero-image {
    position: static;
  }

  .contact-hero-image img {
    max-height: 260px;
  }
}

/* Products hero */
.products-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  border-bottom: 1px solid #e5e7eb;
}

.products-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.products-hero-image img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  display: block;
}

/* Coming soon reveal cards */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.coming-soon-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  background: #111827;
}

.coming-soon-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: blur(6px) brightness(0.45);
  transform: scale(1.05);
  transition: filter 0.4s, transform 0.4s;
}

.coming-soon-card:hover img {
  filter: blur(2px) brightness(0.6);
  transform: scale(1.08);
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
}

.coming-soon-tag {
  background: #e02020;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.coming-soon-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.coming-soon-sub {
  color: #d1d5db;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

/* Responsive */
@media (max-width: 768px) {
  .products-hero-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .products-hero-image {
    order: -1;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-card img {
    height: 220px;
  }
}
