:root {
  --bg-body: #09090b;
  --bg-card: #18181b;
  --bg-card-hover: #27272a;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --primary-accent: #2dd4bf;
  --primary-glow: rgba(45, 212, 191, 0.3);
  --secondary-accent: #8b5cf6;
  --gradient-main: linear-gradient(135deg, #2dd4bf 0%, #0ea5e9 100%);
  --gradient-dark: linear-gradient(180deg, rgba(24, 24, 27, 0) 0%, #18181b 100%);
  --border-light: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(9, 9, 11, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(45, 212, 191, 0.15);
  --font-main: system-ui, -apple-system, sans-serif;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(45, 212, 191, 0.08), transparent 25%);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.layout-modern {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
}

.navbar-primary {
  max-width: var(--container-width);
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

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

.logo-anchor {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-items {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.menu-link a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.menu-link a:hover {
  color: var(--primary-accent);
}

.menu-link.highlight-item a {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.menu-link.highlight-item a:hover {
  background: var(--primary-accent);
  color: #000;
  border-color: var(--primary-accent);
}

.hidden-trigger {
  display: none;
}

.burger-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

.main-content {
  padding-top: 8rem;
}

.banner-intro {
  padding: 4rem 0;
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-visual {
  position: relative;
  order: 2;
}

.img-frame-rotate {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(3deg) scale(0.95);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.img-frame-rotate:hover {
  transform: rotate(0deg) scale(1);
}

.intro-data {
  order: 1;
}

.main-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.lead-paragraph {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sub-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.custom-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.custom-list i {
  color: var(--primary-accent);
}

.highlight-box {
  margin-top: 2rem;
  display: inline-block;
  background: rgba(45, 212, 191, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--primary-accent);
  font-size: 0.875rem;
  font-weight: 600;
}

.featured-operator-wrapper {
  padding: 6rem 0;
}

.section-title-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.badge-top {
  display: inline-block;
  background: var(--secondary-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.section-title-center h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-featured-operator {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 40% 60%;
  box-shadow: var(--shadow-sm);
}

.card-header-img {
  position: relative;
  overflow: hidden;
}

.card-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-featured-operator:hover .card-header-img img {
  transform: scale(1.05);
}

.card-body-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.operator-name {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.review-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-action-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-main);
  color: #09090b;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  transition: var(--transition);
}

.btn-action-big:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.evaluation-process {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.header-split {
  margin-bottom: 4rem;
}

.header-split h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.grid-features-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-box {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.icon-header {
  font-size: 1.5rem;
  color: var(--primary-accent);
  margin-bottom: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(45, 212, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.warning-box .icon-header {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.team-bio-section {
  padding: 6rem 0;
}

.bio-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.bio-wrapper.reverse-layout {
  direction: rtl;
}

.bio-wrapper.reverse-layout > * {
  direction: ltr;
}

.overline-text {
  color: var(--primary-accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.bio-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.bio-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bio-img-stacked {
  position: relative;
  padding: 1rem;
}

.img-front {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.img-deco-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-accent);
  border-radius: var(--radius-md);
  transform: translate(20px, -20px);
  z-index: 1;
}

.rounded-shadow {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.bio-text-secondary h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-main);
}

.bio-text-secondary p {
  color: var(--text-muted);
}

.why-us-block {
  padding: 0 0 6rem;
}

.content-box-dark {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.row-flex {
  display: flex;
}

.col-text {
  padding: 4rem;
  flex: 1;
}

.col-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.col-text p {
  margin-bottom: 1rem;
  color: #d1d5db;
}

.col-img {
  flex: 1;
  position: relative;
}

.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-feedback {
  padding: 6rem 0;
}

.title-decor {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.title-decor h2 {
  white-space: nowrap;
}

.divider-line {
  height: 1px;
  background: var(--border-light);
  width: 100%;
}

.feedback-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feedback-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.feedback-card p {
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.user-sign {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-accent);
}

.warning-banner {
  padding: 3rem 0;
}

.alert-box-styled {
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(185, 28, 28, 0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.alert-icon {
  font-size: 2rem;
  color: #ef4444;
  background: rgba(0,0,0,0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.alert-content h3 {
  color: #fca5a5;
  margin-bottom: 0.5rem;
}

.alert-content p {
  color: #fecaca;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.separator-light {
  border: 0;
  height: 1px;
  background: rgba(185, 28, 28, 0.3);
  margin: 1.5rem 0;
}

.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  background: #000;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.inline-links {
  display: flex;
  gap: 1.5rem;
}

.inline-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.inline-links a:hover {
  color: var(--primary-accent);
}

.footer-copy {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .intro-grid, .bio-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .intro-visual { order: 1; }
  .intro-data { order: 2; text-align: center; }
  .main-title { font-size: 2.5rem; }
  .custom-list { display: inline-block; text-align: left; }
  
  .card-featured-operator {
    grid-template-columns: 1fr;
  }
  
  .card-header-img {
    height: 250px;
  }
  
  .grid-features-3col {
    grid-template-columns: 1fr 1fr;
  }
  
  .feedback-slider {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-items {
    display: none;
  }
  
  .burger-btn {
    display: block;
  }
  
  #nav-trigger:checked ~ .navigation-menu .menu-items {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #09090b;
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
  }
  
  .row-flex {
    flex-direction: column;
  }
  
  .col-img {
    height: 300px;
  }
  
  .grid-features-3col {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-copy {
    text-align: center;
  }
  
  .alert-box-styled {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .feedback-slider {
    grid-template-columns: 1fr;
  }
  
  .card-body-content {
    padding: 1.5rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
}