:root{
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --line2:#d1d5db;
  --red:#D43934;
  --red2:#B91C1C;
  --shadow:0 18px 50px rgba(17,24,39,.08);
  --shadow2:0 8px 24px rgba(17,24,39,.06);
  --radius:24px;
  --max:1180px;
  --blur:16px;
  --trans:.24s ease;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212,57,52,.06), transparent 28%),
    radial-gradient(circle at top right, rgba(212,57,52,.04), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #f4f6f8 100%);
  color:var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.bg{
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    radial-gradient(closest-side at 12% 10%, rgba(212,57,52,.07), transparent 60%),
    radial-gradient(closest-side at 88% 8%, rgba(212,57,52,.05), transparent 55%),
    radial-gradient(closest-side at 50% 100%, rgba(212,57,52,.04), transparent 60%);
  pointer-events:none;
}

.gridGlow{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(17,24,39,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,.035) 1px, transparent 1px);
  background-size:38px 38px;
  mask-image:radial-gradient(circle at center, black 25%, transparent 82%);
  -webkit-mask-image:radial-gradient(circle at center, black 25%, transparent 82%);
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(var(--blur));
  -webkit-backdrop-filter:blur(var(--blur));
  border-bottom:1px solid rgba(17,24,39,.06);
  box-shadow:0 4px 18px rgba(17,24,39,.04);
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logoImg{
  display:block;
  height:34px;
  width:auto;
  max-width:180px;
}

.nav{
  display:flex;
  gap:10px;
  align-items:center;
}

.nav a,
.mobileNav a{
  text-decoration:none;
  color:#4b5563;
  padding:10px 13px;
  border-radius:14px;
  border:1px solid transparent;
  transition:var(--trans);
}

.nav a:hover,
.mobileNav a:hover{
  color:var(--text);
  border-color:var(--line);
  background:#f9fafb;
}

.nav a.active,
.mobileNav a.active{
  color:#0f172a;
  border-color:rgba(212,57,52,.28);
  background:rgba(212,57,52,.08);
  box-shadow:inset 0 0 0 1px rgba(212,57,52,.04);
}

.burger{
  display:none;
  width:46px;
  height:46px;
  border-radius:15px;
  border:1px solid var(--line);
  background:#ffffff;
  cursor:pointer;
  transition:var(--trans);
  box-shadow:0 4px 14px rgba(17,24,39,.05);
}

.burger span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:#374151;
  border-radius:2px;
  transition:var(--trans);
}

.burger.is-open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.mobileNavWrap{
  display:none;
  position:sticky;
  top:75px;
  z-index:40;
  padding:0 18px 10px;
}

.mobileNav{
  display:none;
  grid-template-columns:1fr;
  gap:8px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:var(--shadow2);
}

.mobileNav.open{ display:grid; }

.wrap{
  width:min(var(--max), calc(100% - 34px));
  margin:22px auto 70px;
}

.hero{
  display:grid;
  grid-template-columns:1.05fr 1.35fr;
  gap:18px;
  align-items:stretch;
  margin-top:18px;
}

.heroMedia{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  min-height:560px;
  box-shadow:var(--shadow);
  border:1px solid rgba(17,24,39,.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02)),
    url('/assets/img/hero-proteslu.jpg') center/cover no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(243,244,246,.9));
}

.heroContent,
.sectionInner,
.modelHero{
  position:relative;
  overflow:hidden;
}

.heroContent{
  border-radius:var(--radius);
  background:rgba(255,255,255,.88);
  border:1px solid rgba(17,24,39,.06);
  box-shadow:var(--shadow);
  padding:30px;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.2px;
  position:relative;
  z-index:3;
}

.badgeLight{
  color:#D43934;
  background:rgba(212,57,52,.08);
  border:1px solid rgba(212,57,52,.22);
}

h1{
  margin:16px 0 10px;
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.02;
  letter-spacing:-.03em;
  position:relative;
  z-index:3;
}

.lead{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.65;
  max-width:62ch;
  position:relative;
  z-index:3;
}

.leadMuted{
  color:var(--muted);
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:12px 0 20px;
  position:relative;
  z-index:3;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  background:#ffffff;
  transition:var(--trans);
  box-shadow:0 4px 14px rgba(17,24,39,.05);
}

.btn:hover{
  transform:translateY(-1px);
  background:#f9fafb;
  border-color:var(--line2);
}

.btn.primary{
  color:#ffffff;
  border-color:rgba(212,57,52,.42);
  background:linear-gradient(135deg, var(--red), var(--red2));
  box-shadow:0 10px 24px rgba(212,57,52,.18);
}

.cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}

.card{
  display:block;
  text-decoration:none;
  color:var(--text);

  border:1px solid rgba(17,24,39,.07);
  border-radius:20px;

  overflow:hidden;
  position:relative;

  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;

  padding:18px;

  transition:var(--trans);
  box-shadow:0 8px 24px rgba(17,24,39,.05);
}
.card::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.75) 35%,
    rgba(255,255,255,.1) 100%
  );

  z-index:1;
}

.card{
  position:relative;
  overflow:hidden;

  background-repeat:no-repeat;
  background-position:right -20px bottom -10px;
  background-size:180px;

  padding:18px;
}
.cardTop,
.cardText,
.cardLink{
  position:relative;
  z-index:2;
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(212,57,52,.20);
  background:#ffffff;
  box-shadow:0 14px 30px rgba(17,24,39,.08);
}

.cardTop{
  display:flex;
  align-items:center;
  gap:10px;
}

.cardIcon{
  font-weight:800;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(212,57,52,.08);
  border:1px solid rgba(212,57,52,.18);
  color:#D43934;
  white-space:nowrap;
}

.cardTitle{
  font-weight:700;
  color:#111827;
}

.cardText{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.cardLink{
  margin-top:11px;
  color:var(--red2);
  font-weight:700;
  font-size:14px;
}

.section{ margin-top:18px; }

.sectionInner{
  border-radius:var(--radius);
  background:rgba(255,255,255,.90);
  border:1px solid rgba(17,24,39,.06);
  padding:24px;
  box-shadow:var(--shadow2);
}

h2{
  margin:0 0 14px;
  font-size:24px;
  letter-spacing:-.02em;
  color:#111827;
}

h3{
  margin:0 0 8px;
  font-size:16px;
  color:#111827;
}

p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.grid3{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
}

.panel{
  background:#ffffff;
  border:1px solid rgba(17,24,39,.07);
  border-radius:18px;
  padding:15px;
  box-shadow:0 6px 18px rgba(17,24,39,.04);
}

.modelHero{
  position:relative;
  isolation:isolate;
  border-radius:var(--radius);
  border:1px solid rgba(17,24,39,.06);
  box-shadow:var(--shadow);
  min-height:360px;
  background-color:#ffffff;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center right;
  margin:22px 0;
}

.modelHero::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  z-index:0;
  pointer-events:none;
  transition:var(--trans);
}

.modelHero::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,.14), transparent 26%);
  pointer-events:none;
  z-index:1;
}

.modelHeroInner{
  padding:28px;
  max-width:720px;
  position:relative;
  z-index:2;
}

.pillRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 4px;
  position:relative;
  z-index:3;
}

.pill{
  padding:9px 12px;
  border-radius:999px;
  font-size:13px;
  position:relative;
  z-index:3;
}

.notice{
  margin-top:14px;
  border-radius:18px;
  border:1px dashed rgba(212,57,52,.28);
  background:rgba(212,57,52,.06);
  padding:14px;
  color:#1f2937;
  line-height:1.6;
}

.footer{
  border-top:1px solid rgba(17,24,39,.06);
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(var(--blur));
  -webkit-backdrop-filter:blur(var(--blur));
}

.footerInner{
  width:min(var(--max), calc(100% - 34px));
  margin:0 auto;
  padding:16px 0;
  display:flex;
  gap:10px;
  justify-content:space-between;
  flex-wrap:wrap;
}

.muted{
  color:var(--muted);
  font-size:13px;
}

.fadeUp{
  animation:fadeUp .7s ease both;
}

.fadeUp.delay1{ animation-delay:.08s; }
.fadeUp.delay2{ animation-delay:.16s; }

@keyframes fadeUp{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}

.modelHero.theme-dark::before{
  background:linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.38) 38%, rgba(0,0,0,.16) 100%);
}

.modelHero.theme-dark .badge{
  color:#ffffff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.modelHero.theme-dark h1,
.modelHero.theme-dark .lead,
.modelHero.theme-dark p{
  color:#ffffff;
}

.modelHero.theme-dark .pill{
  color:#ffffff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.modelHero.theme-dark .btn.ghost{
  background:rgba(255,255,255,.92);
  color:#111827;
  border-color:rgba(255,255,255,.55);
}

.modelHero.theme-light::before{
  background:linear-gradient(90deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.10) 42%, rgba(255,255,255,0) 100%);
}

.modelHero.theme-light .badge{
  color:var(--red);
  background:rgba(212,57,52,.08);
  border:1px solid rgba(212,57,52,.22);
}

.modelHero.theme-light h1{ color:#111827; }
.modelHero.theme-light .lead,
.modelHero.theme-light p{ color:#1f2937; }

.modelHero.theme-light .pill{
  background:rgba(255,255,255,.92);
  color:#374151;
  border:1px solid rgba(17,24,39,.10);
}

@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; }
  .heroMedia{ min-height:340px; }
  .grid3{ grid-template-columns:1fr; }
  .modelHero{
    min-height:320px;
    background-position:center center;
  }
}

@media (max-width: 720px){
  .topbar{ padding:12px 14px; }
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .mobileNavWrap{ display:block; }
  .cards, .grid2{ grid-template-columns:1fr; }
  .wrap{
    width:min(var(--max), calc(100% - 22px));
    margin:14px auto 54px;
  }
  .heroContent, .sectionInner, .modelHeroInner{ padding:20px; }
  .heroMedia{ min-height:280px; }
  .footerInner{ width:min(var(--max), calc(100% - 22px)); }
  .modelHero{
    min-height:300px;
    background-position:center center !important;
  }
  .modelHero.theme-dark::before{
    background:linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.26) 55%, rgba(0,0,0,.18) 100%);
  }
  .modelHero.theme-light::before{
    background:linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 55%, rgba(255,255,255,.02) 100%);
  }
}
.ctaBanner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.ctaBannerText{
  max-width:760px;
}

.faqList{
  display:grid;
  gap:12px;
}

.faqItem{
  background:#ffffff;
  border:1px solid rgba(17,24,39,.07);
  border-radius:18px;
  padding:18px;
  box-shadow:0 6px 18px rgba(17,24,39,.04);
}

.modelSupportGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.supportCard{
  background:#ffffff;
  border:1px solid rgba(17,24,39,.07);
  border-radius:18px;
  padding:18px;
  box-shadow:0 6px 18px rgba(17,24,39,.04);
}

.serviceForm{
  margin-top:18px;
}

.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.formField{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:12px;
}

.formField label{
  font-size:14px;
  font-weight:600;
  color:#111827;
}

.formField input,
.formField select,
.formField textarea{
  width:100%;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding:14px 14px;
  font:inherit;
  color:#111827;
  background:#ffffff;
  outline:none;
  transition:var(--trans);
}

.formField input:focus,
.formField select:focus,
.formField textarea:focus{
  border-color:rgba(212,57,52,.45);
  box-shadow:0 0 0 4px rgba(212,57,52,.08);
}

@media (max-width: 720px){
  .modelSupportGrid,
  .formGrid{
    grid-template-columns:1fr;
  }
}
.galleryGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.galleryCard{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#ffffff;
  border:1px solid rgba(17,24,39,.07);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(17,24,39,.05);
  transition:var(--trans);
}

.galleryCard:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(17,24,39,.08);
  border-color:rgba(212,57,52,.18);
}

.galleryImage{
  aspect-ratio: 4 / 3;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}

.galleryContent{
  padding:14px;
}

.galleryCategory{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:#D43934;
  background:rgba(212,57,52,.08);
  border:1px solid rgba(212,57,52,.18);
  margin-bottom:10px;
}

.galleryContent h3{
  margin:0;
  font-size:16px;
}

@media (max-width: 1100px){
  .galleryGrid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 820px){
  .galleryGrid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 540px){
  .galleryGrid{
    grid-template-columns:1fr;
  }
}
.galleryGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.galleryCard{
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.07);
  box-shadow:0 8px 24px rgba(17,24,39,.05);
  transition:var(--trans);
}

.galleryCard:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(17,24,39,.08);
  border-color:rgba(212,57,52,.18);
}

.galleryImage{
  aspect-ratio:4 / 3;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
}

.communityBox,
.referralBox{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media (max-width: 1100px){
  .galleryGrid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 820px){
  .galleryGrid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 540px){
  .galleryGrid{
    grid-template-columns:1fr;
  }
}
.variantCardLayout{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  align-items:start;
}

.variantThumbWrap{
  width:100%;
}

.variantThumb{
  width:100%;
  aspect-ratio:4 / 3;
  border-radius:18px;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  border:1px solid rgba(17,24,39,.08);
  background-color:#f8fafc;
}

.variantThumbPlaceholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6b7280;
  font-size:14px;
}

.variantMain{
  min-width:0;
}

.galleryGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.galleryCard{
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.07);
  box-shadow:0 8px 24px rgba(17,24,39,.05);
  transition:var(--trans);
}

.galleryCard:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(17,24,39,.08);
  border-color:rgba(212,57,52,.18);
}

.galleryImage{
  aspect-ratio:4 / 3;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
}

.communityBox,
.referralBox{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media (max-width: 1100px){
  .galleryGrid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 860px){
  .variantCardLayout{
    grid-template-columns:1fr;
  }

  .variantThumb{
    max-width:360px;
  }
}

@media (max-width: 820px){
  .galleryGrid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 540px){
  .galleryGrid{
    grid-template-columns:1fr;
  }
}
.homeNewsHead{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
  flex-wrap:wrap;
}

.homeNewsList{
  display:grid;
  gap:16px;
}

.homeNewsItem{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:18px;
  align-items:center;
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  text-decoration:none;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.homeNewsItem:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
}

.homeNewsThumbWrap{
  width:120px;
}

.homeNewsThumb{
  display:block;
  width:120px;
  height:84px;
  object-fit:cover;
  border-radius:12px;
  background:#1b1b1b;
}

.homeNewsThumbPlaceholder{
  background:linear-gradient(135deg, #2a2a2a, #1b1b1b);
}

.homeNewsText{
  min-width:0;
}

.homeNewsMeta{
  font-size:13px;
  opacity:.7;
  margin-bottom:6px;
}

.homeNewsTitle{
  font-size:24px;
  line-height:1.2;
  font-weight:700;
  color:#fff;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

.homeNewsArrow{
  font-size:26px;
  opacity:.7;
  transition:transform .18s ease, opacity .18s ease;
}

.homeNewsItem:hover .homeNewsArrow{
  transform:translateX(4px);
  opacity:1;
}

@media (max-width: 767px){
  .homeNewsItem{
    grid-template-columns:88px 1fr;
    gap:14px;
  }

  .homeNewsThumbWrap{
    width:88px;
  }

  .homeNewsThumb{
    width:88px;
    height:68px;
  }

  .homeNewsArrow{
    display:none;
  }

  .homeNewsTitle{
    font-size:18px;
  }
}