@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --bg: #eef5fc;
  --surface: #ffffff;
  --surface-2: #f7fbff;
  --primary: #0f72e4;
  --primary-2: #09a5ff;
  --accent: #17b76a;
  --heading: #102b47;
  --text: #355472;
  --line: #d5e5f4;
  --shadow: 0 18px 46px rgba(20, 66, 108, 0.12);
  --radius: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Poppins, system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 0%, rgba(9, 165, 255, 0.12), transparent 26%),
    radial-gradient(circle at 90% 0%, rgba(15, 114, 228, 0.12), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.68;
}

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

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

.container {
  width: min(92vw, var(--container));
  margin: 0 auto;
}

section {
  padding: clamp(60px, 8vw, 96px) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2 {
  color: var(--heading);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.18;
  margin-bottom: 10px;
}

.section-title p {
  max-width: 760px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: 0.28s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(15, 114, 228, 0.32);
}

.btn-outline {
  border-color: #bed6ec;
  color: #174773;
  background: rgba(255, 255, 255, 0.8);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1db954, #14a44b);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 1000;
  padding-top: 10px;
}

.nav {
  width: min(95vw, 1240px);
  margin: 0 auto;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #c7dcef;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.brand {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
}

.brand small {
  display: block;
  font-size: 0.72rem;
  color: #567698;
  font-weight: 500;
}

.nav-links {
  display: none;
  gap: 18px;
  color: #4f6f90;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: #164a79;
}

.menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #c5dbef;
  background: #fff;
  color: #184974;
  cursor: pointer;
}

.mobile-nav {
  width: min(95vw, 1240px);
  margin: 8px auto 0;
  border-radius: 16px;
  border: 1px solid #c9def1;
  background: #f8fbff;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  color: #355978;
  border-top: 1px solid #e1ecf8;
}

.mobile-nav.show {
  max-height: 280px;
  opacity: 1;
}

.hero {
  padding-top: clamp(62px, 10vw, 126px);
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero h1 {
  color: var(--heading);
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero p {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-banner {
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #c9dff3;
  background: linear-gradient(180deg, rgba(8, 41, 71, 0.2), rgba(8, 41, 71, 0.44)),
    url('assets/Untitled.jpg') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.trust {
  border-block: 1px solid #dce9f6;
  background: #f8fbff;
}

.trust-row {
  display: grid;
  gap: 14px;
  text-align: center;
  align-items: center;
}

.trust-row h2 {
  color: var(--heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  border-radius: 999px;
  border: 1px solid #cae0f3;
  padding: 8px 12px;
  background: #fff;
  color: #496a8d;
  font-size: 0.82rem;
}

.products-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(18, 58, 95, 0.08);
  padding: 20px;
  transition: 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #9ec7eb;
  box-shadow: 0 20px 36px rgba(18, 58, 95, 0.16);
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border: 1px solid #d6e7f6;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--heading);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.slider-shell {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollSlides 28s linear infinite;
}

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

.slide {
  width: min(80vw, 300px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #cfe2f4;
  position: relative;
  background: #fff;
}

.slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.slide span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(9, 41, 71, 0.72);
  color: #fff;
  font-size: 0.78rem;
  padding: 6px 10px;
}

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

.usp {
  background: linear-gradient(180deg, #f8fbff, #eef5fd);
  border-block: 1px solid #dce8f5;
}

.usp-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.usp-media {
  border-radius: 18px;
  border: 1px solid #cfe1f3;
  overflow: hidden;
  background: #fff;
}

.usp-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.usp-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.usp-list li {
  list-style: none;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8e6f5;
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  border-bottom: 1px solid #dfebf8;
  padding: 12px;
  text-align: left;
}

th {
  background: #f3f8ff;
  color: #153f68;
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px 14px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: #113c65;
  line-height: 1.1;
}

.reviews-grid,
.faq-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stars {
  color: #f2b324;
  margin-bottom: 8px;
}

.faq-item {
  border: 1px solid #d3e3f4;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.faq-item h3 {
  color: #133f68;
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  gap: 16px;
  align-items: start;
}

.form-box,
.contact-box {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ccddf0;
  padding: 11px;
  font: inherit;
  color: #294c6d;
}

.form-grid button {
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  cursor: pointer;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 12px;
}

.contact-list a {
  color: #145185;
  font-weight: 600;
}

.contact-address {
  margin: -2px 0 0;
  line-height: 1.65;
  color: #274a6b;
  font-style: normal;
}

.map {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 12px;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid #d8e7f6;
  text-align: center;
  background: #f6fafe;
}

.float-wa,
.float-call {
  position: fixed;
  right: 14px;
  border-radius: 999px;
  padding: 11px 14px;
  color: #fff;
  font-weight: 700;
  z-index: 1100;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.float-wa {
  bottom: 16px;
  background: #18a44c;
}

.float-call {
  bottom: 68px;
  background: #186fd8;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: 0.65s ease;
}

.js .reveal.reveal-init {
  opacity: 0;
  transform: translateY(20px);
}

.js .reveal.reveal-init.visible {
  opacity: 1;
  transform: translateY(0);
}

.seo-page .hero {
  padding-top: clamp(56px, 9vw, 90px);
}

.seo-page article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 10px 32px rgba(17, 62, 100, 0.08);
}

.seo-page h1 {
  color: var(--heading);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.seo-page h2 {
  color: #133f67;
  margin: 20px 0 8px;
  font-size: clamp(1.16rem, 2.3vw, 1.55rem);
}

.seo-page p {
  margin-bottom: 10px;
}

.related-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.related-links a {
  color: #14548a;
  font-weight: 600;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .menu-btn,
  .mobile-nav {
    display: none !important;
  }

  .hero-grid,
  .usp-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-row {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .trust-icons {
    justify-content: flex-end;
  }
}

@media (max-width: 639px) {
  .nav {
    gap: 6px;
    padding: 10px 11px;
  }

  .brand {
    font-size: 0.84rem;
    max-width: 120px;
    line-height: 1.15;
  }

  .brand small {
    display: none;
  }

  .nav .btn {
    padding: 9px 12px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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