
  :root {
    --black: #080808;
    --black-soft: #111111;
    --black-card: #141414;
    --black-border: #1e1e1e;
    --gold: #C9A84C;
    --gold-light: #E4C97A;
    --gold-dim: #8B6F32;
    --white: #FFFFFF;
    --white-70: rgba(255,255,255,0.7);
    --white-40: rgba(255,255,255,0.4);
    --white-15: rgba(255,255,255,0.07);
    --white-08: rgba(255,255,255,0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }
  .rounded{
      border-radius:18px;
  }
  .categories{
      display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .pmv-main-img-wrap{
      
  }
  
  .ws-specs-table th{
      font-size:1rem !important;
          background-color: #6e663b !important;
  }
  .d-none{
      display:none !important;
  }

.fl-hero-tagline,.fl-page p{
    
    margin: 20px 0;
}
  /* ===== TYPOGRAPHY ===== */
  h1, h2, h3 { font-family: 'Playfair Display', serif; }
  h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.2; }
  h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
  p { color: var(--white-70); }

  /* ===== UTILITIES ===== */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
  .gold { color: var(--gold); }
  .gold-text { background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .section { padding: 100px 0; }
  .section-tag { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; }
  .section-title { margin-bottom: 16px; }
  .section-sub { color: var(--white-70); max-width: 560px; }
  .divider { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 20px 0 40px; }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none; letter-spacing: 0.3px;
    border: none;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    box-shadow: 0 4px 30px rgba(201,168,76,0.25);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(201,168,76,0.4); }
  .btn-secondary {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
  }
  .logo img{
      max-width:200px;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
  .btn-sm { padding: 10px 22px; font-size: 0.82rem; }

  /* ===== HEADER ===== */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: var(--transition);
    padding: 22px 0;
  }
  header.scrolled {
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; flex-direction: column; text-decoration: none; }
  .logo-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
  .logo-tagline { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--white-70); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.2px; }
  .nav-links a:hover { color: var(--white); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { width: 24px; height: 1.5px; background: var(--white); display: block; transition: var(--transition); }
  .mobile-menu { display: none; position: fixed; inset: 0; background: rgba(8,8,8,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1.4rem; color: var(--white); text-decoration: none; font-family: 'Playfair Display', serif; }
  .mobile-menu .btn { margin-top: 16px; }
  .close-menu { position: absolute; top: 28px; right: 32px; background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer; }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 90px;
    background: radial-gradient(ellipse 60% 70% at 70% 50%, #1a1408 0%, var(--black) 60%);
  }
  .hero-bg-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 100px; padding: 7px 18px; margin-bottom: 28px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
  .hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  .hero-price { display: flex; align-items: baseline; gap: 10px; margin: 24px 0; }
  .hero-price .label { font-size: 0.85rem; color: var(--white-70); }
  .hero-price .amount { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); }
  .hero-tagline { font-size: 0.9rem; color: var(--white-40); font-style: italic; margin-bottom: 36px; border-left: 2px solid var(--gold-dim); padding-left: 14px; }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-feat { display: flex; align-items: center; gap: 10px; background: var(--white-08); border: 1px solid var(--black-border); border-radius: var(--radius-sm); padding: 12px 16px; transition: var(--transition); }
  .hero-feat:hover { background: var(--white-15); border-color: rgba(201,168,76,0.2); }
  .hero-feat-icon { width: 32px; height: 32px; background: rgba(201,168,76,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .hero-feat-text { font-size: 0.78rem; font-weight: 500; color: var(--white-70); }
  .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
  .hero-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%); pointer-events: none; }
  .product-frame {
    position: relative; width: 420px; height: 500px;
    background: linear-gradient(145deg, #1a1510, #0d0d0d);
    border-radius: 30px; border: 1px solid rgba(201,168,76,0.2);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
  }
  .product-frame::before {
    content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .product-illustration { width: 280px; height: 340px; position: relative; }
  .ionizer-body {
    width: 180px; height: 280px; margin: 0 auto;
    background: linear-gradient(160deg, #2a2a2a 0%, #111 40%, #1a1a1a 100%);
    border-radius: 24px 24px 16px 16px;
    position: relative;
    box-shadow: 0 0 60px rgba(201,168,76,0.1), inset 0 1px 0 rgba(255,255,255,0.1), 6px 0 20px rgba(0,0,0,0.5), -6px 0 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .ionizer-screen { width: 120px; height: 70px; background: linear-gradient(135deg, #0a1628, #162040); border-radius: 10px; margin: 20px auto 0; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(100,160,255,0.3); box-shadow: 0 0 20px rgba(100,160,255,0.15); position: relative; }
  .screen-ph { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #60A5FA; text-shadow: 0 0 20px rgba(96,165,250,0.5); }
  .screen-label { position: absolute; bottom: 6px; font-size: 0.55rem; letter-spacing: 2px; color: rgba(96,165,250,0.6); text-transform: uppercase; }
  .ionizer-led { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
  .led { width: 8px; height: 8px; border-radius: 50%; animation: ledPulse 2s infinite; }
  .led-blue { background: #3B82F6; box-shadow: 0 0 8px #3B82F6; animation-delay: 0s; }
  .led-green { background: #10B981; box-shadow: 0 0 8px #10B981; animation-delay: 0.4s; }
  .led-gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); animation-delay: 0.8s; }
  .ionizer-grill { margin: 20px 14px 0; display: grid; grid-template-columns: repeat(8, 1fr); gap: 3px; }
  .grill-line { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; }
  .ionizer-spout { width: 30px; height: 50px; background: linear-gradient(180deg, #222, #333); border-radius: 0 0 15px 15px; margin: 10px auto 0; border: 1px solid rgba(255,255,255,0.08); position: relative; }
  .ionizer-spout::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 2px; height: 10px; background: linear-gradient(180deg, rgba(96,165,250,0.6), transparent); border-radius: 1px; }
  .water-drop { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 6px; height: 8px; background: rgba(96,165,250,0.4); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; animation: drip 2s infinite; }
  .product-badge-overlay { position: absolute; top: 20px; right: 20px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; padding: 8px 12px; text-align: center; }
  .product-badge-overlay .gen { font-size: 0.6rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
  .product-badge-overlay .gen-num { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }

  /* ===== BENEFITS SECTION ===== */
  #benefits { background: var(--black-soft); }
  .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .benefit-card {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius); padding: 28px 24px;
    transition: var(--transition); cursor: default;
    position: relative; overflow: hidden;
  }
  .benefit-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
  .benefit-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
  .benefit-card:hover::before { opacity: 1; }
  .benefit-icon { font-size: 1.8rem; margin-bottom: 16px; }
  .benefit-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
  .benefit-text { font-size: 0.8rem; color: var(--white-40); line-height: 1.5; }

  /* ===== PROPERTIES SECTION ===== */
  #properties { background: var(--black); }
  .props-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .prop-card {
    background: linear-gradient(145deg, #161410, #0e0e0e);
    border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius);
    padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden;
  }
  .prop-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: var(--transition); }
  .prop-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.35); box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1); }
  .prop-card:hover::after { opacity: 1; }
  .prop-icon { width: 56px; height: 56px; background: rgba(201,168,76,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 22px; border: 1px solid rgba(201,168,76,0.2); }
  .prop-title { font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0px; font-family: 'DM Sans', sans-serif; }
  .prop-desc { font-size: 0.82rem; color: var(--white-70); line-height: 1.65; }
  .prop-value { margin-top: 0px; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }

  /* ===== STATS SECTION ===== */
  #stats {
    background: linear-gradient(135deg, #0d0b06, #111);
    border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border);
    padding: 70px 0;
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .stat-item { text-align: center; }
  .stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 700; display: block; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 10px; }
  .stat-label { font-size: 0.85rem; color: var(--white-40); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500; }

  /* ===== COMPARISON SECTION ===== */
  #comparison { background: var(--black-soft); }
  .compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--black-border); }
  .compare-table th { padding: 20px 28px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .th-attr { background: #0e0e0e; color: var(--white-40); text-align: left; width: 25%; }
  .th-normal { background: #0e0e0e; color: var(--white-70); text-align: center; width: 37.5%; border-left: 1px solid var(--black-border); }
  .th-alkaline { background: rgba(201,168,76,0.08); color: var(--gold-light); text-align: center; width: 37.5%; border-left: 1px solid rgba(201,168,76,0.2); }
  .compare-table td { padding: 18px 28px; font-size: 0.88rem; border-top: 1px solid var(--black-border); }
  .compare-table tr:hover td { background: rgba(255,255,255,0.02); }
  .td-attr { color: var(--white-70); font-weight: 500; }
  .td-normal { color: var(--white-40); text-align: center; border-left: 1px solid var(--black-border); }
  .td-alkaline { color: var(--gold-light); text-align: center; font-weight: 600; background: rgba(201,168,76,0.03); border-left: 1px solid rgba(201,168,76,0.1); }
  .compare-badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
  .badge-good { background: rgba(201,168,76,0.15); color: var(--gold); }
  .badge-neutral { background: rgba(255,255,255,0.06); color: var(--white-40); }
  .badge-bad { background: rgba(239,68,68,0.1); color: #F87171; }

  /* ===== PRODUCTS SECTION ===== */
  #products { background: var(--black); }
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .product-card {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 20px; overflow: hidden; transition: var(--transition);
    display: flex; flex-direction: column; position: relative;
  }
  .product-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.08); }
  .product-img-wrap {
          padding: 36px 36px 0 36px;
    background: linear-gradient(145deg, #1a1510 0%, #0d0d0d 100%);
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  }
  .product-img-wrap::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 80%, rgba(201,168,76,0.08) 0%, transparent 70%); }
  .product-model {
    width: 100px; height: 150px;
    background: linear-gradient(160deg, #2d2d2d 0%, #161616 50%, #1f1f1f 100%);
    border-radius: 18px 18px 12px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    padding-top: 12px;
    box-shadow: 0 0 40px rgba(201,168,76,0.08), 3px 0 10px rgba(0,0,0,0.5), -3px 0 10px rgba(0,0,0,0.5);
    position: relative; z-index: 1;
  }
  .mini-screen { width: 60px; height: 35px; background: linear-gradient(135deg, #0a1628, #1a3060); border-radius: 6px; border: 1px solid rgba(96,165,250,0.25); display: flex; align-items: center; justify-content: center; }
  .mini-ph { font-size: 0.85rem; font-weight: 700; color: #60A5FA; font-family: 'Playfair Display', serif; }
  .mini-leds { display: flex; gap: 4px; margin-top: 8px; }
  .mini-led { width: 5px; height: 5px; border-radius: 50%; }
  .mini-led-b { background: #3B82F6; }
  .mini-led-g { background: #10B981; }
  .mini-led-gold { background: var(--gold); }
  .mini-grill { width: 70px; margin-top: 10px; display: grid; grid-template-columns: repeat(6,1fr); gap: 2px; }
  .mini-gl { height: 2px; background: rgba(255,255,255,0.06); border-radius: 1px; }
  .product-badge-tag { position: absolute; top: 14px; right: 14px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; z-index: 2; }
  .product-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
  .product-benefit { font-size: 0.78rem; color: var(--white-40); margin-bottom: 16px; }
  .product-price { font-size: 0.75rem; color: var(--white-70); }
  .product-price .price-val { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--gold-light); }
  .product-actions { display: flex; gap: 10px; margin-top: 20px; }
  .product-actions .btn { flex: 1; justify-content: center; padding: 11px 16px; font-size: 0.78rem; }

  /* ===== WHY CHOOSE US ===== */
  #why { background: var(--black-soft); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-item {
    display: flex; align-items: flex-start; gap: 18px;
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius); padding: 28px; transition: var(--transition);
  }
  .why-item:hover { border-color: rgba(201,168,76,0.2); }
  .why-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; border: 1px solid rgba(201,168,76,0.15); }
  .why-content h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
  .why-content p { font-size: 0.8rem; color: var(--white-40); }

  /* ===== CUSTOMERS ===== */
  #customers { background: var(--black); }
  .customers-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .customer-card {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 14px; overflow: hidden; aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); cursor: pointer;
  }
  .customer-card:hover { border-color: rgba(201,168,76,0.3); transform: scale(1.03); }
  .customer-avatar { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 12px; }
  .avatar-circle { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--black); flex-shrink: 0; }
  .avatar-name { font-size: 0.7rem; font-weight: 600; text-align: center; color: var(--white-70); line-height: 1.2; }
  .avatar-city { font-size: 0.6rem; color: var(--white-40); }
  .stars { color: var(--gold); font-size: 0.6rem; letter-spacing: 1px; }

  /* ===== QUOTE SECTION ===== */
  #quote-section {
    background: linear-gradient(135deg, #0d0b06, #0e0e0e);
    border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border);
    padding: 80px 0; text-align: center;
  }
  .quote-mark { font-family: 'Playfair Display', serif; font-size: 6rem; color: rgba(201,168,76,0.15); line-height: 0.5; margin-bottom: 32px; }
  .quote-text { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 400; font-style: italic; max-width: 760px; margin: 0 auto 24px; color: var(--white-70); line-height: 1.5; }
  .quote-author { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

  /* ===== BLOG SECTION ===== */
  #blog { background: var(--black-soft); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
  .blog-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
  .blog-img { height: 180px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .blog-img-bg { position: absolute; inset: 0; }
  .blog-emoji { font-size: 2.5rem; position: relative; z-index: 1; }
  .blog-content { padding: 24px; }
  .blog-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .blog-title { font-size: 0.98rem; font-weight: 600; line-height: 1.4; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
  .blog-excerpt { font-size: 0.78rem; color: var(--white-40); line-height: 1.6; margin-bottom: 18px; }
  .blog-link { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
  .blog-link:hover { gap: 10px; }

  /* ===== FAQ SECTION ===== */
  #faq { background: var(--black); }
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--black-border); }
  .faq-q {
    width: 100%; background: none; border: none; color: var(--white);
    text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--gold-light); }
  .faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--black-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); color: var(--white-40); font-size: 1rem; }
  .faq-item.open .faq-icon { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--gold); transform: rotate(45deg); }
  .faq-a { display: none; padding: 0 0 20px; font-size: 0.85rem; color: var(--white-70); line-height: 1.7; }
  .faq-item.open .faq-a { display: block; }

  /* ===== CTA BANNER ===== */
  #cta-banner {
    background: linear-gradient(135deg, #1a1508 0%, #0e0c06 50%, #111 100%);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 90px 0; text-align: center; position: relative; overflow: hidden;
  }
  #cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
  .cta-banner-title { margin-bottom: 16px; }
  .cta-banner-sub { color: var(--white-70); max-width: 480px; margin: 0 auto 40px; }
  .cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  footer { background: #050505; border-top: 1px solid var(--black-border); padding: 70px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
  .footer-brand .logo-name { font-size: 1.3rem; }
  .footer-brand p { font-size: 0.82rem; color: var(--white-40); margin-top: 14px; line-height: 1.7; }
  .footer-contact { margin-top: 20px; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.8rem; color: var(--white-40); }
  .footer-contact-item .icon { color: var(--gold-dim); flex-shrink: 0; margin-top: 2px; }
  .footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 0.82rem; color: var(--white-40); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white-70); }
  .footer-bottom { border-top: 1px solid var(--black-border); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 0.75rem; color: var(--white-40); }
  .footer-bottom-right { display: flex; gap: 24px; }
  .footer-bottom-right a { font-size: 0.75rem; color: var(--white-40); text-decoration: none; }
  .footer-bottom-right a:hover { color: var(--white-70); }

  /* ===== ANIMATIONS ===== */
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
  @keyframes ledPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
  @keyframes drip { 0%{opacity:0;transform:translateX(-50%) translateY(-10px)} 40%{opacity:0.8} 100%{opacity:0;transform:translateX(-50%) translateY(10px)} }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }
  @keyframes glowPulse { 0%,100%{box-shadow:0 0 60px rgba(201,168,76,0.1)} 50%{box-shadow:0 0 100px rgba(201,168,76,0.2)} }

  .product-frame { animation: float 6s ease-in-out infinite, glowPulse 4s ease-in-out infinite; }


  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  
  .w-100{
      width:100%;
  }
  .hero-banner-image{
          height: 680px;
    object-fit: cover;
    object-position: right;
    position:relative;
  }
  #stats{
      margin-top:-10px;
  }
  .img-fluid{
      max-width:100%;
  }
  .main_hero{
      position:relative;
  }
  .hero_content{
          position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
  }
.hero_content_inner{
    padding-top:140px;
    max-width:400px;
}
.hero_content_inner h1{
    margin-bottom:30px;
}


/* Video Testimonials Grid */
.video-testimonials-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Thumbnail */
.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Content */
.video-content {
    padding: 28px;
}

.video-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #9bdc28;
    background: rgba(155, 220, 40, 0.12);
}

.video-title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
}

.video-excerpt {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.video-link {
    font-size: 14px;
    font-weight: 600;
    color: #9bdc28;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.video-link:hover {
    opacity: 0.8;
}
.product-img-wrap{
    padding:0;
}

/* Tablet */
@media (max-width: 991px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .video-content {
        padding: 24px;
    }

    .video-title {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 36px;
    }

    .video-content {
        padding: 22px;
    }

    .video-title {
        font-size: 18px;
    }

    .video-excerpt {
        font-size: 14px;
        line-height: 1.7;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .props-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .customers-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 860px) {
    .container { padding: 0 24px; }
    .section { padding: 70px 0; }
    .nav-links, .nav .btn { display: none; }
    .hamburger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-features { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .divider { margin: 20px auto 40px; }
    .section-sub { margin: 0 auto; }
    .hero-visual { justify-content: center; }
    .product-frame { width: 320px; height: 380px; }
    .why-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero_content{
        text-align:Center;
    }
    .hero-banner-image{
        object-position: center;
    }
    .reveal.visible{
        overflow-x: auto;
    }
    .compare-table{
        width:600px;
    }
    .ws-hero-left{
        text-align:center;
    }
   
  }
  @media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .props-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .customers-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner-btns { flex-direction: column; align-items: center; }
  }

  /* Scroll bar */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
