:root {
  --primary: #005ba3;
  --primary-dark: #003d6b;
  --primary-soft: #eaf5ff;
  --accent: #f6b63d;
  --accent-soft: #fff4d7;
  --ink: #111827;
  --muted: #5b6476;
  --light: #f6f9fc;
  --border: #e6edf5;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f6f8;
  color: var(--ink);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.page-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-strong {
  transform: translateY(72px) scale(0.92);
  transition-duration: 1.05s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-strong.visible {
  transform: translateY(0) scale(1);
}

.feature-showcase,
.category-showcase {
  width: 100%;
  margin: 0;
  padding: 5rem 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.feature-showcase {
  background: linear-gradient(135deg, rgba(0, 91, 163, 0.08), rgba(13, 157, 220, 0.03) 35%, rgba(255, 255, 255, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.feature-showcase::before,
.category-showcase::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(18px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.category-showcase {
  background: linear-gradient(135deg, rgba(246, 182, 61, 0.12), rgba(255, 243, 212, 0.18) 35%, rgba(255, 255, 255, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.navbar {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(0, 91, 163, 0.08);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  letter-spacing: -0.04em;
  font-size: 1.55rem;
  color: var(--primary) !important;
  font-weight: 900;
}

.nav-link {
  color: var(--ink) !important;
  font-weight: 500;
  padding: 0.7rem 0.9rem !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary) !important;
}

.navbar .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 12px;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #eaf3fb 0%, #f4f8fc 100%);
  border-bottom: 1px solid rgba(17, 24, 39, 0.04);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -15% -10% -10% -10%;
  background:
    radial-gradient(circle at 15% 25%, rgba(125, 196, 255, 0.45), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(0, 91, 163, 0.13), transparent 26%),
    radial-gradient(circle at 60% 75%, rgba(181, 222, 255, 0.26), transparent 28%),
    linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  animation: bgFloat 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 63, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 63, 94, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity: 0.7;
  animation: gridPan 22s linear infinite;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.hero-inner {
  min-height: 620px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.hero .badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(0, 91, 163, 0.10);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.015em;
  box-shadow: 0 10px 24px rgba(24, 59, 92, 0.05);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9ddc, #005ba3);
  box-shadow: 0 0 0 6px rgba(13, 157, 220, 0.12);
}

.hero-title-box {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero h1 {
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.92;
  font-size: clamp(2.7rem, 4vw, 4.3rem);
  color: var(--ink);
  margin: 0;
  max-width: 540px;
}

.hero-line {
  display: block;
}

.text-gradient {
  background: linear-gradient(90deg, #005ba3 0%, #0d9ddc 55%, #3ab5d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: var(--muted) !important;
  font-size: 1.08rem;
  max-width: 640px;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.hero-actions {
  margin-top: 0.5rem;
}

.hero .btn {
  border-radius: 14px;
  padding: 0.95rem 1.75rem;
  font-weight: 700;
  min-width: 170px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero .btn:hover {
  transform: translateY(-2px);
}

.hero .btn-primary {
  box-shadow: 0 18px 28px rgba(0, 91, 163, 0.18);
  background: linear-gradient(135deg, #005ba3, #0d9ddc);
  border-color: transparent;
}

.hero-metrics {
  animation: fadeUp 0.9s ease 0.2s both;
}

.metric-pill {
  min-width: 110px;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 24, 39, 0.05);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.metric-pill strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.metric-pill span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  animation: floatCard 9s ease-in-out infinite;
  padding-right: 0.5rem;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.8;
  animation: orbPulse 10s ease-in-out infinite alternate;
}

.orb-one {
  width: 250px;
  height: 250px;
  background: rgba(87, 171, 255, 0.18);
  top: 20px;
  right: 30px;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: rgba(145, 214, 255, 0.18);
  bottom: 20px;
  left: 40px;
}

.visual-card {
  position: relative;
  width: min(100%, 660px);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  z-index: 1;
}

.visual-card img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.visual-card:hover img {
  transform: scale(1.04);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes orbPulse {
  0% { transform: scale(0.95) translate3d(0, 0, 0); opacity: 0.5; }
  100% { transform: scale(1.12) translate3d(8px, -8px, 0); opacity: 0.9; }
}

@keyframes bgFloat {
  0% { transform: translate3d(-18px, 0, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(18px, -12px, 0) scale(1.05) rotate(1.5deg); }
  100% { transform: translate3d(24px, 10px, 0) scale(1.12) rotate(-1deg); }
}

@keyframes gridPan {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -16px, 0); }
  100% { transform: translate3d(-12px, 12px, 0); }
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 22px rgba(0, 91, 163, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: rgba(0, 91, 163, 0.25);
  border-radius: 12px;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.section-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 91, 163, 0.10);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(24, 59, 92, 0.04);
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9ddc, #005ba3);
  box-shadow: 0 0 0 5px rgba(13, 157, 220, 0.12);
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.08rem;
}

.feature-card,
.category-card,
.product-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 22px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.feature-card:hover,
.category-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(23, 35, 48, 0.09);
}

.feature-card {
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-soft), #dff2ff);
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(0, 91, 163, 0.04);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.category-card p,
.product-card p {
  color: var(--muted);
}

.category-card {
  padding: 1.6rem;
  height: 100%;
}

.category-card .icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-soft), #fff9eb);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}

.product-card {
  overflow: hidden;
  transform: translateZ(0);
}

.parallax-item {
  will-change: transform;
  transition: transform 0.25s ease-out;
}

.product-page-header {
  padding-top: 1rem;
}

.product-page-header .section-title {
  margin-bottom: 1.2rem;
}

.product-filters {
  margin-bottom: 2rem;
}

.product-filters .btn {
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.product-filters .btn:hover {
  transform: translateY(-2px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #edf4fb;
}

.product-card .badge-soft {
  display: inline-block;
  background: rgba(0, 91, 163, 0.09);
  border: 1px solid rgba(0, 91, 163, 0.12);
  color: var(--primary-dark);
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card h5 {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.product-card .btn {
  border-radius: 12px;
  font-weight: 700;
}

.cta-banner {
  background: linear-gradient(135deg, #2d1d1d 0%, #5c1f1f 28%, #8d1d1d 60%, #b33d2d 100%);
  border-radius: 28px;
  color: var(--white);
  padding: 3rem 2rem;
  box-shadow: 0 24px 50px rgba(95, 25, 8, 0.18);
}

.cta-banner h2 {
  font-size: clamp(2rem, 2.5vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
}

.product-page-header {
  padding-top: 0.5rem;
}

.about-image-wrap,
.contact-panel,
.contact-form-card,
.about-story-box,
.about-stat-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.05);
}

.about-image-wrap {
  padding: 1rem;
}

.about-story-box {
  padding: 2rem;
}

.about-feature-grid {
  display: grid;
  gap: 1.25rem;
}

.about-stat-card {
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
}

.about-stat-card strong {
  display: block;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.about-stat-card span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.contact-showcase {
  position: relative;
}

.contact-panel,
.contact-form-card {
  padding: 2rem;
  border-radius: 30px;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(234,245,255,0.92));
  border: 1px solid rgba(17, 24, 39, 0.04);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.06);
}

.contact-form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,250,255,0.94));
  border: 1px solid rgba(17, 24, 39, 0.04);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.05);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 91, 163, 0.08);
  border: 1px solid rgba(0, 91, 163, 0.08);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26b56d;
  box-shadow: 0 0 0 4px rgba(38, 181, 109, 0.12);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 91, 163, 0.06);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-soft), #dff3ff);
  color: var(--primary-dark);
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(0, 91, 163, 0.04);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-item span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-actions {
  margin-top: 1.5rem;
}

.form-caption {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-label {
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-control {
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 0.85rem 0.95rem;
  background: #fff;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: rgba(0, 91, 163, 0.35);
  box-shadow: 0 0 0 0.2rem rgba(0, 91, 163, 0.08);
}

.contact-metrics {
  margin-top: 1.5rem;
}

.site-footer {
  background: linear-gradient(135deg, #0d1117 0%, #121b26 28%, #1a2433 58%, #0e141d 100%);
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer .footer-main {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.site-footer h5,
.site-footer h6,
.site-footer .text-white {
  color: #fff;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
  text-decoration: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #fff;
}

.footer-socials {
  margin-top: 1.5rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  color: #fff;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.footer-contact .icon {
  min-width: 18px;
  display: inline-block;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(12, 17, 24, 0.96), rgba(19, 28, 38, 0.9), rgba(12, 17, 24, 0.96));
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.site-footer .btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-footer .btn-outline-primary:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.product-detail-shell {
  margin-top: 0.5rem;
}

.detail-media-card,
.detail-info-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.05);
}

.detail-media-card {
  padding: 1rem;
}

.detail-info-card {
  padding: 2rem;
}

.product-detail-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  min-height: 420px;
  display: block;
}

.gallery-thumb {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: linear-gradient(135deg, rgba(234,245,255,0.72), rgba(255,255,255,0.9));
  border: 1px solid rgba(0, 91, 163, 0.08);
  border-radius: 18px;
  padding: 1rem;
}

.detail-specs .label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.detail-specs strong {
  font-size: 1rem;
  color: var(--ink);
}

.detail-description {
  color: var(--muted);
  line-height: 1.9;
}

.text-gradient-alt {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .page-section {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    line-height: 1.12;
  }
}

