:root {
  /* Colors */
  --brand: #0066FF;
  --brand-hover: #0052CC;
  --accent: #ff4644;
  --accent-hover: #e63e3d;
  --on-accent: #FFFFFF;
  --on-brand: #FFFFFF;
  --text-primary: #0B1B32;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --bg-main: #FFFFFF;
  --bg-surface: #F7FAFC;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --border: #E2E8F0;
  --shadow: rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-primary: 'Manrope', sans-serif;

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --container-max-w: 1320px;
  --container-px: 24px;

  /* Spacing */
  --section-py: 120px;
  --grid-gap: 32px;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  font-style: italic; /* For alt text styling */
  shape-margin: 0.75rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Чтобы шапка не перекрывала заголовки */
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2-style,
.h3-style,
.h4-style {
  color: var(--text-primary);
}

h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h1 span {
  color: var(--brand);
}

h2,
.h2-style {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
  display: block;
}

h3,
.h3-style {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  display: block;
}

.label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 16px;
}

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

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

/* Responsive Grids */
.grid-2-cols {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3-cols {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4-cols {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

section {
  padding: var(--section-py) 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.header__socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-right: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icon:hover {
  background-color: var(--brand);
  color: var(--on-brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: -4px;
  white-space: nowrap;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.logo span {
  color: var(--brand);
}

.nav {
  margin-left: auto;
  margin-right: auto;
}

.nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-main);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  list-style: none;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.nav__dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-surface);
  color: var(--brand);
}

.nav__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link:hover {
  color: var(--brand);
}

/* Burger Button */
.burger-btn {
  display: none;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 20px;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1100;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0;
}

.burger-btn:hover {
  background-color: var(--border);
  color: var(--brand);
}

.burger-btn.active i::before {
  content: "\f00d"; /* FontAwesome 'xmark' icon */
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 70, 68, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 120px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

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

.hero__image {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  margin-top: -200px;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px var(--shadow));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero__subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
}

.hero__features-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__feature {
  background-color: var(--bg-surface);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__feature i {
  color: var(--brand);
}

.hero__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

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

/* Pains Section */
.pains {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  margin: 0 var(--container-px);
  padding: 40px var(--container-px);
}

.pains__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap);
  margin-bottom: 48px;
}

.card {
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 4px 6px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px var(--shadow);
}

.pain-card .pain-quote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--border);
}

.pain-card .solution {
  font-weight: 600;
  color: var(--brand);
}

.pains__footer {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

/* Experience Section */
.experience {
  padding-top: 80px;
}

.experience__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--grid-gap);
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 600;
}

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

.niche-item {
  background-color: var(--bg-surface);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Services Section */
.services {
  background-color: var(--bg-surface);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--grid-gap);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 32px;
}

.service-card .options {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-card .options li {
  margin-bottom: 12px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

/* Pricing Section Components */
.pricing-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.service-card .options li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

/* Service Card Components */
.service-card__group {
  margin-bottom: 16px;
}

.service-card__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.service-card__desc {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}

.service-card__checklist {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.service-card__checklist li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.service-card__checklist i {
  color: var(--brand);
  margin-top: 3px;
}

.service-card__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.service-card__price-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 16px;
}

/* Factors Section Components */
.factor-step {
  margin-top: 64px;
}

.factor-step:first-child {
  margin-top: 0;
}

.factor-step__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  margin-bottom: 32px;
}

.factor-step__number {
  background: var(--brand);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

/* Options List Components */
.options-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.options-list__item {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
}

.factor-icon {
  font-size: 24px;
  color: var(--brand);
  margin-top: 4px;
}

.platform-icon {
  height: 18px;
  width: auto;
  display: inline-block !important;
  vertical-align: middle;
  margin-right: 4px;
  margin-left: 8px;
  object-fit: contain;
}

.platform-icon:first-child {
  margin-left: 0;
}

.platform-icon--fa {
  font-size: 16px;
  color: var(--brand);
  display: inline-block;
  vertical-align: middle;
}

.service-card--featured {
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
  position: relative;
  overflow: visible;
  transform: scale(1.02);
}

.service-card--featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
  white-space: nowrap;
  z-index: 10;
}

.services__footer-note {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  color: var(--text-muted);
}

/* Extra Services */
.services__extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}

.extra-service {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-service:hover {
  transform: translateY(-5px);
}

.extra-service__icon {
  font-size: 32px;
  color: var(--brand);
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.extra-service__content h4,
.extra-service__content .h4-style {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-weight: 700;
  display: block;
}

.extra-service__content p {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .services__extra {
    grid-template-columns: 1fr;
  }
}

/* Portfolio */
.portfolio {
  margin-top: 80px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--grid-gap);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-card__niche {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--brand);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  align-self: flex-start;
}

.portfolio-card__content {
  margin-bottom: 24px;
  flex-grow: 1;
}

.portfolio-card h3,
.portfolio-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: block;
}

.portfolio-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 16px;
}

.portfolio-card .result {
  background-color: var(--bg-surface);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.portfolio-card .result strong {
  display: block;
  color: var(--brand);
  font-size: 20px;
  margin-bottom: 4px;
}

.portfolio-card__image {
  width: 100%;
  height: 220px; /* Фиксированная высота для единообразия */
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--bg-surface);
  position: relative;
}

.portfolio-card__image a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Вписать целиком без обрезки */
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.02); /* Минимальный зум без прыжков */
}

/* About Section */
.about {
  padding-top: 40px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow);
  border: 1px solid var(--border);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__experience-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background-color: var(--brand);
  color: var(--on-brand);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  text-align: center;
  line-height: 1.2;
}

.about__experience-badge strong {
  display: block;
  font-size: 32px;
}

.about__content p {
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.about__features {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.about__feature-item {
  display: flex;
  gap: 16px;
}

.about__feature-item i {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--brand);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 14px;
}

.about__feature-item strong {
  display: block;
  margin-bottom: 4px;
}

.about__feature-item span {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Workflow */
.workflow {
  background-color: var(--text-primary);
  color: var(--bg-main);
  border-radius: var(--radius-lg);
  margin: 0 var(--container-px);
  padding: 100px var(--container-px);
}

.workflow h2 {
  color: var(--bg-main);
}

.workflow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  counter-reset: workflow-counter;
}

.workflow-step {
  position: relative;
}

.workflow-step::before {
  counter-increment: workflow-counter;
  content: counter(workflow-counter);
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
  z-index: 0;
}

.workflow-step h3 {
  color: var(--bg-main);
  position: relative;
  z-index: 1;
}

.workflow-step p {
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* Advantages */
.advantages {
  padding-top: 40px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

.advantage-card h3 {
  font-size: 22px;
}

.advantage-card p {
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  background-color: var(--bg-surface);
  padding: 120px 0;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 64px;
  box-shadow: 0 20px 40px var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.form__input {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background-color: var(--bg-surface);
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form__input:focus {
  outline: none;
  border-color: var(--brand);
  background-color: var(--bg-main);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-top: 8px;
}

.form__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--brand);
}

.form__consent-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}

.form__consent-label a {
  color: var(--brand);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form__consent-label a:hover {
  color: var(--brand-hover);
}

/* Footer */
.footer {
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: block;
}

.cta-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
  color: var(--text-primary);
  display: block;
}

.footer__info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.footer__info-item i {
  color: var(--brand);
  margin-top: 4px;
}

.footer__info-item a:hover {
  color: var(--brand);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__legal {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.footer__legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 24px;
}

.footer__legal-links a {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__legal-links a:hover {
  color: var(--brand);
}

.footer__copy {
  color: var(--text-muted);
  font-size: 14px;
}


/* Responsive */
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__features {
    justify-content: center;
  }

  .hero__image {
    justify-content: center;
    order: 1;
    margin-top: 40px;
    margin-bottom: 0;
  }

  .hero__image img {
    max-width: 250px;
  }

  .header__inner {
    gap: 12px;
  }

  .header .btn--primary {
    padding: 8px 14px;
    font-size: 12px;
  }

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

@media (max-width: 768px) {
  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__list,
  .header__socials {
    display: none;
  }

  .burger-btn {
    display: flex;
    order: 3;
  }

  .logo-wrapper {
    order: 1;
  }

  .header .btn--primary {
    order: 2;
    margin-left: auto;
    padding: 6px 10px;
    font-size: 10px;
    border-radius: var(--radius-sm);
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 1050;
    padding: 80px 24px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }

  .nav__link {
    font-size: 18px;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    padding: 10px 0 10px 20px !important;
    margin: 0 !important;
    display: none;
    background: none !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .dropdown-menu li a {
    padding: 12px 0 !important;
    white-space: normal !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
  }

  .nav__dropdown.active .dropdown-menu {
    display: block !important;
  }

  .nav__dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
  }

  .nav__dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
  }

  .pains,
  .workflow {
    margin: 0;
    border-radius: 0;
    padding: 60px var(--container-px);
  }

  .cta-container {
    padding: 32px 24px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__experience-badge {
    right: 0;
    padding: 16px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .logo-tagline {
    font-size: 10px;
  }
}

/* FAQ Section */
.faq {
  padding-top: 100px;
  padding-bottom: 100px;
}

.faq__list {
  max-width: 850px;
  margin: 0 auto;
}

.faq__item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.faq__item[open] {
  border-color: var(--brand);
  background-color: #fff;
}

.faq__header {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--text-primary);
  font-size: 19px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq__header::-webkit-details-marker {
  display: none;
}

.faq__header:hover {
  color: var(--brand);
}

.faq__header i {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq__item[open] .faq__header {
  color: var(--brand);
  padding-bottom: 16px;
}

.faq__item[open] .faq__header i {
  transform: rotate(180deg);
}

.faq__content p {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: none;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner__content {
  max-width: var(--container-max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 600;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero__image {
    display: none;
  }

  .cookie-banner {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    padding: 16px !important;
    width: calc(100% - 24px) !important;
    max-width: 100% !important;
  }
  
  .cookie-banner__content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .cookie-banner p {
    font-size: 13px !important;
    word-break: break-word !important;
    text-align: center !important;
  }

  .cookie-banner .btn {
    width: 100% !important;
    padding: 12px !important;
    font-size: 14px !important;
  }
}
/* Hero Animation Styles */
.hero-animated {
  position: relative;
  overflow: hidden;
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-animated > * {
  position: relative;
  z-index: 1;
}

/* Mobile Fix for Hero Animation */
@media (max-width: 768px) {
  #canvas {
    display: none !important;
  }
  .hero-animated {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* Custom Cursor Styles */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  input,
  textarea,
  .card,
  details summary {
    cursor: none !important;
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand);
    border-radius: 50%;
    position: fixed;
    top: -3px;
    left: -3px;
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.3s ease;
  }

  .cursor-glow {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0) 70%);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    position: fixed;
    top: -20px;
    left: -20px;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, background 0.3s ease, border 0.3s ease, opacity 0.3s ease;
  }

  .cursor-glow.is-hovering {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0) 75%);
    border-color: rgba(0, 102, 255, 0.3);
  }

  .cursor-glow.is-clicked {
    transform: scale(0.8) !important;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, rgba(0, 102, 255, 0) 70%);
  }
}
