/* ==========================================================================
   Fenlor Tech - Landing Page Styles
   ========================================================================== */

/* CSS Variables */
:root {
  --bg-1: #0F2027;      /* primary background */
  --bg-2: #203A43;      /* gradient stop */
  --accent-1: #2C5364;  /* borders/shadows/lines */
  --primary: #00ADB5;   /* primary accent (links, primary btn) */
  --text: #EEEEEE;      /* base text on dark */
  --cta: #FF2E63;       /* high-emphasis CTA buttons */
  --card: #393E46;      /* cards & panels */
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: rgba(238, 238, 238, 0.85);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: none;
  line-height: 1.2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #00c4cc 100%);
  color: var(--bg-1);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #00c4cc 0%, var(--primary) 100%);
  box-shadow: 0 12px 40px rgba(0, 173, 181, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn--primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--cta {
  background: linear-gradient(135deg, var(--cta) 0%, #ff4070 100%);
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn--cta:hover {
  background: linear-gradient(135deg, #ff4070 0%, var(--cta) 100%);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn--cta:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 2px solid rgba(0, 173, 181, 0.3);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.btn--ghost:hover {
  background: rgba(0, 173, 181, 0.1);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 173, 181, 0.2);
  transform: translateY(-2px) scale(1.02);
}

.btn--ghost:active {
  transform: translateY(0) scale(0.98);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.btn__text {
  position: relative;
  z-index: 2;
}

.btn__icon {
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hero button special effects */
.hero__btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #00c4cc 100%);
  box-shadow: 0 8px 32px rgba(0, 173, 181, 0.3);
}

.hero__btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero__btn-primary:hover::before {
  left: 100%;
}

.hero__btn-secondary {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(0, 173, 181, 0.4);
  backdrop-filter: blur(15px);
}

.hero__btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 173, 181, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.hero__btn-secondary:hover::after {
  width: 100%;
  height: 100%;
}

/* Focus States */
.btn:focus,
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.header.scrolled {
  background: rgba(15, 32, 39, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}


.header__logo-text {
  color: var(--text) !important;
  font-weight: 700;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

/* Более агрессивные стили для логотипа */
.header__logo a,
.header__logo a:hover,
.header__logo a:focus,
.header__logo a:active,
.header__logo a:visited {
  color: var(--text) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

.header__logo a .header__logo-text {
  color: var(--text) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

/* Универсальные стили с максимальным приоритетом */
.header__logo > a,
.header__logo > a:link,
.header__logo > a:visited,
.header__logo > a:hover,
.header__logo > a:active,
.header__logo > a:focus {
  color: var(--text) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
}

.header__logo > a > span,
.header__logo > a > .header__logo-text {
  color: var(--text) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

.header__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-self: center;
}

.header__logo:hover .header__logo-img {
  transform: scale(1.05);
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.header__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__link:hover {
  color: var(--primary);
}

.header__burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.header__burger-line {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.particle--1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle--2 {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 6s;
}

.particle--3 {
  top: 40%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle--4 {
  top: 80%;
  left: 60%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle--5 {
  top: 30%;
  left: 90%;
  animation-delay: 3s;
  animation-duration: 5s;
}

.particle--6 {
  top: 70%;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 8s;
}

.hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.1;
  animation: wave 8s ease-in-out infinite;
}

.wave--1 {
  animation-delay: 0s;
  height: 60px;
}

.wave--2 {
  animation-delay: 2s;
  height: 80px;
  opacity: 0.05;
}

.wave--3 {
  animation-delay: 4s;
  height: 100px;
  opacity: 0.03;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 173, 181, 0.1);
  border: 1px solid rgba(0, 173, 181, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--primary);
  animation: slideInLeft 0.8s ease-out;
}

.hero__badge-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  animation: slideInLeft 0.8s ease-out;
}

.hero__title-line--highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(238, 238, 238, 0.85);
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.6);
  margin-top: 0.25rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: slideInLeft 0.8s ease-out 0.8s both;
}

.hero__btn-primary {
  position: relative;
  overflow: hidden;
}

.hero__btn-primary .btn__icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero__btn-primary:hover .btn__icon {
  transform: translateX(4px);
}

.hero__btn-secondary .btn__icon {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.hero__btn-secondary:hover .btn__icon {
  transform: scale(1.2);
}



.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: slideInRight 0.8s ease-out 0.5s both;
}

.hero__dashboard {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero__dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard__dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot--red {
  background: #ff5f56;
}

.dot--yellow {
  background: #ffbd2e;
}

.dot--green {
  background: #27ca3f;
}

.dashboard__title {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.dashboard__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard__metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric__icon {
  font-size: 1.5rem;
}

.metric__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.metric__label {
  font-size: 0.8rem;
  color: rgba(238, 238, 238, 0.6);
}

.dashboard__chart {
  position: relative;
}

.chart__line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2s ease-out 1s forwards;
}

.chart__area {
  opacity: 0;
  animation: fadeIn 0.5s ease-out 2s forwards;
}

.chart__point {
  opacity: 0;
  animation: pulse 2s ease-out 2.5s infinite;
}

.dashboard__services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.7);
}

.service__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(238, 238, 238, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.service--active .service__indicator {
  background: var(--primary);
}

.service--scaling .service__indicator {
  background: var(--cta);
  animation: pulse 1s ease-in-out infinite;
}

.hero__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  animation: float 8s ease-in-out infinite;
}

.floating-element--1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.floating-element--2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.floating-element--3 {
  top: 60%;
  right: 5%;
  animation-delay: 4s;
  animation-duration: 7s;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Trust Bar */

/* Section Titles */
.section__title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards */
.card {
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.8) 0%, 
    rgba(44, 83, 100, 0.4) 50%, 
    rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 173, 181, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 173, 181, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.9) 0%, 
    rgba(44, 83, 100, 0.6) 50%, 
    rgba(57, 62, 70, 0.9) 100%);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  left: 100%;
}

.card__icon {
  margin-bottom: 1.5rem;
}

.card__title {
  margin-bottom: 1rem;
  color: var(--text);
}

.card__subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card__text {
  margin-bottom: 1.5rem;
  color: rgba(238, 238, 238, 0.85);
}

.card__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.card__link:hover {
  color: var(--cta);
}

/* Section Subtitle */
.section__subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: rgba(238, 238, 238, 0.7);
  margin-top: -2rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Us Section */
.why-us {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 173, 181, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.why-us__header {
  margin-bottom: 4rem;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.why-us__card {
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.why-us__card:hover {
  transform: translateY(-10px) scale(1.02);
}

.card__glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--cta), var(--primary));
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(20px);
}

.why-us__card:hover .card__glow {
  opacity: 0.6;
  animation: rotate-glow 3s linear infinite;
}

.card__icon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card__number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 46, 99, 0.2);
  line-height: 1;
  transition: all 0.3s ease;
}

.why-us__card:hover .card__number {
  color: rgba(255, 46, 99, 0.4);
  transform: scale(1.1);
}

.why-us__card .card__icon {
  transition: transform 0.5s ease;
}

.why-us__card:hover .card__icon {
  transform: scale(1.1) rotate(5deg);
}

.card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-tag {
  font-size: 0.8rem;
  padding: 6px 12px;
  background: rgba(0, 173, 181, 0.1);
  border: 1px solid rgba(0, 173, 181, 0.3);
  border-radius: 20px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.why-us__card:hover .feature-tag {
  background: rgba(0, 173, 181, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Why Us Stats */
.why-us__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.why-us__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--cta), transparent);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item__value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--cta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.6);
  font-weight: 500;
}

/* Animations */
@keyframes rotate-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Products Section */
.products {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.products__header {
  margin-bottom: 4rem;
  text-align: center;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.products__card {
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.products__card:hover {
  transform: translateY(-8px) scale(1.02);
}

.products__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.products__icon {
  transition: transform 0.5s ease;
}

.products__card:hover .products__icon {
  transform: scale(1.1) rotate(5deg);
}

.products__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products__badge:not(.products__badge--new):not(.products__badge--enterprise) {
  background: linear-gradient(135deg, var(--primary), #00c4cc);
  color: var(--bg-1);
}

.products__badge--new {
  background: linear-gradient(135deg, var(--cta), #ff4070);
  color: white;
}

.products__badge--enterprise {
  background: linear-gradient(135deg, var(--accent-1), #3a5f6f);
  color: white;
}

.products__features {
  margin: 1.5rem 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.8);
}


.products__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), #00c4cc);
  color: var(--bg-1);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
  justify-self: flex-end;
}

.products__cta:hover {
  background: linear-gradient(135deg, #00c4cc, var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 173, 181, 0.3);
}

.cta__arrow {
  transition: transform 0.3s ease;
}

.products__cta:hover .cta__arrow {
  transform: translateX(4px);
}

.products__cta-section {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.products__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--cta), transparent);
}

.products__cta-title {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.products__cta-text {
  color: rgba(238, 238, 238, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Team Section */
.team {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 173, 181, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.team__header {
  margin-bottom: 4rem;
  text-align: center;
}

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

.team__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team__card {
  text-align: left;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.team__card:hover {
  transform: translateX(8px) scale(1.02);
}

.team__avatar {
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.team__card:hover .team__avatar {
  transform: scale(1.05);
}

.team__card-content {
  flex: 1;
}

.team__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team__position {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team__bio {
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.5;
  font-size: 0.9rem;
}

.team__text {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(57, 62, 70, 0.8) 0%, rgba(44, 83, 100, 0.4) 50%, rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.team__text-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.team__text-description {
  color: rgba(238, 238, 238, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.team__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.team__stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team__stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team__stat-label {
  font-size: 0.8rem;
  color: rgba(238, 238, 238, 0.7);
  line-height: 1.3;
}

.team__values {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.team__values-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.team__values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team__values-list li {
  color: rgba(238, 238, 238, 0.8);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.team__values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Use Cases Section */
.use-cases {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.use-cases::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.use-cases__header {
  margin-bottom: 4rem;
  text-align: center;
}

.use-cases__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.use-cases__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.3) 0%, 
    rgba(44, 83, 100, 0.1) 50%, 
    rgba(57, 62, 70, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.use-cases__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 173, 181, 0.05) 0%, 
    rgba(255, 46, 99, 0.05) 50%, 
    rgba(44, 83, 100, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.use-cases__item:hover::before {
  opacity: 1;
}

.use-cases__item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.use-cases__item--ecommerce {
  background: linear-gradient(135deg, 
    rgba(0, 173, 181, 0.1) 0%, 
    rgba(44, 83, 100, 0.05) 50%, 
    rgba(57, 62, 70, 0.3) 100%);
}

.use-cases__item--saas {
  background: linear-gradient(135deg, 
    rgba(255, 46, 99, 0.1) 0%, 
    rgba(44, 83, 100, 0.05) 50%, 
    rgba(57, 62, 70, 0.3) 100%);
}

.use-cases__item--enterprise {
  background: linear-gradient(135deg, 
    rgba(44, 83, 100, 0.1) 0%, 
    rgba(0, 173, 181, 0.05) 50%, 
    rgba(57, 62, 70, 0.3) 100%);
}

.use-cases__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.use-cases__icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-cases__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--cta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.use-cases__item:hover .use-cases__icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 20px 40px rgba(0, 173, 181, 0.4);
}

.use-cases__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2s infinite;
}

.use-cases__item:hover .use-cases__pulse {
  animation: pulse 1s infinite;
}

.use-cases__metrics-floating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.use-cases__metric-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.use-cases__item:hover .use-cases__metric-float {
  opacity: 1;
  transform: translateY(0);
}

.use-cases__metric-float:nth-child(1) {
  top: 20%;
  right: 10%;
  transition-delay: 0.1s;
}

.use-cases__metric-float:nth-child(2) {
  bottom: 30%;
  left: 10%;
  transition-delay: 0.2s;
}

.use-cases__metric-float:nth-child(3) {
  top: 60%;
  right: 20%;
  transition-delay: 0.3s;
}

.use-cases__content {
  position: relative;
  z-index: 2;
}

.use-cases__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cta), var(--primary));
  color: var(--bg-1);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.use-cases__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.use-cases__description {
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.use-cases__features {
  margin-bottom: 2.5rem;
}

.use-cases__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.use-cases__feature:hover {
  transform: translateX(8px);
}

.use-cases__feature-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--cta));
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.use-cases__feature:hover .use-cases__feature-dot {
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(0, 173, 181, 0.5);
}

.use-cases__feature span {
  color: rgba(238, 238, 238, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.use-cases__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.use-cases__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--cta));
  transition: left 0.3s ease;
  z-index: -1;
}

.use-cases__btn:hover::before {
  left: 0;
}

.use-cases__btn:hover {
  color: var(--bg-1);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 173, 181, 0.3);
}

.use-cases__btn svg {
  transition: transform 0.3s ease;
}

.use-cases__btn:hover svg {
  transform: translateX(4px);
}

.use-cases__cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(57, 62, 70, 0.8) 0%, rgba(44, 83, 100, 0.4) 50%, rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  max-width: 600px;
  margin: 0 auto;
}

.use-cases__cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.use-cases__cta-text {
  color: rgba(238, 238, 238, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}


/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 173, 181, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials__header {
  margin-bottom: 4rem;
  text-align: center;
}

.testimonials__container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  max-width: 100%;
  overflow: hidden;
}

.testimonials__slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
}

.testimonials__slide {
  min-width: 100%;
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

.testimonials__card {
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.8) 0%, 
    rgba(44, 83, 100, 0.4) 50%, 
    rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  max-width: 100%;
}

.testimonials__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 173, 181, 0.05) 0%, 
    rgba(255, 46, 99, 0.05) 50%, 
    rgba(44, 83, 100, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.testimonials__card:hover::before {
  opacity: 1;
}

.testimonials__quote {
  margin-bottom: 2rem;
  opacity: 0.6;
}

.testimonials__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 80px;
}

.testimonials__metric {
  text-align: center;
}

.testimonials__metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
  word-break: break-all;
  min-height: 1.5em;
}

.testimonials__metric-label {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.7);
  line-height: 1.3;
}

/* Ensure numbers fit properly */
.testimonials__metric-value,
.testimonials__stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  white-space: nowrap;
  overflow: hidden;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonials__avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.testimonials__avatar-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--cta));
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials__avatar-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-1);
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}

.testimonials__info {
  flex: 1;
}

.testimonials__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.testimonials__role {
  color: rgba(238, 238, 238, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.testimonials__company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(238, 238, 238, 0.6);
  font-size: 0.85rem;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonials__btn:hover {
  background: var(--primary);
  color: var(--bg-1);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 173, 181, 0.3);
}

.testimonials__dots {
  display: flex;
  gap: 0.75rem;
}

.testimonials__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials__dot--active {
  background: var(--primary);
  transform: scale(1.2);
}

.testimonials__dot:hover {
  background: var(--primary);
  opacity: 0.7;
}

.testimonials__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.6) 0%, 
    rgba(44, 83, 100, 0.3) 50%, 
    rgba(57, 62, 70, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  min-width: 180px;
  max-width: 200px;
}

.testimonials__stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials__stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
  word-break: break-all;
  min-height: 1.5em;
}

.testimonials__stat-label {
  font-size: 0.85rem;
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.3;
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
  .testimonials__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials__slider {
    max-width: 100%;
  }
  
  .testimonials__stats {
    flex-direction: row;
    justify-content: space-around;
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials__header {
    margin-bottom: 2rem;
  }
  
  .testimonials__card {
    padding: 1.5rem;
  }
  
  .testimonials__text {
    font-size: 1rem;
  }
  
  .testimonials__metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    min-height: 120px;
  }
  
  .testimonials__metric-value {
    font-size: 1.3rem;
    min-height: 1.8em;
  }
  
  .testimonials__author {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .testimonials__avatar {
    width: 48px;
    height: 48px;
  }
  
  .testimonials__stats {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .testimonials__stat {
    padding: 0.5rem;
  }
  
  .testimonials__stat-number {
    font-size: 1.4rem;
    min-height: 1.8em;
  }
  
  .testimonials__controls {
    gap: 1rem;
  }
  
  .testimonials__btn {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 39, 0.8);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal__container {
    position: relative;
    background: linear-gradient(135deg, rgba(57, 62, 70, 0.95) 0%, rgba(44, 83, 100, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal.active .modal__container {
    transform: scale(1) translateY(0);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.modal__close {
    background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal__content {
    padding: 2rem;
}

.modal__expert-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal__expert-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.modal__expert-avatar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
    opacity: 0.2;
}

.modal__expert-initials {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    z-index: 1;
}

.modal__expert-details {
    flex: 1;
}

.modal__expert-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.modal__expert-role {
    color: rgba(238, 238, 238, 0.7);
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.modal__expert-stats {
    display: flex;
    gap: 1.5rem;
}

.modal__stat {
    text-align: center;
}

.modal__stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.modal__stat-label {
    font-size: 0.8rem;
    color: rgba(238, 238, 238, 0.6);
}

.modal__expert-specialties {
    margin-bottom: 2rem;
}

.modal__specialties-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 1rem 0;
}

.modal__specialties-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal__tag {
    background: rgba(0, 173, 181, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
    border: 1px solid rgba(0, 173, 181, 0.2);
}

.modal__form {
    margin-top: 2rem;
}

.modal__form-group {
    margin-bottom: 1.5rem;
}

.modal__label {
    display: block;
    font-size: 0.9rem;
  font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.modal__input,
.modal__select,
.modal__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
  transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal__input:focus,
.modal__select:focus,
.modal__textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.1);
}

.modal__input::placeholder,
.modal__textarea::placeholder {
    color: rgba(238, 238, 238, 0.5);
}

.modal__textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.modal__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23EEEEEE' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    appearance: none;
}

.modal__checkbox {
  display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
}

.modal__checkbox-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.modal__checkbox-text {
    color: rgba(238, 238, 238, 0.8);
    line-height: 1.4;
}

.modal__submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 173, 181, 0.3);
}

.modal__submit:active {
    transform: translateY(0);
}

.modal__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal__submit-loading {
  display: flex;
  align-items: center;
  justify-content: center;
    gap: 0.5rem;
}

.modal__message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    animation: slideInUp 0.3s ease-out;
}

.modal__message--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.modal__message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal__container {
        width: 95%;
        margin: 1rem;
    }
    
    .modal__header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal__content {
        padding: 1.5rem;
    }
    
    .modal__expert-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal__expert-stats {
        justify-content: center;
    }
    
    .modal__actions {
        flex-direction: column;
    }
    
    .modal__btn {
        width: 100%;
    }
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-page__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__header {
  text-align: center;
  margin-bottom: 4rem;
}

.legal-page__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-page__subtitle {
  font-size: 1.1rem;
  color: rgba(238, 238, 238, 0.7);
  margin: 0;
}

.legal-page__body {
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.8) 0%, 
    rgba(44, 83, 100, 0.4) 50%, 
    rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.legal-page__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 173, 181, 0.05) 0%, 
    rgba(255, 46, 99, 0.05) 100%);
  pointer-events: none;
}

.legal-section {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
  color: rgba(238, 238, 238, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section li {
  color: rgba(238, 238, 238, 0.9);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--cta);
  text-decoration: underline;
}

.footer__link--active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Legal pages responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }
  
  .legal-page__title {
    font-size: 2.5rem;
  }
  
  .legal-page__body {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
  
  .legal-section h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .legal-page__title {
    font-size: 2rem;
  }
  
  .legal-page__body {
    padding: 1.5rem;
  }
  
  .legal-section {
    margin-bottom: 2rem;
  }
}

/* ========================================
   SECURITY PAGE
   ======================================== */
.security-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.security-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 173, 181, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 46, 99, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.security-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.security-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.security-hero__title-line {
  display: block;
  color: var(--text);
}

.security-hero__title-line--highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.security-hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.security-hero__stat {
  text-align: center;
}

.security-hero__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.security-hero__stat-label {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.6);
}

.security-hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.security-hero__demo-btn {
  cursor: pointer;
}

/* Security Shield Animation */
.security-shield {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.security-shield__outer,
.security-shield__middle,
.security-shield__inner {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: shield-pulse 3s ease-in-out infinite;
}

.security-shield__outer {
  width: 280px;
  height: 280px;
  border-color: var(--primary);
  animation-delay: 0s;
}

.security-shield__middle {
  width: 200px;
  height: 200px;
  border-color: rgba(0, 173, 181, 0.6);
  animation-delay: 1s;
}

.security-shield__inner {
  width: 120px;
  height: 120px;
  border-color: rgba(0, 173, 181, 0.3);
  animation-delay: 2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 173, 181, 0.1) 0%, rgba(255, 46, 99, 0.1) 100%);
}

.security-shield__icon {
  color: var(--primary);
  animation: shield-icon-float 2s ease-in-out infinite;
}

.security-shield__particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}

.particle--1 { top: 20%; left: 15%; animation-delay: 0s; }
.particle--2 { top: 30%; right: 20%; animation-delay: 1s; }
.particle--3 { bottom: 25%; left: 25%; animation-delay: 2s; }
.particle--4 { bottom: 35%; right: 15%; animation-delay: 3s; }
.particle--5 { top: 50%; left: 50%; animation-delay: 1.5s; }

/* Security Features */
.security-features {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.security-features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.security-features__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.security-features__subtitle {
  font-size: 1.1rem;
  color: rgba(238, 238, 238, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.security-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.security-feature {
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.8) 0%, 
    rgba(44, 83, 100, 0.4) 50%, 
    rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.security-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 173, 181, 0.05) 0%, 
    rgba(255, 46, 99, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-feature:hover::before {
  opacity: 1;
}

.security-feature:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
}

.security-feature__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--bg-1);
  position: relative;
  z-index: 2;
}

.security-feature__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.security-feature__description {
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.security-feature__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.security-feature__tag {
  background: rgba(0, 173, 181, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 173, 181, 0.2);
}

/* Security Dashboard */
.security-dashboard {
  padding: 100px 0;
  background: linear-gradient(135deg, 
    rgba(15, 32, 39, 0.9) 0%, 
    rgba(32, 58, 67, 0.9) 100%);
}

.security-dashboard__header {
  text-align: center;
  margin-bottom: 3rem;
}

.security-dashboard__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.security-dashboard__subtitle {
  font-size: 1.1rem;
  color: rgba(238, 238, 238, 0.7);
}

.security-dashboard__panel {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.9) 0%, 
    rgba(44, 83, 100, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.dashboard-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: rgba(238, 238, 238, 0.7);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dashboard-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-tab--active {
  color: var(--primary);
  background: rgba(0, 173, 181, 0.1);
}

.dashboard-tab--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.dashboard-content {
  padding: 2rem;
}

.dashboard-panel {
  display: none;
}

.dashboard-panel--active {
  display: block;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.dashboard-metric {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-metric__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.dashboard-metric__label {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.7);
  margin-bottom: 0.5rem;
}

.dashboard-metric__trend {
  font-size: 0.8rem;
  font-weight: 500;
}

.dashboard-metric__trend--positive {
  color: #22c55e;
}

.dashboard-metric__trend--negative {
  color: #ef4444;
}

.dashboard-metric__trend--neutral {
  color: rgba(238, 238, 238, 0.5);
}

.dashboard-metric__status {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
}

.dashboard-metric__status--active {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.threat-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.threat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.threat-item--blocked {
  border-left-color: #22c55e;
}

.threat-item--monitored {
  border-left-color: #f59e0b;
}

.threat-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.threat-item__content {
  flex: 1;
}

.threat-item__title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.threat-item__time {
  font-size: 0.8rem;
  color: rgba(238, 238, 238, 0.6);
  margin-bottom: 0.25rem;
}

.threat-item__details {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.8);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.compliance-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-item--passed {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
}

.compliance-item--in-progress {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
}

.compliance-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.compliance-item__title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.compliance-item__status {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.7);
}

.incidents-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.incident-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.incident-item__severity {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  flex-shrink: 0;
}

.incident-item__severity--low {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.incident-item__severity--medium {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.incident-item__severity--high {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.incident-item__content {
  flex: 1;
}

.incident-item__title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.incident-item__time {
  font-size: 0.8rem;
  color: rgba(238, 238, 238, 0.6);
}

/* Security Contact */
.security-contact {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.security-contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.security-contact__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.security-contact__subtitle {
  font-size: 1.1rem;
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.security-contact__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-contact__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(238, 238, 238, 0.9);
}

.security-contact__feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bg-1);
  transition: all 0.3s ease;
}

.security-contact__feature:hover .security-contact__feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 173, 181, 0.3);
}

/* Security Form */
.security-contact__form {
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.9) 0%, 
    rgba(44, 83, 100, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.security-contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 173, 181, 0.05) 0%, 
    rgba(255, 46, 99, 0.05) 100%);
  pointer-events: none;
}

.security-form {
  position: relative;
  z-index: 2;
}

.security-form__group {
  margin-bottom: 1.5rem;
}

.security-form__group--checkbox {
  margin-bottom: 1rem;
}

.security-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.security-form__input,
.security-form__select,
.security-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.security-form__input:focus,
.security-form__select:focus,
.security-form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.1);
}

.security-form__input::placeholder,
.security-form__textarea::placeholder {
  color: rgba(238, 238, 238, 0.5);
}

.security-form__select {
  cursor: pointer;
}

.security-form__select option {
  background: var(--bg-1);
  color: var(--text);
}

.security-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.security-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.security-form__checkbox-input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.security-form__checkbox-text {
  font-size: 0.9rem;
  color: rgba(238, 238, 238, 0.9);
  line-height: 1.4;
}

.security-form__checkbox-text a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.security-form__checkbox-text a:hover {
  color: var(--cta);
  text-decoration: underline;
}

.security-form__submit {
  width: 100%;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.security-form__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.security-form__submit:hover::before {
  left: 100%;
}

.security-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.security-form__submit:disabled::before {
  display: none;
}

.security-form__message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.security-form__message--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  opacity: 1;
  transform: translateY(0);
}

.security-form__message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  opacity: 1;
  transform: translateY(0);
}

.security-form__loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--text);
  animation: spin 1s ease-in-out infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Animations */
@keyframes shield-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

@keyframes shield-icon-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes particle-float {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Security page responsive */
@media (max-width: 768px) {
  .security-hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .security-hero__title {
    font-size: 2.5rem;
  }
  
  .security-hero__stats {
    justify-content: center;
  }
  
  .security-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .security-shield {
    width: 200px;
    height: 200px;
  }
  
  .security-shield__outer {
    width: 180px;
    height: 180px;
  }
  
  .security-shield__middle {
    width: 120px;
    height: 120px;
  }
  
  .security-shield__inner {
    width: 80px;
    height: 80px;
  }
  
  .security-features__grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-tabs {
    flex-direction: column;
  }
  
  .dashboard-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .security-contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .security-contact__form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .security-hero__title {
    font-size: 2rem;
  }
  
  .security-hero__stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }
  
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact__header {
  margin-bottom: 4rem;
  text-align: center;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__card {
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.8) 0%, 
    rgba(44, 83, 100, 0.4) 50%, 
    rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
}

.contact__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 173, 181, 0.05) 0%, 
    rgba(255, 46, 99, 0.05) 50%, 
    rgba(44, 83, 100, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.contact__card:hover::before {
  opacity: 1;
}

.contact__card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
}

.contact__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--cta));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--bg-1);
}

.contact__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact__text {
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.6;
  margin: 0;
}

.contact__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: var(--cta);
}

.contact__form-container {
  background: linear-gradient(135deg, 
    rgba(57, 62, 70, 0.8) 0%, 
    rgba(44, 83, 100, 0.4) 50%, 
    rgba(57, 62, 70, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact__form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 173, 181, 0.03) 0%, 
    rgba(255, 46, 99, 0.03) 50%, 
    rgba(44, 83, 100, 0.03) 100%);
  pointer-events: none;
}

.contact__form {
  position: relative;
  z-index: 2;
}

.contact__form-group {
  margin-bottom: 2rem;
}

.contact__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.1);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(238, 238, 238, 0.5);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23EEEEEE' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
}

.contact__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact__checkbox-input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.contact__checkbox-text {
  color: rgba(238, 238, 238, 0.8);
}

.contact__submit {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 173, 181, 0.3);
}


.contact__message {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  animation: slideInUp 0.5s ease-out;
}

.contact__message--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.contact__message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.contact__message-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.contact__message svg {
  flex-shrink: 0;
}

@keyframes animate-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: animate-spin 1s linear infinite;
}

/* Responsive Contact */
@media (max-width: 1200px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact__info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .contact__card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact__header {
    margin-bottom: 2rem;
  }
  
  .contact__form-container {
    padding: 2rem;
  }
  
  .contact__info {
    flex-direction: column;
  }
  
  .contact__card {
    min-width: auto;
  }
  
  .contact__form-group {
    margin-bottom: 1.5rem;
  }
  
  .contact__input,
  .contact__select,
  .contact__textarea {
    padding: 0.875rem 1.25rem;
  }
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  text-align: center;
}

.cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  color: white;
  margin-bottom: 1rem;
}

.cta__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta .btn--cta {
  background: white;
  color: var(--cta);
}

.cta .btn--cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.footer__logo span {
  color: var(--text) !important;
  font-weight: 700;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

/* Более агрессивные стили для footer логотипа */
.footer__logo a,
.footer__logo a:hover,
.footer__logo a:focus,
.footer__logo a:active,
.footer__logo a:visited {
  color: var(--text) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

.footer__logo a span {
  color: var(--text) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

.footer__logo-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-self: center;
}

.footer__logo:hover .footer__logo-img {
  transform: scale(1.05);
}

.footer__description {
  color: rgba(238, 238, 238, 0.6);
  font-size: 0.9rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer__title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: rgba(238, 238, 238, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__social-links {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  color: rgba(238, 238, 238, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding-inline: 40px;
  }
}

@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 32, 39, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__menu {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .header__burger {
    display: flex;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__stats {
    justify-content: center;
    gap: 1.5rem;
  }


  .hero__dashboard {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__floating-elements {
    display: none;
  }


  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__stat-number {
    font-size: 1.5rem;
  }

  .hero__dashboard {
    padding: 1rem;
  }

  .dashboard__content {
    gap: 1rem;
  }

  .why-us__grid,
  .products__grid,
  .team__grid,
  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products__cta-section {
    padding: 2rem;
  }

  .products__cta-title {
    font-size: 1.25rem;
  }

  .team__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .team__cards {
    gap: 1rem;
  }

  .team__card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }

  .team__card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .team__name {
    font-size: 1.1rem;
  }

  .team__bio {
    font-size: 0.85rem;
  }

  .team__text {
    padding: 1.5rem;
  }

  .team__text-title {
    font-size: 1.5rem;
  }

  .team__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team__stat {
    padding: 0.75rem;
  }

  .team__stat-number {
    font-size: 1.25rem;
  }

  .use-cases__container {
    gap: 2rem;
  }

  .use-cases__item {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .use-cases__visual {
    min-height: 200px;
    order: 2;
  }

  .use-cases__content {
    order: 1;
  }

  .use-cases__title {
    font-size: 1.5rem;
  }

  .use-cases__description {
    font-size: 1rem;
  }

  .use-cases__cta-section {
    padding: 2rem 1.5rem;
  }

  .use-cases__cta-title {
    font-size: 1.5rem;
  }

  .why-us__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
  }

  .stat-item__value {
    font-size: 2.5rem;
  }

  .card__number {
    font-size: 2.5rem;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__card--featured {
    transform: none;
  }


  .footer__links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
  }

  .btn--large {
    padding: 20px 32px;
    font-size: 1.1rem;
  }

  .pricing__toggle {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonials__author {
    flex-direction: column;
    text-align: center;
  }

  .card {
    padding: 1.5rem;
  }

  .why-us__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stat-item__value {
    font-size: 2rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__illustration {
    transform: none !important;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .testimonials__controls {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card {
    border: 1px solid #ccc !important;
    background: white !important;
  }
}

/* ======================================== CAREERS PAGE ======================================== */

.careers-page {
  padding-top: 80px;
  min-height: 100vh;
}

/* Careers Hero */
.careers-hero {
  padding: 4rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  opacity: 0.1;
  z-index: -1;
}

.careers-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.careers-hero__title-line {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.careers-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.careers-hero__stat {
  text-align: center;
}

.careers-hero__stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.careers-hero__stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Careers Benefits */
.careers-benefits {
  padding: 6rem 0;
}

.careers-benefits__header {
  text-align: center;
  margin-bottom: 4rem;
}

.careers-benefits__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.careers-benefits__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.careers-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.careers-benefit {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.careers-benefit:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.1);
}

.careers-benefit__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--bg-1);
}

.careers-benefit__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.careers-benefit__description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Careers Positions */
.careers-positions {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.01);
}

.careers-positions__header {
  text-align: center;
  margin-bottom: 4rem;
}

.careers-positions__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.careers-positions__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.careers-positions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.careers-position {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.careers-position:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.1);
}

.careers-position__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.careers-position__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.careers-position__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.careers-position__badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.careers-position__badge--fulltime {
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.careers-position__badge--remote {
  background: rgba(var(--success-rgb), 0.2);
  color: var(--success);
  border: 1px solid rgba(var(--success-rgb), 0.3);
}

.careers-position__description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.careers-position__details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.careers-position__location,
.careers-position__experience {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.careers-position__apply {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  color: var(--bg-1);
  border: none;
  border-radius: 12px;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.careers-position__apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

/* Careers Application Form */
.careers-application {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.careers-application__content {
  max-width: 800px;
  margin: 0 auto;
}

.careers-application__header {
  text-align: center;
  margin-bottom: 3rem;
}

.careers-application__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.careers-application__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Careers Form */
.careers-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.careers-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.careers-form__group {
  margin-bottom: 1.5rem;
}

.careers-form__group--checkbox {
  margin-bottom: 1rem;
}

.careers-form__label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.careers-form__input,
.careers-form__select,
.careers-form__textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.careers-form__input:focus,
.careers-form__select:focus,
.careers-form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.careers-form__input::placeholder,
.careers-form__textarea::placeholder {
  color: var(--text-secondary);
}

.careers-form__select option {
  background: var(--bg-2);
  color: var(--text);
}

.careers-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.careers-form__file {
  display: none;
}

.careers-form__file-info {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.careers-form__file-info:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.careers-form__file-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.careers-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.careers-form__checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.careers-form__checkbox-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.careers-form__checkbox-text a {
  color: var(--primary);
  text-decoration: none;
}

.careers-form__checkbox-text a:hover {
  text-decoration: underline;
}

.careers-form__submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
  color: var(--bg-1);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.careers-form__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.careers-form__submit:hover::before {
  left: 100%;
}

.careers-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.careers-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.careers-form__submit:disabled::before {
  display: none;
}

.careers-form__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.careers-form__loading svg {
  animation: spin 1s linear infinite;
}

.careers-form__message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

.careers-form__message--success {
  background: rgba(var(--success-rgb), 0.1);
  border: 1px solid rgba(var(--success-rgb), 0.3);
  color: var(--success);
}

.careers-form__message--error {
  background: rgba(var(--error-rgb), 0.1);
  border: 1px solid rgba(var(--error-rgb), 0.3);
  color: var(--error);
}

/* Responsive Design for Careers */
@media (max-width: 768px) {
  .careers-hero__title {
    font-size: 2.5rem;
  }
  
  .careers-hero__subtitle {
    font-size: 1.1rem;
  }
  
  .careers-hero__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .careers-benefits__title,
  .careers-positions__title,
  .careers-application__title {
    font-size: 2rem;
  }
  
  .careers-positions__grid {
    grid-template-columns: 1fr;
  }
  
  .careers-form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .careers-form {
    padding: 2rem;
  }
  
  .careers-position__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .careers-position__details {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 2rem 0 4rem;
  }
  
  .careers-hero__title {
    font-size: 2rem;
  }
  
  .careers-form {
    padding: 1.5rem;
  }
  
  .careers-benefit,
  .careers-position {
    padding: 1.5rem;
  }
}

/* ======================================== TEAM & TESTIMONIALS AVATARS ======================================== */

/* Team Avatar Images */
.team__avatar {
  width: 60px;
  height: 60px;
}

.team__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Testimonials Avatar Images */
.testimonials__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
