/* ==========================================
   СМОНТИРОВАННЫЕ СТИЛИ ШАПКИ И САЙДБАРА
   ========================================== */

/* Шапка */
.site-header {
  background-color: #0f1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 12px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  max-height: 50px;
  display: block;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #3b82f6;
}

/* Кнопка "Связаться" */
.btn-contact {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-contact:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
}

/* Кнопка Бургер */
.burger-btn {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Боковое меню (Sidebar) */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background-color: #12151e;
  z-index: 1000;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
}

.sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title {
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.sidebar-nav ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.sidebar-nav li a {
  display: block;
  padding: 12px 0;
  color: #f1f5f9;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

.sidebar-nav li a:hover {
  color: #3b82f6;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
}

.sidebar-btn {
  width: 100%;
}

/* Overlay (затемнение) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

/* Мобильный адаптив */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .btn-contact {
    font-size: 13px;
    padding: 7px 14px;
  }
}
:root {
    --bg-body: #070a13;
    --bg-card: rgba(15, 23, 42, 0.65);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(227, 30, 36, 0.5);
    
    --1c-red: #ff2e35;
    --1c-red-glow: rgba(255, 46, 53, 0.35);
    --1c-red-soft: rgba(255, 46, 53, 0.12);
    --1c-yellow: #fbbf24;
    
    --brand-telegram: #229ed9;
    --brand-whatsapp: #25d366;
    --brand-imo: #38bdf8;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px -10px rgba(255, 46, 53, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: -0.125em;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 22px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(7, 10, 19, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-card);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--1c-red) 0%, #d3181e 100%);
    color: #fff;
    box-shadow: 0 8px 25px var(--1c-red-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 46, 53, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--1c-red);
    color: #fff;
    background: rgba(255, 46, 53, 0.1);
    transform: translateY(-3px);
}

/* Layout Grid с сайдбаром */
.layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    padding-top: 140px;
    padding-bottom: 80px;
}

.layout-wrapper.no-sidebar {
    grid-template-columns: 1fr;
}

.hero {
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--1c-yellow);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: floatBadge 5s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -1.8px;
    color: var(--text-main);
}

.highlight-red {
    color: var(--1c-red);
    background: linear-gradient(135deg, var(--1c-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 46, 53, 0.3));
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 660px;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.card-glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.card-glass:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

/* Sidebar styling */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    position: sticky;
    top: 100px;
}

.developer-mini {
    text-align: center;
}

.developer-mini .avatar-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    font-size: 38px;
    border-radius: 20px;
}

.developer-mini h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.developer-mini .developer-role {
    font-size: 11px;
    padding: 2px 8px;
    margin-bottom: 12px;
}

.developer-mini p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.developer-grid {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.developer-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--1c-red) 0%, var(--1c-yellow) 100%);
}

.avatar-box {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--1c-red) 0%, #990f14 100%);
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 52px;
    box-shadow: 0 12px 30px var(--1c-red-glow);
}

.developer-info h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.developer-role {
    font-size: 13px;
    font-weight: 800;
    color: var(--1c-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: inline-block;
    background: var(--1c-red-soft);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 46, 53, 0.2);
}

.developer-bio {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
}

.section {
    padding: 40px 0;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--1c-red-soft);
    border: 1px solid rgba(255, 46, 53, 0.2);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--1c-red);
    font-size: 28px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-card);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    margin: 20px 0 28px;
    padding: 12px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    transition: var(--transition);
}

.phone-link svg {
    fill: var(--1c-red);
}

.phone-link:hover {
    transform: scale(1.02);
    border-color: var(--1c-red);
    box-shadow: 0 10px 30px var(--1c-red-glow);
}

.messengers-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    color: #ffffff;
}

.messenger-btn .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.messenger-btn svg {
    width: 22px;
    height: 22px;
}

.btn-tg .icon-box svg { fill: var(--brand-telegram); }
.btn-tg:hover {
    border-color: var(--brand-telegram);
    background: rgba(34, 158, 217, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(34, 158, 217, 0.3);
}

.btn-wa .icon-box svg { fill: var(--brand-whatsapp); }
.btn-wa:hover {
    border-color: var(--brand-whatsapp);
    background: rgba(37, 211, 102, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-imo .icon-box svg { fill: var(--brand-imo); }
.btn-imo:hover {
    border-color: var(--brand-imo);
    background: rgba(56, 189, 248, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-card);
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    background: rgba(7, 10, 19, 0.9);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .layout-wrapper {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }
    .sidebar { display: none; }
    .hero-title { font-size: 38px; }
    .developer-grid { grid-template-columns: 1fr; text-align: center; }
    .developer-grid::before { width: 100%; height: 5px; }
    .avatar-box { margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .phone-link { font-size: 20px; width: 100%; justify-content: center; }
    .messenger-btn { width: 100%; justify-content: center; }
}

/* ==========================================
   МОБИЛЬНОЕ МЕНЮ И БУРГЕР-КНОПКА
   ========================================== */

/* Скрываем бургер на десктопе по умолчанию */
.burger-btn {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff; /* Цвет полосок */
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Анимация крестика */
.burger-btn.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Настройка выезжающего сайдбара из includes/sidebar.html */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  padding: 70px 20px 20px 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
  overflow-y: auto;
}

.sidebar.open {
  left: 0;
}

/* Затемнение фона (Overlay) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Отображение кнопки на экранах меньше 768px */
@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }
}
/* ==========================================
   HEADER & МОБИЛЬНОЕ МЕНЮ
   ========================================== */

.site-header {
  background-color: #111;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
}

/* Кнопка "Связаться" */
.btn-contact {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-contact:hover {
  background-color: #0056b3;
}

/* Кнопка Бургер */
.burger-btn {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Сайдбар (мобильное меню) */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 30px;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
}

.sidebar-nav li a {
  display: block;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
}

.sidebar-btn {
  width: 100%;
}

/* Overlay (подложка) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

/* Адаптив для экранов меньше 768px */
@media (max-width: 768px) {
  .desktop-nav {
    display: none; /* Скрываем десктопные ссылки */
  }

  .burger-btn {
    display: flex; /* Показываем бургер */
  }

  .btn-contact {
    font-size: 14px;
    padding: 8px 14px;
  }
}



/* Reviews Section Styles */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-bottom: 40px;
        }

        .review-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .review-author {
            font-weight: 800;
            font-size: 18px;
            color: var(--text-main);
        }

        .stars {
            color: var(--1c-yellow);
            font-size: 16px;
            letter-spacing: 2px;
        }

        .review-text {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-tag {
            font-size: 12px;
            font-weight: 700;
            color: var(--brand-kwork);
            background: rgba(255, 153, 0, 0.1);
            padding: 4px 10px;
            border-radius: 6px;
            display: inline-block;
            align-self: flex-start;
        }

        .kwork-banner {
            background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
            border: 1px solid rgba(255, 153, 0, 0.3);
            border-radius: 24px;
            padding: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .kwork-banner-info h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .kwork-banner-info p {
            color: var(--text-muted);
            font-size: 15px;
        }

        .contact-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-card);
            border-radius: 32px;
            padding: 64px 40px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        }

        .phone-link {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-size: 36px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            margin: 24px 0 36px;
            padding: 14px 32px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-card);
            transition: var(--transition);
        }

        .phone-link svg {
            fill: var(--1c-red);
        }

        .phone-link:hover {
            transform: scale(1.02);
            border-color: var(--1c-red);
            box-shadow: 0 10px 30px var(--1c-red-glow);
        }

        .messengers-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .messenger-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 16px 32px;
            border-radius: 18px;
            font-weight: 800;
            font-size: 17px;
            text-decoration: none;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-card);
            color: #ffffff;
        }

        .messenger-btn .icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
        }

        .messenger-btn svg {
            width: 26px;
            height: 26px;
        }

        .btn-tg .icon-box svg { fill: var(--brand-telegram); }
        .btn-tg:hover {
            border-color: var(--brand-telegram);
            background: rgba(34, 158, 217, 0.12);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(34, 158, 217, 0.3);
        }

        .btn-wa .icon-box svg { fill: var(--brand-whatsapp); }
        .btn-wa:hover {
            border-color: var(--brand-whatsapp);
            background: rgba(37, 211, 102, 0.12);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
        }

        .btn-imo .icon-box svg { fill: var(--brand-imo); }
        .btn-imo:hover {
            border-color: var(--brand-imo);
            background: rgba(56, 189, 248, 0.12);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
        }

        footer {
            padding: 40px 0;
            border-top: 1px solid var(--border-card);
            text-align: center;
            color: var(--text-muted);
            font-size: 15px;
            background: rgba(7, 10, 19, 0.9);
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 992px) {
            .hero-title { font-size: 42px; }
            .developer-grid { grid-template-columns: 1fr; text-align: center; }
            .developer-grid::before { width: 100%; height: 5px; }
            .avatar-box { margin: 0 auto; }
            .services-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .phone-link { font-size: 24px; width: 100%; justify-content: center; }
            .messenger-btn { width: 100%; justify-content: center; }
        }
		.btn-kwork {
            background: linear-gradient(135deg, #ff9900 0%, #e67e00 100%);
            color: #fff;
            box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
        }

        .btn-kwork:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 153, 0, 0.5);
        }