:root {
  --blue-deep: #072a49;
  --blue: #0f7ae5;
  --green: #16a34a;
  --blue-mid: #2dc6d9;
  --aqua: #69d9ff;
  --aqua-pale: #ebf8ff;
  --blue-pale: #eef7ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --bg: #f4f9ff;
  --text: #123447;
  --muted: #5f7690;
  --border: rgba(7, 42, 73, 0.12);
  --radius: 24px;
  --shadow: 0 24px 60px rgba(7, 42, 73, 0.12);
  --container: 1200px;
  --font-display: "Sora", "Inter", sans-serif;
}

/* Preloader: simple circular spinner */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 1);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid rgba(15,122,229,0.12);
  border-top-color: var(--blue);
  box-shadow: 0 10px 24px rgba(15,122,229,0.08);
  animation: spin 900ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

body.preloader-active { overflow: hidden; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 198, 217, 0.18), transparent 28%),
    radial-gradient(circle at 85% 5%, rgba(15, 122, 229, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(115, 218, 255, 0.16), transparent 30%),
    linear-gradient(120deg, #f9fdff 0%, #eef7ff 40%, #e1f4ff 70%, #cfeeff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.18; /* reduce brightness overlay */
}

/* subtle glow kept very low so content remains visible */
body::after {
  content: "";
  position: fixed;
  inset: -8%;
  background: radial-gradient(circle at 12% 10%, rgba(45,198,217,0.08), transparent 30%), radial-gradient(circle at 88% 4%, rgba(22,163,74,0.06), transparent 26%);
  pointer-events: none;
  opacity: 0.16;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue));
  box-shadow: 0 0 18px rgba(45, 198, 217, 0.6);
}

/* custom cursor was removed to reduce weight */

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(15, 122, 229, 0.22); color: var(--blue-deep); }

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 0.6em;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--blue-deep);
}

p { margin: 0 0 1em; color: var(--muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Ensure sections don't get hidden under sticky header when targeted */
.section { scroll-margin-top: 92px; }

/* Remove default browser focus outline on sections targeted by anchors,
   but keep an accessible visible ring for keyboard users via :focus-visible */
.section:focus { outline: none; }
.section:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(15,122,229,0.08);
  border-radius: 12px;
}

/* Reserve space for product and hero images to avoid layout shifts */
.product-media { display: block; min-height: 80px; display: grid; place-items: center; }
.product-media img { width: 100%; height: auto; object-fit: contain;}
.hero-visual img { width: 100%; height: auto; object-fit: contain; }
.trust-logo { width: 140px; height: auto; }



body.preloader-active { overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 42, 73, 0.08);
  box-shadow: 0 10px 30px rgba(7, 42, 73, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-right: auto;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--blue-deep);
}

.brand-word span { color: var(--blue); }

.brand-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding-left: 8px;
}

.main-nav { display: flex; align-items: center; gap: 22px; }

.main-nav a {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  position: relative;
  transition: color 0.32s cubic-bezier(.2,.8,.2,1), transform 0.22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.36s cubic-bezier(.2,.8,.2,1);
}

.main-nav a:hover,
.main-nav a.active { color: var(--blue); transform: translateY(-2px); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(15, 122, 229, 0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--blue-deep);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn-small { padding: 9px 18px; font-size: 0.88rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(15, 122, 229, 0.22);
}

.btn-primary:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 20px 36px rgba(15, 122, 229, 0.3); }

.btn-ghost {
  background: rgb(255, 255, 255);
  color: var(--blue-deep);
  border-color: var(--border);
}

.btn-ghost:hover { background: var(--blue); border-color: var(--blue); color: var(--surface-strong); }

.hero {
  position: relative;
  padding: 56px 0 86px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 420px at 85% 0%, rgba(45, 198, 217, 0.18), transparent 55%),
    radial-gradient(700px 360px at 0% 100%, rgba(15, 122, 229, 0.12), transparent 60%);
}

.hero-blobs { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.4;
  animation: blobMove 10s ease-in-out infinite alternate;
}
.blob-one { width: 260px; height: 260px; background: rgba(45,198,217,0.25); top: 6%; left: 4%; }
.blob-two { width: 220px; height: 220px; background: rgba(15,122,229,0.22); right: 2%; bottom: 14%; animation-duration: 12s; }
.blob-three { width: 180px; height: 180px; background: rgba(255,255,255,0.5); bottom: 6%; left: 50%; animation-duration: 9s; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  animation: fadeUp 0.95s ease both;
}

.hero-content { animation: fadeUp 1.05s ease both; }
.hero-lead { font-size: 1.08rem; max-width: 580px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }
.hero-actions .btn { animation: fadeUp 1.1s ease both; }
.hero-actions .btn:nth-child(2) { animation-delay: 0.1s; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  perspective: 1400px;
}

.hero-orb {
  position: relative;
  /* keep orb base size smaller so background doesn't grow */
  width: min(420px, 84vw);
  aspect-ratio: 1;
  border-radius: 38% 62% 54% 46% / 44% 38% 62% 56%;
  padding: 24px;
  background: linear-gradient(145deg, rgba(45,198,217,0.95), rgba(15,122,229,0.95));
  box-shadow: 0 30px 70px rgba(15, 122, 229, 0.28);
  animation: floatOrb 6.8s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.hero-orb::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: inherit;
}

.orb-core {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  overflow: visible; /* allow image to overflow outside the core */
  position: relative;
}

.orb-core img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130%; /* bottle twice the size of the orb */
  max-width: none;
  transform: translate(-50%, -50%); /* center the image relative to the orb */
  z-index: 3;
  filter: drop-shadow(0 36px 48px rgba(7,42,73,0.22));
  pointer-events: none;
}

.orb-ring {
  position: absolute;
  inset: -12px;
  border: 1px dashed rgba(255,255,255,0.34);
  border-radius: inherit;
  animation: spin 14s linear infinite;
}

.orb-ring.ring-b { inset: 8px; animation-duration: 10s; animation-direction: reverse; }

.hero-panel {
  position: absolute;
  right: 0px;
  bottom: 24px;
  min-width: 160px; /* smaller panel */
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,42,73,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.35s ease;
  z-index: 8;
}

.panel-chip {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--aqua-pale);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel strong { color: var(--blue-deep); font-family: var(--font-display); font-size: 1rem; }
.hero-panel span { color: var(--muted); font-size: 0.82rem; }

.marquee {
  background: linear-gradient(90deg, var(--blue-deep), #0d4f78 70%, var(--blue));
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  animation: marquee-scroll 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0;
}

.marquee-track .dot { color: var(--aqua); }

@keyframes marquee-scroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }
@keyframes floatOrb { 0%,100%{ transform: translateY(0) rotate(0);} 50%{ transform: translateY(-10px) rotate(2deg);} }
@keyframes spin { to { transform: rotate(360deg);} }
@keyframes blobMove { from { transform: translate3d(0,0,0) scale(1);} to { transform: translate3d(30px,-40px,0) scale(1.08);} }
@keyframes glowPulse { from { transform: scale(0.98); opacity: 0.6; } to { transform: scale(1.02); opacity: 0.9; } }
@keyframes fillDrop { 0% { height: 0; } 60% { height: 100%; } 100% { height: 100%; } }
@keyframes dropFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@keyframes wavePulse { 0%,100% { transform: scaleX(0.94); opacity: 0.4; } 50% { transform: scaleX(1.04); opacity: 0.7; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gentleFloat { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-orb, .orb-ring, .reveal, .animated-card, .hero-content, .hero-actions .btn, .hero h1, .preloader__drop, .preloader__drop-fill, .preloader__wave, body::after { animation: none; transition: none; }
}

.section { padding: 80px 0; }
.section-alt {
  /*background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(225, 243, 255, 0.92), rgba(209, 242, 255, 0.95));*/
  background: linear-gradient(
    135deg,
    #072a49 0%,
    #0a355c 50%,
    #0d4270 100%
);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,198,217,0.16), transparent 70%);
  pointer-events: none;
}

.section-alt::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,122,229,0.12), transparent 70%);
  pointer-events: none;
}

.eyebrow-center { display: flex; justify-content: center; }
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.section-wave {
  margin-top: -8px;
  line-height: 0;
}

.section-wave svg {
  width: 100%;
  height: 90px;
  fill: rgba(255,255,255,0.9);
}
.section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover,
.value-card:hover,
.product-card:hover,
.faq-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 46px rgba(7, 42, 73, 0.16);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.stat-label { color: var(--muted); font-weight: 600; font-size: 0.88rem; margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,122,229,0.12), rgba(45,198,217,0.16));
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.93rem; margin-bottom: 0; }

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

.product-card {
  background: rgb(255, 255, 255);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.animated-card { animation: gentleFloat 7s ease-in-out infinite; }
.animated-card:nth-child(2n) { animation-duration: 8.2s; }
.animated-card:nth-child(3n) { animation-duration: 6.8s; }

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,198,217,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover {
  transform: translateY(0px) scale(1.02);
  box-shadow: 0 24px 48px rgba(7,42,73,0.18);
  border-color: rgba(15,122,229,0.28);
}

.product-card:hover::before { opacity: 2; }

.product-media {
  height: 80%;
  border-radius: 12px;
  display: flex;
  margin: 10px;
  align-items: center;
  justify-content: center;
  z-index: 9990;
}

.product-media img {
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop and fill the box, centering on the bottle */
  object-position: 50% 30%; /* favor upper center where bottle usually sits */
  box-shadow: 0 8px 18px rgba(7,42,73,0.06);
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--aqua-pale);
}

.product-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-card p { font-size: 0.93rem; flex-grow: 1; }
.product-link { font-weight: 700; font-size: 0.92rem; margin-top: 8px; color: var(--blue); }
.product-link:hover { text-decoration: underline; }

.product-note {
  text-align: center;
  margin-top: 44px;
  padding: 30px;
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--aqua-pale);
  color: var(--blue-deep);
}

.product-note strong { display: block; margin-bottom: 6px; font-size: 1.1rem; }
.product-note a { color: var(--blue); font-weight: 700; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(15,122,229,0.18), rgba(45,198,217,0.3));
  z-index: 0;
}

.timeline-item { position: relative; text-align: center; z-index: 1; }
.timeline-marker {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.2rem;
  border: 4px solid var(--surface-strong);
}
.timeline-item h3 { font-size: 1.05rem; }
.timeline-item p { font-size: 0.92rem; margin-bottom: 0; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 12px 24px rgba(7,42,73,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-size: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-size: 1.3rem; color: var(--blue); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 14px 0 0; font-size: 0.94rem; }

.trust-banner {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  text-align: center;
}
.trust-inner { max-width: 680px; margin: 0 auto; }
.trust-logo { height: 60px; margin: 0 auto 22px; filter: brightness(0) invert(1); }
.trust-banner h2 { color: #fff; }
.trust-banner p { color: rgba(255,255,255,0.84); }

.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-word span { color: var(--aqua); }
.footer-brand .brand-tag { color: rgba(255,255,255,0.6); border-left-color: rgba(255,255,255,0.25); }
.footer-distributor { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 14px; margin-top: 10px; }
.footer-distributor img { height: 22px; width: auto; border-radius: 4px; background: #fff; padding: 2px 4px; }
.footer-distributor span { font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-family: "Inter", sans-serif; }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom p { color: inherit; margin-bottom: 6px; }

.shop-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(15, 122, 229, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-fab svg { width: 18px; height: 18px; }
.shop-fab:hover { transform: translateY(-2px); box-shadow: 0 22px 42px rgba(15, 122, 229, 0.4); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 65;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--blue-deep);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px) scale(1);
  transition: opacity 0.28s cubic-bezier(.2,.8,.2,1), transform 0.18s cubic-bezier(.2,.8,.2,1);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }

/* tactile press effect when clicking */
.back-to-top.pressed { transform: translateY(0) scale(0.94); transition: transform 0.12s ease; }

.footer-cta h2 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.6rem); }

.gd-whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: auto;
  height: 30px;
  padding: 18px 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  transition: 0.25s ease;
}
.gd-whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35); }
.gd-whatsapp-float svg { width: 28px; height: 28px; display: block; }
.gd-whatsapp-float i { color: #fff; font-size: 36px; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; max-width: 420px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .nav-cta { display: none; }
  .cursor, .cursor-ring { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border);
    gap: 16px;
    padding: 20px 24px;
  }
  .site-header.nav-open .main-nav .nav-cta { display: inline-flex; margin-top: 4px; }
  .hero { padding: 56px 0 46px; }
  .section { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { top: 0; bottom: 0; left: 24px; right: auto; width: 2px; height: auto; }
  .timeline-item { text-align: left; padding-left: 68px; }
  .timeline-marker { position: absolute; top: 0; left: 0; margin: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .shop-fab span { display: none; }
  .hero-panel { right: 12px; bottom: -4px; min-width: 180px; transform: none; }
}

@media (max-width: 768px) {
  .gd-whatsapp-float { width: 58px; height: 58px; left: 18px; bottom: 18px; }
  .gd-whatsapp-float img { width: 30px; height: 30px; }
  .gd-whatsapp-float span { display: none; }
}