:root {
      --bg-main: #050509;
      --bg-elevated: #0b0b11;
      --bg-card: #111119;
      --accent: #2563eb;
      --accent-soft: rgba(37, 99, 235, 0.15);
      --accent-gradient: linear-gradient(135deg, #2563eb, #6366f1);
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-subtle: #1f2933;
      --radius-xl: 24px;
      --radius-lg: 16px;
      --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.55);
      --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.55);
      --transition-fast: 180ms ease-out;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
      /* Кастомный скроллбар для всех элементов */
      scrollbar-width: thin;
      scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
    }
    
    *::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    
    *::-webkit-scrollbar-track {
      background: transparent;
      border-radius: 4px;
    }
    
    *::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 184, 0.4);
      border-radius: 4px;
      border: 2px solid transparent;
      background-clip: padding-box;
      transition: background 0.2s ease;
    }
    
    *::-webkit-scrollbar-thumb:hover {
      background: rgba(148, 163, 184, 0.6);
      background-clip: padding-box;
    }
    
    *::-webkit-scrollbar-thumb:active {
      background: rgba(148, 163, 184, 0.8);
      background-clip: padding-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: 
        radial-gradient(circle at top, #111827 0, #020617 45%, #020308 100%),
        url('../logo_background.png');
      background-size: cover, 60% auto;
      background-position: center, center center;
      background-repeat: no-repeat, no-repeat;
      background-attachment: fixed, fixed;
      color: var(--text-main);
      scroll-behavior: smooth;
      position: relative;
    }

    body::before {
      display: none; /* Скрываем, используем JS-элемент для параллакса */
    }

    body {
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(5,5,9,0.96), rgba(5,5,9,0.8), transparent);
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 13px;
    }

    .logo-img {
      height: 30px;
      width: auto;
      display: block;
    }

    .logo-mark {
      display: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .nav-links a {
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--accent-gradient);
      transition: width var(--transition-fast);
    }

    .nav-links a:hover {
      color: var(--text-main);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border-radius: 999px;
      padding: 10px 20px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: rgba(15, 23, 42, 0.7);
      color: var(--text-main);
      font-size: 13px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: background var(--transition-fast), border-color var(--transition-fast),
                  transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .btn-primary {
      background-image: var(--accent-gradient);
      border-color: transparent;
      box-shadow: 0 18px 45px rgba(37, 99, 235, 0.55);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 26px 60px rgba(37, 99, 235, 0.7);
    }

    .btn-ghost {
      background: transparent;
    }

    .btn-ghost:hover {
      background: rgba(15,23,42,0.7);
    }

    .btn-small {
      padding: 7px 14px;
      font-size: 12px;
    }

    .nav-toggle {
      display: none;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.6);
      background: rgba(15,23,42,0.9);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      width: 16px;
      height: 1.5px;
      background: #e5e7eb;
      border-radius: 999px;
      display: block;
      position: relative;
      transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
    }

    .nav-toggle span::before {
      position: absolute;
      top: -5px;
    }

    .nav-toggle span::after {
      position: absolute;
      bottom: -5px;
    }

    .nav-open .nav-toggle span {
      transform: rotate(45deg);
    }
    .nav-open .nav-toggle span::before {
      top: 0;
      opacity: 0;
    }
    .nav-open .nav-toggle span::after {
      bottom: 0;
      transform: rotate(-90deg);
    }

    /* Hero */

    .hero {
      padding: 56px 0 32px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
      gap: 40px;
      align-items: flex-start;
    }

    .hero-pre {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 4px 10px 4px 4px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: rgba(15, 23, 42, 0.8);
      color: var(--text-muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .hero-pre-pill {
      padding: 4px 10px;
      border-radius: 999px;
      font-weight: 600;
      background: var(--accent-gradient);
      color: #f9fafb;
    }

    h1.hero-title {
      font-size: clamp(32px, 4vw, 44px);
      line-height: 1.1;
      margin: 18px 0 8px;
      letter-spacing: -0.04em;
    }

    .hero-price-note {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 14px;
      font-weight: 400;
    }

    .hero-sub {
      color: var(--text-muted);
      max-width: 440px;
      font-size: 15px;
    }

    .hero-badges {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12px;
    }

    .hero-badge {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(55,65,81,0.8);
      color: #e5e7eb;
    }

    .hero-cta {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-note {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-media {
      position: relative;
    }

    .hero-card {
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(59,130,246,0.16), transparent 55%),
                  var(--bg-card);
      border: 1px solid rgba(31, 41, 55, 0.9);
      box-shadow: var(--shadow-card);
      padding: 0;
      overflow: hidden;
    }

    .hero-tag {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #e5e7eb;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .hero-tag span:last-child {
      font-weight: 500;
      color: #a5b4fc;
    }

    .hero-img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 16 / 9;
    }

    .hero-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      background: radial-gradient(circle at 50% 0, #111827, #020617);
    }
    
    .hero-img-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .hero-label {
      position: absolute;
      right: 8px;
      bottom: -18px;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      border: 1px solid rgba(148,163,184,0.5);
      background: rgba(15,23,42,0.92);
      color: var(--text-muted);
      backdrop-filter: blur(12px);
    }

    .hero-preview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 16px;
    }

    .hero-preview-item {
      aspect-ratio: 16 / 9;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(31, 41, 55, 0.9);
      background: var(--bg-card);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .hero-preview-item:hover {
      transform: translateY(-2px);
      border-color: rgba(96,165,250,0.7);
      box-shadow: 0 8px 20px rgba(15,23,42,0.6);
    }

    .hero-preview-item.active {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(37,99,235,0.3);
    }

    .hero-preview-item iframe {
      width: 100%;
      height: 100%;
      border: none;
      pointer-events: none;
    }

    .hero-img-wrap {
      transition: opacity 0.4s ease, transform 0.4s ease;
      opacity: 1;
      transform: scale(1);
    }

    .hero-img-wrap.fade-out {
      opacity: 0;
      transform: scale(0.95);
    }

    /* Marquee */

    .marquee {
      margin: 10px 0 40px;
      border-block: 1px solid rgba(31, 41, 55, 0.9);
      background: radial-gradient(circle at 50% 0, rgba(30,64,175,0.4), transparent 80%);
      overflow: hidden;
      position: relative;
    }

    /* Fade/Blur эффект по краям */
    .marquee::before,
    .marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2000px;
      z-index: 2;
      pointer-events: none;
    }

    .marquee::before {
      left: 0;
      background: linear-gradient(to left, 
        transparent 0%,
        rgba(2,6,23,0.05) 10%,
        rgba(2,6,23,0.15) 25%,
        rgba(2,6,23,0.35) 40%,
        rgba(2,6,23,0.6) 55%,
        rgba(2,6,23,0.8) 70%,
        rgba(2,6,23,0.92) 85%,
        rgba(2,6,23,1) 100%
      );
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      /* Размытие самой полосы */
      filter: blur(8px);
      -webkit-filter: blur(8px);
      /* Плавное затухание полосы от центра к краю */
      mask-image: linear-gradient(to left, 
        transparent 0%,
        transparent 5%,
        rgba(0,0,0,0.05) 15%,
        rgba(0,0,0,0.15) 30%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.8) 75%,
        rgba(0,0,0,0.95) 90%,
        rgba(0,0,0,1) 100%
      );
      -webkit-mask-image: linear-gradient(to left, 
        transparent 0%,
        transparent 5%,
        rgba(0,0,0,0.05) 15%,
        rgba(0,0,0,0.15) 30%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.8) 75%,
        rgba(0,0,0,0.95) 90%,
        rgba(0,0,0,1) 100%
      );
    }

    .marquee::after {
      right: 0;
      background: linear-gradient(to right, 
        transparent 0%,
        rgba(2,6,23,0.05) 10%,
        rgba(2,6,23,0.15) 25%,
        rgba(2,6,23,0.35) 40%,
        rgba(2,6,23,0.6) 55%,
        rgba(2,6,23,0.8) 70%,
        rgba(2,6,23,0.92) 85%,
        rgba(2,6,23,1) 100%
      );
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      /* Размытие самой полосы */
      filter: blur(8px);
      -webkit-filter: blur(8px);
      /* Плавное затухание полосы от центра к краю */
      mask-image: linear-gradient(to right, 
        transparent 0%,
        transparent 5%,
        rgba(0,0,0,0.05) 15%,
        rgba(0,0,0,0.15) 30%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.8) 75%,
        rgba(0,0,0,0.95) 90%,
        rgba(0,0,0,1) 100%
      );
      -webkit-mask-image: linear-gradient(to right, 
        transparent 0%,
        transparent 5%,
        rgba(0,0,0,0.05) 15%,
        rgba(0,0,0,0.15) 30%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.8) 75%,
        rgba(0,0,0,0.95) 90%,
        rgba(0,0,0,1) 100%
      );
    }

    .marquee-inner {
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 12px 0;
      animation: marquee 52s linear infinite;
      white-space: nowrap;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.2em;
      color: rgba(156,163,175,0.85);
    }

    .marquee-logo {
      font-weight: 600;
      color: #e5e7eb;
    }

    .marquee-dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(156,163,175,0.7);
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* Sections */

    section {
      padding: 40px 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 24px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #9ca3af;
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 22px;
      letter-spacing: -0.02em;
    }

    .section-desc {
      color: var(--text-muted);
      font-size: 14px;
      max-width: 360px;
    }

    /* Space cards */

    .space-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .card {
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(59,130,246,0.16), transparent 55%),
                  var(--bg-card);
      border: 1px solid rgba(31, 41, 55, 0.9);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
                  border-color var(--transition-fast), background 220ms ease-out;
      cursor: default;
    }

    .card:hover {
      transform: translateY(-2px);
      border-color: rgba(96,165,250,0.7);
      background: radial-gradient(circle at 100% 0, rgba(129,140,248,0.16), transparent 55%),
                  var(--bg-card);
      box-shadow: 0 28px 60px rgba(15,23,42,0.9);
    }

    .card-img {
      height: 180px;
      background-position: center;
      background-size: cover;
      position: relative;
      overflow: hidden;
      /* Предотвращаем артефакты рендеринга */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .card-img-carousel {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      transition: transform 0.4s ease-in-out;
      will-change: transform;
      backface-visibility: hidden;
      transform: translateZ(0);
      /* Убираем overflow: hidden отсюда, он должен быть только на родителе */
      /* Убираем возможные зазоры */
      margin: 0;
      padding: 0;
      /* Принудительное создание слоя для предотвращения артефактов */
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
    }

    .card-img-slide {
      min-width: 100%;
      width: 100%;
      max-width: 100%;
      height: 100%;
      flex-shrink: 0;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
      position: relative;
      backface-visibility: hidden;
      transform: translateZ(0);
      box-sizing: border-box;
      /* Предотвращаем артефакты при трансформации */
      isolation: isolate;
      /* Убираем возможные зазоры */
      margin: 0;
      padding: 0;
    }
    
    .card-img-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      backface-visibility: hidden;
      position: absolute;
      top: 0;
      left: 0;
      /* Убираем возможные артефакты рендеринга */
      transform: translateZ(0);
      will-change: transform;
    }

    /* Formats section - all cards in 9:16 format */
    .formats-grid .card-img {
      height: auto;
      aspect-ratio: 9/16;
      min-height: 320px;
      /* Более строгий overflow для предотвращения артефактов */
      overflow: hidden !important;
      position: relative;
      /* Создаем новый контекст наложения для изоляции */
      isolation: isolate;
    }
    
    /* Дополнительная защита для карусели в форматах */
    .formats-grid .card-img-carousel {
      /* Убеждаемся, что карусель не выходит за границы */
      width: 100%;
      max-width: 100%;
      /* Принудительное создание слоя */
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
    
    /* Дополнительная защита для слайдов в форматах */
    .formats-grid .card-img-slide {
      /* Убираем любые возможные зазоры */
      margin: 0;
      padding: 0;
      /* Точная ширина без округления */
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      /* Обрезка содержимого */
      clip-path: inset(0);
    }

    .card-img[data-carousel="backstage"] {
      height: auto;
      aspect-ratio: 16/9;
      min-height: 200px;
    }

    /* Reels card - vertical video format 9:16 */
    .card-reels .card-img-reels {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(15,23,42,0.5);
    }

    .card-reels .card-img-carousel {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-reels .card-img-slide-reels {
      width: 100%;
      height: 100%;
      min-width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #000;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

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

    .card-img-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: white;
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.2s ease, background 0.2s ease;
      z-index: 2;
    }

    .card-img:hover .card-img-nav {
      opacity: 1;
    }

    .card-img-nav:hover {
      background: rgba(0, 0, 0, 0.7);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .card-img-nav.prev {
      left: 8px;
    }

    .card-img-nav.next {
      right: 8px;
    }

    .card-img-dots {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
    }

    .card-img-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .card-img-dot.active {
      background: rgba(255, 255, 255, 0.9);
      transform: scale(1.2);
    }

    .card-img:hover .card-img-dots {
      opacity: 1;
    }

    .card-body {
      padding: 16px 16px 14px;
    }

    .card-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #9ca3af;
      margin-bottom: 6px;
    }

    .card-title {
      font-size: 15px;
      margin-bottom: 6px;
    }

    .card-text {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Pricing */

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      position: relative;
    }

    .pricing-card {
      position: relative;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(37,99,235,0.12), transparent 55%),
                  var(--bg-card);
      border: 1px solid rgba(30,64,175,0.6);
      box-shadow: var(--shadow-card);
      padding: 18px 18px 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform 220ms ease, box-shadow 300ms ease,
                  border-color 220ms ease, background 220ms ease-out;
      cursor: pointer;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      border-color: rgba(96,165,250,0.7);
    }

    .pricing-card.popular {
      background: radial-gradient(circle at 0 0, rgba(129,140,248,0.16), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236,72,153,0.14), transparent 55%),
                  #020617;
      border: 1px solid rgba(129,140,248,0.9);
      box-shadow: 0 30px 80px rgba(79,70,229,0.75);
    }

    .pricing-card.active {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(129,140,248,0.9);
      box-shadow: 0 30px 80px rgba(37,99,235,0.7);
      background: radial-gradient(circle at 0 0, rgba(37,99,235,0.18), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236,72,153,0.18), transparent 55%),
                  #020617;
    }

    .pricing-card.active:hover {
      transform: translateY(-6px) scale(1.02);
    }

    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 30px 80px rgba(37,99,235,0.7);
      }
      50% {
        box-shadow: 0 30px 90px rgba(37,99,235,0.85);
      }
    }

    .pricing-card.active {
      animation: pulse 2s ease-in-out infinite;
    }

    .pricing-label {
      position: absolute;
      top: 14px;
      right: 14px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(129,140,248,0.8);
      color: #e5e7eb;
    }

    .pricing-name {
      font-size: 15px;
      font-weight: 600;
    }

    .pricing-price {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .pricing-caption {
      font-size: 12px;
      color: var(--text-muted);
    }

    .pricing-list {
      margin: 8px 0 0;
      padding-left: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .pricing-foot {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .pill {
      padding: 3px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.4);
      background: rgba(15,23,42,0.8);
    }

    /* AI Tools section */

    .ai-features-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .ai-feature-card {
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(96,165,250,0.12), transparent 55%),
                  var(--bg-card);
      border: 1px solid rgba(31, 41, 55, 0.9);
      box-shadow: var(--shadow-card);
      padding: 24px;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
                  border-color var(--transition-fast);
    }

    .ai-feature-card:hover {
      transform: translateY(-2px);
      border-color: rgba(96,165,250,0.7);
      box-shadow: 0 28px 60px rgba(15,23,42,0.9);
    }

    .ai-feature-icon {
      font-size: 32px;
      margin-bottom: 12px;
      display: block;
    }

    .ai-feature-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .ai-feature-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* CTA section */

    .cta {
      border-radius: var(--radius-xl);
      padding: 28px 24px;
      background: radial-gradient(circle at 0 0, rgba(96,165,250,0.25), transparent 60%),
                  radial-gradient(circle at 100% 100%, rgba(236,72,153,0.25), transparent 60%),
                  #020617;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148,163,184,0.4);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 26px;
      align-items: center;
    }

    .cta-title {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .cta-text {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 460px;
    }

    .cta-note {
      font-size: 12px;
      margin-top: 10px;
      color: var(--text-muted);
    }

    .cta-media {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(31,41,55,0.9);
    }

    .cta-img {
      height: 180px;
      object-fit: cover;
      background: radial-gradient(circle at 50% 0, #111827, #020617);
    }

    /* Author section */

    .author-block {
      border-radius: var(--radius-xl);
      padding: 28px 24px;
      background: radial-gradient(circle at 100% 0, rgba(236,72,153,0.15), transparent 60%),
                  radial-gradient(circle at 0 100%, rgba(96,165,250,0.15), transparent 60%),
                  #020617;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148,163,184,0.4);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 26px;
      align-items: center;
    }

    .author-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .author-title {
      font-size: 22px;
      letter-spacing: -0.02em;
      margin-top: 8px;
    }

    .author-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .author-text p {
      margin-bottom: 12px;
    }

    .author-text p:last-child {
      margin-bottom: 0;
    }

    .author-media {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(31,41,55,0.9);
    }

    .author-image {
      width: 100%;
      height: 100%;
      min-height: 300px;
    }

    .author-image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 300px;
      background-color: #020617;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
    }
    
    .author-image-placeholder::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 0, rgba(96,165,250,0.2), transparent 55%),
                  radial-gradient(circle at 80% 100%, rgba(236,72,153,0.2), transparent 55%);
      pointer-events: none;
    }

    /* Testimonial */

    .testimonial {
      padding-top: 32px;
    }

    .testimonial-card {
      border-radius: var(--radius-xl);
      background: var(--bg-card);
      border: 1px solid rgba(31,41,55,0.9);
      box-shadow: var(--shadow-card);
      padding: 22px 22px 20px;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      margin: 0 auto 10px;
      background-image: radial-gradient(circle at 20% 0, #f97316, transparent 55%),
                        radial-gradient(circle at 80% 100%, #6366f1, transparent 55%),
                        radial-gradient(circle at 50% 50%, #111827, #020617);
    }

    .testimonial-text {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .testimonial-name {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* FAQ */

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
      gap: 28px;
    }

    .faq-intro {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 320px;
    }

    .faq-item {
      border-bottom: 1px solid rgba(31,41,55,0.9);
    }

    .faq-question {
      padding: 14px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      font-size: 14px;
    }

    .faq-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.7);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      font-size: 13px;
      color: var(--text-muted);
      transition: max-height 0.2s ease-out;
    }

    .faq-answer-inner {
      padding: 0 0 12px;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
    }

    .faq-item.open .faq-icon {
      background: var(--accent);
      color: #f9fafb;
      border-color: transparent;
    }

    /* Contacts */

    .contacts {
      padding-bottom: 60px;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
      gap: 24px;
      align-items: flex-start;
    }

    .map-placeholder {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(31,41,55,0.9);
      background: radial-gradient(circle at 0 0, rgba(37,99,235,0.18), transparent 55%),
                  #020617;
      min-height: 260px;
      position: relative;
    }

    .map-box {
      position: absolute;
      right: 18px;
      bottom: 18px;
      border-radius: 18px;
      padding: 12px 14px;
      background: rgba(15,23,42,0.96);
      border: 1px solid rgba(148,163,184,0.7);
      max-width: 220px;
      font-size: 13px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
    }

    .map-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .map-note {
      font-size: 12px;
      color: var(--text-muted);
    }

    .contact-card {
      border-radius: var(--radius-lg);
      background: var(--bg-card);
      border: 1px solid rgba(31,41,55,0.9);
      box-shadow: var(--shadow-card);
      padding: 18px 18px 16px;
    }

    .contact-row {
      display: flex;
      gap: 22px;
      margin-bottom: 18px;
      font-size: 14px;
    }

    .contact-label {
      width: 90px;
      color: var(--text-muted);
    }

    .contact-value a {
      color: #e5e7eb;
    }

    .contact-value a:hover {
      color: #93c5fd;
    }

    .contact-form {
      display: grid;
      gap: 10px;
      margin-top: 10px;
    }

    .field {
      display: grid;
      gap: 4px;
      font-size: 13px;
    }

    .field label {
      color: var(--text-muted);
    }

    .field input,
    .field textarea {
      border-radius: 12px;
      border: 1px solid rgba(55,65,81,0.9);
      background: rgba(15,23,42,0.9);
      color: var(--text-main);
      padding: 9px 10px;
      font-family: inherit;
      font-size: 13px;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: #60a5fa;
      box-shadow: 0 0 0 1px rgba(96,165,250,0.55);
    }

    .field textarea {
      min-height: 90px;
      resize: vertical;
    }

    .form-note {
      font-size: 11px;
      color: var(--text-muted);
    }

    .form-success {
      font-size: 12px;
      color: #4ade80;
      margin-top: 4px;
      display: none;
    }

    .form-success.visible {
      display: block;
    }

    /* Booking modal */

    .booking-modal {
      position: fixed;
      inset: 0;
      background: rgba(15,23,42,0.9);
      backdrop-filter: blur(16px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease-out;
      z-index: 60;
      overflow-y: auto;
      padding: 20px;
      /* Кастомный скроллбар для модального окна */
      scrollbar-width: thin;
      scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
    }
    
    .booking-modal::-webkit-scrollbar {
      width: 8px;
    }
    
    .booking-modal::-webkit-scrollbar-track {
      background: transparent;
      border-radius: 4px;
    }
    
    .booking-modal::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 184, 0.4);
      border-radius: 4px;
      border: 2px solid transparent;
      background-clip: padding-box;
      transition: background 0.2s ease;
    }
    
    .booking-modal::-webkit-scrollbar-thumb:hover {
      background: rgba(148, 163, 184, 0.6);
      background-clip: padding-box;
    }
    
    .booking-modal::-webkit-scrollbar-thumb:active {
      background: rgba(148, 163, 184, 0.8);
      background-clip: padding-box;
    }

    .booking-modal.open {
      opacity: 1;
      pointer-events: auto;
    }

    .booking-dialog {
      width: min(900px, 100%);
      border-radius: var(--radius-xl);
      background: #020617;
      border: 2px solid rgba(114, 124, 136, 0.363);
      box-shadow: 0 30px 80px rgba(0,0,0,0.9);
      padding: 24px;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
      overflow-x: hidden;
      /* Кастомный скроллбар для диалога */
      scrollbar-width: thin;
      scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
    }
    
    .booking-dialog::-webkit-scrollbar {
      width: 8px;
    }
    
    .booking-dialog::-webkit-scrollbar-track {
      background: transparent;
      border-radius: 4px;
    }
    
    .booking-dialog::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 184, 0.4);
      border-radius: 4px;
      border: 2px solid transparent;
      background-clip: padding-box;
      transition: background 0.2s ease;
    }
    
    .booking-dialog::-webkit-scrollbar-thumb:hover {
      background: rgba(148, 163, 184, 0.6);
      background-clip: padding-box;
    }
    
    .booking-dialog::-webkit-scrollbar-thumb:active {
      background: rgba(148, 163, 184, 0.8);
      background-clip: padding-box;
    }

    /* Кастомный скроллбар для контента политики конфиденциальности */
    .privacy-content {
      scrollbar-width: thin;
      scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
    }
    
    .privacy-content::-webkit-scrollbar {
      width: 8px;
    }
    
    .privacy-content::-webkit-scrollbar-track {
      background: transparent;
      border-radius: 4px;
    }
    
    .privacy-content::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 184, 0.4);
      border-radius: 4px;
      border: 2px solid transparent;
      background-clip: padding-box;
      transition: background 0.2s ease;
    }
    
    .privacy-content::-webkit-scrollbar-thumb:hover {
      background: rgba(148, 163, 184, 0.6);
      background-clip: padding-box;
    }
    
    .privacy-content::-webkit-scrollbar-thumb:active {
      background: rgba(148, 163, 184, 0.8);
      background-clip: padding-box;
    }

    .booking-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      color: var(--text-muted);
      transition: all 0.15s ease;
    }

    .booking-close:hover {
      color: #e5e7eb;
      background: rgba(31,41,55,0.9);
    }

    .booking-main-title {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .booking-text {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .booking-step {
      margin-bottom: 24px;
    }

    .step-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .step-number {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: var(--accent);
      color: white;
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    /* Calendar */
    .calendar {
      border-radius: var(--radius-lg);
      background: var(--bg-card);
      border: 1px solid rgba(31,41,55,0.9);
      padding: 16px;
    }

    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .calendar-month {
      font-size: 15px;
      font-weight: 600;
    }

    .calendar-nav {
      display: flex;
      gap: 8px;
    }

    .calendar-nav button {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.4);
      background: rgba(15,23,42,0.7);
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s ease;
    }

    .calendar-nav button:hover {
      background: rgba(31,41,55,0.9);
      border-color: rgba(148,163,184,0.7);
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .calendar-day-label {
      text-align: center;
      font-size: 11px;
      color: var(--text-muted);
      padding: 6px 0;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .calendar-day {
      aspect-ratio: 1;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.15s ease;
      border: 1px solid transparent;
    }

    .calendar-day.other-month {
      color: var(--text-muted);
      opacity: 0.3;
      cursor: default;
    }

    .calendar-day.past {
      color: var(--text-muted);
      opacity: 0.4;
      cursor: not-allowed;
    }

    .calendar-day.available {
      background: rgba(15,23,42,0.7);
      color: var(--text-main);
    }

    .calendar-day.available:hover {
      background: rgba(31,41,55,0.9);
      border-color: rgba(96,165,250,0.5);
    }

    .calendar-day.unavailable {
      background: rgba(15,23,42,0.3);
      color: var(--text-muted);
      cursor: not-allowed;
    }

    .calendar-day.selected {
      background: var(--accent);
      color: white;
      font-weight: 600;
    }

    .calendar-day.recommended {
      background: rgba(34, 197, 94, 0.08);
      border: 2px solid rgba(34, 197, 94, 0.6);
      color: #86efac;
      box-shadow: 
        0 0 8px rgba(34, 197, 94, 0.4),
        0 0 12px rgba(34, 197, 94, 0.2),
        inset 0 0 8px rgba(34, 197, 94, 0.1);
      animation: recommended-glow 2.5s ease-in-out infinite;
      position: relative;
    }

    .calendar-day.recommended::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      padding: 2px;
      background: linear-gradient(45deg, 
        rgba(34, 197, 94, 0.8), 
        rgba(74, 222, 128, 0.6), 
        rgba(34, 197, 94, 0.8));
      background-size: 200% 200%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: recommended-border 3s linear infinite;
      opacity: 0.7;
      pointer-events: none;
    }

    .calendar-day.recommended:hover {
      background: rgba(34, 197, 94, 0.15);
      box-shadow: 
        0 0 12px rgba(34, 197, 94, 0.6),
        0 0 18px rgba(34, 197, 94, 0.3),
        inset 0 0 10px rgba(34, 197, 94, 0.15);
      transform: scale(1.05);
      transition: all 0.2s ease;
    }

    .calendar-day.recommended.selected {
      background: var(--accent);
      border-color: var(--accent);
      color: white;
      box-shadow: 
        0 0 12px rgba(37, 99, 235, 0.6),
        0 0 20px rgba(37, 99, 235, 0.4);
      animation: none;
    }

    .calendar-day.recommended.selected::before {
      display: none;
    }

    @keyframes recommended-glow {
      0%, 100% {
        box-shadow: 
          0 0 8px rgba(34, 197, 94, 0.4),
          0 0 12px rgba(34, 197, 94, 0.2),
          inset 0 0 8px rgba(34, 197, 94, 0.1);
      }
      50% {
        box-shadow: 
          0 0 12px rgba(34, 197, 94, 0.6),
          0 0 18px rgba(34, 197, 94, 0.3),
          inset 0 0 10px rgba(34, 197, 94, 0.15);
      }
    }

    @keyframes recommended-border {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .calendar-legend {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(148, 163, 184, 0.2);
      font-size: 12px;
      color: var(--text-muted);
      flex-wrap: wrap;
    }

    .calendar-legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .calendar-legend-dot {
      width: 12px;
      height: 12px;
      border-radius: 3px;
      border: 2px solid rgba(34, 197, 94, 0.6);
      background: rgba(34, 197, 94, 0.08);
      box-shadow: 
        0 0 6px rgba(34, 197, 94, 0.4),
        0 0 10px rgba(34, 197, 94, 0.2);
      animation: recommended-glow 2.5s ease-in-out infinite;
    }

    /* Time slots */
    .time-slots {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
      gap: 8px;
    }

    .time-slot {
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(148,163,184,0.4);
      background: rgba(15,23,42,0.7);
      text-align: center;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.15s ease;
    }

    .time-slot:hover {
      background: rgba(31,41,55,0.9);
      border-color: rgba(96,165,250,0.5);
    }

    .time-slot.unavailable {
      opacity: 0.3;
      cursor: not-allowed;
      background: rgba(15,23,42,0.3);
    }

    .time-slot.selected {
      background: var(--accent);
      color: white;
      border-color: transparent;
      font-weight: 600;
    }

    .plan-selector {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .plan-card-mini {
      padding: 12px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(31,41,55,0.9);
      background: rgba(15,23,42,0.7);
      cursor: pointer;
      transition: all 0.15s ease;
    }

    .plan-card-mini:hover {
      border-color: rgba(96,165,250,0.5);
      background: rgba(31,41,55,0.9);
    }

    .plan-card-mini.selected {
      border-color: var(--accent);
      background: var(--accent-soft);
      box-shadow: 0 0 0 2px rgba(37,99,235,0.3);
    }

    .plan-card-mini.inactive {
      opacity: 0.5;
      cursor: default;
    }

    .plan-name {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .plan-price {
      font-size: 15px;
      font-weight: 700;
      color: var(--accent);
    }

    .booking-form {
      display: grid;
      gap: 12px;
    }

    .form-group {
      display: grid;
      gap: 4px;
    }

    .form-group label {
      font-size: 12px;
      color: var(--text-muted);
    }

    .form-group input,
    .form-group textarea {
      border-radius: 10px;
      border: 1px solid rgba(55,65,81,0.9);
      background: rgba(15,23,42,0.9);
      color: var(--text-main);
      padding: 10px 12px;
      font-family: inherit;
      font-size: 13px;
      outline: none;
      transition: border-color 0.15s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #60a5fa;
    }

    .contact-method-selector {
      display: flex;
      gap: 12px;
    }

    .contact-method-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 16px;
      border-radius: 12px;
      border: 2px solid rgba(55,65,81,0.9);
      background: rgba(15,23,42,0.5);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s ease;
      outline: none;
    }

    .contact-method-btn:hover {
      border-color: rgba(96,165,250,0.5);
      background: rgba(31,41,55,0.7);
    }

    .contact-method-btn.active {
      border-color: #60a5fa;
      background: rgba(96,165,250,0.1);
      color: #60a5fa;
    }

    .contact-method-btn svg {
      width: 24px;
      height: 24px;
    }

    .booking-summary {
      background: rgba(15,23,42,0.7);
      border: 1px solid rgba(31,41,55,0.9);
      border-radius: var(--radius-lg);
      padding: 14px;
      font-size: 13px;
      margin-top: 16px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .summary-row:last-child {
      margin-bottom: 0;
      padding-top: 8px;
      border-top: 1px solid rgba(148,163,184,0.2);
      font-weight: 600;
    }

    .loading-spinner {
      display: none;
      text-align: center;
      padding: 20px;
      color: var(--text-muted);
    }

    .loading-spinner.active {
      display: block;
    }

    /* Footer */

    footer {
      border-top: 1px solid rgba(31,41,55,0.9);
      padding: 14px 0 18px;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(2,6,23,0.98);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-links a:hover {
      color: #e5e7eb;
    }

    /* Responsive */

    @media (max-width: 960px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1.1fr);
      }
      .hero-media {
        order: -1;
      }
      .cta {
        grid-template-columns: minmax(0, 1fr);
      }
      .author-block {
        grid-template-columns: minmax(0, 1fr);
      }
      .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .space-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .ai-features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .faq-grid,
      .contacts-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .map-box {
        position: static;
        margin: 16px;
      }
      .booking-dialog {
        padding: 20px;
      }
      #contactModal .booking-dialog > div {
        grid-template-columns: minmax(0, 1fr);
      }
      #contactModal .booking-dialog img {
        height: 160px;
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        position: fixed;
        inset: 64px 20px auto 20px;
        border-radius: 18px;
        border: 1px solid rgba(31,41,55,0.9);
        background: rgba(15,23,42,0.98);
        box-shadow: 0 24px 60px rgba(0,0,0,0.9);
        padding: 12px 18px;
        flex-direction: column;
        align-items: flex-start;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.18s ease, transform 0.18s ease;
      }
      .nav-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      .nav-cta {
        display: none;
      }
      .nav-toggle {
        display: inline-flex;
      }
      .hero {
        padding-top: 32px;
      }
      .space-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .ai-features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .cta {
        padding: 22px 18px;
      }
      .author-block {
        padding: 22px 18px;
        grid-template-columns: minmax(0, 1fr);
      }
      .author-image {
        min-height: 240px;
      }
      .testimonial-card {
        padding-inline: 18px;
      }
      .plan-selector {
        grid-template-columns: minmax(0, 1fr);
      }
      .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
      }
    }