@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --o: #F27B1A;
  --ol: #FF9A3C;
  --d: #0D0D0D;
  --dc: #161616;
  --w: #FAFAFA;
  --g: #B8B5AF;
  --gl: rgba(255,255,255,0.06);
  --gb: rgba(255,255,255,0.1);
  --nh: 70px;
  --gn: #2ECC71;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--d);
  color: var(--w);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nh); display: flex; align-items: center;
  justify-content: space-between; padding: 0 1.25rem;
  z-index: 1000; background: rgba(13,13,13,0.85);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gb); transition: background 0.3s;
}
.nav__brand {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.15rem; color: var(--o); white-space: nowrap;
  display: flex; align-items: center; text-decoration: none;
}
.nav__brand span { color: var(--w); margin-left: 0.35rem; }
.nav__links { display: none; list-style: none; gap: 1.75rem; align-items: center; }
.nav__links a {
  color: var(--g); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: color 0.3s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--o); transition: width 0.3s;
}
.nav__links a:hover { color: var(--w); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--o) !important; color: var(--w) !important;
  padding: 0.55rem 1.2rem !important; border-radius: 10px !important;
  font-weight: 700 !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--ol) !important; }

.bur { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 8px; }
.bur span {
  display: block; width: 24px; height: 2px; background: var(--w);
  border-radius: 2px; transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.bur.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.bur.active span:nth-child(2) { opacity: 0; }
.bur.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob {
  position: fixed; inset: 0; background: rgba(13,13,13,0.97);
  backdrop-filter: blur(24px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mob.open { opacity: 1; pointer-events: all; }
.mob a {
  color: var(--w); text-decoration: none; font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.75rem; opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}
.mob.open a { opacity: 1; transform: translateY(0); }
.mob a:hover { color: var(--o); }
.mob.open a:nth-child(1) { transition-delay: 0.1s; }
.mob.open a:nth-child(2) { transition-delay: 0.15s; }
.mob.open a:nth-child(3) { transition-delay: 0.2s; }
.mob.open a:nth-child(4) { transition-delay: 0.25s; }
.mob.open a:nth-child(5) { transition-delay: 0.3s; }
.mob.open a:nth-child(6) { transition-delay: 0.35s; }
.mob .mob-cta {
  margin-top: 1rem; background: var(--o); padding: 1rem 2.5rem;
  border-radius: 12px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1rem;
}

/* FLOATING BUTTONS */
.fl {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 998;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end;
  opacity: 0; pointer-events: none; transition: opacity 0.4s, transform 0.4s;
  transform: translateY(20px);
}
.fl.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.fl a {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s; border: none; cursor: pointer;
}
.fl a:hover { transform: scale(1.1); }
.fl__phone { width: 56px; height: 56px; border-radius: 50%; background: var(--gn); color: var(--w); font-size: 1.5rem; }
.fl__quote { border-radius: 28px; background: var(--o); color: var(--w); font-size: 0.8rem; font-weight: 700; padding: 0.85rem 1.25rem; gap: 0.5rem; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nh) + 1.5rem) 1.25rem 1.25rem; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero__ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,13,13,0.35) 0%, rgba(13,13,13,0.15) 25%,
    rgba(13,13,13,0.1) 45%, rgba(13,13,13,0.55) 70%,
    rgba(13,13,13,0.92) 100%);
  z-index: 1;
}
.hero__c { position: relative; z-index: 2; max-width: 720px; margin-top: auto; margin-bottom: 0; width: 100%; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(13,13,13,0.55); border: 1px solid var(--gb);
  backdrop-filter: blur(12px); padding: 0.32rem 0.85rem;
  border-radius: 100px; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ol); margin-bottom: 0.7rem; animation: fu 0.8s ease both;
}
.hero__badge::before {
  content: ''; width: 5px; height: 5px; background: var(--o);
  border-radius: 50%; animation: pu 2s ease infinite;
}
@keyframes pu { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(1.6rem, 6vw, 4rem); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 0.7rem;
  animation: fu 0.8s 0.15s ease both;
  text-shadow: 0 2px 25px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.7);
}
.hero h1 span { color: var(--o); }
.hero__sub {
  font-size: clamp(0.82rem, 2.2vw, 1.1rem); line-height: 1.5;
  color: var(--w); max-width: 500px; margin-bottom: 1rem;
  animation: fu 0.8s 0.3s ease both;
  text-shadow: 0 1px 14px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8);
}
.hero__act { display: flex; flex-direction: column; gap: 0.55rem; animation: fu 0.8s 0.45s ease both; margin-bottom: 1.25rem; }
.hero__act .btn { padding: 0.85rem 1.5rem; font-size: 0.92rem; }
@keyframes fu { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* Trust bar overlaid inside hero on mobile */
.hero__trust {
  position: relative; z-index: 2;
  display: grid !important; grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.5rem; padding: 1rem 0.85rem;
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  width: 100%;
  animation: fu 0.8s 0.6s ease both;
}
.hero__trust > div {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero__trust__n {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.5rem; color: var(--o); line-height: 1; text-align: center;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.hero__trust__l {
  font-size: 0.6rem; color: var(--w); text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 0.3rem; text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem 2rem; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); text-align: center;
}
.btn-p { background: var(--o); color: var(--w); box-shadow: 0 4px 24px rgba(242,123,26,0.35); }
.btn-p:hover { background: var(--ol); transform: translateY(-2px); }
.btn-g { background: var(--gl); color: var(--w); border: 1px solid var(--gb); }
.btn-g:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* TRUST BAR */
.trust { display: none; background: var(--d); border-top: 1px solid rgba(255,255,255,0.05); padding: 2rem 1.25rem; }
.trust__in { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 720px; margin: 0 auto; }
.trust__n { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.75rem; color: var(--o); line-height: 1; text-align: center; }
.trust__l { font-size: 0.7rem; color: var(--g); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; text-align: center; }

/* SECTION COMMONS */
.sl { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--o); margin-bottom: 1rem; }
.sl::before { content: ''; width: 24px; height: 2px; background: var(--o); }
.st { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(1.75rem, 6vw, 2.75rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.ss { font-size: 0.95rem; line-height: 1.6; color: var(--g); max-width: 560px; margin-bottom: 2.5rem; }

/* PROMOS */
.promos { padding: 4rem 1.25rem; background: linear-gradient(180deg, var(--d) 0%, #0f1a0f 100%); }
.promos__g { display: flex; flex-direction: column; gap: 1.25rem; }
.pc {
  background: linear-gradient(135deg, rgba(46,204,113,0.08), rgba(46,204,113,0.02));
  border: 1px solid rgba(46,204,113,0.2); border-radius: 16px;
  padding: 1.75rem; transition: all 0.4s;
}
.pc:hover { border-color: rgba(46,204,113,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pc__b {
  display: inline-block; background: var(--gn); color: #000;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.pc__b--r { background: var(--o); color: var(--w); }
.pc__b--c { background: #3498db; color: var(--w); }
.pc__t { font-weight: 700; font-size: 1.15rem; margin-bottom: 0.5rem; }
.pc__d { font-size: 0.9rem; line-height: 1.6; color: var(--g); }
.pc__h { display: inline-block; margin-top: 1rem; font-weight: 700; font-size: 0.85rem; color: var(--gn); }
.pc__h--r { color: var(--o); }
.pc__h--c { color: #3498db; }
.pc__cond { font-size: 0.6rem; color: var(--g); opacity: 0.4; margin-top: 0.5rem; }

/* SERVICES */
.svc { padding: 4rem 1.25rem; background: var(--d); }
.svc__g { display: flex; flex-direction: column; gap: 1rem; }
.sc {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--gb); border-radius: 16px;
  padding: 1.75rem; transition: all 0.4s; position: relative; overflow: hidden;
}
.sc::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--o), var(--ol));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.sc:hover::before { transform: scaleX(1); }
.sc:hover { border-color: rgba(242,123,26,0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.sc--f { border-color: rgba(242,123,26,0.3); }
.sc__badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--o); color: var(--w); font-size: 0.65rem;
  font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 6px; text-transform: uppercase;
}
.sc__i {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(242,123,26,0.1); display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
}
.sc__t { font-weight: 700; font-size: 1.15rem; margin-bottom: 0.5rem; }
.sc__d { font-size: 0.9rem; line-height: 1.6; color: var(--g); }
.sc--click { cursor: pointer; }
.sc--click:hover { border-color: rgba(242,123,26,0.5); }
.sc__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; padding-top: 0.85rem;
  border-top: 1px solid var(--gb);
  color: var(--o); font-size: 0.82rem; font-weight: 700;
  transition: gap 0.3s ease;
}
.sc--click:hover .sc__link { gap: 0.7rem; }

/* HOW TO COUNT WINDOWS */
.count {
  padding: 4rem 1.25rem;
  background: linear-gradient(180deg, #111 0%, var(--d) 100%);
}
.count__intro {
  background: linear-gradient(135deg, rgba(242,123,26,0.1), rgba(242,123,26,0.03));
  border: 1px solid rgba(242,123,26,0.2);
  border-radius: 16px; padding: 1.25rem; margin-bottom: 2rem;
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.count__intro__icon {
  flex-shrink: 0; width: 38px; height: 38px;
  border-radius: 10px; background: rgba(242,123,26,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.count__intro p {
  font-size: 0.85rem; line-height: 1.55; color: var(--w); margin: 0;
}
.count__intro p strong { color: var(--o); }
.count__rule {
  background: var(--dc); border: 1px solid var(--gb);
  border-radius: 12px; padding: 1.1rem 1.25rem; margin-bottom: 2rem;
  text-align: center;
}
.count__rule__label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--o); margin-bottom: 0.4rem;
}
.count__rule__text {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(1rem, 3.2vw, 1.5rem); line-height: 1.3; color: var(--w);
}
.count__rule__text span { color: var(--o); }
.count__examples {
  display: flex; flex-direction: column; gap: 1rem;
}
.count__ex {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--gb);
  border-radius: 14px; padding: 1.1rem;
  transition: all 0.3s;
  display: grid; grid-template-columns: 100px 1fr; gap: 1rem; align-items: center;
}
.count__ex:hover {
  border-color: rgba(242,123,26,0.3);
  transform: translateY(-3px);
}
.count__ex__visual {
  background: var(--d); border-radius: 10px;
  padding: 0.85rem;
  display: flex; justify-content: center; align-items: center;
  min-height: 90px;
}
.count__ex__visual svg { width: 100%; height: auto; max-width: 90px; }
.count__ex__type { display: none; }
.count__ex__title {
  font-weight: 700; font-size: 0.95rem; color: var(--w); margin-bottom: 0.35rem;
}
.count__ex__count {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(242,123,26,0.15); border: 1px solid rgba(242,123,26,0.3);
  color: var(--o); padding: 0.3rem 0.7rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 0.4rem;
}
.count__ex__desc { font-size: 0.78rem; line-height: 1.5; color: var(--g); }
.count__ex--hide-mobile { display: none; }
@media (min-width: 768px) {
  .count { padding: 5rem 4rem; }
  .count__intro { padding: 1.5rem; gap: 1rem; }
  .count__intro p { font-size: 0.9rem; line-height: 1.6; }
  .count__intro__icon { width: 44px; height: 44px; font-size: 1.4rem; border-radius: 12px; }
  .count__rule { padding: 1.25rem 1.5rem; }
  .count__rule__label { font-size: 0.7rem; }
  .count__examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .count__ex { display: block; padding: 1.5rem; border-radius: 16px; }
  .count__ex__visual { padding: 1.5rem; min-height: 140px; margin-bottom: 1.25rem; border-radius: 12px; }
  .count__ex__visual svg { max-width: 240px; }
  .count__ex__type {
    display: block;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--o); margin-bottom: 0.5rem;
  }
  .count__ex__title { font-size: 1.05rem; margin-bottom: 0.5rem; }
  .count__ex__count { font-size: 0.85rem; padding: 0.4rem 0.85rem; margin-bottom: 0.75rem; }
  .count__ex__desc { font-size: 0.85rem; line-height: 1.6; }
  .count__ex--hide-mobile { display: block; }
}

/* GALLERY */
.gal { padding: 4rem 1.25rem; background: linear-gradient(180deg, var(--d) 0%, #111 100%); }
.gal__filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem;
  justify-content: flex-start;
}
.gal__filter {
  background: rgba(242,123,26,0.08);
  border: 1px solid rgba(242,123,26,0.2);
  color: var(--w); padding: 0.55rem 1.15rem;
  border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.gal__filter:hover {
  background: rgba(242,123,26,0.18);
  border-color: rgba(242,123,26,0.5);
  transform: translateY(-1px);
}
.gal__filter.active {
  background: var(--o);
  border-color: var(--o);
  color: var(--w);
  box-shadow: 0 4px 16px rgba(242,123,26,0.35);
}
.gal__filter::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--o); opacity: 0.6; transition: all 0.3s;
}
.gal__filter.active::before { background: var(--w); opacity: 1; }
.gal__g { display: flex; flex-direction: column; gap: 1.5rem; }
.gc { border-radius: 16px; overflow: hidden; background: var(--dc); border: 1px solid var(--gb); transition: opacity 0.3s, transform 0.3s; }
.gc.hidden { display: none; }
.gc__cmp { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: col-resize; touch-action: none; }
.gc__cmp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gc__cmp .af { clip-path: inset(0 50% 0 0); }
.gc__sl { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--o); z-index: 3; pointer-events: none; }
.gc__sl::after {
  content: '\25C0 \25B6'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); background: var(--o);
  color: var(--w); font-size: 0.55rem; padding: 5px 7px;
  border-radius: 100px; white-space: nowrap; letter-spacing: 2px;
}
.gc__lb { position: absolute; bottom: 8px; padding: 3px 10px; border-radius: 6px; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; z-index: 4; pointer-events: none; }
.gc__lb--a { left: 8px; background: rgba(13,13,13,0.8); color: var(--g); }
.gc__lb--b { right: 8px; background: var(--o); color: var(--w); }
.gc__info { padding: 1.25rem; }
.gc__title { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.gc__type { font-size: 0.8rem; color: var(--o); }
.gc--soon { position: relative; }
.gc--soon .gc__soon-ov {
  position: absolute; inset: 0; background: rgba(13,13,13,0.85);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; z-index: 5; padding: 1.5rem; text-align: center;
}
.gc--soon .gc__soon-ov h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.gc--soon .gc__soon-ov p { font-size: 0.8rem; color: var(--g); line-height: 1.5; }

/* TESTIMONIALS */
.testi { padding: 4rem 1.25rem; background: #111; }
.testi__g { display: flex; flex-direction: column; gap: 1.25rem; }
.tc {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--gb); border-radius: 16px; padding: 1.75rem;
}
.tc__q { font-size: 0.9rem; line-height: 1.7; color: var(--g); font-style: italic; margin-bottom: 1.25rem; position: relative; padding-left: 1.25rem; }
.tc__q::before { content: '\201C'; position: absolute; left: 0; top: -4px; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--o); font-style: normal; }
.tc__a { font-weight: 700; font-size: 0.9rem; }
.tc__loc { font-size: 0.8rem; color: var(--o); }
/* Hide last 3 testimonials on mobile */
.tc--hide-mobile { display: none; }
@media (min-width: 768px) { .tc--hide-mobile { display: block; } }

/* DIFF */
.diff { padding: 4rem 1.25rem; background: var(--d); }
.diff__box { background: linear-gradient(135deg, rgba(242,123,26,0.1), rgba(242,123,26,0.03)); border: 1px solid rgba(242,123,26,0.15); border-radius: 20px; padding: 2rem 1.5rem; max-width: 700px; }
.diff__box h3 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(1.25rem, 4vw, 1.75rem); line-height: 1.2; margin-bottom: 1rem; }
.diff__box h3 span { color: var(--o); }
.diff__box p { font-size: 0.9rem; line-height: 1.7; color: var(--g); margin-bottom: 1rem; }
.diff__fs { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.diff__f { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; }
.diff__f::before {
  content: '\2713'; flex-shrink: 0; width: 24px; height: 24px;
  background: rgba(242,123,26,0.15); color: var(--o);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 700;
}

/* WHY */
.why { padding: 4rem 1.25rem; background: linear-gradient(180deg, #111 0%, var(--d) 100%); }
.why__g { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.wi { display: flex; gap: 1rem; align-items: flex-start; }
.wi__i { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(242,123,26,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.wi h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.wi p { font-size: 0.85rem; color: var(--g); line-height: 1.5; }

/* FAQ */
.faq { padding: 4rem 1.25rem; background: #111; }
.faq__l { display: flex; flex-direction: column; gap: 0.75rem; max-width: 700px; }
.fi { background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid var(--gb); border-radius: 12px; overflow: hidden; }
.fi__q { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 0.95rem; transition: color 0.3s; user-select: none; }
.fi__q:hover { color: var(--o); }
.fi__ic { font-size: 1.25rem; color: var(--o); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.fi.open .fi__ic { transform: rotate(45deg); }
.fi__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 1.5rem; font-size: 0.9rem; line-height: 1.8; color: var(--g); }
.fi.open .fi__a { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* CONTACT */
.contact { padding: 4rem 1.25rem; background: var(--d); }
.contact__in { display: flex; flex-direction: column; gap: 3rem; }
.contact__info p { font-size: 0.95rem; line-height: 1.6; color: var(--g); margin-bottom: 1.5rem; }
.cd { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--g); }
.cd a { color: var(--g); text-decoration: none; transition: color 0.3s; }
.cd a:hover { color: var(--o); }
.cd__i { width: 32px; height: 32px; border-radius: 8px; background: rgba(242,123,26,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.hrs { margin-top: 1.5rem; border-top: 1px solid var(--gb); padding-top: 1rem; }
.hrs__t { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--o); margin-bottom: 0.75rem; }
.hrs__r { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--g); padding: 0.25rem 0; max-width: 250px; }
.hrs__r span:first-child { font-weight: 600; color: var(--w); }
.cf { max-width: 500px; }
.cf__r { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.cf__rf { flex-direction: column; }
.cf__f { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.cf__f label { font-size: 0.8rem; font-weight: 600; color: var(--g); }
.cf__f input, .cf__f select, .cf__f textarea {
  background: rgba(255,255,255,0.06); border: 1px solid var(--gb);
  border-radius: 10px; padding: 0.85rem 1rem; color: var(--w);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s; outline: none; width: 100%;
}
.cf__f input:focus, .cf__f select:focus, .cf__f textarea:focus { border-color: var(--o); }
.cf__f select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8B5AF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.cf__f select option { background: var(--d); color: var(--w); }
.cf__f textarea { resize: vertical; min-height: 100px; }
.cf__sub {
  width: 100%; padding: 1rem; border: none; border-radius: 12px;
  background: var(--o); color: var(--w); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background 0.3s, transform 0.3s; margin-top: 0.5rem;
}
.cf__sub:hover { background: var(--ol); transform: translateY(-2px); }

/* ZONES */
.zones { padding: 4rem 1.25rem; background: #111; }
.zones__g { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.zt { background: rgba(242,123,26,0.1); border: 1px solid rgba(242,123,26,0.15); border-radius: 100px; padding: 0.5rem 1.15rem; font-size: 0.85rem; font-weight: 500; color: var(--w); transition: all 0.3s; }
.zt:hover { background: rgba(242,123,26,0.2); border-color: var(--o); }

/* FOOTER */
.foot { padding: 2.5rem 1.25rem 5rem; background: var(--d); border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.foot__brand { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.25rem; margin-bottom: 0.5rem; }
.foot__brand .o { color: var(--o); }
.foot__brand .w { color: var(--w); }
.foot__c { font-size: 0.75rem; color: var(--g); margin-top: 0.5rem; }
.foot__links { display: flex; justify-content: center; gap: 1.25rem; margin-top: 1rem; flex-wrap: wrap; }
.foot__links a { color: var(--g); text-decoration: none; font-size: 0.75rem; transition: color 0.3s; }
.foot__links a:hover { color: var(--o); }
.foot__social { display: flex; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.foot__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gl); border: 1px solid var(--gb);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem; transition: all 0.3s;
}
.foot__social a:hover { background: var(--o); border-color: var(--o); transform: translateY(-2px); }

/* REVEAL */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.v { opacity: 1; transform: translateY(0); }

/* DESKTOP */
@media (min-width: 768px) {
  .nav { padding: 0 3rem; height: 80px; }
  .nav__brand { font-size: 1.45rem; }
  .nav__links { display: flex; gap: 2.25rem; }
  .nav__links a { font-size: 0.95rem; font-weight: 500; }
  .nav__cta { padding: 0.75rem 1.5rem !important; font-size: 0.95rem !important; }
  .bur { display: none; }
  .hero { padding: 4rem; justify-content: center; }
  .hero__c { max-width: 720px; }
  .hero__act { flex-direction: row; }
  .hero__bg img { object-position: center 60%; }
  .hero__trust { max-width: 560px; }
  .hero__trust__n { font-size: 1.85rem; }
  .hero__trust__l { font-size: 0.72rem; }
  .trust { display: none !important; }
  .promos, .svc, .gal, .testi, .why, .faq, .contact, .zones, .count { padding: 5rem 4rem; }
  .promos__g { flex-direction: row; gap: 1.25rem; }
  .pc { flex: 1; }
  .svc__g { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .sc { padding: 2rem; }
  .sc__t { font-size: 1.25rem; }
  .sc__d { font-size: 0.98rem; line-height: 1.65; }
  .gal__g { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .testi__g { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .why__g { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .wi h4 { font-size: 1.1rem; }
  .wi p { font-size: 0.95rem; line-height: 1.6; }
  .contact { padding: 5rem 2rem; }
  .contact__in {
    flex-direction: row; gap: 4rem; align-items: flex-start;
    max-width: 1100px; margin: 0 auto;
  }
  .contact > .rv { max-width: 1100px; margin-left: auto; margin-right: auto; }
  .contact__info, .cf { flex: 1; }
  .contact__info p { font-size: 1.05rem; line-height: 1.7; }
  .cd { font-size: 1rem; gap: 0.85rem; margin-bottom: 0.9rem; }
  .cd__i { width: 38px; height: 38px; font-size: 1rem; }
  .hrs__t { font-size: 0.9rem; }
  .hrs__r { font-size: 0.95rem; max-width: 280px; }
  .cf__f label { font-size: 0.9rem; }
  .cf__f input, .cf__f select, .cf__f textarea { font-size: 1rem; padding: 1rem 1.15rem; }
  .cf__sub { font-size: 1.05rem; padding: 1.1rem; }
  .fl { bottom: 2rem; right: 2rem; gap: 1rem; }
  .fl__phone { width: 68px; height: 68px; font-size: 1.85rem; }
  .fl__quote { font-size: 0.95rem; padding: 1.1rem 1.65rem; border-radius: 34px; }
  .foot { padding-bottom: 2rem; }
}
@media (min-width: 1200px) {
  .nav { padding: 0 6rem; }
  .hero { padding: 5rem 8rem; }
  .hero__bg img { object-position: center center; }
  .promos, .svc, .diff, .gal, .testi, .why, .faq, .contact, .zones { padding: 6rem 8rem; }
  .trust { padding: 3rem 8rem; }
  .testi__g { grid-template-columns: 1fr 1fr 1fr; }
}
