:root {
  --primary: #0A7FC2;
  --primary-dark: #086ba3;
  --secondary: #1AA6A8;
  --secondary-dark: #158f91;
  --light-bg: #EAF6FB;
  --dark-text: #1F2A33;
  --white: #FFFFFF;
  --muted: #5f6b76;
  --border: rgba(31, 42, 51, 0.1);
  --shadow-sm: 0 10px 30px rgba(31, 42, 51, 0.08);
  --shadow-md: 0 18px 40px rgba(31, 42, 51, 0.12);
  --max-width: 1280px;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 12px rgba(31, 42, 51, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 0.88rem;
  line-height: 1.1;
}

.desktop-nav {
  display: flex;
  gap: 1.4rem;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, background-color 0.2s ease;
}

.desktop-nav a {
  padding: 0.5rem 0.75rem;
  color: var(--dark-text);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--primary);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--dark-text);
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--light-bg);
}

.menu-toggle-line,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(0) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 0 0 1rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}

.mobile-nav a {
  padding: 0.9rem 1rem;
  border-radius: 14px;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
}

.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-glow {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  filter: blur(64px);
  animation: pulse 2s infinite;
}

.hero-glow::before {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
}

.hero-glow::after {
  right: 2.5rem;
  bottom: 5rem;
  width: 24rem;
  height: 24rem;
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 7rem;
}

.hero-home h1,
.page-hero h1,
.cta-band h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.hero-home p.lead,
.page-hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.cta-actions,
.social-row,
.stat-grid,
.value-grid,
.benefit-grid,
.partner-logo-grid,
.contact-info-grid,
.product-grid,
.reason-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border: 0;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-outline {
  border: 2px solid currentColor;
  background: transparent;
  color: inherit;
}

.hero-home .btn-primary.alt {
  background: var(--white);
  color: var(--primary);
}

.hero-home .btn-primary.alt:hover {
  background: #f3f4f6;
}

.hero-home .btn-outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}

.hero-home .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-figure img,
.leadership-image img,
.category-card img,
.image-card img,
.banner-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.hero-figure img {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.section {
  padding: 4rem 0;
}

.section-tint {
  background: var(--light-bg);
}

.section-white {
  background: var(--white);
}

.section-heading {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  font-size: 1.1rem;
  color: #66707a;
}

.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  background: #e5e7eb;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.is-active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.slider-arrow.prev {
  left: 1rem;
}

.slider-arrow.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.slider-dots button.is-active {
  width: 32px;
  background: var(--primary);
}

.feature-layout,
.contact-layout,
.leadership-layout,
.mission-grid,
.footer-grid {
  display: grid;
  gap: 3rem;
}

.feature-layout,
.contact-layout,
.leadership-layout,
.mission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list,
.contact-list {
  display: grid;
  gap: 1.5rem;
}

.feature-card,
.value-card,
.notice-card,
.info-card,
.contact-card,
.category-card,
.reason-card,
.benefit-card,
.partner-placeholder,
.legal-panel,
.hours-panel {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.feature-card,
.value-card,
.notice-card,
.info-card,
.contact-card,
.category-card,
.reason-card,
.benefit-card,
.legal-panel,
.hours-panel {
  padding: 1.5rem;
}

.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--light-bg);
}

.feature-icon,
.value-icon,
.notice-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}

.notice-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.notice-icon {
  border-radius: 999px;
  background: var(--secondary);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 999px;
}

.leadership-layout {
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.leadership-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.leadership-image img {
  width: min(100%, 360px);
  max-height: 420px;
  object-fit: contain;
  border-radius: 20px;
}

.founder-badge {
  display: inline-block;
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 4rem 0 5rem;
  text-align: center;
}

.page-hero .container {
  max-width: 980px;
}

.mission-grid {
  color: var(--white);
}

.mission-grid h2 {
  font-size: 2.2rem;
}

.product-grid,
.partner-logo-grid,
.benefit-grid,
.contact-info-grid,
.reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  overflow: hidden;
  padding: 0;
}

.category-card img {
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-copy {
  padding: 1.5rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.reason-grid,
.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-card {
  text-align: center;
}

.reason-card .big {
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.reason-card.secondary .big {
  color: var(--secondary);
}

.reason-card.primary .big {
  color: var(--primary);
}

.partner-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border: 2px dashed var(--primary);
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
}

.cta-band {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.contact-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  text-align: center;
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 999px;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: var(--white);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 127, 194, 0.16);
}

.success-banner {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  background: #f0fdf4;
  color: #15803d;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background: var(--secondary);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hours-panel .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.hours-panel .row:last-child {
  border-bottom: 0;
}

.site-footer {
  background: var(--dark-text);
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  padding: 3rem 0 2rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand-row img {
  height: 48px;
}

.footer-copy,
.footer-links a,
.footer-contact a,
.footer-contact p {
  color: #d1d5db;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #9ca3af;
  font-size: 0.95rem;
}

.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.location,
.scroll-top {
  background: var(--primary);
}

.scroll-top {
  display: none;
  border: 0;
  cursor: pointer;
}

.scroll-top.is-visible {
  display: inline-flex;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.float-tooltip {
  position: absolute;
  right: 4.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: var(--dark-text);
  color: var(--white);
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

.icon {
  font-style: normal;
  font-weight: 700;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.55rem;
  color: #4b5563;
}

.contact-box {
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-radius: 14px;
  background: var(--light-bg);
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 1024px) {
  .hero-content,
  .feature-layout,
  .contact-layout,
  .leadership-layout,
  .mission-grid,
  .footer-grid,
  .product-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reason-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    padding: 4rem 0 5rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-home h1,
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .slider {
    height: 320px;
  }

  .value-grid,
  .product-grid,
  .benefit-grid,
  .partner-logo-grid,
  .contact-info-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .cta-band .btn {
    width: 100%;
  }

  .slider {
    height: 260px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.8rem;
  }
}
