/* ═══════════════════════════════════════════════════════════════
   Sitesale — style.css  v4
   Fonts : Montserrat (headings) + Inter (body)
   Palette: --yellow #FFD600 / --black #0D0D0D / --white #FFF
═══════════════════════════════════════════════════════════════ */

:root {
  --yellow:       #FFD600;
  --yellow-dark:  #E6BE00;
  --yellow-light: #FFF6B3;
  --yellow-bg:    #FFFBE0;
  --black:        #0D0D0D;
  --black2:       #181818;
  --black3:       #242424;
  --white:        #FFFFFF;
  --gray:         #F6F6F6;
  --gray2:        #ECECEC;
  --gray3:        #D4D4D4;
  --text:         #181818;
  --muted:        #5C5C5C;
  --muted-2:      #8A8A8A;
  --border:       #E2E2E2;

  --r:    18px;
  --r-sm: 12px;
  --r-xs: 8px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.05);
  --shadow:      0 6px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --shadow-y:    0 8px 28px rgba(255,214,0,.4);

  --ease-out: cubic-bezier(.22,.68,0,1.2);
  --ease-std: cubic-bezier(.4,0,.2,1);

  --header-h: 64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 17px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
ul    { list-style: none; }
h1,h2,h3,h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.section        { padding: 52px 0; }
.section-black  { background: var(--black); color: var(--white); }
.section-gray   { background: var(--gray); }
.text-center    { text-align: center; }
.mt-32          { margin-top: 32px; }

/* ── Tags ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.tag-y    { background: var(--yellow); color: var(--black); }
.tag-dark { background: var(--black);  color: var(--yellow); }
.tag-out  { border: 2px solid rgba(255,214,0,.5); color: var(--yellow); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: .01em;
  overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-std), background .18s var(--ease-std);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(.97) !important; }

.btn-y { background: var(--yellow); color: var(--black); box-shadow: var(--shadow-y); }
.btn-y:hover { background: var(--yellow-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,214,0,.5); }

.btn-k { background: var(--black); color: var(--yellow); }
.btn-k:hover { background: #1f1f1f; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }

.btn-out-y { border: 2px solid var(--yellow); color: var(--yellow); background: transparent; }
.btn-out-y:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }

.btn-w { background: var(--white); color: var(--black); box-shadow: var(--shadow); }
.btn-w:hover { background: #f3f3f3; transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-xs);
  background: rgba(0,0,0,.06);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  transition: background .18s, transform .18s var(--ease-out);
  white-space: nowrap;
}
.btn-tg:hover { background: rgba(0,0,0,.12); transform: translateY(-2px); }

.btn-lg { padding: 17px 38px; font-size: 1.04rem; border-radius: 14px; }
.btn-header { padding: 9px 20px; font-size: .87rem; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 600;
  background: var(--yellow);
  transition: box-shadow .28s var(--ease-std);
}
.site-header.scrolled { box-shadow: 0 4px 22px rgba(0,0,0,.18); }

.scroll-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--black);
  transition: width .08s linear;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 8px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.035em;
  flex-shrink: 0;
  transition: opacity .2s;
}
.logo:hover { opacity: .75; }
.logo em { font-style: normal; font-weight: 500; }

.nav-links {
  display: none !important;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 13px;
  color: rgba(0,0,0,.65);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--r-xs);
  transition: color .18s, background .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); background: rgba(0,0,0,.08); }

.header-actions {
  display: none !important;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-xs);
  transition: background .2s;
  flex-shrink: 0;
}
.burger:hover { background: rgba(0,0,0,.07); }
.burger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--black);
  border-radius: 3px;
  transition: transform .3s var(--ease-std), opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--yellow);
  border-bottom: 3px solid rgba(0,0,0,.1);
  padding: 10px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-105%);
  opacity: 0;
  transition: transform .38s var(--ease-std), opacity .28s;
  z-index: 590;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  padding: 14px 14px;
  color: rgba(0,0,0,.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: var(--r-xs);
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(0,0,0,.07); color: var(--black); }
.mob-order {
  margin-top: 12px;
  padding: 16px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background .18s;
}
.mob-order:hover { background: #222; }
.mob-tg {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px;
  border: 1.5px solid rgba(0,0,0,.2);
  border-radius: var(--r-sm);
  color: var(--black) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  transition: background .18s;
}
.mob-tg:hover { background: rgba(0,0,0,.06); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--black);
  padding: 96px 0 52px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,214,0,.09) 0%, transparent 70%); top: -150px; right: -200px; }
.hero-glow-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,214,0,.05) 0%, transparent 70%); bottom: -80px; left: -100px; }
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,214,0,.1);
  border: 1.5px solid rgba(255,214,0,.28);
  border-radius: 40px;
  padding: 9px 20px;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .035em;
  margin-bottom: 26px;
  animation: fadeUp .7s var(--ease-out) .1s both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.045em;
  margin-bottom: 22px;
  animation: fadeUp .85s var(--ease-out) .22s both;
}
.hero h1 .accent { color: var(--yellow); position: relative; display: inline-block; }
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  opacity: .35;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineExpand .7s var(--ease-out) 1s both;
}
@keyframes lineExpand { to { transform: scaleX(1); } }

.hero-sub {
  font-size: clamp(1.02rem, 2.6vw, 1.18rem);
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.75;
  animation: fadeUp .8s var(--ease-out) .4s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp .8s var(--ease-out) .55s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
  animation: fadeUp .8s var(--ease-out) .7s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.42);
  font-size: .9rem;
  font-weight: 500;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleUp { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s var(--ease-std), transform .75s var(--ease-out);
}
.reveal.scale { transform: scale(.92); }
.reveal.visible { opacity: 1; transform: translate(0) scale(1); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .26s; }
.reveal.d4 { transition-delay: .34s; }
.reveal.d5 { transition-delay: .42s; }
.reveal.d6 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (portfolio, 404, etc.)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--black);
  padding: 96px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,214,0,.08) 0%, transparent 70%);
  top: -100px; right: -150px;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero .tag { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ═══════════════════════════════════════════════════════════════
   STRIPE
═══════════════════════════════════════════════════════════════ */
.stripe {
  background: var(--white);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  overflow: hidden;
}
.stripe-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 50px;
  padding: 18px 22px;
}
.stripe-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.stripe-item .si { font-size: 1.25rem; }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════════ */
.sec-head { text-align: center; margin-bottom: 36px; }
.sec-head .tag { margin-bottom: 16px; }
.sec-head h2 {
  font-size: clamp(1.95rem, 4.8vw, 3rem);
  margin-bottom: 14px;
}
.sec-head p { font-size: 1.05rem; color: var(--muted); max-width: 480px; margin: 0 auto; }
.sec-head.lt h2 { color: var(--white); }
.sec-head.lt p  { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 26px;
  transition: border-color .28s, box-shadow .28s, transform .28s var(--ease-out);
}
.svc-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 10px 32px rgba(255,214,0,.15);
  transform: translateY(-4px);
}
.svc-icon {
  width: 54px; height: 54px;
  background: var(--yellow-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 16px;
  transition: transform .3s var(--ease-out);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-4deg); }
.svc-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p  { font-size: .96rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   STEPS (How it works)
═══════════════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 26px;
  position: relative;
  transition: border-color .25s, transform .25s var(--ease-out), box-shadow .25s;
}
.step:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(255,214,0,.15);
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 24px; height: 3px;
  background: var(--black);
  border-radius: 2px;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: .96rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 22px;
  align-items: stretch;
}
.pc {
  border-radius: var(--r);
  padding: 38px 30px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-std);
}
.pc:hover { transform: translateY(-8px); }
.pc-basic   { background: var(--black2); border: 1.5px solid rgba(255,255,255,.1); color: var(--white); }
.pc-popular { background: var(--yellow); color: var(--black); box-shadow: 0 16px 44px rgba(255,214,0,.4); }
.pc-premium { background: var(--black2); border: 1.5px solid rgba(255,214,0,.3); color: var(--white); }

.pc-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 40px;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.pc-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .5;
  margin-bottom: 12px;
}
.pc-price-wrap { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pc-price {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4.6rem, 14vw, 6.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
}
.pc-rub { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; font-weight: 800; opacity: .8; }
.pc-desc { font-size: .98rem; opacity: .6; margin-bottom: 26px; }

.pc-features { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .98rem;
  line-height: 1.5;
}
.pc-features li .chk { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.pc-basic   circle { fill: rgba(255,214,0,.14); }  .pc-basic   path { stroke: var(--yellow); }
.pc-popular circle { fill: rgba(0,0,0,.1); }       .pc-popular path { stroke: var(--black); }
.pc-premium circle { fill: rgba(255,214,0,.14); }  .pc-premium path { stroke: var(--yellow); }

.pc-btn {
  width: 100%;
  padding: 15px;
  border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: .98rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .18s var(--ease-out), box-shadow .18s;
}
.pc-btn:hover { transform: translateY(-2px); }
.pc-basic   .pc-btn { background: rgba(255,255,255,.1); color: var(--white); border: 1.5px solid rgba(255,255,255,.18); }
.pc-basic   .pc-btn:hover { background: rgba(255,255,255,.18); }
.pc-popular .pc-btn { background: var(--black); color: var(--yellow); }
.pc-popular .pc-btn:hover { background: #222; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.pc-premium .pc-btn { background: var(--yellow); color: var(--black); }
.pc-premium .pc-btn:hover { background: var(--yellow-dark); }

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO / WORK CARDS
═══════════════════════════════════════════════════════════════ */
.works-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.works-filter {
  padding: 9px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.works-filter:hover { border-color: var(--yellow); }
.works-filter.active { background: var(--black); color: var(--yellow); border-color: var(--black); }
.works-filter .cnt {
  font-size: .75rem;
  opacity: .6;
  margin-left: 4px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.work-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease-out), box-shadow .25s;
}
.work-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.work-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray);
}
.work-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.work-card:hover .work-card-media img { transform: scale(1.05); }
.work-card-noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted-2);
  font-size: .9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.work-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 40px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.work-card-body { padding: 22px 24px 24px; }
.work-card-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.work-card-body p { font-size: .94rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.work-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.work-card-date {
  font-size: .82rem;
  color: var(--muted-2);
  font-weight: 500;
}
.work-card-arrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 800;
  transition: transform .25s;
}
.work-card:hover .work-card-arrow { transform: translateX(4px); }

.works-empty {
  text-align: center;
  padding: 60px 20px;
}
.works-empty-icon { font-size: 3.5rem; margin-bottom: 18px; }
.works-empty h2 { font-size: 1.7rem; margin-bottom: 12px; }
.works-empty p { color: var(--muted); margin-bottom: 24px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════════
   WORK DETAIL PAGE
═══════════════════════════════════════════════════════════════ */
.work-hero {
  background: var(--black);
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}
.work-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,214,0,.07) 0%, transparent 70%);
  top: -120px; right: -150px;
  pointer-events: none;
}

.breadcrumbs {
  font-size: .88rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.breadcrumbs a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumbs a:hover { color: rgba(255,255,255,.9); }
.breadcrumbs .current { color: rgba(255,255,255,.8); font-weight: 600; }

.work-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.work-hero-text .tag { margin-bottom: 14px; }
.work-hero-text h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 22px;
}
.work-meta-item {
  font-size: .96rem;
  color: rgba(255,255,255,.92);
  font-weight: 600;
}
.work-meta-item span {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.work-tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 12px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 600;
}
.work-hero-img {
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  aspect-ratio: 16 / 11;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.1);
}
.work-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Description inside dark hero */
.work-desc {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 720px;
}
.work-desc::before {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}
.work-desc p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  margin-bottom: 16px;
}
.work-desc p:last-child { margin-bottom: 0; }
.work-prose {
  max-width: 720px;
  margin: 0 auto;
}
.work-prose p {
  font-size: 1.06rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-visual {
  background: var(--yellow);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  order: -1;
  overflow: hidden;
  position: relative;
}
.about-visual::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  background: rgba(0,0,0,.05);
  border-radius: 50%;
  top: -80px; right: -60px;
}
.big-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(6rem, 22vw, 10rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -.07em;
  position: relative;
}
.big-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: rgba(0,0,0,.5);
  margin-top: 10px;
}
.about-text .tag { margin-bottom: 18px; }
.about-text h2 { font-size: clamp(1.85rem, 4.8vw, 2.7rem); margin-bottom: 18px; }
.about-text p { font-size: 1.04rem; color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.about-text p strong { color: var(--text); }

.benefit-list { display: flex; flex-direction: column; gap: 13px; margin-top: 26px; }
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 17px 20px;
  transition: border-color .25s, transform .25s var(--ease-out), box-shadow .25s;
}
.benefit:hover {
  border-color: var(--yellow);
  transform: translateX(5px);
  box-shadow: 0 4px 18px rgba(255,214,0,.1);
}
.bicon {
  width: 42px; height: 42px;
  background: var(--yellow);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.benefit:hover .bicon { transform: rotate(-8deg) scale(1.1); }
.benefit h4 { font-size: .98rem; font-weight: 700; margin-bottom: 3px; }
.benefit p  { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0;
  transition: border-color .25s, box-shadow .25s;
}
.faq[open] { border-color: var(--yellow); box-shadow: 0 6px 20px rgba(255,214,0,.1); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-light);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
  transition: transform .3s var(--ease-std), background .3s;
}
.faq[open] .faq-icon { transform: rotate(45deg); background: var(--yellow); }
.faq p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--yellow);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: rgba(0,0,0,.04);
  border-radius: 50%;
  top: -180px; right: -100px;
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 14px;
  position: relative;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(0,0,0,.6);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 48px 0 28px;
  color: rgba(255,255,255,.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  display: inline-block;
  margin-bottom: 6px;
}
.footer-logo span { color: var(--yellow); }
.footer-tag { font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 280px; }
.footer-tg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border-radius: 40px;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  width: fit-content;
  transition: background .2s;
}
.footer-tg:hover { background: rgba(255,255,255,.15); }
.footer-h {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--yellow);
  margin-bottom: 6px;
}
.footer-col a, .footer-link-btn {
  color: rgba(255,255,255,.55);
  font-size: .94rem;
  transition: color .18s;
  text-align: left;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.footer-col a:hover, .footer-link-btn:hover { color: var(--white); }
.footer-loc { font-size: .9rem; color: rgba(255,255,255,.4); margin-top: 4px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════════════════════ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 900;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-std);
}
.overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: 28px 28px 0 0;
  width: 100%;
  padding: 14px 24px 36px;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  max-height: 92svh;
  overflow-y: auto;
}
.overlay.open .modal { transform: translateY(0); }
.modal-handle {
  width: 48px; height: 5px;
  background: var(--gray2);
  border-radius: 5px;
  margin: 0 auto 22px;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: background .2s;
}
.modal-close:hover { background: var(--gray2); }
.modal-plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow);
  border-radius: 40px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}
.modal h3 { font-size: 1.7rem; font-weight: 900; margin-bottom: 6px; }
.modal-sub { font-size: 1rem; color: var(--muted); margin-bottom: 26px; }

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-field input {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .22s, box-shadow .22s;
  -webkit-appearance: none;
}
.form-field input:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,214,0,.18); }
.form-field input.error { border-color: #EF4444; box-shadow: 0 0 0 4px rgba(239,68,68,.1); }
.form-field input::placeholder { color: #BBBBBB; }
.phone-hint { display: none; font-size: .84rem; color: #EF4444; font-weight: 600; margin-top: 7px; }
.phone-hint.show { display: block; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background .2s, transform .18s var(--ease-out);
}
.form-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.form-submit:active { transform: scale(.98); }
.form-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 12px; }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 700; font-size: .96rem; }
.alert-ok  { background: #DCFCE7; color: #166534; border: 1.5px solid #86EFAC; }
.alert-err { background: #FEE2E2; color: #991B1B; border: 1.5px solid #FCA5A5; }

/* Success modal */
.overlay-success {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-std);
}
.overlay-success.open { opacity: 1; pointer-events: auto; }
.modal-success {
  background: var(--black);
  border: 2px solid var(--yellow);
  border-radius: 28px;
  padding: 48px 32px 38px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  transform: scale(.85) translateY(20px);
  transition: transform .45s var(--ease-out);
}
.overlay-success.open .modal-success { transform: scale(1) translateY(0); }
.success-icon {
  width: 72px; height: 72px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--black);
}
.overlay-success.open .success-icon { animation: bounceIn .55s var(--ease-out) .15s both; }
@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); opacity: 1; }
}
.modal-success h3 { font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.modal-success p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 30px; line-height: 1.6; }
.success-btn {
  background: var(--yellow);
  color: var(--black);
  padding: 14px 40px;
  border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .18s var(--ease-out);
}
.success-btn:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.success-btn:active { transform: scale(.97); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .works-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 820px) {
  .nav-links      { display: flex !important; }
  .header-actions { display: flex !important; }
  .burger         { display: none; }
  .mobile-nav     { display: none !important; }

  .section        { padding: 80px 0; }
  .sec-head       { margin-bottom: 56px; }
  .hero           { padding: 120px 0 70px; }
  .page-hero      { padding: 130px 0 70px; }
  .work-hero      { padding: 110px 0 72px; }
  .cta-band       { padding: 72px 0; }

  .about-wrap     { grid-template-columns: 1fr 1fr; }
  .about-visual   { order: 0; }
  .work-hero-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr; }

  .overlay { align-items: center; padding: 24px; }
  .modal   { border-radius: 28px; max-width: 460px; max-height: 88vh; }
}

@media (min-width: 1024px) {
  .section       { padding: 100px 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(3, 1fr); }
  .steps-grid    { grid-template-columns: repeat(4, 1fr); }
  .works-grid    { grid-template-columns: repeat(3, 1fr); }
}

/* iPhone safe area */
@supports (padding: max(0px)) {
  .mobile-nav { padding-bottom: max(22px, env(safe-area-inset-bottom)); }
  .modal      { padding-bottom: max(36px, env(safe-area-inset-bottom)); }
  footer      { padding-bottom: max(28px, env(safe-area-inset-bottom)); }
}

/* Mobile hero/cta buttons full-width */
@media (max-width: 600px) {
  .hero-actions, .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn, .cta-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
  }
  .hero-actions .btn-out-y { background: rgba(255,214,0,.1); }

  /* Tighter about section on mobile */
  .about-wrap { gap: 28px; }
  .about-visual { padding: 36px 24px; }
  .big-label { font-size: .95rem; }

  /* Smaller FAQ on mobile */
  .faq summary { font-size: .97rem; padding: 16px 18px; }
  .faq p { padding: 0 18px 18px; font-size: .94rem; }

  /* Smaller work card body */
  .work-card-body { padding: 16px 18px 18px; }
  .work-card-body h3 { font-size: 1.06rem; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero h1       { font-size: 2.1rem; }
  .pc-price      { font-size: 4rem; }
  .container     { padding: 0 16px; }
  .modal         { padding: 14px 18px 30px; }
  .btn-lg        { padding: 15px 20px; font-size: .97rem; }
  .hero-badge    { font-size: .72rem; padding: 8px 16px; }
  .sec-head h2   { font-size: 1.65rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--gray3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted-2); }
