:root {
  --navy: #0F1D30;
  --navy-deep: #0B1524;
  --ink: #111827;
  --orange: #FF6B00;
  --orange-2: #F26522;
  --orange-soft: rgba(255, 107, 0, 0.12);
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --slate: #64748B;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --radius: 16px;
  --shadow-sm: 0 4px 14px rgba(15, 29, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 29, 48, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 29, 48, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 84px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

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

.btn-primary {
  background-color: var(--orange);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--orange-2);
  box-shadow: 0 10px 26px rgba(255, 107, 0, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--navy);
  box-shadow: 0 2px 18px rgba(11, 21, 36, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img,
.footer-logo-img {
  max-height: 45px;
  height: auto;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  display: block;
  margin-bottom: 16px;
}

.main-nav {
  display: flex;
  gap: 6px;
}

.main-nav a {
  color: #C9D3E0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color 0.25s, background-color 0.25s;
}

.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 107, 0, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(11, 21, 36, 0.50), rgba(15, 29, 48, 0.42)),
    url("hero.jpg") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px 130px;
}

.eyebrow {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 720px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero h1 .accent {
  color: var(--orange);
}

.hero-sub {
  color: #C9D3E0;
  max-width: 580px;
  font-size: 1.05rem;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 3px 0 var(--orange);
  overflow: hidden;
  padding: 15px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.ticker-group span {
  color: #E7EDF5;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  white-space: nowrap;
}

.ticker-group i {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.about-section {
  background: var(--card);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 107, 0, 0.28), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, #1B3050 100%);
  min-height: 480px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: 28px;
}

.visual-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-icon {
  font-size: 130px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
}

.visual-chip {
  position: absolute;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.chip-1 { top: 30px; left: 26px; }
.chip-2 { top: 46%; right: -14px; }
.chip-3 { bottom: 34px; left: 40px; }

.about-text {
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 30px;
}

.about-text strong {
  color: var(--ink);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid #EDF2F7;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 0.98rem;
  margin: 13px 0 4px;
}

.benefit-card p {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.55;
}

.catalog-section {
  background: var(--bg);
  padding: 100px 0;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.tab {
  font-family: inherit;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.tab.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(255, 107, 0, 0.32);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--card);
  border: 1px solid #EEF2F7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(45deg, rgba(15, 29, 48, 0.035) 0 14px, transparent 14px 28px),
    #EFF3F8;
  overflow: hidden;
}

.card-media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
  opacity: 0.28;
}

.product-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.4);
}

.product-chip svg {
  width: 24px;
  height: 24px;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.badge {
  background: var(--orange-soft);
  color: var(--orange-2);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 11px;
  border-radius: 100px;
}

.card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.card-short {
  font-size: 0.87rem;
  color: var(--slate);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  margin-top: auto;
}
.cta-banner {
  position: relative;
  background:
    radial-gradient(circle at 88% 30%, rgba(255, 107, 0, 0.25), transparent 42%),
    var(--navy);
  padding: 68px 0;
  color: #ffffff;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.quote-section {
  background: var(--bg);
  padding: 100px 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.quote-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #334155;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-form {
  background: var(--card);
  border: 1px solid #EEF2F7;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #FBFCFE;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.13);
}

textarea {
  resize: vertical;
}

.form-status {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 22px;
}

.form-status.success { color: #16A34A; }
.form-status.error { color: #DC2626; }
.form-status.info { color: var(--orange-2); }

.contact-section {
  background: var(--card);
  padding: 100px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-card {
  background: var(--card);
  border: 1px solid #EDF2F7;
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--orange-soft);
  margin-bottom: 16px;
}

.contact-icon svg {
  width: 27px;
  height: 27px;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.75;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.contact-card a:hover {
  color: var(--orange);
}

.site-footer {
  background: var(--navy);
  color: #AEB9C9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-top: 70px;
  padding-bottom: 54px;
}

.footer-col > p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-web {
  color: #ffffff !important;
  font-weight: 600;
  margin-top: 10px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 22px 24px;
  font-size: 0.82rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 21, 36, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--card);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(26px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 107, 0, 0.3), transparent 45%),
    linear-gradient(140deg, var(--navy) 0%, #1B3050 100%);
  padding: 42px 34px 30px;
  color: #ffffff;
}

.modal-chip {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(255, 107, 0, 0.4);
  margin-bottom: 16px;
}

.modal-chip svg {
  width: 28px;
  height: 28px;
}

.modal-hero .badge {
  background: rgba(255, 107, 0, 0.22);
  color: #FFB27A;
}

.modal-hero h2 {
  font-size: 1.55rem;
  margin-top: 12px;
}

.modal-body {
  padding: 30px 34px 34px;
}

.modal-desc {
  color: var(--slate);
  font-size: 0.94rem;
  margin-bottom: 24px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
}

.spec-table tr:nth-child(odd) {
  background: var(--bg);
}

.spec-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border);
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 44%;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px 22px;
    gap: 4px;
    display: none;
    box-shadow: 0 20px 30px rgba(11, 21, 36, 0.3);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .about-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    min-height: 360px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .chip-2 {
    right: 20px;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 80px 24px 120px;
    text-align: center;
  }

  .hero h1,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 26px 20px;
  }

  .cta-banner-inner {
    text-align: center;
    justify-content: center;
  }

  .modal-body,
  .modal-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .benefit-card p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ticker-track {
    animation: none;
  }
}

