:root {
  --navy: #1e3a5f;
  --navy-dark: #16304e;
  --navy-light: #3d5a80;
  --text: #1a202c;
  --muted: #718096;
  --light-bg: #f7fafc;
  --white: #ffffff;
  --orange: #d97706;
  --orange-dark: #b45309;
  --border: rgba(226, 232, 240, 0.6);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --anchor-offset: 124px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

h2[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 16px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  height: 92px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(30, 58, 95, 0.18));
}

.brand {
  flex-shrink: 0;
}

.site-header nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.site-header nav a {
  color: var(--text);
  transition: color 0.2s;
}

.site-header nav a:hover {
  color: var(--orange);
}

/* HERO */
.hero {
  padding: 60px 0;
  background: linear-gradient(to bottom, var(--white), #f9fafb);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-image img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(30, 58, 95, 0.14);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e7ff, #f0f4ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  font-weight: 600;
  text-align: center;
  border: 2px dashed rgba(62, 90, 128, 0.2);
}

.hero-image svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(30, 58, 95, 0.1));
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 760px;
}

.hero-cta,
.hero-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.button.primary {
  background: var(--orange);
  color: white;
}

.button.primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.button.secondary:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.section.bg-light {
  background: var(--light-bg);
}

.section.bg-white {
  background: var(--white);
}

.section-header {
  margin-bottom: 40px;
  max-width: 880px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  margin-bottom: 20px;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.products-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.product-image-container {
  display: grid;
  gap: 14px;
}

.product-image-container > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.products-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-info-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  display: grid;
  align-content: start;
}

.product-panel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.product-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.product-panel.dark {
  background: linear-gradient(135deg, var(--navy), #1a2f4b);
  color: white;
}

.product-panel.light {
  background: linear-gradient(135deg, var(--light-bg), white);
  color: var(--text);
}

.product-inner {
  padding: 36px;
}

.product-logo {
  height: 108px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  object-position: center;
  margin-left: auto;
  margin-right: auto;
}

.product-media {
  height: 108px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.product-panel h3 {
  margin-bottom: 14px;
}

.product-panel.dark h3 {
  color: white;
}

.product-panel p {
  margin-bottom: 18px;
  line-height: 1.75;
}

.product-panel.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.feature-list {
  margin: 0 0 16px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.product-meta span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--orange);
}

.product-panel.dark .product-meta span {
  background: rgba(217, 119, 6, 0.25);
  color: #fbbf24;
}

.link {
  display: inline-flex;
  color: var(--orange);
  font-weight: 700;
  transition: all 0.2s;
}

.link:hover {
  transform: translateX(4px);
}

.product-panel.dark .link {
  color: #fbbf24;
}

/* EXPERIENCE */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.experience-banner {
  min-height: 320px;
  background: linear-gradient(135deg, #e0e7ff, #f0f4ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(62, 90, 128, 0.2);
  padding: 20px;
}

.experience-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.14);
}

.experience-banner svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(30, 58, 95, 0.08));
}

.experience-text h2 {
  margin-bottom: 16px;
  color: var(--navy);
}

.experience-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.75;
}

.experience-points {
  display: grid;
  gap: 20px;
}

.point {
  display: grid;
  gap: 6px;
  padding-left: 0;
}

.point strong {
  color: var(--navy);
  font-weight: 700;
}

.point span {
  font-size: 0.95rem;
  color: var(--muted);
}

.experience-aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 24px;
  background: linear-gradient(135deg, var(--light-bg), rgba(248, 250, 252, 0.5));
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.stat-card.highlight {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  border: none;
  color: white;
}

.stat-card.highlight strong {
  color: white;
}

.stat-card.highlight span {
  color: rgba(255, 255, 255, 0.9);
}

/* MISSION VISION */
.mission-vision-section {
  background: var(--white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mv-card {
  padding: 30px 26px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.mv-card h3 {
  margin-bottom: 10px;
}

.mv-card p {
  margin-bottom: 0;
}

/* CONTACT */
.contact-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: white;
  border: none;
  text-align: center;
  padding: 80px 0;
}

.contact-content h2 {
  color: white;
  margin-bottom: 12px;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-direct {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-section .button.primary {
  background: var(--orange);
  color: white;
}

.contact-section .button.primary:hover {
  background: var(--orange-dark);
}

/* FOOTER */
.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  background: var(--light-bg);
}

.footer-content {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float:hover {
  background: #1fb85a;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 2px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .services-grid,
  .products-grid,
  .experience-grid,
  .experience-aside,
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .products-showcase {
    grid-template-columns: 1fr;
  }

  .products-info {
    grid-template-columns: 1fr;
  }

  .real-images-strip img {
    height: 170px;
  }

  .product-image-container > img {
    height: 320px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .site-header nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  h1 {
    max-width: 12ch;
  }

  .hero {
    padding: 48px 0;
  }

  .section {
    padding: 48px 0;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .experience-aside {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --anchor-offset: 170px;
  }

  h2[id] {
    scroll-margin-top: var(--anchor-offset);
  }

  .nav-wrap {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .brand img {
    width: 142px;
    height: auto;
    max-width: none;
  }

  .site-header nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 14px;
    font-size: 0.85rem;
  }

  .button {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .product-inner,
  .stat-card {
    padding: 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-image img,
  .experience-banner img {
    max-height: 280px;
  }

  .product-image-container > img {
    height: 240px;
  }

  .product-info-card {
    padding: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }

  .whatsapp-float span {
    display: none;
  }
}
