/* ===========================================================
   TECHNO CLEANER — Official Website Stylesheet
   Professional & Premium theme — Navy / Blue / Red / Gold
=========================================================== */

:root{
  --navy-950: #070c17;
  --navy-900: #0b1424;
  --navy-800: #101c32;
  --navy-700: #16243f;
  --navy-600: #1e2f52;
  --blue-600: #1E6FD9;
  --blue-500: #2f80ed;
  --blue-400: #5b9bf5;
  --red-600: #d32f2f;
  --red-500: #e6393f;
  --gold-500: #d4af37;
  --gold-400: #e8c766;
  --ink-900: #121826;
  --ink-700: #364152;
  --ink-500: #64748b;
  --paper-0: #ffffff;
  --paper-50: #f7f9fc;
  --paper-100: #eef2f8;
  --line: #e4e9f2;
  --shadow-sm: 0 2px 10px rgba(16, 28, 50, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 28, 50, 0.10);
  --shadow-lg: 0 20px 50px rgba(16, 28, 50, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ff-head: 'Poppins', 'Segoe UI', sans-serif;
  --ff-body: 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink-900);
  background: var(--paper-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--ff-head); margin: 0; line-height: 1.2; }
p{ margin: 0; }

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

.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(30,111,217,0.08);
  border: 1px solid rgba(30,111,217,0.18);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.section-head{ max-width: 720px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.section-head p{
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(211,47,47,0.35);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(211,47,47,0.45); }
.btn-outline{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover{ background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-navy{
  background: var(--navy-900);
  color: #fff;
}
.btn-navy:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 10px 18px; font-size: 13px; }

/* ============ TOPBAR ============ */
.topbar{
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.topbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-left span{ display: inline-flex; align-items: center; gap: 7px; }
.topbar a{ color: rgba(255,255,255,0.75); transition: color .2s ease; }
.topbar a:hover{ color: var(--gold-400); }
.topbar-right{ display: flex; align-items: center; gap: 18px; }
.topbar-right a{ display: inline-flex; align-items: center; gap: 6px; }

/* ============ HEADER / NAV ============ */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,20,36,0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 44px; width: auto; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong{ font-family: var(--ff-head); color: #fff; font-size: 17px; letter-spacing: .02em; }
.brand-text span{ font-size: 11px; color: var(--gold-400); letter-spacing: .08em; text-transform: uppercase; }

nav.main-nav ul{ display: flex; align-items: center; gap: 6px; }
nav.main-nav a{
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 100px;
  transition: all .2s ease;
}
nav.main-nav a:hover, nav.main-nav a.active{
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-actions{ display: flex; align-items: center; gap: 12px; }
.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* ============ HERO ============ */
.hero{
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(30,111,217,0.35), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(211,47,47,0.25), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  color: #fff;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before{
  content:'';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 20%, black, transparent 70%);
  pointer-events: none;
}
.hero .container{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.hero-badge svg{ width: 14px; height: 14px; }
.hero h1{
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero h1 em{
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-400), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead{
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
.hero-cta{ display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats{
  display: flex;
  gap: 34px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stats div strong{
  display: block;
  font-family: var(--ff-head);
  font-size: 26px;
  color: #fff;
  font-weight: 700;
}
.hero-stats div span{
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-visual{ position: relative; }
.hero-visual .glow{
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(30,111,217,0.35), transparent 65%);
  filter: blur(10px);
  z-index: 0;
}
.hero-card{
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-grid-img{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hero-grid-img img{
  border-radius: 14px;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-grid-img .tall{ grid-row: span 2; aspect-ratio: auto; height: 100%; }
.hero-ribbon{
  position: absolute;
  top: -16px; right: -16px;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(211,47,47,0.4);
  z-index: 2;
}

/* ============ TRUST STRIP ============ */
.trust-strip{
  background: var(--paper-0);
  border-bottom: 1px solid var(--line);
}
.trust-strip .container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.trust-item{ display: flex; align-items: center; gap: 14px; }
.trust-item .ic{
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--paper-100);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item strong{ display: block; font-family: var(--ff-head); font-size: 14.5px; color: var(--navy-900); }
.trust-item span{ font-size: 12.5px; color: var(--ink-500); }

/* ============ ABOUT ============ */
.about{ background: var(--paper-50); }
.about .container{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-copy p{
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-700);
  margin-bottom: 16px;
}
.about-copy p:last-child{ margin-bottom: 0; }
.about-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.about-media h3{ font-size: 20px; margin-bottom: 22px; color: var(--gold-400); }
.perks-list{ display: grid; gap: 18px; }
.perk{ display: flex; gap: 14px; align-items: flex-start; }
.perk .num{
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  color: var(--gold-400);
}
.perk strong{ display: block; font-family: var(--ff-head); font-size: 14.5px; margin-bottom: 4px; }
.perk span{ font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.6; }

/* ============ PRODUCTS ============ */
.products{ background: var(--paper-0); }
.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn{
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--paper-0);
  color: var(--ink-700);
  transition: all .2s ease;
}
.filter-btn:hover{ border-color: var(--blue-500); color: var(--blue-600); }
.filter-btn.active{
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card{
  position: relative;
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card.hidden{ display: none; }
.product-thumb{
  position: relative;
  aspect-ratio: 1/1;
  background: var(--paper-100);
  overflow: hidden;
}
.product-thumb img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-thumb img{ transform: scale(1.06); }
.badge-discount{
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 11px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(211,47,47,0.35);
}
.badge-cat{
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(11,20,36,0.75);
  color: var(--gold-400);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.product-body{
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name{
  font-family: var(--ff-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
  min-height: 40px;
  margin-bottom: 10px;
}
.product-price{ margin-top: auto; margin-bottom: 14px; }
.price-old{
  font-size: 12.5px;
  color: var(--ink-500);
  text-decoration: line-through;
  margin-right: 8px;
}
.price-now{
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--red-600);
}
.btn-buy{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 100px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  transition: all .25s ease;
}
.btn-buy:hover{ background: var(--red-600); transform: translateY(-1px); }
.btn-buy svg{ width: 15px; height: 15px; flex-shrink: 0; }

/* ============ POLICY ============ */
.policy{ background: var(--paper-50); }
.policy-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.policy-item{
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.policy-q{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  text-align: left;
}
.policy-q .ic{
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(30,111,217,0.08);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.policy-q strong{
  font-family: var(--ff-head);
  font-size: 15.5px;
  color: var(--navy-900);
  flex: 1;
}
.policy-q .chev{
  color: var(--ink-500);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.policy-item.open .policy-q .chev{ transform: rotate(180deg); }
.policy-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.policy-a-inner{
  padding: 0 24px 24px 84px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-700);
}
.policy-item.open .policy-a{ max-height: 400px; }

.policy-note{
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(30,111,217,0.06), rgba(211,47,47,0.05));
  border: 1px dashed var(--blue-500);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--ink-700);
}
.policy-note svg{ flex-shrink: 0; color: var(--blue-600); }

/* ============ CONTACT ============ */
.contact{ background: var(--paper-0); }
.contact .container{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
}
.contact-card{
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}
.contact-card h3{ font-size: 21px; margin-bottom: 26px; }
.contact-row{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.contact-row:last-child{ border-bottom: none; }
.contact-row .ic{
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}
.contact-row strong{ display: block; font-family: var(--ff-head); font-size: 13.5px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-row a, .contact-row span.val{ font-size: 14.5px; color: #fff; line-height: 1.6; }
.contact-row a:hover{ color: var(--gold-400); }
.contact-socials{ display: flex; gap: 10px; margin-top: 26px; }
.contact-socials a{
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all .2s ease;
}
.contact-socials a:hover{ background: var(--red-500); border-color: var(--red-500); }

.map-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  min-height: 340px;
  background: var(--paper-100);
}
.map-wrap iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============ CTA BAND ============ */
.cta-band{
  background: linear-gradient(120deg, var(--red-600), #b71c1c 60%, var(--navy-900));
  color: #fff;
  padding: 64px 0;
}
.cta-band .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3{ font-size: clamp(22px, 3vw, 30px); max-width: 560px; }
.cta-band p{ margin-top: 8px; color: rgba(255,255,255,0.8); font-size: 15px; }

/* ============ FOOTER ============ */
footer.site-footer{
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img{ height: 38px; }
.footer-brand strong{ font-family: var(--ff-head); color: #fff; font-size: 16px; }
.footer-col p{ font-size: 13.5px; line-height: 1.8; }
.footer-col h4{ font-family: var(--ff-head); color: #fff; font-size: 14.5px; margin-bottom: 18px; letter-spacing: .02em; }
.footer-col ul li{ margin-bottom: 11px; }
.footer-col a{ font-size: 13.5px; transition: color .2s ease; }
.footer-col a:hover{ color: var(--gold-400); }
.footer-legal{
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ============ FLOATING BUTTONS ============ */
.float-buttons{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-btn{
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease;
}
.float-btn:hover{ transform: translateY(-3px) scale(1.05); }
.float-wa{ background: linear-gradient(135deg, #25D366, #1aa851); }
.float-top{
  background: var(--navy-900);
  width: 42px; height: 42px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.float-top.show{ opacity: 1; pointer-events: auto; }

/* ============ SCROLL REVEAL ============ */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px){
  .product-grid{ grid-template-columns: repeat(3, 1fr); }
  .trust-strip .container{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px){
  nav.main-nav{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }
  .about .container{ grid-template-columns: 1fr; }
  .contact .container{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .section{ padding: 64px 0; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .policy-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .hero-grid-img{ grid-template-columns: repeat(2, 1fr); }
  .cta-band .container{ flex-direction: column; text-align: center; }
  .topbar-left{ gap: 12px; }
}
@media (max-width: 480px){
  .product-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-name{ font-size: 13px; min-height: 34px; }
  .price-now{ font-size: 16px; }
  .hero{ padding: 64px 0 80px; }
  .hero-stats{ gap: 22px; }
}

/* mobile nav drawer */
.mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy-950);
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav-top{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-close{
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav a{
  display: block;
  padding: 16px 4px;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn{ margin-top: 24px; width: 100%; }
