/* ============================================================
   EcoByte IT — Production Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --bg-deep:      #020305;
  --bg-dark:      #05070a;
  --bg-card:      rgba(8, 14, 22, 0.85);
  --green:        #4db847;
  --green-glow:   rgba(77,184,71,0.5);
  --green-dim:    rgba(77,184,71,0.12);
  --green-border: rgba(77,184,71,0.22);
  --white:        #ffffff;
  --text:         #dce9f5;
  --muted:        #8aa3bb;
  --border:       rgba(255,255,255,0.08);
  --glass:        rgba(4,6,10,0.92);
  --font-head:    'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease:         cubic-bezier(0.4,0,0.2,1);
  --transition:   all 0.45s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; background:var(--bg-deep); }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* subtle tech texture over entire page */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../images/tech-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: -1;
  pointer-events: none;
}

a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { display:block; max-width:100%; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--bg-deep); }
::-webkit-scrollbar-thumb { background:var(--green); border-radius:10px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header-wrap {
  position: fixed;
  top:0; left:0; width:100%;
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  background: rgba(0,0,0,0.85);
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: height 0.4s var(--ease), opacity 0.4s var(--ease);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}
.top-contact, .top-social { display:flex; gap:1.5rem; }
.top-bar a { font-size:0.75rem; color:var(--muted); font-weight:600; display:flex; align-items:center; gap:8px; }
.top-bar a:hover { color:var(--green); }
.top-bar i { color:var(--green); }

.nav-container {
  max-width: 1200px;
  margin: 0.9rem auto;
  padding: 0 1rem;
  transition: margin 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav {
  height: 70px;
  background: var(--glass);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { width:30px; filter:drop-shadow(0 0 8px var(--green)); }
.nav-wordmark { font-family:var(--font-head); font-weight:800; font-size:1.35rem; letter-spacing:-1px; }
.nav-wordmark .t-eco { color:var(--white); }
.nav-wordmark .t-byte { color:var(--green); }
.nav-wordmark .t-it { color:var(--muted); font-size:0.75em; font-weight:600; letter-spacing:0; }

.nav-menu { display:flex; align-items:center; gap:2rem; }
.nav-menu a { font-size:0.88rem; font-weight:600; color:var(--muted); transition:var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color:var(--green); }

.nav-cta {
  background: var(--green);
  color: var(--bg-deep) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(77,184,71,0.35);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  transition: var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover { background: rgba(77,184,71,0.2); }
.lang-toggle i { font-size: 0.75rem; }

/* Scrolled state */
.header-wrap.scrolled .top-bar { height:0; opacity:0; pointer-events:none; }
.header-wrap.scrolled .nav-container { margin:0; padding:0; }
.header-wrap.scrolled .nav {
  border-radius:0; border-top:none;
  background: rgba(2,3,5,0.97);
  border-bottom: 1px solid var(--green-dim);
  width:100%; max-width:none;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 180px 5% 120px;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-dark.png');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.38) saturate(0.85);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,184,71,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,184,71,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, var(--bg-deep) 85%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-left { display:flex; flex-direction:column; align-items:flex-start; }
.hero-right { display:flex; align-items:center; justify-content:center; }

.hero-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(77,184,71,0.18);
}
.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }

/* floating badge on hero image */
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,7,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--green-border);
  color: var(--green);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dim);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 2rem;
}

.hero-title-huge {
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -6px;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.hero-title-huge .t-eco { color:var(--white); }
.hero-title-huge .t-byte { color:var(--green); text-shadow:0 0 60px var(--green-glow); }
.hero-it { color:var(--muted) !important; font-size:0.42em; letter-spacing:2px; text-shadow:none !important; vertical-align:bottom; margin-bottom:0.15em; display:inline-block; font-weight:700; }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero-tagline strong { color:var(--white); border-bottom:2px solid var(--green); padding-bottom:1px; }

.hero-btns { display:flex; gap:1.2rem; flex-wrap:wrap; }

.btn {
  padding: 1.1rem 2.6rem;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--bg-deep);
  box-shadow: 0 14px 38px rgba(77,184,71,0.38);
}
.btn-primary:hover { transform:translateY(-6px); box-shadow:0 22px 55px rgba(77,184,71,0.55); }

.btn-outline {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background:rgba(255,255,255,0.1); border-color:var(--green-border); transform:translateY(-6px); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding:130px 5%; background:var(--bg-deep); position:relative; }
.container { max-width:1200px; margin:0 auto; }

.sec-label {
  color:var(--green);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:0.82rem;
  margin-bottom:1.2rem;
  display:block;
}
.sec-title {
  font-family:var(--font-head);
  font-size:clamp(2.4rem,5.5vw,4.2rem);
  font-weight:800;
  letter-spacing:-3px;
  line-height:1.1;
  color:var(--white);
  margin-bottom:1.8rem;
}
.sec-title em { color:var(--green); font-style:normal; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-top {
  max-width: 760px;
  margin-bottom: 5rem;
}
.about-top p {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  padding: 2.2rem 1.5rem;
  border-radius: 26px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--green-border);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.stat-icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.stat-head {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.stat-val-text {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-warranty { text-align:left; padding:2rem 1.8rem; }
.stat-warranty .stat-icon { margin-bottom:0.8rem; }
.stat-warranty .stat-head { margin-bottom:1rem; }
.stat-bullets { list-style:none; padding:0; }
.stat-bullets li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.stat-bullets li i { color:var(--green); font-size:0.75rem; flex-shrink:0; }

/* ============================================================
   VALUES — LEAF TREE
   ============================================================ */
.values-section {
  background: var(--bg-dark);
  padding: 130px 5% 100px;
  overflow: hidden;
}

.values-header {
  max-width: 700px;
  margin-bottom: 1rem;
}
.values-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 0.5rem;
}

/* Tree container — maintains 800:480 aspect ratio */
.tree-scene {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 3rem auto 0;
  padding-bottom: 60%; /* 480/800 = 0.6 */
  height: 0;
}

.tree-svg {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
}

/* Leaf positions (absolutely placed within .tree-scene) */
.leaf-pos {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.leaf-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(77,184,71,0.92), rgba(40,110,36,0.9));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(77,184,71,0.55);
  padding: 9px 15px;
  border-radius: 50% 6px 50% 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(77,184,71,0.38), 0 2px 8px rgba(0,0,0,0.4);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  cursor: default;
  transform: rotate(var(--rot,0deg)) scale(0);
  opacity: 0;
}
.leaf-badge i { font-size:0.8rem; flex-shrink:0; }
.leaf-badge.visible {
  animation:
    leafBloom 0.65s cubic-bezier(0.34,1.56,0.64,1) forwards,
    leafFloat 3.5s ease-in-out 0.7s infinite;
}
.leaf-pos:hover .leaf-badge { filter:brightness(1.12); }

@keyframes leafBloom {
  from { transform:rotate(var(--rot,0deg)) scale(0); opacity:0; }
  to   { transform:rotate(var(--rot,0deg)) scale(1); opacity:1; }
}
@keyframes leafFloat {
  0%,100% { transform:rotate(var(--rot,0deg)) scale(1) translateY(0); }
  50%     { transform:rotate(var(--rot,0deg)) scale(1) translateY(-6px); }
}

/* Branch tip dots */
.tip-dot { transition: opacity 0.4s ease; }
.tip-dot.visible { opacity:0.8 !important; }

/* Mobile fallback list — hidden on desktop */
.values-mobile-list { display:none; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.prod-header { margin-bottom:4rem; max-width:700px; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px,1fr));
  gap: 1.6rem;
}

.p-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.p-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(77,184,71,0.06), transparent 60%);
  opacity:0;
  transition: opacity 0.45s var(--ease);
}
.p-card:hover { transform:translateY(-12px); border-color:var(--green-border); box-shadow:0 24px 56px rgba(0,0,0,0.5); }
.p-card:hover::before { opacity:1; }

.p-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(2,3,5,0.6);
  aspect-ratio: 16/10;
  margin-bottom: 1.4rem;
}
.p-img-wrap img {
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition: transform 0.55s cubic-bezier(0.23,1,.32,1);
}
.p-card:hover .p-img-wrap img { transform:scale(1.05); }

.p-icon {
  width: 52px; height: 52px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.5rem; color: var(--green);
  margin-bottom: 1.1rem;
  transition: var(--transition);
}
.p-card:hover .p-icon { background:var(--green); color:var(--bg-deep); transform:rotate(-5deg); }

.p-name { font-family:var(--font-head); font-size:1.25rem; font-weight:800; color:var(--white); margin-bottom:0.7rem; }
.p-desc { color:var(--muted); font-size:0.93rem; line-height:1.65; }

/* ============================================================
   WHOLESALE
   ============================================================ */
.wholesale {
  position: relative;
  padding: 160px 5%;
  background: #000;
  overflow: hidden;
}

.wholesale-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/warehouse-qc.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.22) saturate(0.7);
  z-index: 0;
}
.wholesale-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 35%, transparent 100%);
  z-index: 1;
}
.wholesale-inner { position:relative; z-index:5; max-width:660px; }

.wholesale-intro {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 1.8rem 0 2.5rem;
}

.w-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  background: rgba(255,255,255,0.025);
  padding: 1.8rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.w-feature:hover {
  border-color: var(--green-border);
  background: rgba(77,184,71,0.045);
  transform: translateX(8px);
}

.w-ico {
  width: 50px; height: 50px;
  min-width: 50px;
  background: rgba(77,184,71,0.1);
  border: 1px solid rgba(77,184,71,0.2);
  border-radius: 14px;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.35rem; color: var(--green);
}
.w-title { font-weight:800; font-size:1.05rem; color:var(--white); margin-bottom:0.4rem; }
.w-desc { font-size:0.92rem; color:var(--muted); line-height:1.65; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display:grid; grid-template-columns:0.9fr 1.1fr; gap:5rem; }

.c-card {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
  background: var(--bg-card);
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.c-card:hover { border-color:var(--green-border); }
.c-card a { color:var(--white); }
.c-card a:hover { color:var(--green); }

.c-ico {
  width: 52px; height: 52px;
  background: var(--bg-deep);
  border-radius: 14px;
  display: flex; align-items:center; justify-content:center;
  color: var(--green); font-size:1.15rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.c-label { font-size:0.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:0.3rem; }
.c-val { font-weight:700; font-size:1rem; color:var(--white); }

.form-wrapper {
  background: var(--bg-card);
  padding: 3.5rem;
  border-radius: 36px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom:1.6rem; }
.form-group label {
  display:block;
  font-size:0.8rem;
  font-weight:700;
  color:var(--muted);
  margin-bottom:0.7rem;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  padding: 1.1rem 1.2rem;
  border-radius: 13px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-border);
  background: rgba(0,0,0,0.7);
}
.form-group textarea { resize:vertical; }

.form-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--green);
  border: none;
  border-radius: 13px;
  color: var(--bg-deep);
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.form-btn:hover { transform:translateY(-4px); box-shadow:0 18px 40px var(--green-glow); }

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

/* ============================================================
   HAMBURGER MENU
   ============================================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet large — 4-stat → 2-col */
@media (max-width:1100px) {
  .stat-grid { grid-template-columns:repeat(2,1fr); }
}

/* Tablet / landscape phone */
@media (max-width:1024px) {
  section { padding:100px 5%; }

  /* NAV — show burger, hide inline menu */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(2,3,5,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 6rem 2rem 3rem;
    z-index: 999;
    border-bottom: 1px solid var(--green-dim);
    min-height: 100dvh;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a { font-size:1.4rem; color:var(--text); }
  .nav-menu li a:hover, .nav-menu li a.active { color:var(--green); }
  .nav-menu .nav-cta {
    font-size:1.1rem !important;
    padding: 1rem 2.5rem !important;
    color: var(--bg-deep) !important;
    border-radius: 14px;
    margin-top: 1rem;
  }
  .nav-menu .lang-toggle { font-size:1rem; padding:10px 18px; }
  .nav-burger { display:flex; }

  /* HERO */
  .hero { padding: 160px 5% 80px; }
  .hero-inner { grid-template-columns:1fr; gap:2.5rem; }
  .hero-left { align-items:center; text-align:center; }
  .hero-tagline { max-width:560px; }
  .hero-btns { justify-content:center; flex-wrap:wrap; }
  .hero-right { order:-1; max-width:540px; margin:0 auto; width:100%; }
  .hero-img-wrap img { height:300px; }
  .hero-title-huge { font-size: clamp(3rem, 10vw, 6rem); letter-spacing:-4px; }

  /* CONTACT */
  .contact-grid { grid-template-columns:1fr; gap:3rem; }

  /* TOP BAR */
  .top-bar-inner { padding:0 1rem; }

  /* WHOLESALE — disable parallax on tablets (Safari bug) */
  .wholesale-bg { background-attachment: scroll; }
}

/* Tree → mobile list */
@media (max-width:900px) {
  .tree-scene { display:none; }
  .values-mobile-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0.9rem;
    margin-top: 2.5rem;
  }
  .values-mobile-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
  }
  .values-mobile-list li i { color:var(--green); font-size:0.95rem; flex-shrink:0; }

  /* Products 2-col on tablet */
  .prod-grid { grid-template-columns: repeat(2,1fr); gap:1.2rem; }
}

/* Portrait phone */
@media (max-width:600px) {
  section { padding:80px 4%; }

  /* Stat grid → 1-col */
  .stat-grid { grid-template-columns:1fr; }
  .stat-warranty { text-align:center; }
  .stat-bullets li { justify-content:center; }

  /* Values list → 1-col */
  .values-mobile-list { grid-template-columns:1fr; }

  /* Hero */
  .hero { padding:140px 4% 60px; }
  .hero-title-huge { font-size:clamp(2.8rem,16vw,4rem); letter-spacing:-3px; }
  .hero-it { font-size:0.45em; }
  .hero-img-wrap img { height:230px; }
  .hero-btns { flex-direction:column; gap:0.8rem; }
  .btn { width:100%; justify-content:center; padding:1rem 1.5rem; font-size:0.97rem; }

  /* Products → 1-col */
  .prod-grid { grid-template-columns:1fr; }

  /* About */
  .about-top { margin-bottom:3rem; }

  /* Contact form */
  .form-wrapper { padding:1.8rem 1.5rem; border-radius:22px; }

  /* Wholesale */
  .wholesale { padding:100px 4%; }
  .wholesale-bg { background-attachment: scroll; }

  /* Values */
  .values-section { padding:80px 4%; }

  /* Top bar — hide on very small */
  .top-bar { display:none; }
}

/* Very small phones */
@media (max-width:380px) {
  .hero-title-huge { font-size:13vw; }
  .nav-wordmark { font-size:1.1rem; }
}
