
  :root {
    --gold: #D4AF37;
    --gold-light: #E8C872;
    --gold-dark: #B8941F;
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --black-border: #2a2a2a;
    --white: #ffffff;
    --gray: #a0a0a0;
    --gray-light: #c0c0c0;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.7;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* ===== Scrollbar ===== */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold); }

  /* ===== Selection ===== */
  ::selection { background: var(--gold); color: var(--black); }

  /* ===== Header ===== */
  .navbar-premium {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    z-index: 1030;
  }

  .navbar-premium.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 10, 0.95);
  }

  .navbar-brand-premium {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
  }

  .brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
  }

  .brand-sub {
    font-size: 0.72rem;
    color: var(--gray-light);
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .nav-link-premium {
    color: var(--white) !important;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav-link-premium:hover {
    color: var(--gold) !important;
  }

  .nav-link-premium:hover::after {
    width: 60%;
  }

  .nav-link-premium.active {
    color: var(--gold) !important;
  }

  .nav-link-premium.active::after {
    width: 60%;
  }

  /* ===== Header Contacts (Desktop) ===== */
  .header-contacts {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid var(--black-border);
    margin-left: 20px;
  }

  .header-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .header-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
  }

  .header-contact-item:hover {
    color: var(--gold);
  }

  .header-contact-item:hover i {
    transform: scale(1.15);
  }

  .navbar-premium.scrolled .header-contacts {
    gap: 1rem;
    margin-right: 1.2rem;
    padding-right: 1.2rem;
  }

  .navbar-premium.scrolled .header-contact-item {
    font-size: 0.78rem;
  }

  /* ===== Mobile Contacts (inside burger menu) ===== */
  .mobile-contacts {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--black-border);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .mobile-contacts-title {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-weight: 500;
  }

  .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
  }

  .mobile-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
  }

  .mobile-contact-item:hover {
    color: var(--gold);
  }

  /* Burger menu */
  .navbar-toggler-premium {
    border: 1px solid var(--gold);
    padding: 0.5rem 0.75rem;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .navbar-toggler-premium:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
  }

  .burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
  }

  .burger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold);
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .navbar-toggler-premium[aria-expanded="true"] .burger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar-toggler-premium[aria-expanded="true"] .burger-icon span:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggler-premium[aria-expanded="true"] .burger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* ===== Mobile header styles (up to 1200px) ===== */
  @media (max-width: 1199.98px) {
    .navbar-collapse {
      background: var(--black-soft);
      border: 1px solid var(--black-border);
      margin-top: 1rem;
      padding: 1.5rem;
    }
    .nav-link-premium {
      padding: 0.8rem 0 !important;
      border-bottom: 1px solid var(--black-border);
    }
    .nav-link-premium:last-child { border-bottom: none; }
    .header-contacts { display: none !important; }
  }

  /* ===== Buttons ===== */
  .btn-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.9rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
  }

  .btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    transition: left 0.4s ease;
    z-index: -1;
  }

  .btn-gold:hover {
    color: var(--black);
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  }

  .btn-gold:hover::before {
    left: 0;
  }

  .btn-gold-filled {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    border: 1px solid var(--gold);
    padding: 0.9rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
  }

  .btn-gold-filled:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--black);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
  }

  .btn-link-gold {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-link-gold:hover {
    color: var(--gold-light);
    gap: 1rem;
  }

  /* ===== Hero Section (Home) ===== */
  .hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                var(--black);
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  }

  .hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-left: 60px;
    position: relative;
  }

  .hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
  }

  .hero-title .accent {
    color: var(--gold);
    font-style: italic;
    position: relative;
    display: inline-block;
  }

  .hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .hero-description {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 550px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-frame::before,
  .hero-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
  }

  .hero-frame::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
  }

  .hero-frame::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
  }

  .hero-icon {
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.9;
  }

  .hero-orbit {
    position: absolute;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
  }

  .hero-orbit-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
  }

  .hero-orbit-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-duration: 45s;
    animation-direction: reverse;
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* ===== Page Hero (Opportunities / Price) ===== */
  .page-hero {
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
                var(--black);
  }

  .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  }

  .page-hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 0 60px;
    position: relative;
  }

  .page-hero-label::before,
  .page-hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--gold);
  }

  .page-hero-label::before { left: 0; }
  .page-hero-label::after { right: 0; }

  .page-hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
  }

  .page-hero-title .accent {
    color: var(--gold);
    font-style: italic;
    position: relative;
    display: inline-block;
  }

  .page-hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .page-hero-subtitle {
    color: var(--gray-light);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
  }

  /* ===== Section Common ===== */
  section {
    padding: 100px 0;
    position: relative;
  }

  .section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-left: 50px;
    position: relative;
  }

  .section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--gold);
  }

  .section-label.center {
    padding-left: 0;
    padding: 0 60px;
  }

  .section-label.center::before { left: 0; }
  .section-label.center::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
  }

  .section-title .accent {
    color: var(--gold);
    font-style: italic;
  }

  .section-subtitle {
    color: var(--gray-light);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .divider-gold {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
  }

  /* ===== Roles Cards (Home) ===== */
  .roles-section {
    background: var(--black-soft);
    position: relative;
  }

  .roles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .roles-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .role-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .role-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
  }

  .role-card:hover::before {
    transform: scaleX(1);
  }

  .role-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.8rem;
    transition: all 0.4s ease;
  }

  .role-card:hover .role-icon {
    background: var(--gold);
    color: var(--black);
  }

  .role-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.2;
    font-weight: 600;
  }

  .role-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .role-description {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .role-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }

  .role-features li {
    padding: 0.6rem 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .role-features li:last-child {
    border-bottom: none;
  }

  .role-features li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.6rem;
  }

  .role-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }

  .role-link:hover {
    color: var(--gold-light);
    gap: 1rem;
  }

  /* ===== Cabinet Cards (Opportunities) ===== */
  .cabinets-section {
    background: var(--black-soft);
    position: relative;
  }

  .cabinets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .cabinet-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .cabinet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .cabinet-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
  }

  .cabinet-card:hover::before { transform: scaleX(1); }

  .cabinet-icon-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-flex;
  }

  .cabinet-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    background: var(--black-card);
  }

  .cabinet-icon-bg {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1;
    transition: all 0.4s ease;
  }

  .cabinet-card:hover .cabinet-icon {
    background: var(--gold);
    color: var(--black);
  }

  .cabinet-card:hover .cabinet-icon-bg {
    top: 12px;
    left: 12px;
    border-color: var(--gold);
  }

  .cabinet-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.15;
    font-weight: 600;
    line-height: 1;
  }

  .cabinet-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .cabinet-description {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
  }

  /* ===== Feature Mini Cards (Opportunities) ===== */
  .features-grid-section {
    background: var(--black);
    position: relative;
  }

  .features-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .feature-mini-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    transition: width 0.5s ease;
    z-index: 0;
  }

  .feature-mini-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }

  .feature-mini-card:hover::before { width: 100%; }

  .feature-mini-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .feature-mini-card:hover .feature-mini-icon {
    background: var(--gold);
    color: var(--black);
  }

  .feature-mini-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
  }

  .feature-mini-num {
    position: absolute;
    bottom: 0.8rem;
    right: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.1;
    font-weight: 600;
    line-height: 1;
  }

  /* ===== Features Section (Home) ===== */
  .features-section {
    background: var(--black);
    position: relative;
  }

  .feature-browser {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
  }

  .feature-browser::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--gold) 100%);
    z-index: -1;
    opacity: 0.3;
    border-radius: 4px;
  }

  .browser-header {
    background: var(--black-soft);
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .browser-dots {
    display: flex;
    gap: 0.4rem;
  }

  .browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black-border);
  }

  .browser-dots span:nth-child(1) { background: #ff5f57; }
  .browser-dots span:nth-child(2) { background: #febc2e; }
  .browser-dots span:nth-child(3) { background: #28c840; }

  .browser-url {
    flex: 1;
    background: var(--black);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gray-light);
    text-align: center;
    border: 1px solid var(--black-border);
  }

  .browser-content {
    padding: 2rem;
    min-height: 400px;
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-soft) 100%);
    position: relative;
  }

  .browser-mockup {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
  }

  .mockup-sidebar {
    background: var(--black);
    border: 1px solid var(--black-border);
    padding: 1.5rem 1rem;
    border-radius: 4px;
  }

  .mockup-sidebar-item {
    padding: 0.6rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
  }

  .mockup-sidebar-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-left: 2px solid var(--gold);
  }

  .mockup-main {
    background: var(--black);
    border: 1px solid var(--black-border);
    padding: 1.5rem;
    border-radius: 4px;
  }

  .mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .mockup-stat {
    background: var(--black-soft);
    border: 1px solid var(--black-border);
    padding: 1rem;
    border-radius: 3px;
  }

  .mockup-stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .mockup-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 600;
  }

  .mockup-chart {
    height: 150px;
    background: var(--black-soft);
    border: 1px solid var(--black-border);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
  }

  .mockup-chart svg {
    width: 100%;
    height: 100%;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }

  .feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-light);
    font-size: 1rem;
  }

  .feature-list li:last-child { border-bottom: none; }

  .feature-list li .check {
    width: 24px;
    height: 24px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  /* ===== Verticals Section (Home) ===== */
  .verticals-section {
    background: var(--black-soft);
    position: relative;
  }

  .verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }

  .vertical-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .vertical-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .vertical-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
  }

  .vertical-item:hover::before {
    opacity: 1;
  }

  .vertical-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
  }

  .vertical-item:hover .vertical-icon {
    transform: scale(1.1);
  }

  .vertical-name {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
  }

  /* ===== Pricing Section (Price) ===== */
  .pricing-section {
    background: var(--black-soft);
    position: relative;
    padding-top: 80px;
  }

  .pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .pricing-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
  }

  .pricing-card:hover::before { transform: scaleX(1); }

  .pricing-card.featured {
    background: linear-gradient(160deg, #1f1a0a 0%, #0f0d06 100%);
    border: 1px solid var(--gold);
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.15);
  }

  .pricing-card.featured::before {
    transform: scaleX(1);
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  }

  .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(212, 175, 55, 0.25);
  }

    .pricing-badge {
      position: absolute;
      top: 2.8rem;
      right: -3.5rem;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--black);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.4rem 3rem;
      transform: rotate(45deg);
      z-index: 2;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

  .pricing-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--black-border);
    position: relative;
  }

  .pricing-tier {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .pricing-price-wrap {
    margin: 1.5rem 0;
    position: relative;
    display: inline-block;
  }

  .pricing-currency {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    vertical-align: top;
    margin-right: 0.3rem;
    font-weight: 500;
  }

  .pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
  }

  .pricing-description {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin: 0;
    min-height: 3rem;
  }

  .pricing-body {
    padding: 2rem;
    flex-grow: 1;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--gray-light);
    font-size: 0.95rem;
  }

  .pricing-features li:last-child { border-bottom: none; }

  .pricing-features li .check {
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  .pricing-features li.highlight {
    color: var(--gold);
    font-weight: 500;
  }

  .pricing-features li.highlight .check {
    background: var(--gold);
    color: var(--black);
  }

  .pricing-footer {
    padding: 1.5rem 2rem 2.5rem;
    text-align: center;
  }

  .pricing-footer .btn {
    width: 100%;
  }

  /* ===== Clients Section (Price) ===== */
  .clients-section {
    background: var(--black);
    position: relative;
  }

  .clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }

  .client-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .client-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    background: var(--black-soft);
  }

  .client-flag {
    font-size: 2rem;
    line-height: 1;
  }

  .client-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .clients-stat {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    color: var(--gray-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* ===== FAQ Section (Price) ===== */
  .faq-section {
    background: var(--black-soft);
    position: relative;
  }

  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
  }

  .faq-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
  }

  .faq-button {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  .faq-button:hover { color: var(--gold); }

  .faq-button:not(.collapsed) {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
  }

  .faq-button:focus {
    outline: none;
    box-shadow: none;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .faq-button:not(.collapsed) .faq-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(45deg);
  }

  .faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ===== CTA Section ===== */
  .cta-section {
    background: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-box {
    border: 1px solid var(--gold);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
  }

  .cta-box::before,
  .cta-box::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
  }

  .cta-box::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
  }

  .cta-box::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
  }

  /* ===== Footer ===== */
  footer {
    background: var(--black-soft);
    padding: 60px 0 30px;
    border-top: 1px solid var(--black-border);
  }

  .footer-brand {
    margin-bottom: 2rem;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
  }

  .footer-links a:hover {
    color: var(--gold);
  }

  /* ===== Footer Contacts ===== */
  .footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-contacts li {
    margin-bottom: 1rem;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.5;
  }

  .footer-contact-item:hover {
    color: var(--gold);
  }

  .footer-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .footer-contact-item:hover i {
    transform: scale(1.15);
  }

  .footer-contact-label {
    display: block;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    font-weight: 500;
  }

  .footer-contact-value {
    display: block;
    color: var(--gray-light);
    font-size: 0.95rem;
  }

  .footer-bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
  }

  .footer-text {
    color: var(--gray);
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
  }

  .footer-legal {
    color: var(--gray);
    font-size: 0.8rem;
  }

  /* ===== Modal ===== */
  .modal-premium .modal-content {
    background: var(--black-card);
    border: 1px solid var(--gold);
    border-radius: 0;
    color: var(--white);
  }

  .modal-premium .modal-header {
    border-bottom: 1px solid var(--black-border);
    padding: 1.5rem 2rem;
  }

  .modal-premium .modal-title {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .modal-premium .btn-close {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
    opacity: 0.7;
  }

  .modal-premium .btn-close:hover { opacity: 1; }

  .modal-premium .modal-body {
    padding: 2rem;
  }

  .modal-premium .form-label {
    color: var(--gray-light);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .modal-premium .form-control {
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: 0;
    color: var(--white);
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .modal-premium .form-control:focus {
    background: var(--black);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  }

  .modal-premium .form-control::placeholder {
    color: var(--gray);
  }

  .modal-premium .modal-footer {
    border-top: 1px solid var(--black-border);
    padding: 1.5rem 2rem;
  }

  .required-star { color: var(--gold); }

  /* ===== Responsive ===== */
  @media (max-width: 1199.98px) {
    .header-contacts {
      gap: 0.9rem;
      margin-right: 1rem;
      padding-right: 1rem;
    }
    .header-contact-item {
      font-size: 0.78rem;
    }
  }

  @media (max-width: 991.98px) {
    .hero-visual {
      height: 350px;
      margin-top: 3rem;
    }
    .hero-frame { max-width: 350px; }
    .hero-icon { font-size: 5rem; }
    section { padding: 70px 0; }
    .cta-box { padding: 3rem 1.5rem; }
    .browser-mockup { grid-template-columns: 1fr; }
    .mockup-stat-row { grid-template-columns: 1fr; }
    .page-hero { min-height: 45vh; padding: 140px 0 60px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .pricing-amount { font-size: 3.5rem; }
    .clients-stat { gap: 2rem; }
    .stat-number { font-size: 2.8rem; }
  }

  @media (max-width: 767.98px) {
    .pricing-header { padding: 2rem 1.5rem 1.5rem; }
    .pricing-body { padding: 1.5rem; }
    .pricing-footer { padding: 1.5rem 1.5rem 2rem; }
    .faq-button { padding: 1.2rem 1.5rem; font-size: 1.1rem; }
    .faq-answer { padding: 0 1.5rem 1.2rem; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 575.98px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .role-card { padding: 2rem 1.5rem; }
    .role-number { font-size: 2.5rem; }
    .verticals-grid { grid-template-columns: repeat(2, 1fr); }
    .cabinet-card { padding: 2rem 1.5rem; }
    .cabinet-number { font-size: 2.5rem; }
    .feature-mini-card { padding: 1.5rem 1.2rem; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
  }
