/* ==========================================================================
   Sun Shine Medikal — Kurumsal Web Sitesi
   ========================================================================== */

:root{
  --green: #4C8C3C;
  --green-dark: #34612a;
  --green-light: #6FCB4D;
  --green-pale: #eaf5e6;
  --navy: #14304f;
  --navy-light: #1f4570;
  --bg: #ffffff;
  --bg-soft: #f6f9f5;
  --bg-soft-2: #eef3ee;
  --text: #1c2b22;
  --muted: #5d6b62;
  --line: #e4ebe2;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 10px 30px rgba(20,48,79,.08);
  --shadow-md: 0 16px 40px rgba(20,48,79,.12);
  --shadow-lg: 0 25px 60px rgba(20,48,79,.18);
  --ease: cubic-bezier(.4,0,.2,1);
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter','Segoe UI',system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Poppins','Inter',sans-serif;
  color:var(--navy);
  line-height:1.2;
  margin:0 0 .5em;
  letter-spacing:-.01em;
}
p{ margin:0 0 1em; color:var(--muted); line-height:1.75; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--green-light); color:#fff; }

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:100px 0; position:relative; }
.section--soft{ background:var(--bg-soft); }
.section--tight{ padding:70px 0; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green-dark);
  background:var(--green-pale);
  padding:8px 16px;
  border-radius:999px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:'';
  width:7px;height:7px;border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(76,140,60,.25);
}
.section-head{ max-width:680px; margin:0 0 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,4vw,42px); }
.section-head p{ font-size:17px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  border:2px solid transparent;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; transition:transform .3s var(--ease); }
.btn-primary{
  background:linear-gradient(135deg,var(--green) 0%, var(--green-dark) 100%);
  color:#fff;
  box-shadow:0 10px 25px rgba(76,140,60,.35);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(76,140,60,.45); }
.btn-primary:hover svg{ transform:translateX(4px); }
.btn-outline{
  background:transparent;
  border-color:rgba(20,48,79,.18);
  color:var(--navy);
}
.btn-outline:hover{ border-color:var(--green); color:var(--green-dark); transform:translateY(-3px); }
.btn-ghost-light{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.35);
  color:#fff;
  backdrop-filter:blur(6px);
}
.btn-ghost-light:hover{ background:#fff; color:var(--navy); transform:translateY(-3px); }
.btn-sm{ padding:10px 20px; font-size:13.5px; }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  height:var(--header-h);
  display:flex;
  align-items:center;
  background:rgba(255,255,255,0);
  transition:background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header.is-scrolled{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  box-shadow:0 6px 24px rgba(20,48,79,.08);
  height:72px;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:40px; width:auto; transition:height .35s var(--ease), filter .35s var(--ease); }
.is-scrolled .brand img{ height:34px; }

.nav-desktop{ display:flex; align-items:center; gap:6px; }
.nav-desktop a{
  position:relative;
  padding:10px 16px;
  font-weight:600;
  font-size:14.5px;
  color:var(--navy);
  border-radius:999px;
  transition:color .3s var(--ease), background .3s var(--ease);
}
.nav-desktop a:hover{ background:var(--green-pale); color:var(--green-dark); }
.nav-desktop a.active{ background:var(--navy); color:#fff; }

.header-actions{ display:flex; align-items:center; gap:14px; }
.header-phone{
  display:flex; align-items:center; gap:8px;
  font-weight:700; font-size:14px; color:var(--navy);
}
.header-phone svg{ width:18px; height:18px; color:var(--green); }

/* Inner pages (dark page-hero behind a transparent header): logo + nav render white until scrolled */
body.inner-page .site-header:not(.is-scrolled) .brand img{ filter:brightness(0) invert(1); }
body.inner-page .site-header:not(.is-scrolled) .nav-desktop a{ color:#fff; }
body.inner-page .site-header:not(.is-scrolled) .nav-desktop a:hover{ background:rgba(255,255,255,.16); color:#fff; }
body.inner-page .site-header:not(.is-scrolled) .nav-desktop a.active{ background:rgba(255,255,255,.2); color:#fff; }
body.inner-page .site-header:not(.is-scrolled) .header-phone{ color:#fff; }
body.inner-page .site-header:not(.is-scrolled) .header-phone svg{ color:var(--green-light); }
body.inner-page .site-header:not(.is-scrolled) .nav-toggle{ background:rgba(255,255,255,.16); }
body.inner-page .site-header:not(.is-scrolled) .nav-toggle span{ background:#fff; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  background:var(--bg-soft-2);
  border:none;
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
}
.nav-toggle span{ display:block; width:20px; height:2px; background:var(--navy); border-radius:2px; transition:.3s var(--ease); }
.nav-toggle.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0;
  background:#fff;
  z-index:999;
  padding:110px 28px 40px;
  transform:translateY(-100%);
  opacity:0;
  transition:transform .45s var(--ease), opacity .4s var(--ease);
  overflow-y:auto;
}
.mobile-menu.is-open{ transform:translateY(0); opacity:1; }
.mobile-menu a{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:26px;
  font-weight:600;
  color:var(--navy);
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.mobile-menu .mm-contact{ margin-top:30px; display:flex; flex-direction:column; gap:14px; }
.mobile-menu .mm-contact .btn{ white-space:normal; text-align:center; word-break:break-word; font-size:14.5px; padding:14px 18px; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:92vh;
  display:flex; align-items:center;
  padding:calc(var(--header-h) + 40px) 0 80px;
  background:
    radial-gradient(1100px 600px at 85% -10%, #eaf6e5 0%, rgba(234,246,229,0) 60%),
    radial-gradient(900px 500px at -10% 110%, #e7f0fb 0%, rgba(231,240,251,0) 55%),
    #fff;
  overflow:hidden;
}
.hero-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  background:#fff; border:1px solid var(--line);
  padding:9px 18px 9px 9px; border-radius:999px;
  box-shadow:var(--shadow); font-size:13.5px; font-weight:600; color:var(--navy);
  margin-bottom:26px;
}
.hero-badge .dot{ width:26px; height:26px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; color:var(--green-dark); font-size:14px; }
.hero h1{
  font-size:clamp(34px,5vw,58px);
  margin-bottom:22px;
}
.hero h1 .accent{ color:var(--green); position:relative; white-space:nowrap; }
.hero p.lead{ font-size:18px; max-width:520px; margin-bottom:34px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:44px; }
.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats .stat b{ display:block; font-family:'Poppins',sans-serif; font-size:26px; color:var(--navy); }
.hero-stats .stat span{ font-size:13px; color:var(--muted); font-weight:600; }

.hero-visual{ position:relative; }
.hero-visual .glow-card{
  position:relative;
  background:linear-gradient(160deg,var(--navy) 0%, #0d2038 100%);
  border-radius:32px;
  padding:26px;
  box-shadow:var(--shadow-lg);
  animation:floatY 6s ease-in-out infinite;
}
.hero-visual .glow-card img{
  border-radius:22px;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.hero-visual .float-pill{
  position:absolute;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow-lg);
  padding:14px 18px;
  display:flex; align-items:center; gap:12px;
  font-size:13px; font-weight:700; color:var(--navy);
  animation:floatY 5s ease-in-out infinite;
}
.hero-visual .float-pill svg{ width:22px; height:22px; color:var(--green); }
.hero-visual .pill-1{ top:-6%; left:-9%; animation-delay:.3s; }
.hero-visual .pill-2{ bottom:6%; right:-10%; animation-delay:1s; }
.hero-visual .pill-3{ bottom:-8%; left:8%; animation-delay:1.6s; }

@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}

.hero-orbit{
  position:absolute; z-index:1; pointer-events:none;
  border:1.5px dashed rgba(76,140,60,.28);
  border-radius:50%;
  animation:spin 34s linear infinite;
}
.hero-orbit::before{
  content:'';
  position:absolute; top:-5px; left:50%;
  width:10px;height:10px;border-radius:50%;
  background:var(--green-light);
  box-shadow:0 0 14px 4px rgba(111,203,77,.6);
}
.orbit-1{ width:560px; height:560px; top:-8%; right:-6%; }
.orbit-2{ width:340px; height:340px; bottom:-10%; left:-6%; animation-direction:reverse; animation-duration:26s; }
@keyframes spin{ to{ transform:rotate(360deg); } }

.scroll-cue{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); font-weight:700;
  z-index:2;
}
.scroll-cue .line{ width:1px; height:34px; background:linear-gradient(var(--green),transparent); animation:scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ transform:scaleY(0); transform-origin:top; } 50%{ transform:scaleY(1); transform-origin:top; } 51%{ transform-origin:bottom; } 100%{ transform:scaleY(0); transform-origin:bottom; } }

/* ---------- Türkiye Haritası (Hero) ---------- */
.tr-hero{
  position:relative;
  padding:calc(var(--header-h) + 40px) 0 70px;
  background:
    radial-gradient(1100px 600px at 85% -10%, #eaf6e5 0%, rgba(234,246,229,0) 60%),
    radial-gradient(900px 500px at -10% 110%, #e7f0fb 0%, rgba(231,240,251,0) 55%),
    #fff;
  overflow:hidden;
}
.tr-hero .section-head{ max-width:680px; margin-left:auto; margin-right:auto; }
.tr-hero .hero-badge{ display:inline-flex; }

.tr-map-wrap{
  position:relative;
  width:100%;
  max-width:1100px;
  margin:0 auto;
}
.tr-map-svg{
  display:block;
  width:100%;
  height:auto;
  overflow:visible;
}
.tr-path{
  fill:#fff;
  stroke:var(--green);
  stroke-width:3.2;
  stroke-linejoin:round;
  cursor:pointer;
  transform-box:fill-box;
  transform-origin:center;
  transition:fill .2s var(--ease), stroke .2s var(--ease), transform .2s var(--ease), filter .2s var(--ease);
}
.tr-path.has-salon{
  fill:var(--green-light);
}
.tr-path:hover,
.tr-path.is-active{
  fill:var(--green);
  stroke:var(--green-dark);
  stroke-width:4;
  transform:scale(1.035);
  filter:drop-shadow(0 6px 12px rgba(52,97,42,.4));
}
.tr-path:focus-visible{
  outline:none;
  fill:var(--green);
  stroke:var(--navy);
  stroke-width:4.5;
}

.tr-tooltip{
  position:fixed;
  z-index:120;
  min-width:220px;
  max-width:280px;
  background:#fff;
  border-radius:14px;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--line);
  padding:16px 18px;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .18s var(--ease), transform .18s var(--ease);
  pointer-events:none;
}
.tr-tooltip.is-open{ opacity:1; transform:translateY(0); }
.tr-tooltip-city{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:15px;
  color:var(--navy);
  margin-bottom:8px;
  padding-bottom:8px;
  border-bottom:1px solid var(--line);
}
.tr-tooltip-count{ font-size:11.5px; font-weight:700; color:var(--green-dark); text-transform:uppercase; letter-spacing:.04em; margin-bottom:8px; }
.tr-tooltip-body ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
.tr-tooltip-body li b{ display:block; font-size:13.5px; color:var(--navy); font-weight:700; }
.tr-tooltip-body li span{ display:block; font-size:12px; color:var(--muted); margin-top:2px; }
.tr-tooltip-empty{ font-size:13px; color:var(--muted); }

.tr-map-hint{
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin:22px 0 0; text-align:center;
  font-size:12.5px; font-weight:600; color:var(--muted);
}
.tr-map-hint svg{ width:15px; height:15px; color:var(--green); flex:none; }

.tr-intl{
  display:none;
  max-width:640px;
  margin:34px auto 0;
  padding-top:26px;
  border-top:1px solid var(--line);
  text-align:center;
}
.tr-intl.has-items{ display:block; }
.tr-intl-title{
  font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--muted); margin-bottom:14px;
}
.tr-intl-list{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px;
}
.tr-intl-item{
  display:inline-flex; align-items:baseline; gap:6px;
  background:var(--green-pale); border:1px solid var(--line);
  border-radius:999px; padding:8px 16px;
  font-size:13px; font-weight:700; color:var(--navy);
}
.tr-intl-item span{ font-weight:600; color:var(--muted); }

@media (max-width: 640px){
  /* Small provinces (Yalova-scale slivers) would become nearly untappable if
     the whole country simply shrank to fit the viewport, so on small screens
     the map renders at a fixed larger size and scrolls horizontally instead. */
  .tr-map-wrap{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
  }
  .tr-map-svg{ width:900px; max-width:none; }
  .tr-path:hover, .tr-path.is-active{ transform:scale(1.05); }
  .tr-tooltip{ min-width:180px; max-width:220px; padding:12px 14px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  position:relative;
  padding:calc(var(--header-h) + 64px) 0 90px;
  background:linear-gradient(160deg,var(--navy) 0%, #0e2036 100%);
  color:#fff;
  overflow:hidden;
  text-align:center;
}
.page-hero::before{
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(circle at 18% 24%, rgba(111,203,77,.16), transparent 40%),
                    radial-gradient(circle at 82% 76%, rgba(111,203,77,.12), transparent 45%);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color:#fff; font-size:clamp(32px,5vw,48px); margin-bottom:16px; }
.page-hero p{ color:rgba(255,255,255,.72); max-width:600px; margin:0 auto; font-size:17px; }
.breadcrumb{
  display:inline-flex; gap:8px; align-items:center;
  font-size:13px; font-weight:600; color:rgba(255,255,255,.6);
  margin-bottom:20px; text-transform:uppercase; letter-spacing:.08em;
}
.breadcrumb span{ color:var(--green-light); }
.page-hero .hero-orbit{ border-color:rgba(255,255,255,.14); }
.page-hero .hero-orbit::before{ box-shadow:0 0 14px 4px rgba(111,203,77,.5); }

/* ---------- Feature / Guarantee cards ---------- */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 28px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.feature-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:transparent; }
.feature-icon{
  width:56px; height:56px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--green-pale),#fff);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  color:var(--green-dark);
  transition:transform .4s var(--ease), background .4s var(--ease);
}
.feature-card:hover .feature-icon{ transform:rotate(-8deg) scale(1.08); background:var(--green); color:#fff; }
.feature-icon svg{ width:26px; height:26px; }
.feature-card h3{ font-size:19px; margin-bottom:10px; }
.feature-card p{ font-size:14.5px; margin:0; }

/* ---------- Category cards (home) ---------- */
.cat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.cat-card{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--bg-soft);
  border:1px solid var(--line);
  padding:30px 24px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  display:flex; flex-direction:column; gap:14px; min-height:210px;
}
.cat-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); background:#fff; }
.cat-card .cat-icon{
  width:52px; height:52px; border-radius:14px;
  background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center;
  transition:background .4s var(--ease), transform .4s var(--ease);
}
.cat-card:hover .cat-icon{ background:var(--green); transform:scale(1.08); }
.cat-card .cat-icon svg{ width:24px; height:24px; }
.cat-card h3{ font-size:17px; margin:0; }
.cat-card p{ font-size:13.5px; margin:0; flex:1; }
.cat-card .cat-link{
  font-size:13px; font-weight:700; color:var(--green-dark);
  display:inline-flex; align-items:center; gap:6px;
}
.cat-card .cat-link svg{ width:14px; height:14px; transition:transform .3s var(--ease); }
.cat-card:hover .cat-link svg{ transform:translateX(4px); }

/* ---------- Product cards ---------- */
.filter-bar{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom:44px;
}
.filter-btn{
  padding:11px 22px;
  border-radius:999px;
  border:1.5px solid var(--line);
  background:#fff;
  font-weight:600; font-size:13.5px; color:var(--navy);
  transition:.3s var(--ease);
}
.filter-btn:hover{ border-color:var(--green); color:var(--green-dark); }
.filter-btn.active{ background:var(--navy); border-color:var(--navy); color:#fff; }

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.product-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  opacity:0; transform:translateY(28px) scale(.98);
}
.product-card.is-visible{ animation:cardIn .7s var(--ease) forwards; }
@keyframes cardIn{ to{ opacity:1; transform:translateY(0) scale(1); } }
.product-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:transparent; }

.product-media{
  position:relative;
  aspect-ratio:0.78/1;
  background:#f3f6f2;
  overflow:hidden;
  cursor:zoom-in;
  padding:10px;
}
.product-media img{
  width:100%; height:100%; object-fit:contain; object-position:center;
  transition:transform .6s var(--ease);
  border-radius:10px;
}
.product-card:hover .product-media img{ transform:scale(1.07); }
.product-media .media-badge{
  position:absolute; top:14px; left:14px;
  background:rgba(255,255,255,.94);
  color:var(--green-dark);
  font-size:11px; font-weight:800; letter-spacing:.04em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px;
  box-shadow:var(--shadow);
}
.product-media .media-zoom{
  position:absolute; right:14px; bottom:14px;
  width:38px; height:38px; border-radius:50%;
  background:#fff; color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow);
  opacity:0; transform:translateY(8px);
  transition:.35s var(--ease);
}
.product-card:hover .media-zoom{ opacity:1; transform:translateY(0); }
.media-zoom svg{ width:17px; height:17px; }

.product-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:12px; flex:1; }
.product-cat{ font-size:11.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--green-dark); }
.product-body h3{ font-size:18.5px; margin:0; }
.product-body .desc{ font-size:13.8px; margin:0; flex:1; }
.product-tags{ display:flex; flex-wrap:wrap; gap:6px; }
.product-tags span{
  font-size:11.5px; font-weight:600; color:var(--navy);
  background:var(--bg-soft-2); padding:5px 10px; border-radius:8px;
}
.product-foot{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:6px; padding-top:14px; border-top:1px solid var(--line);
}
.product-foot .link-btn{
  font-size:13.5px; font-weight:700; color:var(--navy);
  display:inline-flex; align-items:center; gap:6px;
}
.product-foot .link-btn svg{ width:15px; height:15px; transition:transform .3s var(--ease); }
.product-card:hover .link-btn svg{ transform:translateX(4px); }

.no-results{ text-align:center; padding:60px 20px; color:var(--muted); display:none; }
.no-results.show{ display:block; }

/* ---------- Lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:2000;
  background:rgba(10,20,16,.82);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  padding:40px 20px;
  opacity:0; visibility:hidden;
  transition:opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox-inner{
  background:#fff;
  border-radius:20px;
  max-width:980px; width:100%;
  max-height:88vh;
  overflow:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  transform:scale(.92) translateY(10px);
  transition:transform .4s var(--ease);
}
.lightbox.is-open .lightbox-inner{ transform:scale(1) translateY(0); }
.lightbox-media{ background:#f3f6f2; display:flex; align-items:center; justify-content:center; padding:18px; }
.lightbox-media img{ width:100%; height:100%; object-fit:contain; border-radius:12px; max-height:80vh; }
.lightbox-info{ padding:36px 34px; display:flex; flex-direction:column; }
.lightbox-info .product-cat{ margin-bottom:8px; }
.lightbox-info h3{ font-size:24px; }
.lightbox-info .feat-list{ margin:18px 0; display:flex; flex-direction:column; gap:10px; }
.lightbox-info .feat-list li{
  display:flex; gap:10px; align-items:flex-start;
  font-size:14px; color:var(--text);
}
.lightbox-info .feat-list svg{ width:18px; height:18px; color:var(--green); flex:none; margin-top:1px; }
.lightbox-close{
  position:absolute; top:22px; right:22px;
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.4);
  color:#fff; display:flex; align-items:center; justify-content:center;
  transition:.3s var(--ease);
}
.lightbox-close:hover{ background:#fff; color:var(--navy); transform:rotate(90deg); }

/* ---------- Stats band ---------- */
.stats-band{
  background:linear-gradient(120deg,var(--navy),#0d2237);
  border-radius:var(--radius-lg);
  padding:56px 40px;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:20px;
  position:relative; overflow:hidden;
}
.stats-band::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 15% 20%, rgba(111,203,77,.18), transparent 45%), radial-gradient(circle at 85% 85%, rgba(111,203,77,.14), transparent 45%);
}
.stat-item{ position:relative; text-align:center; color:#fff; }
.stat-item b{ display:block; font-family:'Poppins',sans-serif; font-size:42px; margin-bottom:6px; background:linear-gradient(120deg,#fff,#bfe6ac); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-item span{ font-size:13.5px; color:rgba(255,255,255,.7); font-weight:600; letter-spacing:.03em; }

/* ---------- Process / steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:step; }
.step-card{ position:relative; padding:32px 24px 26px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); }
.step-card .step-num{
  width:44px; height:44px; border-radius:50%;
  background:var(--green-pale); color:var(--green-dark);
  display:flex; align-items:center; justify-content:center;
  font-family:'Poppins',sans-serif; font-weight:700; margin-bottom:18px;
}
.step-card h3{ font-size:16.5px; }
.step-card p{ font-size:13.5px; margin:0; }
.step-connector{ display:none; }

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(135deg,var(--green) 0%, var(--green-dark) 100%);
  border-radius:var(--radius-lg);
  padding:64px 56px;
  display:flex; align-items:center; justify-content:space-between; gap:30px;
  color:#fff;
  position:relative; overflow:hidden;
}
.cta-band::after{
  content:''; position:absolute; right:-60px; top:-60px;
  width:220px; height:220px; border-radius:50%;
  border:1.5px dashed rgba(255,255,255,.35);
  animation:spin 30s linear infinite;
}
.cta-band h2{ color:#fff; font-size:clamp(24px,3.4vw,32px); margin-bottom:10px; }
.cta-band p{ color:rgba(255,255,255,.85); margin:0; max-width:420px; }
.cta-band .cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- About page bits ---------- */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-media{ position:relative; }
.about-media .frame{
  border-radius:26px; overflow:hidden; box-shadow:var(--shadow-lg);
  aspect-ratio:1/1.05; background:linear-gradient(160deg,var(--navy),#0d2036);
  display:flex; align-items:center; justify-content:center; padding:30px;
}
.about-media .frame img{ border-radius:16px; }
.about-media .badge-card{
  position:absolute; bottom:-24px; left:-24px;
  background:#fff; border-radius:18px; box-shadow:var(--shadow-lg);
  padding:20px 24px; display:flex; align-items:center; gap:14px;
  animation:floatY 6s ease-in-out infinite;
}
.about-media .badge-card b{ display:block; font-family:'Poppins',sans-serif; font-size:22px; color:var(--navy); }
.about-media .badge-card span{ font-size:12px; color:var(--muted); font-weight:600; }
.about-media .badge-icon{ width:46px; height:46px; border-radius:12px; background:var(--green-pale); color:var(--green-dark); display:flex; align-items:center; justify-content:center; }

.timeline{ display:flex; flex-direction:column; gap:0; }
.timeline-item{ position:relative; padding:0 0 30px 34px; border-left:2px solid var(--line); }
.timeline-item:last-child{ border-color:transparent; padding-bottom:0; }
.timeline-item::before{
  content:''; position:absolute; left:-7px; top:2px;
  width:12px; height:12px; border-radius:50%; background:var(--green);
  box-shadow:0 0 0 5px var(--green-pale);
}
.timeline-item h4{ font-size:15.5px; margin-bottom:4px; }
.timeline-item p{ font-size:13.5px; margin:0; }

.value-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.value-item{ display:flex; gap:14px; align-items:flex-start; padding:18px; border-radius:14px; transition:.3s var(--ease); }
.value-item:hover{ background:var(--bg-soft); }
.value-item .vi-icon{ width:40px; height:40px; border-radius:11px; background:var(--green-pale); color:var(--green-dark); display:flex; align-items:center; justify-content:center; flex:none; }
.value-item .vi-icon svg{ width:20px; height:20px; }
.value-item h4{ font-size:15px; margin-bottom:4px; }
.value-item p{ font-size:13px; margin:0; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; align-items:start; }
.contact-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px; display:flex; gap:16px; align-items:flex-start; transition:.35s var(--ease); }
.contact-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
.contact-card .ci{ width:48px; height:48px; border-radius:13px; background:var(--green-pale); color:var(--green-dark); display:flex; align-items:center; justify-content:center; flex:none; }
.contact-card .ci svg{ width:22px; height:22px; }
.contact-card h4{ font-size:15.5px; margin-bottom:6px; }
.contact-card p, .contact-card a{ font-size:13.8px; margin:0; color:var(--muted); }
.contact-card a:hover{ color:var(--green-dark); }

.contact-form{ background:var(--bg-soft); border-radius:var(--radius-lg); padding:40px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group{ display:flex; flex-direction:column; gap:8px; }
.form-group.full{ grid-column:1/-1; }
.form-group label{ font-size:13px; font-weight:700; color:var(--navy); }
.form-group input, .form-group select, .form-group textarea{
  border:1.5px solid var(--line); border-radius:12px; padding:13px 16px;
  font-family:inherit; font-size:14px; background:#fff; color:var(--text);
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color:var(--green); box-shadow:0 0 0 4px var(--green-pale);
}
.form-group textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color:var(--muted); margin-top:14px; }
.form-success{
  display:none; align-items:center; gap:12px; background:var(--green-pale); color:var(--green-dark);
  padding:14px 18px; border-radius:12px; font-size:13.5px; font-weight:600; margin-top:16px;
}
.form-success.show{ display:flex; }
.form-success svg{ width:20px; height:20px; flex:none; }

.map-wrap{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); margin-top:8px; border:1px solid var(--line); }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; filter:grayscale(.15) contrast(1.02); }

/* ---------- Footer ---------- */
.site-footer{ background:#0d1e17; color:#c9d5cc; padding:80px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand img{ height:38px; margin-bottom:18px; filter:brightness(0) invert(1); }
.footer-brand p{ color:#9db3a4; font-size:13.8px; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:.3s var(--ease); }
.footer-social a:hover{ background:var(--green); transform:translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{ color:#fff; font-size:14.5px; margin-bottom:20px; letter-spacing:.03em; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ color:#9db3a4; font-size:13.8px; transition:.3s var(--ease); }
.footer-col a:hover{ color:var(--green-light); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; color:#9db3a4; font-size:13.5px; margin-bottom:14px; }
.footer-contact svg{ width:17px; height:17px; color:var(--green-light); flex:none; margin-top:2px; }
.footer-bottom{ display:flex; align-items:center; justify-content:space-between; padding:26px 0; font-size:12.8px; color:#7d9186; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:#9db3a4; }
.footer-bottom a:hover{ color:var(--green-light); }

.back-to-top{
  position:fixed; right:26px; bottom:26px; z-index:900;
  width:48px; height:48px; border-radius:50%;
  background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-lg);
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:.35s var(--ease);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--green); }
.back-to-top svg{ width:19px; height:19px; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(30px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-delay-1.in-view{ transition-delay:.1s; }
.reveal-delay-2.in-view{ transition-delay:.2s; }
.reveal-delay-3.in-view{ transition-delay:.3s; }
.reveal-delay-4.in-view{ transition-delay:.4s; }

/* ---------- Marquee (brands / promise strip) ---------- */
.marquee{ overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-soft); padding:18px 0; }
.marquee-track{ display:flex; gap:60px; width:max-content; animation:marquee 26s linear infinite; }
.marquee-track span{ font-family:'Poppins',sans-serif; font-weight:600; font-size:14px; color:var(--navy); opacity:.65; display:flex; align-items:center; gap:10px; white-space:nowrap; }
.marquee-track span::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--green); }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- Loader ---------- */
.page-loader{
  position:fixed; inset:0; z-index:5000; background:#fff;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-loader.is-hidden{ opacity:0; visibility:hidden; }
.loader-ring{ width:46px; height:46px; border-radius:50%; border:3px solid var(--green-pale); border-top-color:var(--green); animation:spin 0.9s linear infinite; }

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .products-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-band{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .about-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:460px; margin:0 auto; }
}
@media (max-width:860px){
  .nav-desktop, .header-phone{ display:none; }
  .nav-toggle{ display:flex; }
  .lightbox-inner{ grid-template-columns:1fr; }
  .lightbox-media{ aspect-ratio:4/3; }
}
@media (max-width:640px){
  .section{ padding:70px 0; }
  .cat-grid{ grid-template-columns:1fr; }
  .products-grid{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr; }
  .stats-band{ grid-template-columns:1fr 1fr; padding:40px 24px; }
  .steps{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .cta-band{ flex-direction:column; text-align:center; padding:44px 28px; }
  .form-row{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr; }
  .hero-stats{ gap:22px; }
}
