:root{
  --bg: #f6f7f9;
  --bg2:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --accent:#111827;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

[hidden]{ display:none !important; }

/* ===== HEADER ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,247,249,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{ display:flex; align-items:center; gap: 12px; min-width: 0; }

/* LOGO */
.logo{
  width: 220px;
  height: 44px;
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.logo-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}

.brand-text{ min-width: 0; }
.brand-name{ font-weight: 800; }

.brand-tagline{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-lang{
  display:flex;
  gap: 8px;
  align-items:center;
}

/* ===== HAMBURGER ===== */
.menu-btn{
  border: 1px solid var(--line);
  background: var(--bg2);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.menu-icon{
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  display: inline-block;
}
.menu-icon::before,
.menu-icon::after{
  content:"";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.menu-icon::before{ top: -6px; }
.menu-icon::after{ top: 6px; }

/* ===== DRAWER ===== */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  z-index: 80;
}

.mobile-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(88vw, 380px);
  background: var(--bg2);
  border-left: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  z-index: 90;

  transform: translateX(110%);
  transition: transform 200ms ease;
  padding: 16px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-drawer.is-open{ transform: translateX(0); }

.drawer-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.drawer-title{
  font-weight: 900;
  color: var(--text);
  font-size: 16px;
}
.drawer-close{
  border: 1px solid var(--line);
  background: #fafafa;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.drawer-section{ padding-top: 6px; }
.drawer-label{
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.drawer-lang{ display:flex; gap: 10px; flex-wrap: wrap; }

.lang-btn{
  border: 1px solid var(--line);
  background: var(--bg2);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.lang-btn.is-active{
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.drawer-links{ display:grid; gap: 10px; }

.drawer-link{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafafa;
  font-weight: 800;
  color: var(--text);
}
.drawer-link-cta{
  background: var(--accent);
  color: white;
  border-color: transparent;
}

body.menu-open{ overflow:hidden; }

/* ===== BUTTONS / UI ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg2);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.btn.primary{
  background: var(--accent);
  color: white;
  border-color: transparent;
}
.btn.ghost{
  background: transparent;
  box-shadow: none;
}
.btn:hover{
  text-decoration:none;
  transform: translateY(-1px);
}

/* ===== HERO/CONTENT ===== */
.hero{ padding: 40px 0 10px; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: start;
}
.hero-copy h1{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.accent{
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.lead{
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 16px;
}
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}

.quick-points{
  list-style:none;
  padding: 0;
  margin: 12px 0 0;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.hero-card{
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-card h2{
  margin: 0 0 6px;
  font-size: 18px;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.contact-list{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}
.contact-item{
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafafa;
  display:flex;
  align-items:center;
  gap: 10px;
}

.contact-inline{
  display:flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin: 12px 0;
}
.contact-inline .contact-item{
  flex: 1 1 0;
  min-width: 0;
}

.section{ padding: 46px 0; }
.section.alt{
  background: #f0f2f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{ margin-bottom: 16px; }
.section-head h2{
  margin: 0 0 6px;
  font-size: 28px;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card{
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{ margin-top: 0; }

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 12px;
}
.step{
  display:flex;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.step-num{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #111827;
  color: white;
  display:grid;
  place-items:center;
  font-weight: 800;
  flex: 0 0 auto;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.photo{
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  margin:0;
}
.photo img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  cursor: zoom-in;
}

/* ===== REVIEWS ===== */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.review-card{
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
  height: 100%;
}

.review-text{
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  flex-grow: 1;
}

.review-author{
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

.help-card{ margin-top: 16px; }

.footer{
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #f0f2f5;
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}
.lightbox-inner{
  position: relative;
  width: min(1100px, 95vw);
  max-height: 85vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-inner img{
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  background: #000;
}
.lightbox-close{
  position: absolute;
  top: -12px;
  right: -12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}
body.lightbox-open{ overflow:hidden; }

/* Responsive */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }

  .brand-tagline{ font-size: 13px; }
  .logo{ width: 180px; height: 38px; }

  .contact-inline{ flex-direction: column; }

  .header-inner{
    align-items:flex-start;
  }

  .header-actions{
    flex-direction: column-reverse;
    align-items:flex-end;
  }

  .header-lang{
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 640px){
  .header-lang .lang-btn{
    padding: 7px 9px;
    font-size: 11px;
  }
}
