.elementor-1042 .elementor-element.elementor-element-623b4fa{width:var( --container-widget-width, 105.804% );max-width:105.804%;--container-widget-width:105.804%;--container-widget-flex-grow:0;}.elementor-1042 .elementor-element.elementor-element-623b4fa.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-1042 .elementor-element.elementor-element-cd326c2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1042 .elementor-element.elementor-element-e6d428b{text-align:center;}.elementor-1042 .elementor-element.elementor-element-e6d428b .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:41px;font-weight:200;text-transform:uppercase;letter-spacing:-0.5px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1042 .elementor-element.elementor-element-a606f1b{font-family:"Roboto", Sans-serif;font-weight:300;color:var( --e-global-color-accent );}.elementor-1042 .elementor-element.elementor-element-a606f1b p{margin-block-end:0px;}.elementor-1042 .elementor-element.elementor-element-a56188d{padding:20px 20px 20px 20px;}.elementor-1042 .elementor-element.elementor-element-857a59a{--grid-template-columns:repeat(0, auto);text-align:center;--icon-size:28px;--grid-column-gap:18px;--grid-row-gap:0px;}.elementor-1042 .elementor-element.elementor-element-857a59a .elementor-social-icon{background-color:var( --e-global-color-secondary );--icon-padding:0.2em;}.elementor-1042 .elementor-element.elementor-element-857a59a .elementor-social-icon i{color:var( --e-global-color-accent );}.elementor-1042 .elementor-element.elementor-element-857a59a .elementor-social-icon svg{fill:var( --e-global-color-accent );}@media(min-width:768px){.elementor-1042 .elementor-element.elementor-element-cd326c2{--content-width:40%;}}/* Start custom CSS *//* --- General Styles & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ef4444; /* red-500 */
    --accent: #f59e0b; /* amber-500 */
    --background: #191919;
    --surface: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

html {
    background-color: var(--background);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    scroll-behavior: smooth;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- New Custom Styles --- */

/* Custom font for footer */
.font-jetbrains {
    font-family: 'JetBrains Mono', monospace;
}

/* Custom gradient text - Changed to a more subtle Neon Red */
.gradient-text {
    color: #ff5151; /* A bright, readable red */
    text-shadow: 0 0 10px rgba(255, 81, 81, 0.6), 
                 0 0 20px rgba(255, 81, 81, 0.4);
}

/* Glow effect for sections */
.section-glow {
    position: relative;
    z-index: 1;
}


/* Prominent neon glow animation for the avatar */
@keyframes neon-glow {
    from {
        border-color: #ef4444;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.6), 0 0 15px rgba(239, 68, 68, 0.4);
    }
    to {
        border-color: #f59e0b;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.6), 0 0 15px rgba(245, 158, 11, 0.4);
    }
}

.avatar-glow {
    animation: neon-glow 2s infinite alternate ease-in-out;
}


/* --- Profile Section --- */
.profile {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.profile-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2.25rem;
    font-weight: 800; /* Thinner font */
    margin-bottom: 0.5rem;
}

.profile-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* --- Links Container --- */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 480px;
    margin-bottom: 2rem;
}

/* Компактные кнопки */
.link-btn {
    display: flex;
    align-items: flex-start;
    padding: 0.6rem 1rem;
    background: var(--gradient-surface);
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.97rem;
    transition: all 0.22s cubic-bezier(.4,0,.2,1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: left;
    margin-bottom: 0.4rem;
    min-height: 38px;
}

.link-btn .title {
    font-size: 1rem;
    font-weight: 700;
}

.link-btn .subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.link-btn:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 0 8px 2px #ff5151, 0 0 16px 4px #fff2;
    background: var(--surface);
    z-index: 1;
}

.link-btn-icon {
    font-size: 1.5rem; /* Adjusted size */
    margin-right: 1.25rem;
    width: 30px; /* Fixed width for alignment */
    height: 30px; /* Fixed height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents the icon from shrinking */
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    transition: box-shadow 0.3s, background 0.3s;
    box-shadow: none;
}

.footer-social-btn:hover {
    background: var(--surface);
    box-shadow: 0 0 12px 2px var(--primary), 0 0 2px 1px var(--accent);
}

.footer-social-img {
    width: 32px;
    height: 32px;
    display: block;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0;
}

/* --- Стили из consult-notion.html --- */
.text-shadow-red {
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.5), 0 0 12px rgba(220, 38, 38, 0.3);
}
.animated-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Соотношение сторон 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 1rem;
}
.video-container video, .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Адаптивность: Mobile-first --- */
@media (max-width: 600px) {
  .container {
    padding: 1rem 0.5rem;
    max-width: 100%;
  }
  .profile {
    margin-bottom: 1.2rem;
  }
  .profile-image-wrapper, .profile-image {
    width: 90px;
    height: 90px;
  }
  .profile-name, .section-title {
    font-size: 1.5rem;
  }
  .profile-description, .section-subtitle {
    font-size: 0.98rem;
    margin-bottom: 1rem;
  }
  .links-container {
    gap: 0.7rem;
    padding: 0;
    max-width: 100%;
  }
  .link-btn {
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem;
    border-radius: 7px;
    min-height: 32px;
  }
  .link-btn .title {
    font-size: 0.95rem;
  }
  .link-btn .subtitle {
    font-size: 0.8rem;
  }
  .link-btn-icon {
    font-size: 1.05rem;
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
  }
  .footer, .footer-text {
    font-size: 0.8rem;
    padding-top: 1rem;
    max-width: 100%;
  }
  .social-links {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .social-links a {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
  }
  .video-container {
    border-radius: 0.7rem;
  }
  /* Сетки и карточки */
  .grid, .grid.grid-3, .grid.grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  .card, .testimonial-card, .pricing-card {
    padding: 1rem 0.7rem !important;
    border-radius: 0.8rem !important;
    font-size: 0.98rem !important;
  }
  .testimonial-author img {
    width: 48px !important;
    height: 48px !important;
  }
  .price {
    font-size: 1.3rem !important;
    padding: 0.5rem 0.7rem !important;
  }
  .plan-name {
    font-size: 1.1rem !important;
  }
  .limitation-box {
    font-size: 0.95rem !important;
    padding: 0.7rem !important;
  }
  .section {
    padding: 1.2rem 0.5rem !important;
  }
  .animated-section, .section-glow {
    padding: 1rem 0.5rem !important;
  }
  .video-container video, .video-container iframe {
    border-radius: 0.7rem;
  }
  /* Кнопки CTA */
  .btn, .btn-primary, .link-btn, .pricing-card a {
    font-size: 1rem !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 0.7rem !important;
  }
  /* Accordion */
  .accordion-button {
    padding: 0.7rem 0.5rem !important;
    font-size: 1rem !important;
  }
  .accordion-content {
    padding: 0.5rem 0.5rem !important;
    font-size: 0.97rem !important;
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0.5rem 0.2rem;
  }
  .profile-name, .section-title {
    font-size: 1.1rem;
  }
  .link-btn {
    font-size: 0.8rem;
    padding: 0.38rem 0.5rem;
    border-radius: 7px;
    margin-bottom: 0.2rem;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 1.5rem 1rem;
  }
  .profile-image-wrapper, .profile-image {
    width: 120px;
    height: 120px;
  }
  .profile-name, .section-title {
    font-size: 2rem;
  }
  .links-container {
    max-width: 95vw;
  }
  .link-btn {
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
  }
}

/* --- Бело-красное свечение для index.html --- */
@keyframes white-red-glow {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 235, 235), 0 0 24px 0 #db031b, 0 0 0 0 #fff;
    border-color: #db031b;
  }
  50% {
    box-shadow: 0 0 0 0 rgba(219,3,27,0.7), 0 0 32px 0 #fff, 0 0 0 0 #db031b;
    border-color: #db031b;
  }
  100% {
    box-shadow: 0 0 0 0 rgb(255, 235, 235), 0 0 24px 0 #db031b, 0 0 0 0 #fff;
    border-color: #db031b;
  }
}

/* Универсальный стиль для аватарок */
.avatar,
.profile-image-wrapper,
.profile-image-wrapper.avatar-glow {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image-wrapper.avatar-glow,
.avatar.avatar-glow {
  animation: white-red-glow 6s infinite alternate;
  box-shadow: 0 0 0 4px rgb(255, 235, 235), 0 0 24px 8px #db031b;
}

.profile-image img,
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.gradient-text {
  background: linear-gradient(90deg, #db031b 0%, #ff6a6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none !important;
}

.menu-nav {
  margin: 1.5rem 0 1rem 0;
  text-align: left;
}
.menu-link {
  color: #db031b;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  transition: box-shadow 0.3s, filter 0.3s, border 0.3s;
  box-shadow: none;
  border: none !important;
}
.footer-social-icon:hover,
.footer-social-icon:active,
.footer-social-icon:focus {
  animation: white-red-glow 1.5s infinite alternate;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.7), 0 0 24px 8px #db031b;
  filter: brightness(1.1);
  border: none !important;
  outline: none;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.7);
  transition: box-shadow 0.3s, background 0.3s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
.footer-social-btn:hover {
  background: rgba(239, 68, 68, 0.10);
  box-shadow: 0 0 16px 2px #ff5151cc, 0 2px 8px 0 #db031b33;
}
.footer-social-btn img {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
}

/* Футер: иконки в ряд строго по центру */
.footer .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.mr-2 {
  margin-right: 0.5rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 0 1.5rem;
}
.accordion-content.open {
  max-height: 1000px;
  padding: 1.2rem 1.5rem;
}
.accordion-button:hover {
  box-shadow: 0 0 12px 2px #ff5151, 0 0 24px 4px #db031b33;
  border-radius: 1rem;
  transition: box-shadow 0.3s;
}

a:not(.link-btn):hover,
button:hover,
.btn:hover,
.inline-block.bg-red-600:hover {
  box-shadow: 0 6px 32px 0 #ff5151cc, 0 2px 8px 0 #db031b33;
  transition: box-shadow 0.3s;
}

.inline-block.bg-red-600:hover {
  box-shadow: 0 0 32px 8px #ff5151cc, 0 2px 16px 4px #db031b66 !important;
  transition: box-shadow 0.3s;
}/* End custom CSS */