/*
 Theme Name:   Twenty Twenty-One Child
 Author:       Smorodina.media 
 Template:     twentytwentyone
*/

  a{    text-decoration: none;}

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; font-variant-numeric: lining-nums;  }

  :root {
    --bg: #0A0A0F;
    --surface: #111118;
    --surface2: #1A1A26;
    --accent: #7B4FFF;
    --accent-dim: rgba(123, 79, 255, 0.15);
    --accent-glow: rgba(123, 79, 255, 0.35);
    --text: #F0EEFF;
    --text-muted: rgba(240, 238, 255, 0.45);
    --text-dim: rgba(240, 238, 255, 0.25);
    --border: rgba(240, 238, 255, 0.08);
    --border-hover: rgba(123, 79, 255, 0.4);
    --radius: 16px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif; font-display: swap;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  .f-l{float:left;}
  .f-r{float:right;}

  /* CURSOR */
  .cursor { position: fixed; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s; }
  .cursor-blob { position: fixed; width: 280px; height: 280px; background: radial-gradient(circle, rgba(123,79,255,.09) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 1; transform: translate(-50%,-50%); transition: left .55s cubic-bezier(.25,.46,.45,.94), top .55s cubic-bezier(.25,.46,.45,.94); }

  body:hover .cursor { opacity: 1; }
.site .button:focus, button:focus, input[type=submit]:focus, input[type=reset]:focus, .wp-block-search .wp-block-search__button:focus, .wp-block-button .wp-block-button__link:focus, .wp-block-file a.wp-block-file__button:focus {    outline-offset: 0 !important;   outline: 0px solid currentColor !important; }
 /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.5rem 4rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: border-color .4s, background .4s, backdrop-filter .4s; }
  nav.scrolled { border-color: var(--border); background: rgba(10,10,15,.88); backdrop-filter: blur(20px); }
  .logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; color: var(--text); text-decoration: none; }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-size: .875rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--text); }
  .nav-cta { font-size: .8125rem; font-weight: 500; color: #fff; background: var(--accent); border: none; padding: .6rem 1.4rem; border-radius: 100px; cursor: none; text-decoration: none; transition: opacity .2s; }
  .nav-cta:hover { opacity: .85; }

  /* BREADCRUMB */
  .breadcrumb { padding: 7rem 4rem 0; display: flex; gap: .5rem; align-items: center; }
  .breadcrumb-blog {  display: flex; gap: .5rem; align-items: center;  margin-bottom: 2rem;     padding: 0;} 
  .breadcrumb ul{ list-style: none;   padding: 0;}
  .breadcrumb li{float: left}
  .breadcrumb li::after{content: "/";  padding: 0px 7px 0 4px; font-size: .75rem;  color: var(--text-dim);}
  .breadcrumb li:last-child::after {content: ""; padding: 0px; font-size: 12px;}

  .breadcrumb a { font-size: .75rem; color: var(--text-muted); text-decoration: none; transition: color .2s;  }
  .breadcrumb a:hover { color: var(--text); }
  .breadcrumb-sep { font-size: .75rem; color: var(--text-dim); }
  .breadcrumb-cur { font-size: .75rem; color: var(--accent); }


  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 10rem 4rem 6rem;
    position: relative;
    overflow: hidden;
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
    opacity: 0.6;
    pointer-events: none;
  }
  .hero-badge {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(123, 79, 255, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
  }
  .hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    
    margin-bottom: 2rem;
  }
  .hero-title .line { display: block; overflow: hidden; }
  .hero-title .line span {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-title .line:nth-child(1) span { animation-delay: 0.35s; }
  .hero-title .line:nth-child(2) span { animation-delay: 0.5s; }
  .hero-title .line:nth-child(3) span { animation-delay: 0.65s; }
  .hero-title .accent { color: var(--accent); }
  .hero-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.85s forwards;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center;
    opacity: 0;
    animation: fadeUp 0.7s 1s forwards;
  }
  .btn-primary {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    background: var(--accent);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    cursor: none;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(123, 79, 255, 0.4);
  }
  .btn-ghost {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: none;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); }
  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.7s 1.3s forwards;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  .scroll-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  /* MARQUEE */
  .marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 3rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex; align-items: center; gap: 1.5rem;
    flex-shrink: 0;
  }
  .marquee-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

  /* SERVICES */
  .section { padding: 7rem 4rem; }
  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: 4rem;
  }

  .section-title-h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: 4rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .service-card {
    background: var(--bg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--accent-dim);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover { background: var(--surface); }
  .service-card:hover::before { opacity: 1; }
  .service-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }
  .service-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    position: relative;
  }
  .service-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
  }
  .service-arrow {
    position: absolute; bottom: 2rem; right: 2rem;
    font-size: 1.25rem;
    color: var(--text-dim);
    transition: transform 0.3s, color 0.3s;
    pointer-events: none;
  }
  .service-card:hover .service-arrow {
    transform: translate(4px, -4px);
    color: var(--accent);
  }

  /* WORKS */
  .works-section { padding: 7rem 4rem; }
  .works-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3.5rem;
  }
  .works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }
  .work-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: none;
    transition: border-color 0.3s, transform 0.3s;
  }
  .work-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
  .work-card.large { grid-row: span 2; }
  .work-visual {
    width: 100%; aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 4rem; font-weight: 800;
    letter-spacing: -0.05em;
    position: relative; overflow: hidden;
  }
  .work-card.large .work-visual { aspect-ratio: auto; height: 340px; }
  /* Красный */
.work-visual.v1 {
  background-image:
    linear-gradient(135deg,
      rgba(24, 24, 26, 0.72),
      rgba(72, 72, 76, 0.58),
      rgba(24, 24, 26, 0.72)),
    url('/assets/img/works/grosskran.jpg');
  color: rgba(185, 190, 198, 0.85);
}
/* Серый */
.work-visual.v2 {
  background-image:
    linear-gradient(135deg,
      rgba(24, 24, 26, 0.72),
      rgba(72, 72, 76, 0.58),
      rgba(24, 24, 26, 0.72)),
    url('/assets/img/works/lidertrans.jpg');
  color: rgba(185, 190, 198, 0.85);
}
/* Серый */
.work-visual.v3 {
  background-image:
    linear-gradient(135deg,
      rgba(24, 24, 26, 0.72),
      rgba(72, 72, 76, 0.58),
      rgba(24, 24, 26, 0.72)),
    url('/assets/img/works/uralhimtek.jpg');
  color: rgba(185, 190, 198, 0.85);
}
/* Серый */
.work-visual.v4 {
  background-image:
    linear-gradient(135deg,
      rgba(24, 24, 26, 0.72),
      rgba(72, 72, 76, 0.58),
      rgba(24, 24, 26, 0.72)),
    url('/assets/img/works/vishevseh.jpg');
  color: rgba(185, 190, 198, 0.85);
}
  .work-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  }
  .work-info { padding: 1.5rem; }
  .work-tag {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.75rem;
  }
  .work-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 0.4rem;
  }
  .work-desc { font-size: 0.825rem; color: var(--text-muted); line-height: 1.6; }

/* ADVANTAGES + STATS */
.advantages-section {
  padding: 6rem 4rem;
  background: var(--surface);
}
.advantages-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.advantages-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.advantages-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}
.adv-stats {
  display: flex; 
  gap: 60px;
  /* background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden; */
}
.adv-stat {
  /* background: var(--bg); 
  padding: 1.25rem 1.5rem;*/
  transition: background .3s;
}
.adv-stat:hover { background: var(--surface2); }
.adv-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
  line-height: 1;
}
.adv-stat-num .accent { color: var(--accent); }
.adv-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.adv-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color .3s, transform .3s;
}
.adv-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.adv-icon {
  width: 34px; height: 34px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
  font-size: 1rem;
}
.adv-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  margin-bottom: 0.45rem;
}
.adv-desc { font-size: 0.8rem; line-height: 1.65; color: var(--text-muted); }


 /* PROCESS */
.process-section { padding: 7rem 4rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

/* Серая базовая линия */
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.25rem; left: 2.5rem; right: 2.5rem;
  height: 1px;
  background: var(--border);
}

/* Фиолетовая линия-прогресс */
.process-steps::after {
  content: '';
  position: absolute;
  top: 1.25rem; left: 2.5rem;
  height: 1px;
  width: 0%;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(.16,1,.3,1);
}

.process-step { padding: 0 2rem; }

.step-dot {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  color: var(--text-dim);
  position: relative; z-index: 1;
  transition: background .4s, border-color .4s, color .4s, box-shadow .4s;
}
.step-dot.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(123,79,255,0.2);
}
.step-dot.done {
  background: rgba(123,79,255,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* Бегунок-круг */
.process-runner {
  position: absolute;
  top: calc(1.25rem - 10px);
  left: 2.5rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(123,79,255,0.25), 0 0 16px rgba(123,79,255,0.5);
  z-index: 2;
  transition: left 0.6s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
/* Внутренняя белая точка */
.process-runner::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.6rem;
  transition: color .3s;
}
.process-step.active .step-title { color: var(--text); }

.step-desc { font-size: 0.825rem; line-height: 1.6; color: var(--text-muted); }

  /* CTA */
  .cta-section {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(123,79,255,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.05;
    position: relative;
  }
  .cta-sub {
    font-size: 1.05rem; font-weight: 400;
    color: var(--text-muted); max-width: 440px;
    margin: 0 auto 3rem; line-height: 1.7;
    position: relative;
  } 
  .cta-email {
    display: flex; justify-content: center;
    gap: 0; position: relative;
  }
  .cta-input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-right: none !important;
    padding: 0.875rem 1.5rem  !important;
    border-radius: 100px 0 0 100px !important;
    outline: none;
    width: 300px;
    transition: border-color 0.2s;
  }
  .cta-input::placeholder { color: var(--text-muted); }
  .cta-input:focus { border-color: var(--border-hover); }
  .cta-send { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500; background: var(--accent) !important; color: #fff !important; border: none; cursor: none;  padding: 0.875rem 1.75rem;  border-radius: 0 100px 100px 0;  transition: opacity 0.2s;  }
  .cta-send:hover { opacity: 0.88; }



  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
  .reveal.visible { opacity: 1; transform: none; } 

  /* KEYFRAMES */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
  }
  @keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
  }

  /* ADVANTAGES */
  .advantages-section { padding: 7rem 4rem; background: var(--surface); }
  .advantages-layout {  display: grid; grid-template-columns: 1fr 1fr;  gap: 5rem; align-items: start; margin-top: 4rem; }
  .advantages-left { }
  .advantages-lead { font-size: 1.05rem; font-weight: 400; color: var(--text-muted); line-height: 1.75; max-width: 400px; }
  .advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .adv-card { padding: 1.75rem; border: 1px solid var(--border);  border-radius: 12px; background: var(--bg); transition: border-color 0.3s, transform 0.3s; }
  .adv-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
  .adv-icon {  width: 36px; height: 36px;  background: var(--accent-dim);  border-radius: 8px; display: flex; align-items: center; justify-content: center;  margin-bottom: 1rem; font-size: 1rem; }
  .adv-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700;  margin-bottom: 0.5rem; }
  .adv-desc { font-size: 0.825rem; line-height: 1.65; color: var(--text-muted); } 

  .hero { position: relative;  overflow: hidden; }  
  .hero-particles { position: absolute;  inset: 0; pointer-events: none; z-index: 0; } 
  .hero-particles span {  position: absolute;  width: 6px;   height: 6px; background: #7B4FFF; border-radius: 50%; box-shadow: 0 0 12px rgba(123, 79, 255, .9);  opacity: .75;  animation: particleMove 12s linear infinite; } 
  .hero-particles span:nth-child(1) { top: 18%; left: 58%; animation-delay: 0s; }
  .hero-particles span:nth-child(2) { top: 32%; left: 78%; animation-delay: -2s; }
  .hero-particles span:nth-child(3) { top: 54%; left: 64%; animation-delay: -4s; }
  .hero-particles span:nth-child(4) { top: 70%; left: 86%; animation-delay: -6s; }
  .hero-particles span:nth-child(5) { top: 42%; left: 92%; animation-delay: -8s; }
  .hero-particles span:nth-child(6) { top: 76%; left: 56%; animation-delay: -10s; }
  .hero-particles span:nth-child(7) { top: 24%; left: 68%; animation-delay: -3s; }
  .hero-particles span:nth-child(8) { top: 60%; left: 74%; animation-delay: -7s; }

@keyframes particleMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .2;
  }
  25% {
    opacity: .9;
  }
  50% {
    transform: translate3d(40px, -60px, 0) scale(1.4);
    opacity: .7;
  }
  75% {
    opacity: .9;
  }
  100% {
    transform: translate3d(-30px, 40px, 0) scale(.8);
    opacity: .2;
  }
}
.hero-content, .header {  position: relative; z-index: 2; }

  /* HERO */
  .about-hero {  padding: 3.5rem 4rem 5rem;  display: grid; grid-template-columns: 1fr 1fr;   gap: 5rem; align-items: end; position: relative; overflow: hidden;  }
  .about-hero::before {  content: '';  position: absolute; top: -100px; right: -100px;   width: 500px; height: 500px;  background: radial-gradient(circle, rgba(123,79,255,.12) 0%, transparent 65%);   pointer-events: none; }
  .hero-tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(123,79,255,.22); padding: .3rem .85rem; border-radius: 100px; margin-bottom: 1.75rem; }
  .hero-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
  .hero-title { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.0; margin-bottom: 1.5rem; }
  .hero-title .accent { color: var(--accent); }
  .hero-desc { font-size: 1.05rem; font-weight: 400; color: var(--text-muted); line-height: 1.75; }
  .hero-right { position: relative; }
  .hero-manifesto {  background: var(--surface);  border: 1px solid var(--border); border-radius: var(--radius);  padding: 2rem; }
  .manifesto-quote {  font-family: 'Syne', sans-serif;  font-size: 1.15rem; font-weight: 700; line-height: 1.5; letter-spacing: -.015em;  color: var(--text);  margin-bottom: 1.25rem;  position: relative;  }
  .manifesto-quote::before {  content: '"';  font-size: 4rem; line-height: 0;  color: var(--accent); opacity: .3; position: absolute; top: .75rem; left: -.5rem;  font-family: Georgia, serif; }
  .manifesto-author { display: flex; align-items: center; gap: .75rem; }
  .manifesto-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(123,79,255,.3);  display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 700; color: var(--accent);  }
  .manifesto-name { font-size: .85rem; font-weight: 500; }
  .manifesto-role { font-size: .75rem; color: var(--text-muted); }

  /* STATS BAND */
  .stats-band {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: repeat(4,1fr);
    padding: 0;
  }
  .stat-cell {
    padding: 2.5rem 3rem;
    border-right: 1px solid var(--border);
    transition: background .3s;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:hover { background: var(--surface); }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    letter-spacing: -.03em; display: block;
    margin-bottom: .3rem;
  }
  .stat-num .a { color: var(--accent); }
  .stat-label { font-size: .8rem; color: var(--text-muted); line-height: 1 ; }
   .stat-cell{line-height: 0.9; } 
  /* STORY */
  .story-section {
    padding: 6rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start;
  }
  .section-label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
  .section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 1.5rem; }
  .story-text { font-size: 1rem; font-weight: 400; color: var(--text-muted); line-height: 1.8; }
  .story-text p + p { margin-top: 1.25rem; }
  .story-text strong { font-weight: 500; color: var(--text); }

  /* TIMELINE */
  .timeline { display: flex; flex-direction: column; gap: 0; }
  .tl-item {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 1.5rem; padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .tl-item:first-child { padding-top: 0; }
  .tl-item:last-child { border-bottom: none; }
  .tl-year {
    font-family: 'Syne', sans-serif;
    font-size: .85rem; font-weight: 700;
    color: var(--accent); padding-top: .15rem;
  }
  .tl-body { }
  .tl-title { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
  .tl-text { font-size: .825rem; line-height: 1.65; color: var(--text-muted); }

  /* VALUES */
  .values-section { padding: 6rem 4rem; background: var(--surface); }
  .values-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; margin-bottom: 4rem; }
  .values-sub { font-size: 1rem; font-weight: 400; color: var(--text-muted); line-height: 1.75; }
  .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .value-card {
    padding: 2rem; background: var(--bg);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: border-color .3s, transform .3s;
  }
  .value-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
  .value-icon { font-size: 1.75rem; margin-bottom: 1.1rem; display: block; }
  .value-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
  .value-text { font-size: .825rem; line-height: 1.65; color: var(--text-muted); }

  /* TEAM */
  .team-section { padding: 6rem 4rem; }
  .team-header { margin-bottom: 3.5rem; }
  .team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
  .team-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color .3s, transform .3s;
  }
  .team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
  .team-photo {
    aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
    letter-spacing: -.05em; position: relative; overflow: hidden;
  }
  .team-photo.p1 { background: linear-gradient(160deg, #0d1833, #1a3366); color: rgba(80,140,255,.3); }
  .team-photo.p2 { background: linear-gradient(160deg, #1a0d2e, #3d1a6e); color: rgba(140,80,255,.3); }
  .team-photo.p3 { background: linear-gradient(160deg, #0a2010, #1a5030); color: rgba(60,180,100,.3); }
  .team-photo.p4 { background: linear-gradient(160deg, #251000, #5c3010); color: rgba(200,140,60,.3); }
  .team-info { padding: 1.25rem; }
  .team-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
  .team-role { font-size: .78rem; color: var(--accent); margin-bottom: .6rem; }
  .team-skills { display: flex; flex-wrap: wrap; gap: .35rem; }
  .team-skill { font-size: .65rem; font-weight: 500; color: var(--text-dim); background: var(--surface2); border: 1px solid var(--border); padding: .18rem .55rem; border-radius: 4px; }
  
  .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

  /* CLIENTS */
  .clients-section {
    padding: 5rem 4rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .clients-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
  .clients-sub { font-size: .9rem; color: var(--text-muted); max-width: 360px; line-height: 1.6; }
  .clients-logos { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
  .client-logo {
    background: var(--bg); padding: 1.75rem 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: .85rem; font-weight: 700;
    color: var(--text-dim); letter-spacing: .05em;
    transition: background .3s, color .3s;
  }
  .client-logo:hover { background: var(--surface); color: var(--text-muted); }

  /* CTA */
  .about-cta {
    margin: 5rem 4rem;
    padding: 5rem 4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 4rem; align-items: center;
    position: relative; overflow: hidden;
  }
  .about-cta::before {
    content: '';
    position: absolute; bottom: -60px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(123,79,255,.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-title-about { font-family: 'Syne', sans-serif; font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin-bottom: .75rem; position: relative;     margin-left: 0;}
  .cta-sub-about { font-size: 1rem; font-weight: 400; color: var(--text-muted); line-height: 1.7; max-width: 480px; position: relative;     margin: 0;}
  .cta-actions { display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; flex-shrink: 0; position: relative; }
  .btn-primary {  display: inline-block; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 500; color: #fff; background: var(--accent); border: none; padding: .875rem 2rem; border-radius: 100px; cursor: none; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: transform .2s, box-shadow .2s; white-space: nowrap; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); }
  .btn-outline {   display: inline-block; font-size: .9rem; font-weight: 400; color: var(--text-muted); background: none; border: 1px solid var(--border); padding: .875rem 2rem; border-radius: 100px; cursor: none; text-decoration: none; transition: border-color .2s, color .2s; white-space: nowrap; text-align: center; }
  .btn-outline:hover { border-color: var(--border-hover); color: var(--text); } 
 

/* PAGE HEADER */
  .page-header { padding: 3rem 4rem 4rem; border-bottom: 0 !important;}
  .page-header-us { padding: 3rem 4rem 5rem; max-width: 820px; }  
  .page-header-port { padding: 3rem 4rem 0;  display: flex; justify-content: space-between; align-items: flex-end;  gap: 3rem;  }
  .page-tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(123,79,255,.22); padding: .3rem .85rem; border-radius: 100px; margin-bottom: 1.75rem; }
  .page-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
  .page-title { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 800 !important; letter-spacing: -.03em; line-height: 1.0; margin-bottom: .75rem; }
  .page-title-h2 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 800 !important; letter-spacing: -.03em; line-height: 1.0; margin-bottom: .75rem; } 


  .page-title .accent,.page-title span { color: var(--accent); }
  .page-sub { font-size: 1rem; font-weight: 400; color: var(--text-muted); line-height: 1.7; max-width: 500px; } 
  
  .page-stats { display: flex; gap: 2.5rem; flex-shrink: 0; }
  .stat-item { text-align: right; }
  .stat-num { font-family: 'Syne', sans-serif; font-size: 2.25rem; font-weight: 800; letter-spacing: -.03em; display: block; }
  .stat-num .a { color: var(--accent); }
  .stat-label { font-size: .75rem; color: var(--text-muted); }


  /* MAIN LAYOUT */
  .contacts-layout {
    padding: 0 4rem 6rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
  }

  /* ── FORM ── */
  .contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
  }
  .form-title { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: .4rem; }
  .form-sub { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; }

  .cf { display: flex; flex-direction: column; gap: 1rem; }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cf-field { display: flex; flex-direction: column; gap: .4rem; }
  .cf-label { font-size: .75rem; font-weight: 500; color: var(--text-muted); letter-spacing: .03em; }
  .cf-input, .cf-select, .cf-textarea {
    font-family: 'Inter', sans-serif; font-size: .9rem !important;
    color: var(--text) !important; background: var(--bg);
    border: 1px solid var(--border) !important; border-radius: 10px !important;
    padding: .75rem 1rem; outline: none; width: 100% !important;
    transition: border-color .2s, background .2s !important;
    appearance: none; -webkit-appearance: none;
  }
  .cf-input::placeholder, .cf-textarea::placeholder { color: var(--text-dim); }
  .cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: rgba(123,79,255,.5); background: rgba(123,79,255,.04); outline-offset: 0; !important
  outline: none  !important;}
  .cf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237B4FFF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; background-color: var(--bg);
    padding-right: 2.5rem; cursor: pointer;
  }
  .cf-select option { background: #111118; }
  .cf-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

  .cf-consent-wrap { display: flex; align-items: flex-start; gap: .6rem; margin-top: .25rem; }
  #cf-consent {
    appearance: none !important; -webkit-appearance: none !important;
    display: block !important; visibility: visible !important; opacity: 1 !important;
    width: 16px !important; height: 16px !important; min-width: 16px !important;
    margin: .15rem 0 0 !important; padding: 0 !important;
    border: 1.5px solid rgba(240,238,255,.35) !important; border-radius: 4px !important;
    background: transparent !important; cursor: pointer;
    position: relative; flex-shrink: 0;
    transition: border-color .2s, background .2s;
  }
  #cf-consent:checked { background: #7B4FFF !important; border-color: #7B4FFF !important; }
  #cf-consent:checked::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/10px no-repeat; }
  .cf-consent-label { font-size: .8rem; line-height: 1.55; color: rgba(240,238,255,.45); cursor: pointer; user-select: none; }
  .cf-consent-label a { color: rgba(240,238,255,.65); text-decoration: none; border-bottom: 1px solid rgba(240,238,255,.2); transition: color .2s, border-color .2s; }
  .cf-consent-label a:hover { color: var(--accent); border-color: rgba(123,79,255,.5); }
  .cf-consent-wrap.error #cf-consent { border-color: #e85b5b !important; }
  .cf-consent-wrap.error .cf-consent-label { color: #e85b5b; }

  .cf-submit {
    font-family: 'Inter', sans-serif !important; font-size: .9375rem !important; font-weight: 500 !important;  color: #fff !important; background: var(--accent) !important; border: none  !important;  border-radius: 100px  !important; padding: .9rem 2rem  !important; width: 100%;  cursor: pointer  !important; margin-top: .5rem;   transition: opacity .2s, transform .2s, box-shadow .2s;  position: relative; overflow: hidden  !important;  }
  .cf-submit:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 10px 32px var(--accent-glow); }
  .cf-submit.loading { pointer-events: none; opacity: .7; }
  .cf-submit.loading::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent); animation: shimmer 1.2s infinite; }
  @keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

  /* Success */
  .cf-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 2rem 0; }
  .cf-success.show { display: flex; }
  .cf-success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(123,79,255,.3); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
  .cf-success-title { font-family: 'Syne', sans-serif; font-size: 1.375rem; font-weight: 700; margin-bottom: .6rem; }
  .cf-success-text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus, .site textarea:focus {  color: var(--form--color-text) !important; outline-offset: 0 !important;  outline: 0px solid var(--form--border-color) !important; }

  /* ── SIDEBAR ── */
  .contacts-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 7rem; }

  .contact-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    transition: border-color .3s;
  }
  .contact-card:hover { border-color: var(--border-hover); }
  .cc-label { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }

  /* Messenger buttons */
  .messengers { display: flex; flex-direction: column; gap: .6rem; }
  .messenger-btn {
    display: flex; align-items: center; gap: .85rem;
    padding: .85rem 1.1rem;
    border-radius: 10px; border: 1px solid var(--border);
    background: var(--bg); text-decoration: none;
    transition: border-color .3s, background .3s, transform .2s;
    cursor: none;
  }
  .messenger-btn:hover { border-color: var(--border-hover); background: var(--accent-dim); transform: translateX(3px); }
  .mb-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .mb-icon.tg { background: rgba(39,174,255,.15); }
  .mb-icon.em { background: rgba(123,79,255,.15); }
  .mb-icon.ph { background: rgba(123,79,255,.15); }
  .mb-icon.mx { background: rgba(255,140,0,.15); color: #ff8c00; font-family: 'Syne', sans-serif; font-weight: 800; font-size: .85rem; }
  .mb-body { }
  .mb-name { font-size: .875rem; font-weight: 500; color: var(--text); }
  .mb-hint { font-size: .75rem; color: var(--text-muted); }

  /* Info rows */
  .info-rows { display: flex; flex-direction: column; gap: .875rem; }
  .info-row { display: flex; flex-direction: column; gap: .2rem; }
  .ir-label { font-size: .7rem; color: var(--text-dim); letter-spacing: .05em; }
  .ir-value { font-size: .875rem; font-weight: 500; color: var(--text); }
  .ir-value a { color: var(--text); text-decoration: none; transition: color .2s; }
  .ir-value a:hover { color: var(--accent); }

  /* Work hours */
  .hours-grid { display: flex; flex-direction: column; gap: .6rem; }
  .hours-row { display: flex; justify-content: space-between; align-items: center; font-size: .825rem; }
  .hours-day { color: var(--text-muted); }
  .hours-time { font-weight: 500; }
  .hours-time.closed { color: var(--text-dim); }
  .hours-divider { border: none; border-top: 1px solid var(--border); margin: .4rem 0; }
  .status-dot { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 500; margin-top: .75rem; }
  .dot { width: 7px; height: 7px; border-radius: 50%; }
  .dot.green { background: #3de87a; box-shadow: 0 0 6px rgba(61,232,122,.5); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

  /* MAP */
  .map-section { padding: 0 4rem 6rem; }
  .map-wrap {
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    height: 340px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  /* Стилизованная заглушка карты */
  .map-placeholder {
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(10,10,15,.0) 0%, rgba(10,10,15,.0) 100%),
      repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(240,238,255,.04) 40px),
      repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(240,238,255,.04) 40px);
    background-color: #0e0e18;
  }
  .map-roads { position: absolute; inset: 0; overflow: hidden; }
  .map-road { position: absolute; background: rgba(240,238,255,.06); border-radius: 2px; }
  .map-road.h1 { height: 3px; width: 100%; top: 40%; }
  .map-road.h2 { height: 2px; width: 70%; top: 65%; left: 15%; }
  .map-road.h3 { height: 2px; width: 55%; top: 25%; left: 0; }
  .map-road.v1 { width: 3px; height: 100%; left: 30%; }
  .map-road.v2 { width: 2px; height: 80%; left: 65%; top: 10%; }
  .map-road.v3 { width: 2px; height: 50%; left: 50%; top: 20%; }
  .map-block { position: absolute; border-radius: 4px; background: rgba(240,238,255,.04); }
  .map-block.b1 { width: 80px; height: 50px; left: 5%; top: 10%; }
  .map-block.b2 { width: 120px; height: 70px; left: 35%; top: 5%; }
  .map-block.b3 { width: 90px; height: 60px; right: 5%; top: 15%; }
  .map-block.b4 { width: 100px; height: 55px; left: 8%; top: 55%; }
  .map-block.b5 { width: 80px; height: 45px; left: 35%; bottom: 10%; }
  .map-block.b6 { width: 110px; height: 65px; right: 5%; bottom: 5%; }
  .map-pin {
    position: absolute; top: 38%; left: 29%;
    transform: translate(-50%, -100%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center;
  }
  .map-pin-bubble {
    background: var(--accent);
    color: #fff;
    font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 700;
    padding: .5rem .9rem; border-radius: 100px;
    white-space: nowrap; box-shadow: 0 4px 20px var(--accent-glow);
    margin-bottom: .3rem;
  }
  .map-pin-tail { width: 2px; height: 12px; background: var(--accent); }
  .map-pin-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }
  .map-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(10,10,15,.6) 100%); }
  .map-address {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: rgba(17,17,24,.9); backdrop-filter: blur(8px);
    border: 1px solid var(--border); border-radius: 10px;
    padding: .75rem 1.1rem;
    font-size: .8rem; color: var(--text-muted);
    display: flex; align-items: center; gap: .5rem;
  }
  .map-address strong { color: var(--text); font-weight: 500; }
  .map-open-link {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    background: var(--accent); color: #fff;
    font-size: .78rem; font-weight: 500;
    padding: .6rem 1.1rem; border-radius: 100px;
    text-decoration: none; cursor: none;
    transition: opacity .2s;
  }
  .map-open-link:hover { opacity: .85; }

  

  /* HEADER */
  .blog-header {
    padding: 3rem 4rem 3.5rem;
    display: grid; grid-template-columns: 1fr 420px;
    gap: 4rem; align-items: end;
  }
  .page-tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(123,79,255,.22); padding: .3rem .85rem; border-radius: 100px; margin-bottom: 1.5rem; }
  .page-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
  .blog-title { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.0; margin-bottom: .75rem; }
  .blog-title .accent { color: var(--accent); }
  .blog-sub { font-size: 1rem; font-weight: 400; color: var(--text-muted); line-height: 1.7; }
  .blog-search { position: relative; }
  .search-input {
    width: 100%; font-family: 'Inter', sans-serif; font-size: .9rem;
    color: var(--text); background: var(--surface);
    border: 1px solid var(--border); border-radius: 100px;
    padding: .9rem 3rem .9rem 1.5rem; outline: none;
    transition: border-color .2s; cursor: none;
  }
  .search-input::placeholder { color: var(--text-muted); }
  .search-input:focus { border-color: var(--border-hover); }
  .search-icon { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--text-dim); font-size: .9rem; pointer-events: none; }
  .blog-search-meta { display: flex; justify-content: space-between; align-items: center; margin-top: .75rem; }
  .search-hint {     font-weight: 500; font-size: .75rem; color: var(--text-dim); }
  .blog-total { font-size: .75rem; color: var(--text-muted); }
  .blog-total span { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text); }

  /* FILTERS */
  .filters-bar { padding: 0 4rem 2.5rem; border-bottom: 1px solid var(--border); display: flex; gap: .5rem; flex-wrap: wrap; }
  .filter-tab { font-size: .8rem; font-weight: 500; color: var(--text-muted) !important; background: none !important; border: 1px solid var(--border); padding: .4rem 1rem; border-radius: 100px; cursor: none; transition: all .2s; }
  .filter-tab:hover { border-color: var(--border-hover); color: var(--text); }
  .filter-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

  /* FEATURED POST */
  .blog-section { padding: 0rem 4rem 6rem; }
  .featured-post {
    display: grid; grid-template-columns: 1fr 420px;
    gap: 0; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; margin-bottom: 3rem;
    text-decoration: none; color: inherit; cursor: none;
    transition: border-color .3s, transform .3s;
  }
  .featured-post:hover { border-color: var(--border-hover); transform: translateY(-3px); }
  .featured-thumb {
    min-height: 360px; display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 5rem; font-weight: 800;
    letter-spacing: -.06em; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0d1833 0%, #1a3366 50%, #060d1a 100%);
    color: rgba(80,140,255,.3);
  }
  
  .featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  .featured-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, rgba(10,10,15,.8) 100%); }
  .featured-body { background: var(--surface); padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
  .post-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
  .post-cat { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(123,79,255,.25); padding: .2rem .6rem; border-radius: 4px; }
  .post-badge { font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--accent); padding: .2rem .6rem; border-radius: 4px; }
  .post-date { font-size: .75rem; color: var(--text-dim); }
  .post-read { font-size: .75rem; color: var(--text-dim); }
  .featured-title { font-family: 'Syne', sans-serif; font-size: 1.625rem; font-weight: 700; letter-spacing: -.025em; line-height: 1.2; margin-bottom: 1rem; }
  .featured-desc { font-size: .9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.75rem; }
  .post-footer { display: flex; align-items: center; justify-content: space-between; }
  .post-author { display: flex; align-items: center; gap: .65rem; }
  .author-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(123,79,255,.3); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
  .author-name { font-size: .8rem; font-weight: 500;     line-height: normal;}
  .post-link { font-size: .8rem; font-weight: 500; color: var(--accent); display: flex; align-items: center; gap: .3rem; }
  .post-link::after { content: '→'; transition: transform .2s; }
  .featured-post:hover .post-link::after { transform: translateX(3px); }

  /* POSTS GRID */
  .posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .post-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    text-decoration: none; color: inherit; cursor: none;
    transition: border-color .3s, transform .3s;
  }
  .post-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
  .card-thumb {
    aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -.05em;
    position: relative; overflow: hidden;
  }
  .card-thumb.t1 { background: linear-gradient(135deg, #0d1833, #1a3366); color: rgba(80,140,255,.35); }
  .card-thumb.t2 { background: linear-gradient(135deg, #1a0d2e, #3d1a6e); color: rgba(140,80,255,.35); }
  .card-thumb.t3 { background: linear-gradient(135deg, #0a2010, #1a5030); color: rgba(60,180,100,.35); }
  .card-thumb.t4 { background: linear-gradient(135deg, #251000, #5c2800); color: rgba(200,120,40,.35); }
  .card-thumb.t5 { background: linear-gradient(135deg, #200a18, #501838); color: rgba(200,80,140,.35); }
  .card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
  .card-meta-news { display: flex; align-items: center; gap: .6rem; margin-bottom: .875rem; flex-wrap: wrap; }
  .card-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.3; margin-bottom: .6rem; }
  .card-desc { font-size: .825rem; line-height: 1.65; color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }

  /* PAGINATION */
  .pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 3.5rem; }
  .page-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: none; color: var(--text-muted); font-size: .85rem; display: flex; align-items: center; justify-content: center; cursor: none; transition: all .2s; text-decoration: none; }
  .page-btn:hover { border-color: var(--border-hover); color: var(--text); }
  .page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
  .page-dots { color: var(--text-dim); font-size: .85rem; padding: 0 .25rem; }

  /* SUBSCRIBE */
  .subscribe-band {
    margin: 0 4rem 5rem; padding: 3.5rem 4rem;
    background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
    display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
    position: relative; overflow: hidden;
  }
  .subscribe-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(123,79,255,.12) 0%, transparent 70%); pointer-events: none; }
  .sub-label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
  .sub-title { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -.025em; margin-bottom: .6rem; position: relative; }
  .sub-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; position: relative; }
  .sub-form { display: flex; gap: 0; flex-shrink: 0; position: relative; }
  .sub-input { font-family: 'Inter', sans-serif; font-size: .875rem !important; color: var(--text) !important; background: var(--bg) !important; border: 1px solid var(--border) !important; border-right: none !important; padding: .8rem 1.25rem !important; border-radius: 100px 0 0 100px !important; outline: none !important; width: 260px; transition: border-color .2s; }
  .sub-input::placeholder { color: var(--text-muted); }
  .sub-input:focus { border-color: var(--border-hover); outline: none !important; border: 0 !important;}
  .sub-btn { font-family: 'Inter', sans-serif !important; font-size: .875rem !important; font-weight: 500 !important; color: #fff !important; background: var(--accent)  !important; border: none !important; padding: .8rem 1.5rem !important; border-radius: 0 100px 100px 0 !important; cursor: none !important; transition: opacity .2s; white-space: nowrap; }
  .sub-btn:hover { opacity: .85 !important; } 
  .subscribe-band .sub-btn {    height: 50px;}
  .wpcf7-list-item-label{font-size: 12px; color: var(--text-muted) !important;     float: left;}
  .wpcf7-list-item-label a{color: var(--text-muted) !important;}
  .subscribe-band .wpcf7-form-control-wrap { margin-top: 10px;  display: inline-block;}
  .subscribe-band .wpcf7-list-item{    margin: 0;}
  .cta-email .wpcf7-list-item {margin-top: 20px !important;}

  /* FILTERS */
  .filters-bar {
    padding: 2.5rem 4rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 70px; z-index: 50;
    background: var(--bg);
    transition: background .3s;
  }
  .filters-bar.stuck { background: rgba(10,10,15,.95); backdrop-filter: blur(16px); }
  .filter-tabs { display: flex; gap: .5rem; }
  .filter-tab {
    font-size: .8125rem; font-weight: 500;
    color: var(--text-muted);
    background: none; border: 1px solid var(--border);
    padding: .45rem 1.1rem; border-radius: 100px;
    cursor: none; transition: all .2s;
  }
  .filter-tab:hover { border-color: var(--border-hover); color: var(--text); }
  .filter-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
  .filter-count {
    font-size: .8rem; color: var(--text-dim);
    display: flex; align-items: center; gap: .4rem;
  }
  .count-num { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text-muted); transition: opacity .3s; }

  /* PORTFOLIO GRID */
  .portfolio-section { padding: 2.5rem 4rem 6rem; }

  /* Masonry-style via CSS grid areas */
  .port-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }

  /* Card sizes via column/row spans */
  .port-item {  border-radius: var(--radius); overflow: hidden;  position: relative;  cursor: none;  transition: transform .35s cubic-bezier(.16,1,.3,1);  display: none;  }
  .port-item.visible { display: block; }
  .port-item:hover { transform: translateY(-5px); } 

  /* Layout spans */
  .port-item.large  { grid-column: span 7; }
  .port-item.medium { grid-column: span 5; }
  .port-item.half   { grid-column: span 6; }
  .port-item.wide   { grid-column: span 8; }
  .port-item.narrow { grid-column: span 4; }

  /* Thumb */
  .port-thumb {
    width: 100%; height: 100%; min-height: 280px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800; letter-spacing: -.05em;
    position: relative;
    overflow: hidden;
  }
  .port-item.large  .port-thumb { min-height: 380px; }
  .port-item.wide   .port-thumb { min-height: 320px; }

  /* Gradient backgrounds */
  .g1 { background: linear-gradient(135deg, #0d1833 0%, #1a3366 50%, #0a1020 100%); color: rgba(80,140,255,.35); }
  .g2 { background: linear-gradient(135deg, #1a0a2e 0%, #3d1a70 50%, #120820 100%); color: rgba(140,80,255,.35); }
  .g3 { background: linear-gradient(135deg, #0a2010 0%, #1a5030 50%, #071510 100%); color: rgba(60,180,100,.35); }
  .g4 { background: linear-gradient(135deg, #251000 0%, #5c2800 50%, #180a00 100%); color: rgba(200,120,40,.35); }
  .g5 { background: linear-gradient(135deg, #200a18 0%, #50183a 50%, #150810 100%); color: rgba(200,80,140,.35); }
  .g6 { background: linear-gradient(135deg, #0a1820 0%, #1a4050 50%, #070f14 100%); color: rgba(60,160,180,.35); }
  .g7 { background: linear-gradient(135deg, #181010 0%, #402020 50%, #100808 100%); color: rgba(200,80,80,.35); }
  .g8 { background: linear-gradient(135deg, #101820 0%, #203050 50%, #080f14 100%); color: rgba(80,120,200,.35); }

  /* Grid noise texture overlay */
  .port-thumb::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: .4; pointer-events: none; z-index: 0;
  }

  /* Abbrev text */
  .thumb-abbr { position: relative; z-index: 1; }

  /* Hover overlay */
  .port-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity .3s;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.75rem;
  }
  .port-item:hover .port-overlay { opacity: 1; }

  /* Always-visible bottom strip */
  .port-info-strip {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
    transform: translateY(0);  transition: opacity 0.5s ease;
  }

  .port-cats {
    display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .75rem;
  }
  .port-cat {
    font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent); background: rgba(123,79,255,.2);
    border: 1px solid rgba(123,79,255,.3);
    padding: .18rem .55rem; border-radius: 4px;
  }
  .port-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(.95rem, 1.5vw, 1.15rem); font-weight: 700;
    line-height: 1.2; color: #fff;
    margin-bottom: .3rem;
  }
  .port-desc-hover {
    font-size: .8rem; line-height: 1.55; color: rgba(255,255,255,.7);
    transform: translateY(6px); opacity: 0;
    transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s;
    margin-bottom: .75rem; 
  }
  .port-item:hover .port-desc-hover { transform: none; opacity: 1;   }
  .port-item:hover .port-info-strip{opacity: 0; }
  .port-link {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .775rem; font-weight: 500; color: var(--accent);
    text-decoration: none;
    transform: translateY(6px); opacity: 0;
    transition: transform .3s .05s cubic-bezier(.16,1,.3,1), opacity .3s .05s;    
  }
  .port-link::after { content: '↗'; }
  .port-item:hover .port-link { transform: none; opacity: 1;  }

  /* Result metric badge */
  .port-metric {
    position: absolute; top: 1.25rem; right: 1.25rem; z-index: 4;
    background: rgba(10,10,15,.75); backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 8px; padding: .4rem .75rem;
    font-family: 'Syne', sans-serif; font-size: .8rem; font-weight: 700;
    color: var(--text); white-space: nowrap;
  }
  .port-metric span { color: var(--accent); }

  /* EMPTY STATE */
  .empty-state {
    grid-column: 1 / -1;
    text-align: center; padding: 6rem 2rem;
    display: none;
  }
  .empty-state.visible { display: block; }
  .empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .4; }
  .empty-text { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-muted); }

  /* CTA BAND */
  .cta-band {
    margin: 0 4rem 5rem;
    padding: 4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 3rem;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute; top: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(123,79,255,.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-band-left { position: relative; }
  .cta-band-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800;
    letter-spacing: -.025em; line-height: 1.1;
    margin-bottom: .75rem;
  }
  .cta-band-sub { font-size: .975rem; font-weight: 400; color: var(--text-muted); line-height: 1.65; max-width: 480px; }
  .cta-band-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
  .btn-primary { font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 500; color: #fff; background: var(--accent); border: none; padding: .875rem 2rem; border-radius: 100px; cursor: none; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: transform .2s, box-shadow .2s; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); } 

  /* PROGRESS BAR */
  .progress-bar { position: fixed; top: 0; left: 0; z-index: 200; height: 2px; width: 0%; background: linear-gradient(to right, var(--accent), #a78bff); transition: width .1s linear; }
 
  /* LAYOUT */
  .post-layout {
    max-width: 1200px; margin: 0 auto;
    padding: 8rem 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 5rem;
    align-items: start;
  }

  /* ARTICLE */
  article { min-width: 0; }
 

  .post-cats { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
  .post-cat { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(123,79,255,.25); padding: .2rem .6rem; border-radius: 4px; }

  .post-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  .post-meta-row {
    display: flex; align-items: center; gap: 1.25rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .meta-author { display: flex; align-items: center; gap: .65rem; }
  .author-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(123,79,255,.3); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
  .author-info { }
  .author-name { font-size: .85rem; font-weight: 500; }
  .author-role { font-size: .72rem; color: var(--text-muted); }
  .meta-divider { width: 1px; height: 28px; background: var(--border); }
  .meta-item { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }
  .meta-icon { font-size: .9rem; }

  /* HERO IMAGE */
  .post-hero {
    width: 100%; aspect-ratio: 2/1;
    background: linear-gradient(135deg, #0d1833 0%, #1a3366 50%, #060d1a 100%);
    border-radius: var(--radius); margin-bottom: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800; letter-spacing: -.06em;
    color: rgba(80,140,255,.25);
    overflow: hidden; position: relative;
  }
  .post-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(123,79,255,.12) 0%, transparent 60%);
  }

  /* ARTICLE BODY */
  .post-body {  font-family: 'Inter', sans-serif;  font-size: 1.0rem; line-height: 1.85; color: var(--text-muted);  font-weight: 400; }
  .post-body p { margin-bottom: 1.5rem; }
  .post-body h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    letter-spacing: -.02em; line-height: 1.2;
    color: var(--text); margin: 2.5rem 0 1rem;
    scroll-margin-top: 100px;
  }
  .post-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem; font-weight: 700; color: var(--text);
    margin: 2rem 0 .75rem; scroll-margin-top: 100px;
  }
  .post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
  .post-body li { font-size: 1rem; line-height: 1.75; }
  .post-body li::marker { color: var(--accent); }
  .post-body strong { font-weight: 500; color: var(--text); }
  .post-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(123,79,255,.3); transition: border-color .2s; }
  .post-body a:hover { border-color: var(--accent); }

  /* CALLOUT */
  .callout { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent);border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem;  margin: 2rem 0;  font-size: .9rem; line-height: 1.7; color: var(--text-muted);  }
  .callout-title { font-family: 'Syne', sans-serif; font-size: .8rem; font-weight: 700; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
  .callout p {margin-bottom: 0rem;}

  /* COMPARISON TABLE */
  .compare-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .875rem; }
  .compare-table th { font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--border);     border-left: none;  border-right: none;     border-top: none;}
  .compare-table th:first-child { color: var(--text-muted); }
  .compare-table td { padding: .875rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top;     border-left: none;
    border-right: none;}
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tr:hover td { background: var(--surface); }
  .compare-table td:first-child { font-weight: 500; color: var(--text); font-size: .8rem; }
  .td-good { color: #5be87a; }
  .td-bad { color: #e85b5b; }
  .td-mid { color: #e8c05b; }
  .table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 2rem 0; overflow-x: auto; }

  /* TAGS */
  .post-tags { display: flex; gap: .5rem; flex-wrap: wrap; padding-top: 2rem; padding-bottom: 2rem;  border-top: 1px solid var(--border); margin-top: 3rem; }
  .post-tag { font-size: .75rem; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); padding: .3rem .8rem; border-radius: 100px; transition: border-color .2s, color .2s; text-decoration: none; cursor: none; }
  .post-tag:hover { border-color: var(--border-hover); color: var(--text); }

  /* SHARE */
  .post-share { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--border); }
  .share-label { font-size: .8rem; color: var(--text-muted); }
  .share-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: none; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--text-muted); cursor: none; transition: all .2s; text-decoration: none; }
  .share-btn:hover { border-color: var(--border-hover); color: var(--text); background: var(--accent-dim); }

  /* AUTHOR CARD */
  .author-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.75rem; margin-top: 3rem; display: flex; gap: 1.25rem; align-items: flex-start;
  }
  .author-card-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(123,79,255,.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--accent); flex-shrink: 0; font-family: 'Syne', sans-serif; }
  .author-card-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
  .author-card-role { font-size: .78rem; color: var(--accent); margin-bottom: .6rem; }
  .author-card-bio { font-size: .825rem; line-height: 1.65; color: var(--text-muted); }

  /* SIDEBAR */
  .sidebar { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: 1.5rem; }

  /* TOC */
  .toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
  .toc-title { font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
  .toc-list { list-style: none; display: flex; flex-direction: column; gap: .1rem; padding-left:0 !important}
  .toc-item a {
    display: block; font-size: .8rem; line-height: 1.5; padding: .4rem .6rem; border-radius: 6px;
    color: var(--text-muted); text-decoration: none;
    transition: color .2s, background .2s;
    border-left: 2px solid transparent;
  }
  .toc-item a:hover { color: var(--text); background: var(--accent-dim); }
  .toc-item.active a { color: var(--accent); border-left-color: var(--accent); background: var(--accent-dim); }
  .toc-item.sub a { padding-left: 1.25rem; font-size: .75rem; }

  /* META CARD */
  .meta-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
  .meta-card-title { font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .875rem; }
  .meta-card-rows { display: flex; flex-direction: column; gap: .6rem; }
  .meta-card-row { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; }
  .mcr-label { color: var(--text-muted); }
  .mcr-val { font-weight: 500; }

  /* SERVICE CTA */
  .sidebar-cta {
    background: var(--surface); border: 1px solid var(--border-hover); border-radius: var(--radius);
    padding: 1.5rem; text-align: center;
    position: relative; overflow: hidden;
  }
  .sidebar-cta::before { content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; background: radial-gradient(circle, rgba(123,79,255,.15) 0%, transparent 70%); pointer-events: none; }
  .cta-emoji { font-size: 1.75rem; display: block; margin-bottom: .75rem; position: relative; }
  .cta-s-title { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: .5rem; position: relative; }
  .cta-s-desc { font-size: .775rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 1.1rem; position: relative; }
  .cta-s-btn { display: block; font-family: 'Inter', sans-serif; font-size: .8125rem; font-weight: 500; color: #fff; background: var(--accent); border: none; padding: .7rem 1.25rem; border-radius: 100px; cursor: none; text-decoration: none; transition: opacity .2s; position: relative; }
  .cta-s-btn:hover { opacity: .85; }

  /* RELATED POSTS */
  .related-section { max-width: 1200px; margin: 0 auto; padding: 0 4rem 5rem; }
  .related-title { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 2rem; }
  .related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
  .related-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; cursor: none; display: block; transition: border-color .3s, transform .3s; }
  .related-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
  .rel-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 800; }
  .rel-thumb.t1 { background: linear-gradient(135deg, #1a0d2e, #3d1a6e); color: rgba(140,80,255,.35); }
  .rel-thumb.t2 { background: linear-gradient(135deg, #0a2010, #1a5030); color: rgba(60,180,100,.35); }
  .rel-thumb.t3 { background: linear-gradient(135deg, #251000, #5c2800); color: rgba(200,120,40,.35); }
  .rel-body { padding: 1.1rem 1.25rem; }
  .rel-cat { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; display: block; }
  .rel-title { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; line-height: 1.3; margin-bottom: .4rem; }
  .rel-read { font-size: .72rem; color: var(--text-dim); }
 


  /* SERVICES LIST */
  .services-section { padding: 0 4rem 6rem; }

  .service-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 0 2.5rem;
    align-items: start;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
  }
  .service-row:last-child { border-bottom: 1px solid var(--border); }
  .service-row::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--accent-dim) 0%, transparent 60%);
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity .4s, transform .5s cubic-bezier(.16,1,.3,1);
  }
  .service-row:hover::before { opacity: 1; transform: translateX(0); }
  .service-row:hover { border-color: var(--border-hover); }

  .row-num {
    font-family: 'Syne', sans-serif;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .1em; color: var(--accent);
    padding-top: .35rem;
    position: relative;
  }

  .row-body { position: relative; }
  .row-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 700; letter-spacing: -.025em;
    line-height: 1.15;
    margin-bottom: .75rem;
    transition: color .2s;
  }
  .service-row:hover .row-title { color: var(--text); }
  .row-desc { font-size: .9rem; line-height: 1.7; color: var(--text-muted); max-width: 520px; margin-bottom: 1.25rem; }
  .row-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
  .row-tag {
    font-size: .7rem; font-weight: 500; letter-spacing: .06em;
    color: var(--text-dim);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: .25rem .7rem; border-radius: 100px;
    transition: border-color .2s, color .2s;
  }
  .service-row:hover .row-tag { border-color: rgba(123,79,255,.2); color: var(--text-muted); }

  .row-action {
    display: flex; flex-direction: column; align-items: flex-end;
    gap: 1rem; padding-top: .25rem; position: relative;
    flex-shrink: 0;
  }
  .row-price {
    font-family: 'Syne', sans-serif;
    text-align: right;
  }
  .row-price-from { font-size: .7rem; color: var(--text-dim); display: block; margin-bottom: .1rem; }
  .row-price-num { font-size: 1.25rem; font-weight: 700; }
  .row-price-period { font-size: .75rem; color: var(--text-muted); }
  .row-arrow {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--text-muted);
    transition: background .25s, border-color .25s, color .25s, transform .25s;
    flex-shrink: 0;
  }
  .service-row:hover .row-arrow {
    background: var(--accent); border-color: var(--accent); color: #fff;
    transform: rotate(-45deg);
  }

  /* DIVIDER SECTION — Approach */
  .approach-section {
    padding: 5rem 4rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
  }
  .approach-left { }
  .section-label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
  .approach-title { font-family: 'Syne', sans-serif; font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 1.25rem; }
  .approach-text { font-size: 1rem; font-weight: 400; color: var(--text-muted); line-height: 1.75; }
  .approach-steps { display: flex; flex-direction: column; gap: 1.25rem; }
  .approach-step {
    display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
    transition: border-color .3s;
  }
  .approach-step:hover { border-color: var(--border-hover); }
  .step-icon { font-size: 1.25rem; flex-shrink: 0; width: 40px; height: 40px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .step-title { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
  .step-desc { font-size: .8rem; line-height: 1.6; color: var(--text-muted); }

  /* COMPLEX PROMO */
  .complex-promo {
    margin: 5rem 4rem;
    padding: 3.5rem 4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative; overflow: hidden;
  }
  .complex-promo::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(123,79,255,.14) 0%, transparent 70%);
    pointer-events: none;
  }
  .promo-label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
  .promo-title { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin-bottom: .75rem; position: relative; }
  .promo-desc { font-size: .95rem; font-weight: 400; color: var(--text-muted); line-height: 1.7; max-width: 500px; position: relative; }
  .promo-right { display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; position: relative; flex-shrink: 0; }
  .promo-saving { font-size: .75rem; font-weight: 500; color: var(--accent);  background: var(--accent-dim); border: 1px solid rgba(123,79,255,.25);   padding: .35rem .85rem; border-radius: 100px; } 

  /* FAQ STRIP */
  .faq-strip { padding: 5rem 4rem; }
  .faq-strip-inner { display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; }
  .faq-strip-left { position: sticky; top: 7rem; }
  .faq-strip-title { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 1rem; }
  .faq-strip-sub { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.75rem; } 
  .faq-list { display: flex; flex-direction: column; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 600; cursor: none; gap: 1rem; transition: color .2s; }
  .faq-q:hover { color: var(--accent); }
  .faq-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--text-muted); transition: transform .3s, border-color .3s, color .3s; }
  .faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
  .faq-a { font-size: .85rem; line-height: 1.75; color: var(--text-muted); max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s; }
  .faq-item.open .faq-a { max-height: 220px; padding-bottom: 1.25rem; }
 
  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
  .reveal.visible { opacity: 1; transform: none; }


  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-left { display: flex; gap: 2.5rem; align-items: center; }
  .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text); text-decoration: none; }
  .footer-logo span { color: var(--accent); }
  .footer-links { display: flex; gap: 2rem; list-style: none; }
  .footer-links a { font-size: .8rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: var(--text); }
  .footer-copy { font-size: .75rem; color: var(--text-dim); }



  /*    USLUGI IN*/

  /* HERO */
  .hero-us-in {  padding: 3rem 4rem 6rem;  display: grid; grid-template-columns: 1fr 420px;  gap: 5rem; align-items: start;   position: relative; overflow: hidden; min-height: inherit; }
  .hero-us-in::before {  content: '';  position: absolute; top: -200px; right: -100px;  width: 600px; height: 600px;  background: radial-gradient(circle, rgba(123,79,255,.15) 0%, transparent 65%);   pointer-events: none; }      
  .hero-desc-us-in {   max-width: 520px; margin-bottom: 2.5rem; } 
  .hero-actions-us-in { display: flex; gap: 1rem; align-items: center; margin-bottom: 3rem; } 
  .btn-primary-us-in:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); } 
  .btn-outline-us-in { white-space: nowrap; text-align: center; } 
  .hero-checklist { display: flex; flex-direction: column; gap: .75rem; }
  .hero-check {  display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--text-muted);  }
  .check-icon {  width: 20px; height: 20px; flex-shrink: 0;  background: var(--accent-dim); border-radius: 50%;  display: flex; align-items: center; justify-content: center; font-size: .65rem; color: var(--accent); }

  /* STICKY CARD */
  .hero-card {  background: var(--surface);  border: 1px solid var(--border); border-radius: 20px;  padding: 2rem;  position: sticky; top: 6rem;  }
  .card-title {  font-family: 'Syne', sans-serif;  font-size: 1rem; font-weight: 700;  margin-bottom: 1.5rem;  }
  .card-price {  display: flex; align-items: baseline; gap: .5rem;  margin-bottom: 1.5rem; }
  .price-from { font-size: .75rem; color: var(--text-muted); }
  .price-num {  font-family: 'Syne', sans-serif;  font-size: 2.25rem; font-weight: 800;  letter-spacing: -.03em;  }
  .price-cur { font-size: 1.1rem; font-weight: 500; color: var(--text-muted); }
  .card-meta { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
  .card-meta-row {  display: flex; width:100%;  justify-content: space-between; align-items: center; font-size: .8125rem;    padding: .6rem 0;  border-bottom: 1px solid var(--border); }
  .card-meta-row:last-child { border-bottom: none; }
  .meta-label { color: var(--text-muted); }
  .meta-val { font-weight: 500; }
  .card-btn {  display: block; width: 100%; text-align: center;   font-size: .9375rem; font-weight: 500; color: #fff; background: var(--accent); border: none;  padding: .9rem; border-radius: 100px;  cursor: none; text-decoration: none;  transition: opacity .2s; margin-bottom: .75rem;  }
  .card-btn:hover { opacity: .85; }
  .card-note {  font-size: .75rem; color: var(--text-dim);  text-align: center; line-height: 1.5;  }

  /* SECTIONS */
  .section { padding: 5rem 4rem; }
  .section + .section { padding-top: 0; }
  .section-label {   font-size: .7rem; font-weight: 600;   letter-spacing: .14em; text-transform: uppercase;  color: var(--accent); margin-bottom: 1rem; }
  .section-title { font-family: 'Syne', sans-serif;  font-size: clamp(1.75rem, 3vw, 2.75rem);  font-weight: 700; letter-spacing: -.025em;  line-height: 1.1; margin-bottom: 1rem; }
  .section-sub {  font-size: 1rem; font-weight: 400;  color: var(--text-muted); line-height: 1.7;  max-width: 540px; margin-bottom: 3.5rem;   }

  /* WHAT'S INCLUDED */
  .included-grid {  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;  }
  .included-card {   background: var(--surface);  border: 1px solid var(--border);   border-radius: var(--radius);   padding: 1.75rem;  transition: border-color .3s, transform .3s;  }
  .included-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
  .inc-num {  font-family: 'Syne', sans-serif;   font-size: .65rem; font-weight: 700;  letter-spacing: .1em; color: var(--accent);  margin-bottom: 1rem;  }
  .inc-title {  font-family: 'Syne', sans-serif;  font-size: .95rem; font-weight: 700;  margin-bottom: .6rem;  }
  .inc-desc { font-size: .825rem; line-height: 1.65; color: var(--text-muted); }

  /* FOR WHOM */
  .forwhom-section { padding: 5rem 4rem; background: var(--surface); }
  .forwhom-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .fw-card {  display: flex; gap: 1rem; align-items: flex-start;  padding: 1.5rem;  background: var(--bg);  border: 1px solid var(--border);  border-radius: var(--radius);  transition: border-color .3s;  }
  .fw-card:hover { border-color: var(--border-hover); }
  .fw-icon {  font-size: 1.5rem; flex-shrink: 0;  width: 44px; height: 44px;  background: var(--accent-dim); border-radius: 10px;  display: flex; align-items: center; justify-content: center; } 
  .fw-title { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: .35rem; }
  .fw-desc { font-size: .8rem; line-height: 1.6; color: var(--text-muted); }

  /* PORTFOLIO */
  .portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .port-card {  background: var(--surface);   border: 1px solid var(--border);  border-radius: var(--radius);  overflow: hidden;  transition: border-color .3s, transform .3s;  cursor: none;  }
  .port-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
  .port-thumb {  width: 100%; aspect-ratio: 4/3;  display: flex; align-items: center; justify-content: center;  font-family: 'Syne', sans-serif; font-size: 2.5rem;  font-weight: 800; letter-spacing: -.05em ; position: relative; overflow: hidden; }
  .port-thumb.t1 { background: linear-gradient(135deg,#0d1a2e,#1a3a5c); color: rgba(100,160,255,.4); }
  .port-thumb.t2 { background: linear-gradient(135deg,#1a0d2e,#3a1a5c); color: rgba(160,100,255,.4); }
  .port-thumb.t3 { background: linear-gradient(135deg,#0d2e1a,#1a5c3a); color: rgba(100,200,130,.4); }
  .port-info { padding: 1.25rem 1.5rem; }
  .port-tag {  font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;  color: var(--accent);  background: var(--accent-dim);  padding: .2rem .55rem; border-radius: 4px;  display: inline-block; margin-bottom: .6rem; }
  .port-name-usl-in {  font-size: .95rem; margin-bottom: .35rem; }
  .port-desc { font-size: .775rem; color: var(--text-muted); line-height: 1.55; }

  /* FAQ  */
  .faq-section-usl-in { padding: 5rem 4rem; }
  .faq-layout-usl-in { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .faq-list-usl-in { display: flex; flex-direction: column; gap: 0; }
  .faq-item-usl-in {
    border-bottom: 1px solid var(--border);
  }
  .faq-q-usl-in {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0;
    font-family: 'Syne', sans-serif;
    font-size: .95rem; font-weight: 600;
    cursor: none; gap: 1rem;
    transition: color .2s;
  }
  .faq-q-usl-in:hover { color: var(--accent); }
  .faq-icon-usl-in {
    width: 22px; height: 22px; flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; color: var(--text-muted);
    transition: transform .3s, border-color .3s, color .3s;
  }
  .faq-item-usl-in.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--accent);
    color: var(--accent);
  }
  .faq-a-usl-in {
    font-size: .85rem; line-height: 1.75;
    color: var(--text-muted);
    max-height: 0; overflow: hidden;
    transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s;
  }
  .faq-item-usl-in.open .faq-a { max-height: 200px; padding-bottom: 1.25rem; } 

  /* TECH STACK */
  .tech-section { padding: 3rem 4rem 5rem; }
  .tech-list { display: flex; flex-wrap: wrap; gap: .75rem; }
  .tech-tag { font-size: .8rem; font-weight: 500; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); padding: .45rem 1rem; border-radius: 100px; transition: border-color .2s, color .2s; }
  .tech-tag:hover { border-color: var(--border-hover); color: var(--text); }

  /* CTA */
  .cta-section-usl-in {  margin: 0 4rem 5rem;  padding: 5rem 4rem;  background: var(--surface);  border: 1px solid var(--border);  border-radius: 24px;  text-align: center;  position: relative; overflow: hidden;  }
  .cta-section-usl-in::before  content: '';  position: absolute; inset: 0;  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(123,79,255,.1) 0%, transparent 70%);  pointer-events: none; } 
  .cta-btns { display: flex; gap: 1rem; justify-content: center; position: relative; } 
.cta-title-us-in {   font-family: 'Syne', sans-serif;  font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -.03em;  line-height: 1.05;  margin-bottom: 1rem;   position: relative; }

/*PORTFOLIO*/


  /* WORKS LIST */
  .works-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
  .work-item {
    display: flex; align-items: flex-start; gap: .875rem;
    padding: .875rem 1.1rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .875rem; line-height: 1.55;
    transition: border-color .25s;
  }
  .work-item:hover { border-color: var(--border-hover); }
  .work-check { padding-top: 2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid rgba(123,79,255,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: .6rem; color: var(--accent); flex-shrink: 0; margin-top: .1rem;
  }
  .work-text { color: var(--text-muted); }
  .work-text strong { font-weight: 500; color: var(--text); }

  /* RESULTS */
  .results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1rem; }
  .result-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.25rem 1.5rem;
    transition: border-color .3s, transform .3s;     line-height: 20px;
  }
  .result-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
  .result-num {
    font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
    letter-spacing: -.03em; color: var(--text); display: block;
    margin-bottom: .55rem; line-height: 1;
  }
  .result-num .a { color: var(--accent); }
  .result-label { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }



  /* SECTIONS */
  .case-body { padding: 4rem 4rem 0; }

  .section-block { margin-bottom: 3.5rem; }
  .section-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: .875rem; display: flex; align-items: center; gap: .65rem;
  }
  .section-label::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
  }
  .section-heading {
    font-family: 'Syne', sans-serif; font-size: 1.375rem; font-weight: 700;
    letter-spacing: -.02em; margin-bottom: 1rem;
  }
  .section-text { font-size: .9375rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }
  .section-text p + p { margin-top: 1rem; }
  .section-text strong { font-weight: 500; color: var(--text); }


  /* SCREENSHOTS */
  .screenshots-section { padding: 0 4rem 6rem; }
  .screenshots-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: .65rem;
  }
  .screenshots-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

  .screenshots-grid { display: grid; gap: 1.25rem; }
  .screenshots-grid.count-1 { grid-template-columns: 1fr; }
  .screenshots-grid.count-2 { grid-template-columns: 1fr 1fr; }
  .screenshots-grid.count-3 { grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; }

  .screenshot {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); background: var(--surface);
    cursor: none; position: relative;
    transition: border-color .3s, transform .3s;
  }
  .screenshot:hover { border-color: var(--border-hover); transform: translateY(-3px); }
  .screenshots-grid.count-3 .screenshot:first-child { grid-row: span 2; }

  /* Заглушка — замените на <img> */
  .screenshot-img {
    width: 100%; aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--text-dim); letter-spacing: .05em;
  }
  .screenshots-grid.count-3 .screenshot:first-child .screenshot-img { aspect-ratio: 4/5; }
  .screenshot-img.s1 { background: linear-gradient(145deg, #0d1833, #1a3366); }
  .screenshot-img.s2 { background: linear-gradient(145deg, #0d1220, #1a2650); }
  .screenshot-img.s3 { background: linear-gradient(145deg, #0a0d1a, #141a33); }

  /* Реальное фото */
  .screenshot img { width: 100%; height: 100%; object-fit: cover; display: block; } 
  .screenshot-caption {   position: absolute; bottom: 0; left: 0; right: 0; padding: .6rem 1rem;  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);   font-size: .72rem; color: rgba(255,255,255,.6);  opacity: 0; transition: opacity .3s;  }
   .screenshot:hover .screenshot-caption { opacity: 1; }

   .wpcf7-not-valid-tip{display: none !important;}
   .wpcf7-not-valid{    border: 1px solid #4c1c1c !important;} 
   .wpcf7-response-output {font-size: 14px;  padding-top: 44px;     color: #6d46e0 !important;}



  /* SEO TEXT SECTION portfolio*/
  .seo-section { padding: 0 4rem 5rem; }
  .seo-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 2rem; display: flex; align-items: center; gap: .65rem;
  }
  .seo-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .seo-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 4rem;
    align-items: start;
  }
  .seo-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.375rem; font-weight: 700; letter-spacing: -.02em;
    line-height: 1.25; color: var(--text);
    margin-bottom: 1.25rem;
  }
  .seo-text h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--text); margin: 2rem 0 .75rem;
  }
  .seo-text p {
    font-size: .9375rem; line-height: 1.8;
    color: var(--text-muted); font-weight: 400;
    margin-bottom: 1rem;
  }
  .seo-text p:last-child { margin-bottom: 0; }
  .seo-sticky {
    position: sticky; top: 7rem;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .seo-nav {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
  }
  .seo-nav-title {
    font-size: .65rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  }
  .seo-nav-list { list-style: none; display: flex; flex-direction: column; gap: .1rem; padding-left:0; }
  .seo-nav-list a {
    display: block; font-size: .8rem; line-height: 1.5;
    padding: .4rem .65rem; border-radius: 6px;
    color: var(--text-muted); text-decoration: none;
    border-left: 2px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
  }
  .seo-nav-list a:hover { color: var(--text); background: var(--accent-dim); }
  .seo-nav-list a.active { color: var(--accent); border-left-color: var(--accent); background: var(--accent-dim); }
  .seo-cta-mini {
    background: var(--surface); border: 1px solid var(--border-hover);
    border-radius: var(--radius); padding: 1.5rem; text-align: center;
    position: relative; overflow: hidden;
  }
  .seo-cta-mini::before { content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 160px; height: 160px; background: radial-gradient(circle, rgba(123,79,255,.15) 0%, transparent 70%); pointer-events: none; }
  .seo-cta-mini-title { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: .4rem; position: relative; }
  .seo-cta-mini-desc { font-size: .775rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; position: relative; }
  .seo-cta-mini-btn { display: block; font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 500; color: #fff; background: var(--accent); border: none; padding: .65rem 1rem; border-radius: 100px; cursor: none; text-decoration: none; transition: opacity .2s; position: relative; }
  .seo-cta-mini-btn:hover { opacity: .85; }




@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox].faccept {         border-radius: 5px;  width: 20px;     height: 20px !important;  float: left !important; margin-right: 10px !important;border: var(--text-muted) solid #6c6a78;   background: var(--text-muted);    }
	input[type=checkbox].faccept:after{width: 8px;  height: 10px;left: 6px;  top: 4px;} 
    input[type=checkbox]:focus { outline-offset: 0px !important;  outline: 0px solid var(--form--border-color) !important; }
}
 


  @media (max-width: 1024px) {
    .post-layout { grid-template-columns: 1fr; gap: 3rem; padding: 6.5rem 1.5rem 3rem; }
    .sidebar { position: static; }
    .toc { display: none; }
  } 


  /* MOBILE */
  @media (max-width: 960px) {
	   
    nav { padding: 1.25rem 1.5rem; }
    .nav-links { display: none; }
    .related-section { padding: 0 1.5rem 3rem; }
    .related-grid { grid-template-columns: 1fr; } 
	  
    .blog-header { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem 2.5rem; }
    .filters-bar { padding: 0 1.5rem 2rem; }
    .blog-section { padding: 2rem 1.5rem 4rem; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-thumb { min-height: 200px; }
    .posts-grid { grid-template-columns: 1fr; }
    .subscribe-band { margin: 0 1.5rem 3rem; padding: 2rem 1.5rem; grid-template-columns: 1fr; gap: 1.5rem; }
    .sub-form { flex-direction: column; }
    .sub-input { width: 100%; border-right: 1px solid var(--border); border-radius: 100px; border-bottom: none; margin-bottom: .5rem; }
    .sub-btn { border-radius: 100px; }  
	   
    .breadcrumb { padding: 5.5rem 1.5rem 0; }
    .about-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 1.5rem 3.5rem; }
    .stats-band { grid-template-columns: 1fr 1fr; }
    .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-cell:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
    .story-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .values-section { padding: 4rem 1.5rem; }
    .values-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .team-section { padding: 4rem 1.5rem; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .clients-section { padding: 3rem 1.5rem; }
    .clients-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .clients-logos { grid-template-columns: repeat(3,1fr); }
    .about-cta { margin: 3rem 1.5rem; padding: 2.5rem 1.5rem; grid-template-columns: 1fr; gap: 2rem; }
    .cta-actions { align-items: stretch; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
	    
    .page-header { padding: 2rem 1.5rem 2.5rem; }
    .contacts-layout { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; gap: 2rem; }
    .contacts-sidebar { position: static; }
    .map-section { padding: 0 1.5rem 4rem; }
    .cf-row { grid-template-columns: 1fr; } 
	  
	     
    .services-section { padding: 0 1.5rem 4rem; }
    .service-row { grid-template-columns: 40px 1fr; gap: 0 1.25rem; }
    .row-action { display: none; }
    .approach-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
    .complex-promo { margin: 3rem 1.5rem; padding: 2rem 1.5rem; grid-template-columns: 1fr; gap: 1.5rem; }
    .promo-right { align-items: flex-start; }
    .faq-strip { padding: 3rem 1.5rem; }
    .faq-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
    .faq-strip-left { position: static; } 
	  
    .page-header-port { padding: 2rem 1.5rem 0; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .page-stats { align-self: flex-start; }
    .stat-item { text-align: left; }
  }

@media (max-width: 900px) {
	
    nav { padding: 1.25rem 1.5rem; }
    .nav-links { display: none; }
    .hero, .section, .works-section, .process-section, .cta-section { padding-left: 1.5rem; padding-right: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .works-grid { grid-template-columns: 1fr; }
    .work-card.large { grid-row: span 1; }
    .stats-section { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
    .advantages-section { padding: 5rem 1.5rem; }
    .advantages-layout { grid-template-columns: 1fr; gap: 3rem; }
    .advantages-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .process-steps::before { display: none; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .advantages-section { padding: 4rem 1.5rem; }
  .advantages-layout { grid-template-columns: 1fr; gap: 3rem; }
  .adv-stats { grid-template-columns: 1fr 1fr; }
	
	
	 /*us IN*/
    .breadcrumb { padding: 5.5rem 1.5rem 0; }
    .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 1.5rem 4rem; }
    .hero-card { position: static; }
    .section, .faq-section, .tech-section { padding-left: 1.5rem; padding-right: 1.5rem; }
    .forwhom-section { padding-left: 1.5rem; padding-right: 1.5rem; }
    .included-grid { grid-template-columns: 1fr; }
    .forwhom-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-section { margin: 0 1.5rem 3rem; padding: 3rem 1.5rem; }
    .cta-btns { flex-direction: column; align-items: center; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
	
	
}