/* ================================================
   SUPER CLOAN — Ultra Premium CSS
   Mondal Enterprise | Midnight Navy Edition
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --navy: #0B132B;
  --navy2: #111d3c;
  --ice: #EAF6FF;
  --white: #FFFFFF;
  --mint: #2EE6A6;
  --aqua: #3BA7FF;
  --lavender: #A78BFA;
  --neutral: #F1F5F9;
  --text: #1e293b;
  --muted: #64748b;
  --border: rgba(59, 167, 255, 0.15);

  --grad-fresh: linear-gradient(135deg, #3BA7FF 0%, #2EE6A6 100%);
  --grad-luxury: linear-gradient(135deg, #A78BFA 0%, #3BA7FF 100%);
  --grad-hero: linear-gradient(160deg, #0B132B 0%, #0d1f4a 50%, #0a2a5e 100%);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(234, 246, 255, 0.7));

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 8px 32px rgba(11, 19, 43, 0.10);

  --shadow-sm: 0 2px 12px rgba(11, 19, 43, 0.07);
  --shadow-md: 0 8px 32px rgba(11, 19, 43, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 19, 43, 0.14);
  --shadow-xl: 0 32px 80px rgba(11, 19, 43, 0.18);

  --glow-mint: 0 0 40px rgba(46, 230, 166, 0.30);
  --glow-aqua: 0 0 40px rgba(59, 167, 255, 0.30);
  --glow-lav: 0 0 40px rgba(167, 139, 250, 0.25);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
}

/* ── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--ice);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ice);
}

::-webkit-scrollbar-thumb {
  background: var(--grad-fresh);
  border-radius: 3px;
}

/* ================================================
   LOADER  — Premium Redesign
   ================================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060d1f;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1), visibility .9s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── Animated mesh background ── */
.ld-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(59, 167, 255, .18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(46, 230, 166, .14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(167, 139, 250, .10) 0%, transparent 60%);
  animation: bgShift 6s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% {
    opacity: .7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.06);
  }
}

/* ── Floating orbs ── */
.ld-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbDrift ease-in-out infinite alternate;
}

.ld-orb1 {
  width: 320px;
  height: 320px;
  background: rgba(59, 167, 255, .2);
  top: -80px;
  left: -60px;
  animation-duration: 7s;
}

.ld-orb2 {
  width: 260px;
  height: 260px;
  background: rgba(46, 230, 166, .15);
  bottom: -60px;
  right: -40px;
  animation-duration: 9s;
  animation-delay: 1s;
}

.ld-orb3 {
  width: 180px;
  height: 180px;
  background: rgba(167, 139, 250, .18);
  top: 40%;
  right: 10%;
  animation-duration: 5s;
  animation-delay: .5s;
}

@keyframes orbDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(20px, 15px) scale(1.1);
  }
}

/* ── Rising bubbles ── */
.ld-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ld-bub {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .6), rgba(59, 167, 255, .3));
  border: 1px solid rgba(255, 255, 255, .25);
  animation: bubRise linear infinite;
}

.ld-bub:nth-child(1) {
  width: 14px;
  height: 14px;
  left: 8%;
  animation-duration: 5.5s;
  animation-delay: 0s;
}

.ld-bub:nth-child(2) {
  width: 22px;
  height: 22px;
  left: 18%;
  animation-duration: 7s;
  animation-delay: .8s;
}

.ld-bub:nth-child(3) {
  width: 10px;
  height: 10px;
  left: 30%;
  animation-duration: 4.5s;
  animation-delay: 1.4s;
}

.ld-bub:nth-child(4) {
  width: 18px;
  height: 18px;
  left: 45%;
  animation-duration: 6.5s;
  animation-delay: .3s;
}

.ld-bub:nth-child(5) {
  width: 26px;
  height: 26px;
  left: 58%;
  animation-duration: 8s;
  animation-delay: 1.8s;
}

.ld-bub:nth-child(6) {
  width: 12px;
  height: 12px;
  left: 70%;
  animation-duration: 5s;
  animation-delay: .6s;
}

.ld-bub:nth-child(7) {
  width: 20px;
  height: 20px;
  left: 82%;
  animation-duration: 7.5s;
  animation-delay: 1.1s;
}

.ld-bub:nth-child(8) {
  width: 8px;
  height: 8px;
  left: 92%;
  animation-duration: 4s;
  animation-delay: 2s;
}

.ld-bub:nth-child(9) {
  width: 16px;
  height: 16px;
  left: 25%;
  animation-duration: 6s;
  animation-delay: 2.5s;
}

.ld-bub:nth-child(10) {
  width: 24px;
  height: 24px;
  left: 65%;
  animation-duration: 9s;
  animation-delay: .2s;
}

@keyframes bubRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: .8;
  }

  80% {
    opacity: .4;
  }

  100% {
    transform: translateY(-110vh) scale(.6);
    opacity: 0;
  }
}

/* ── Center card ── */
.ld-card {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  padding: 40px 48px 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .08);
  animation: cardIn .6s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes cardIn {
  0% {
    opacity: 0;
    transform: scale(.85) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Logo ring */
.ld-logo-ring {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
}

.ld-logo-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--mint), var(--aqua), var(--lavender), var(--mint));
  animation: ringRotate 2.5s linear infinite;
  padding: 3px;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

.ld-logo-ring img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(59, 167, 255, .4);
  animation: logoBreathe 2.5s ease-in-out infinite;
}

@keyframes logoBreathe {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(59, 167, 255, .4);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 12px 48px rgba(59, 167, 255, .65);
  }
}

/* Brand name */
.ld-brand {
  text-align: center;
  margin-bottom: 6px;
}

.ld-brand .ld-s {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  display: block;
  margin-bottom: 4px;
}

.ld-brand .ld-c {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 6px;
  background: var(--grad-fresh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* Tagline */
.ld-tag {
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Progress track */
.ld-track {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}

.ld-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--grad-fresh);
  animation: ldFill 2s cubic-bezier(.4, 0, .2, 1) forwards;
  box-shadow: 0 0 10px rgba(46, 230, 166, .6);
}

@keyframes ldFill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* Dots */
.ld-dots {
  display: flex;
  gap: 6px;
}

.ld-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  animation: dotPop .6s ease-in-out infinite alternate;
}

.ld-dot:nth-child(1) {
  animation-delay: 0s;
}

.ld-dot:nth-child(2) {
  animation-delay: .15s;
}

.ld-dot:nth-child(3) {
  animation-delay: .3s;
}

@keyframes dotPop {
  0% {
    background: rgba(255, 255, 255, .2);
    transform: scale(1);
  }

  100% {
    background: var(--mint);
    transform: scale(1.5);
  }
}

/* ── Sparkles ── */
.ld-sparkle {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  animation: spkTwinkle ease-in-out infinite;
}

@keyframes spkTwinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

/* ================================================
   NAVBAR
   ================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: all .4s ease;
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: all .4s ease;
}

/* Transparent on dark hero */
#navbar.hero-nav .nav-wrap {
  background: transparent;
}

#navbar.hero-nav.scrolled .nav-wrap {
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 32px rgba(11, 19, 43, 0.4);
  border-bottom: 1px solid rgba(59, 167, 255, 0.12);
}

/* Glass on light pages */
#navbar.light-nav .nav-wrap {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(59, 167, 255, 0.1);
}

#navbar.light-nav.scrolled .nav-wrap {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: cover;
}

.nav-logo-text .nt1 {
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .5px;
}

.nav-logo-text .nt2 {
  font-size: .68rem;
  font-weight: 400;
  opacity: .6;
}

#navbar.hero-nav .nt1 {
  color: white;
}

#navbar.hero-nav .nt2 {
  color: rgba(255, 255, 255, .6);
}

#navbar.light-nav .nt1 {
  color: var(--navy);
}

#navbar.light-nav .nt2 {
  color: var(--muted);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-fresh);
  border-radius: 2px;
  transition: width .3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Desktop nav link colors — scoped to .nav-links only */
#navbar.hero-nav .nav-links .nav-link {
  color: rgba(255, 255, 255, .75);
}

#navbar.hero-nav .nav-links .nav-link:hover,
#navbar.hero-nav .nav-links .nav-link.active {
  color: var(--mint);
}

#navbar.light-nav .nav-links .nav-link {
  color: var(--muted);
}

#navbar.light-nav .nav-links .nav-link:hover,
#navbar.light-nav .nav-links .nav-link.active {
  color: var(--navy);
}

/* CTA button */
.nav-btn {
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  background: var(--grad-fresh);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(46, 230, 166, 0.35);
  transition: all .3s;
  white-space: nowrap;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 230, 166, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, .08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

#navbar.hero-nav .hamburger span {
  background: white;
}

#navbar.light-nav .hamburger span {
  background: var(--navy);
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav — fixed, full-width, scrollable */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  max-height: calc(100dvh - 62px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(8, 16, 40, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 6px 0 28px;
  border-bottom: 1px solid rgba(59, 167, 255, .15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
  z-index: 499;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ── Each nav link row ── */
.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  font-weight: 500;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-decoration: none;
  transition: background .2s, color .2s;
  overflow: hidden;
  position: relative;
}

/* Left accent bar — always present, transparent by default */
.mobile-nav .nav-link::before {
  content: '';
  display: block;
  width: 4px;
  min-width: 4px;
  align-self: stretch;
  background: transparent;
  transition: background .2s;
  flex-shrink: 0;
}

/* Link text padding */
.mobile-nav .nav-link span,
.mobile-nav .nav-link:not(.nav-btn) {
  padding: 16px 20px;
}

/* Wrap text in span for padding — fallback: pad the link itself */
.mobile-nav a.nav-link {
  padding: 16px 20px 16px 16px;
}

/* Active state — mint bar + mint text + subtle bg */
.mobile-nav .nav-link.active {
  color: var(--mint);
  background: rgba(46, 230, 166, .07);
  font-weight: 700;
}

.mobile-nav .nav-link.active::before {
  background: var(--grad-fresh);
  box-shadow: 0 0 8px rgba(46, 230, 166, .6);
}

/* Hover state */
.mobile-nav .nav-link:hover:not(.active) {
  color: rgba(255, 255, 255, .9);
  background: rgba(59, 167, 255, .06);
}

.mobile-nav .nav-link:hover:not(.active)::before {
  background: rgba(59, 167, 255, .4);
}

/* Order Now button */
.mobile-nav .nav-btn {
  display: block;
  margin: 20px 20px 0;
  padding: 15px 20px;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 50px;
  background: var(--grad-fresh);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(46, 230, 166, .35), 0 0 0 1px rgba(46, 230, 166, .2);
  transition: all .3s;
}

.mobile-nav .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 230, 166, .5);
}

/* Remove desktop underline effect from mobile nav links */
.mobile-nav .nav-link::after {
  display: none;
}

@media(max-width:768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-wrap {
    height: 62px;
  }

  .mobile-nav {
    top: 62px;
    max-height: calc(100dvh - 62px);
  }
}

@media(max-width:480px) {
  .nav-wrap {
    padding: 0 16px;
    height: 58px;
  }

  .mobile-nav {
    top: 58px;
    max-height: calc(100dvh - 58px);
  }

  .mobile-nav a.nav-link {
    padding: 14px 16px 14px 14px;
    font-size: .95rem;
  }

  .mobile-nav .nav-btn {
    margin: 16px 16px 0;
    padding: 14px;
  }
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .3s;
}

.wa-btn:hover {
  transform: scale(1.12);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5), 0 0 0 14px rgba(37, 211, 102, .1);
  }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .55s;
}

.btn:hover::before {
  left: 150%;
}

.btn-fresh {
  background: var(--grad-fresh);
  color: var(--navy);
  padding: 14px 30px;
  font-size: .95rem;
  box-shadow: 0 6px 24px rgba(46, 230, 166, .35);
}

.btn-fresh:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(46, 230, 166, .5);
}

.btn-luxury {
  background: var(--grad-luxury);
  color: white;
  padding: 14px 30px;
  font-size: .95rem;
  box-shadow: 0 6px 24px rgba(167, 139, 250, .35);
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(167, 139, 250, .5);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .3);
  padding: 13px 28px;
  font-size: .95rem;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  padding: 13px 28px;
  font-size: .95rem;
}

.btn-outline-navy:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  transform: translateY(-2px);
}

/* ================================================
   LAYOUT HELPERS
   ================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--grad-fresh);
  border-radius: 2px;
}

.heading-xl {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
}

.heading-lg {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
}

.heading-md {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.body-lg {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.body-md {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted);
}

.grad-text-fresh {
  background: var(--grad-fresh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text-luxury {
  background: var(--grad-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   GLASS CARD
   ================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
}

.glass-dark {
  background: rgba(11, 19, 43, .65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 167, 255, .15);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 40px rgba(11, 19, 43, .4);
}

.card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid rgba(59, 167, 255, .1);
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 167, 255, .2);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: .5;
}

.orb-a {
  width: 600px;
  height: 600px;
  background: rgba(59, 167, 255, .18);
  top: -150px;
  right: -100px;
}

.orb-b {
  width: 450px;
  height: 450px;
  background: rgba(46, 230, 166, .12);
  bottom: -100px;
  left: -80px;
}

.orb-c {
  width: 300px;
  height: 300px;
  background: rgba(167, 139, 250, .1);
  top: 40%;
  left: 35%;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 28px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 20px 60px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 230, 166, .12);
  border: 1px solid rgba(46, 230, 166, .3);
  border-radius: 50px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: dotBlink 1.4s ease-in-out infinite;
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.4);
  }
}

.hero-badge span {
  color: var(--mint);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

@media(max-width:900px) {
  .hero-sub {
    margin: 0 auto 36px;
  }
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media(max-width:900px) {
  .hero-actions {
    justify-content: center;
  }
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
}

@media(max-width:900px) {
  .hero-stats {
    justify-content: center;
  }
}

.hstat {
  text-align: center;
  padding: 0 24px;
}

.hstat:first-child {
  padding-left: 0;
}

.hstat-val {
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--grad-fresh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hstat-lbl {
  font-size: .68rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 4px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hstat-div {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
}

/* Product visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 167, 255, .18) 0%, rgba(46, 230, 166, .1) 50%, transparent 70%);
  animation: glowBreath 4s ease-in-out infinite;
}

@keyframes glowBreath {

  0%,
  100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

.hero-img {
  position: relative;
  z-index: 2;
  max-width: 360px;
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 32px 64px rgba(59, 167, 255, .4));
  animation: imgFloat 5s ease-in-out infinite;
}

@keyframes imgFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-22px) rotate(1.5deg);
  }
}

.hero-free-tag {
  position: absolute;
  top: 24px;
  right: 16px;
  z-index: 10;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--grad-luxury);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .68rem;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 6px 24px rgba(167, 139, 250, .5);
  animation: tagSpin 10s linear infinite;
}

@keyframes tagSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero-free-tag span {
  animation: tagSpinRev 10s linear infinite;
  display: block;
}

@keyframes tagSpinRev {
  to {
    transform: rotate(-360deg);
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hparticle {
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 167, 255, .5);
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: .7;
  }

  90% {
    opacity: .2;
  }

  100% {
    transform: translateY(-80px) scale(1);
    opacity: 0;
  }
}

/* ================================================
   SECTIONS — FEATURES
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 56px;
}

.feat-card {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid rgba(59, 167, 255, .1);
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-fresh);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.feat-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.fi-mint {
  background: rgba(46, 230, 166, .12);
}

.fi-aqua {
  background: rgba(59, 167, 255, .12);
}

.fi-lav {
  background: rgba(167, 139, 250, .12);
}

.fi-navy {
  background: rgba(11, 19, 43, .07);
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media(max-width:768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid rgba(59, 167, 255, .1);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}

.why-item:hover {
  border-color: var(--mint);
  box-shadow: 0 4px 20px rgba(46, 230, 166, .15);
  transform: translateX(6px);
}

.why-pip {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad-fresh);
  flex-shrink: 0;
  margin-top: 5px;
}

.why-item h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.why-item p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Product showcase */
.showcase-card {
  background: var(--grad-hero);
  border-radius: var(--r-2xl);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(59, 167, 255, .1);
  filter: blur(50px);
}

.showcase-img {
  width: 190px;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(59, 167, 255, .45));
  animation: imgFloat 5s ease-in-out infinite;
}

.showcase-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.sbadge {
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}

.sb-mint {
  background: rgba(46, 230, 166, .15);
  color: var(--mint);
  border: 1px solid rgba(46, 230, 166, .3);
}

.sb-aqua {
  background: rgba(59, 167, 255, .15);
  color: var(--aqua);
  border: 1px solid rgba(59, 167, 255, .3);
}

.sb-lav {
  background: rgba(167, 139, 250, .15);
  color: var(--lavender);
  border: 1px solid rgba(167, 139, 250, .3);
}

.showcase-price {
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--grad-fresh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1;
}

.showcase-weight {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  margin-top: 4px;
  margin-bottom: 22px;
}

/* ================================================
   COUNTERS
   ================================================ */
.counters-band {
  background: var(--grad-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.counters-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59, 167, 255, .12) 0%, transparent 70%);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media(max-width:640px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ctr-item {
  text-align: center;
}

.ctr-val {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad-fresh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ctr-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 8px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 56px;
}

.testi-card {
  padding: 30px;
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid rgba(59, 167, 255, .1);
  box-shadow: var(--shadow-sm);
  transition: all .35s;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 230, 166, .2);
}

.testi-stars {
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: #f59e0b;
}

.testi-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
}

.tav-mint {
  background: rgba(46, 230, 166, .15);
  color: var(--mint);
}

.tav-aqua {
  background: rgba(59, 167, 255, .15);
  color: var(--aqua);
}

.tav-lav {
  background: rgba(167, 139, 250, .15);
  color: var(--lavender);
}

.testi-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
}

.testi-loc {
  font-size: .74rem;
  color: var(--muted);
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--grad-hero);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 167, 255, .15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(46, 230, 166, .1) 0%, transparent 50%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(59, 167, 255, .14) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   ABOUT
   ================================================ */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media(max-width:768px) {
  .about-2col {
    grid-template-columns: 1fr;
  }
}

.info-pill {
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid rgba(59, 167, 255, .1);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--mint);
  margin-bottom: 16px;
}

.info-pill h4 {
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: 5px;
}

.info-pill p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  display: flex;
  flex-direction: column;
}

.tl-row {
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
}

.tl-row:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--mint), transparent);
}

.tl-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-fresh);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 12px rgba(46, 230, 166, .4);
}

.tl-body h4 {
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: 4px;
}

.tl-body p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ================================================
   PRODUCTS
   ================================================ */
.product-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media(max-width:768px) {
  .product-2col {
    grid-template-columns: 1fr;
  }
}

.product-img-box {
  background: var(--grad-hero);
  border-radius: var(--r-2xl);
  padding: 64px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 167, 255, .18) 0%, transparent 60%);
}

.product-img-box img {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(59, 167, 255, .45));
  animation: imgFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.spec-list {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
}

.spec-list tr {
  border-bottom: 1px solid var(--neutral);
}

.spec-list tr:last-child {
  border-bottom: none;
}

.spec-list td {
  padding: 11px 0;
  font-size: .88rem;
}

.spec-list td:first-child {
  color: var(--muted);
  width: 44%;
}

.spec-list td:last-child {
  font-weight: 600;
  color: var(--navy);
}

.price-big {
  font-size: 3.8rem;
  font-weight: 900;
  background: var(--grad-fresh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gal-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all .4s ease;
}

.gal-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(59, 167, 255, .2);
}

.gal-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 43, .8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay span {
  color: white;
  font-weight: 600;
  font-size: .88rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background .3s;
}

.lb-close:hover {
  background: rgba(255, 255, 255, .2);
}

/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

@media(max-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.ci-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid rgba(59, 167, 255, .1);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  transition: all .3s;
}

.ci-block:hover {
  border-color: var(--mint);
  box-shadow: 0 4px 20px rgba(46, 230, 166, .15);
}

.ci-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ci-ico-mint {
  background: rgba(46, 230, 166, .12);
}

.ci-ico-aqua {
  background: rgba(59, 167, 255, .12);
}

.ci-ico-lav {
  background: rgba(167, 139, 250, .12);
}

.ci-lbl {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.ci-val {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
}

.ci-val a {
  color: var(--navy);
  text-decoration: none;
}

.ci-val a:hover {
  color: var(--aqua);
}

.form-box {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 167, 255, .1);
}

.flabel {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: .3px;
}

.finput {
  width: 100%;
  padding: 13px 17px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--neutral);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: var(--text);
  background: #fafcff;
  transition: all .3s;
  outline: none;
  margin-bottom: 18px;
}

.finput:focus {
  border-color: var(--aqua);
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 167, 255, .1);
}

textarea.finput {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 0;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all .3s;
  border: 1px solid rgba(255, 255, 255, .1);
}

.footer-socials a:hover {
  background: var(--grad-fresh);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(46, 230, 166, .35);
  border-color: transparent;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  font-size: .86rem;
  text-decoration: none;
  transition: color .3s;
}

.footer-col ul li a:hover {
  color: var(--mint);
}

.footer-col p {
  color: rgba(255, 255, 255, .5);
  font-size: .86rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .3);
  font-size: .78rem;
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in,
.reveal-l.in,
.reveal-r.in {
  opacity: 1;
  transform: translate(0);
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .18s;
}

.d3 {
  transition-delay: .26s;
}

.d4 {
  transition-delay: .34s;
}

/* ================================================
   MISC
   ================================================ */
.tag {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}

.tag-mint {
  background: rgba(46, 230, 166, .12);
  color: var(--mint);
  border: 1px solid rgba(46, 230, 166, .25);
}

.tag-aqua {
  background: rgba(59, 167, 255, .12);
  color: var(--aqua);
  border: 1px solid rgba(59, 167, 255, .25);
}

.tag-lav {
  background: rgba(167, 139, 250, .12);
  color: var(--lavender);
  border: 1px solid rgba(167, 139, 250, .25);
}

.tag-green {
  background: rgba(34, 197, 94, .1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, .25);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 167, 255, .2), transparent);
  margin: 0;
}

/* ── Utility responsive classes (used in HTML) ── */
.r-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.r-grid-2lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.r-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.r-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.r-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.r-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}

.r-price-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 26px;
}

.r-btn-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.r-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.r-map-box {
  height: 280px;
  border-radius: var(--r-2xl);
}

.r-logo-img {
  height: 72px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.r-contact-logo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}

.r-gallery-logo {
  object-fit: contain;
  background: var(--navy);
  padding: 48px;
  height: 260px;
  width: 100%;
}

.mv-card {
  padding: 40px;
}

@media(max-width:640px) {
  .section {
    padding: 70px 0;
  }

  .hero-glow {
    width: 280px;
    height: 280px;
  }

  .hero-img {
    max-width: 240px;
  }

  .container {
    padding: 0 18px;
  }

  .mv-card {
    padding: 24px;
  }
}

/* ================================================
   RESPONSIVE — FULL COVERAGE
   1280 → 1024 → 768 → 480 → 360
   ================================================ */

/* ── 1024px (Tablet Landscape) ─────────────────── */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  /* Hero */
  .hero-grid {
    gap: 40px;
    padding: 100px 24px 60px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  }

  .hero-glow {
    width: 360px;
    height: 360px;
  }

  .hero-img {
    max-width: 300px;
  }

  .hstat {
    padding: 0 16px;
  }

  .hstat-val {
    font-size: 1.6rem;
  }

  /* Why grid */
  .why-grid {
    gap: 36px;
  }

  /* About */
  .about-2col {
    gap: 40px;
  }

  /* Products */
  .product-2col {
    gap: 40px;
  }

  .product-img-box {
    padding: 48px 32px;
  }

  /* Contact */
  .contact-grid {
    gap: 32px;
  }

  .form-box {
    padding: 32px;
  }

  /* Footer */
  .footer-grid {
    gap: 32px;
  }
}

/* ── 900px (Tablet Portrait / Small Laptop) ─────── */
@media (max-width: 900px) {

  /* Hero stacks to single column */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 20px 56px;
    gap: 48px;
  }

  .hero-badge {
    display: inline-flex;
  }

  .hero-sub {
    margin: 0 auto 32px;
    max-width: 520px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hstat:first-child {
    padding-left: 24px;
  }

  /* Product visual centred */
  .hero-visual {
    order: -1;
  }

  .hero-glow {
    width: 320px;
    height: 320px;
  }

  .hero-img {
    max-width: 260px;
  }

  .hero-free-tag {
    top: 10px;
    right: 50%;
    transform: translateX(120px);
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-item:hover {
    transform: none;
  }

  /* About */
  .about-2col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Products */
  .product-2col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-img-box {
    padding: 48px 24px;
  }

  .price-big {
    font-size: 3rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── 768px (Mobile Landscape / Small Tablet) ────── */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  /* Navbar */
  .nav-wrap {
    height: 62px;
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-grid {
    padding: 90px 18px 48px;
    gap: 36px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.12;
  }

  .hero-sub {
    font-size: .95rem;
  }

  .hero-glow {
    width: 280px;
    height: 280px;
  }

  .hero-img {
    max-width: 230px;
  }

  .hero-free-tag {
    width: 66px;
    height: 66px;
    font-size: .62rem;
    top: 8px;
    right: 50%;
    transform: translateX(110px);
  }

  .hero-stats {
    gap: 0;
    flex-wrap: nowrap;
  }

  .hstat {
    padding: 0 12px;
  }

  .hstat:first-child {
    padding-left: 12px;
  }

  .hstat-val {
    font-size: 1.4rem;
  }

  .hstat-lbl {
    font-size: .6rem;
  }

  /* Buttons */
  .btn-fresh,
  .btn-luxury,
  .btn-ghost,
  .btn-outline-navy {
    padding: 12px 22px;
    font-size: .88rem;
  }

  .hero-actions {
    gap: 10px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 40px;
  }

  .feat-card {
    padding: 24px 20px;
  }

  .feat-icon {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .feat-card h3 {
    font-size: .92rem;
  }

  .feat-card p {
    font-size: .82rem;
  }

  /* Why */
  .why-grid {
    gap: 28px;
  }

  .why-list {
    gap: 10px;
    margin-top: 24px;
  }

  .why-item {
    padding: 14px 16px;
  }

  /* Showcase card */
  .showcase-card {
    padding: 32px 24px;
  }

  .showcase-img {
    width: 160px;
  }

  .showcase-price {
    font-size: 2.6rem;
  }

  /* Counters */
  .counters-band {
    padding: 56px 0;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ctr-val {
    font-size: 2.2rem;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .testi-card {
    padding: 24px;
  }

  /* CTA */
  .cta-band {
    padding: 64px 0;
  }

  .cta-inner h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .cta-inner p {
    font-size: .9rem;
    margin-bottom: 28px;
  }

  /* Page hero */
  .page-hero {
    padding: 110px 0 56px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .page-hero p {
    font-size: .9rem;
  }

  /* About */
  .about-2col {
    gap: 28px;
  }

  .timeline {
    padding: 0;
  }

  .tl-row {
    gap: 14px;
    padding-bottom: 22px;
  }

  /* Products */
  .product-2col {
    gap: 28px;
  }

  .product-img-box {
    padding: 36px 20px;
    border-radius: var(--r-xl);
  }

  .spec-list td {
    font-size: .82rem;
    padding: 9px 0;
  }

  .price-big {
    font-size: 2.6rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gal-item img {
    height: 180px;
  }

  /* Contact */
  .contact-grid {
    gap: 24px;
  }

  .form-box {
    padding: 24px;
    border-radius: var(--r-lg);
  }

  .ci-block {
    padding: 16px;
  }

  /* Footer */
  .footer {
    padding: 52px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Headings */
  .heading-xl {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .heading-lg {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .heading-md {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .body-lg {
    font-size: .95rem;
  }
}

/* ── 480px (Mobile Portrait) ────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 52px 0;
  }

  /* Hero */
  .hero-grid {
    padding: 84px 16px 44px;
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-badge span {
    font-size: .72rem;
  }

  .hero-sub {
    font-size: .88rem;
    line-height: 1.65;
  }

  .hero-glow {
    width: 240px;
    height: 240px;
  }

  .hero-img {
    max-width: 200px;
  }

  .hero-free-tag {
    width: 58px;
    height: 58px;
    font-size: .58rem;
    top: 4px;
    right: 50%;
    transform: translateX(96px);
  }

  /* Stats — 2×2 grid on very small screens */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .hstat-div {
    display: none;
  }

  .hstat {
    padding: 10px;
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
  }

  .hstat:first-child {
    padding-left: 10px;
  }

  .hstat-val {
    font-size: 1.5rem;
  }

  .hstat-lbl {
    font-size: .62rem;
  }

  /* Buttons full-width on mobile */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Features — single column */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feat-card {
    padding: 22px 18px;
  }

  /* Why */
  .why-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .why-pip {
    margin-top: 4px;
  }

  /* Showcase */
  .showcase-card {
    padding: 28px 18px;
    border-radius: var(--r-xl);
  }

  .showcase-img {
    width: 140px;
  }

  .showcase-price {
    font-size: 2.4rem;
  }

  /* Counters */
  .counters-band {
    padding: 44px 0;
  }

  .ctr-val {
    font-size: 2rem;
  }

  .ctr-lbl {
    font-size: .65rem;
  }

  /* Testimonials */
  .testi-card {
    padding: 20px;
  }

  .testi-text {
    font-size: .84rem;
  }

  /* CTA */
  .cta-band {
    padding: 52px 0;
  }

  .cta-inner .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Page hero */
  .page-hero {
    padding: 96px 0 48px;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* About cards grid → single col */
  .about-2col>div>div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  /* Products */
  .product-img-box {
    padding: 28px 16px;
  }

  .spec-list td {
    font-size: .8rem;
    padding: 8px 0;
  }

  .price-big {
    font-size: 2.2rem;
  }

  .product-2col .btn {
    width: 100%;
    justify-content: center;
  }

  /* Gallery — single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gal-item img {
    height: 220px;
  }

  /* Contact */
  .form-box {
    padding: 20px 16px;
  }

  .ci-block {
    padding: 14px;
    gap: 12px;
  }

  .ci-ico {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .ci-val {
    font-size: .85rem;
  }

  /* Footer */
  .footer {
    padding: 44px 0 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  /* Loader ripples — scale down on small screens */
  .lr3 {
    width: 220px;
    height: 220px;
  }

  .lr4 {
    width: 300px;
    height: 300px;
  }

  /* Floating WA button */
  .wa-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}

/* ── 360px (Very Small Phones) ──────────────────── */
@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-img {
    max-width: 180px;
  }

  .hero-glow {
    width: 200px;
    height: 200px;
  }

  .hero-free-tag {
    right: 50%;
    transform: translateX(84px);
  }

  .hstat-val {
    font-size: 1.3rem;
  }

  .nav-wrap {
    padding: 0 14px;
  }

  .showcase-price {
    font-size: 2rem;
  }

  .price-big {
    font-size: 1.9rem;
  }

  .features-grid {
    gap: 10px;
  }

  .feat-card {
    padding: 18px 14px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .gal-item img {
    height: 200px;
  }

  .form-box {
    padding: 16px 14px;
  }

  .cta-inner h2 {
    font-size: 1.5rem;
  }

  .footer-grid {
    gap: 20px;
  }
}

/* ── Touch device improvements ──────────────────── */
@media (hover: none) {

  /* Disable translateX hover on touch — prevents layout shift */
  .why-item:hover {
    transform: none;
  }

  .card:hover {
    transform: none;
  }

  .feat-card:hover {
    transform: none;
  }

  .testi-card:hover {
    transform: none;
  }

  .gal-item:hover {
    transform: none;
  }

  /* Keep overlay always slightly visible on touch */
  .gal-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(11, 19, 43, .6) 0%, transparent 60%);
  }
}

/* ── Landscape phone fix ─────────────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .page-hero {
    padding: 90px 0 40px;
  }
}

/* ── Safe area (notch phones) ───────────────────── */
@supports (padding: max(0px)) {
  .nav-wrap {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .wa-btn {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }

  .mobile-nav {
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
}

/* ── Utility class responsive overrides ─────────── */
@media (max-width: 768px) {
  .r-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .r-grid-2lg {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .r-mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .r-price-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .r-map-box {
    height: 220px;
    border-radius: var(--r-lg);
  }

  .r-contact-logo {
    height: 130px;
  }

  .r-gallery-logo {
    padding: 32px;
    height: 200px;
  }

  .r-steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .r-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .r-grid-2lg {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .r-mv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .r-btn-col .btn {
    width: 100%;
    justify-content: center;
  }

  .r-price-row {
    align-items: center;
  }

  .r-map-box {
    height: 200px;
  }

  .r-steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .r-contact-logo {
    height: 110px;
  }

  .r-gallery-logo {
    padding: 24px;
    height: 180px;
  }
}

@media (max-width: 360px) {
  .r-grid-2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .r-steps {
    grid-template-columns: 1fr;
  }
}

/* Remove the ::before bar from the button */
.mobile-nav .nav-btn::before {
  display: none;
}