/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #f7f7f5;
  color: #000;
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 247, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
}

.nav-logo-video {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.6;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 140px 32px 80px;
  max-width: 1075px;
  margin: 0 auto;
}

.hero-content {
  text-align: center;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 15px 3px 3px;
  background: #e8e8e8;
  border-radius: 40px;
  border: none;
  box-shadow: rgba(255, 255, 255, 0.15) 0px 0px 0px 2px;
  margin-bottom: 28px;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.badge-text {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.hero-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
  color: #000;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #222;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: #000;
  border: 1px solid #e9e9e9;
}

.btn-secondary:hover {
  background: #f2f2f2;
  transform: translateY(-1px);
}

/* ===== CHAT WINDOW ===== */
.chat-window {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 2px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.chat-dots {
  display: flex;
  gap: 6px;
}

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

.dot-red {
  background: #fd5754;
}
.dot-yellow {
  background: #febb40;
}
.dot-green {
  background: #34c848;
}

.chat-header-right {
  display: flex;
  gap: 10px;
}

.chat-model-badge,
.chat-search-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f2f2f2;
  font-size: 12px;
  font-weight: 500;
  color: #000;
}

.chat-messages {
  padding: 12px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-message p {
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 80%;
}

.user-message {
  display: flex;
  justify-content: flex-start;
}

.user-message p {
  background: #007cff;
  color: #fff;
  border-bottom-left-radius: 4px;
}

.ai-message {
  display: flex;
  justify-content: flex-end;
}

.ai-message p {
  background: #f2f2f2;
  color: #000;
  border-bottom-right-radius: 4px;
}

.chat-input-area {
  padding: 0 20px 20px;
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f5;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 12px 14px;
}

.typing-text {
  font-size: 14px;
  color: #999;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.chat-input-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-attach-btn,
.chat-send-btn {
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.chat-send-btn {
  background: #007cff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

/* ===== BRANDS MARQUEE ===== */
.brands-section {
  padding: 64px 32px;
  max-width: 1075px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brands-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  min-width: 160px;
  flex-shrink: 0;
}

.brands-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.brand-item {
  flex-shrink: 0;
}

.brand-logo {
  height: 28px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.brand-logo:hover {
  opacity: 0.8;
}

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

/* ===== SECTION COMMON ===== */
.section-container {
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  background: #e8e8e8;
  border: none;
  border-radius: 40px;
  box-shadow: rgba(255, 255, 255, 0.15) 0px 0px 0px 2px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin-bottom: 24px;
}

.section-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 16px;
  color: #000;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 48px;
}

/* ===== BENEFITS ===== */
.benefits-section {
  padding: 120px 0;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-image {
  height: 200px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f5;
  border-radius: 12px;
  overflow: hidden;
}

/* AI Folder Icon */
.ai-folder-icon {
  position: relative;
}

.folder-shape {
  position: relative;
}

.folder-tab {
  width: 60px;
  height: 12px;
  background: #e8e8e8;
  border-radius: 4px 4px 0 0;
}

.folder-body {
  width: 100px;
  height: 70px;
  background: #e8e8e8;
  border-radius: 0 8px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.folder-text {
  font-size: 22px;
  font-weight: 700;
  color: #999;
}

/* Benefit logo video */
.benefit-logo-video {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* Rainbow Sphere */
.rainbow-sphere {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ff6b6b,
    #feca57,
    #48dbfb,
    #ff9ff3,
    #54a0ff,
    #5f27cd,
    #ff6b6b
  );
  filter: blur(0.5px);
  box-shadow: 0 0 40px rgba(120, 100, 255, 0.3);
  animation: sphereRotate 6s linear infinite;
}

@keyframes sphereRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Dashboard Button */
.benefit-img-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-btn {
  padding: 14px 32px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.benefit-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.benefit-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* ===== TOOLS ===== */
.tools-section {
  padding: 120px 0;
  text-align: center;
}

.tools-grid-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.tool-icon:hover img {
  transform: scale(1.15);
}

/* ===== FEATURES ===== */
.features-section {
  padding: 120px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f2f2f2;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  font-family: "Geist Mono", monospace;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* ===== GETTING STARTED ===== */
.getting-started-section {
  padding: 120px 0;
}

.getting-started-container {
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gs-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.gs-subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.login-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-form {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  width: 75%;
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.login-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.login-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 10px;
  background: #f5f5f5;
  color: #666;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
}

/* OAuth login card */
.login-form-oauth {
  width: 75%;
  max-width: 300px;
  padding: 28px 24px;
}

.login-logo-video {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}

.login-title-oauth {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.login-subtitle {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.4;
  margin-bottom: 18px;
}

.login-btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.login-btn-yandex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FC3F1D;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 14px;
}

.yandex-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #fff;
  color: #FC3F1D;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}

.login-disclaimer {
  font-size: 9px;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
  padding: 80px 0;
}

.parallax-container {
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.parallax-container.reverse {
  direction: ltr;
}

.parallax-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

.parallax-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.1s ease-out;
}

.integrations-img-wrapper,
.analytics-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.parallax-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

/* Integrations Card */
.integrations-card {
  position: absolute;
  bottom: -10px;
  left: -20px;
  width: 80%;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.integrations-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #000;
}

.integration-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.integration-row:last-child {
  margin-bottom: 0;
}

.integration-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.integration-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.int-line {
  height: 8px;
  background: #e5e5e5;
  border-radius: 4px;
}

.int-line.short {
  height: 6px;
  background: #efefef;
}

/* Analytics Card */
.analytics-card {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 70%;
  background: rgba(30, 30, 35, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  z-index: 2;
  color: #fff;
}

.analytics-card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  margin-bottom: 8px;
}

.chart-bar {
  flex: 1;
  background: #333;
  border-radius: 3px;
  min-width: 12px;
  transition: height 0.5s ease;
}

.analytics-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.analytics-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.parallax-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.parallax-desc {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 120px 0;
  text-align: center;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.toggle-annual {
  text-align: left;
}

.toggle-save {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dcdcdc;
  border-radius: 24px;
  transition: 0.3s;
}

.toggle-slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #000;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: none;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-featured {
  background: none;
  color: #fff;
  overflow: hidden;
}

.pricing-card-featured .pricing-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  z-index: 0;
}

.pricing-card-featured .pricing-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.pricing-card-featured > *:not(.pricing-card-bg):not(.popular-badge) {
  position: relative;
  z-index: 1;
}

.popular-badge {
  position: absolute;
  top: 26px;
  right: 32px;
  padding: 7px 14px;
  background: #fff;
  color: #000;
  border-radius: 91px;
  font-size: 12px;
  font-weight: 400;
  z-index: 2;
}

.pricing-plan {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
}

.pricing-price {
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-top: -8px;
}

.price-amount {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2.4px;
  line-height: 48px;
}

.price-period {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.pricing-card-featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-billed {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  margin-top: -16px;
}

.pricing-card-featured .pricing-billed {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-btn {
  width: 100%;
  padding: 0 24px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
}

.pricing-btn:hover {
  background: #f2f2f2;
}

.pricing-btn-featured {
  background: #fff;
  color: #000;
  border: none;
}

.pricing-btn-featured:hover {
  background: #e9e9e9;
}

.pricing-features-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

.pricing-card-featured .pricing-features-label {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  line-height: 1.4;
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #34c848;
}

.pricing-card-featured .check-icon {
  color: #34c848;
}

/* ===== CASE STUDIES ===== */
.case-studies-section {
  padding: 120px 0;
  text-align: center;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.case-study-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

.case-study-card:hover {
  transform: translateY(-4px);
}

.case-study-image {
  position: relative;
  height: 221px;
  border-radius: 8px;
  overflow: hidden;
}

.case-study-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.7);
}

.case-study-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.case-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.case-study-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-company {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  display: block;
}

.case-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.54px;
  color: #000;
  margin: 0;
}

.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-year {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}

.case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f2f2f2;
  border-radius: 100px;
  color: #000;
  transition: all 0.2s;
}

.case-study-card:hover .case-arrow {
  background: #000;
  color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.testimonials-rows {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-row {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.testimonial-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.testimonial-row[data-direction="left"] .testimonial-track {
  animation: scrollLeft 30s linear infinite;
}

.testimonial-row[data-direction="right"] .testimonial-track {
  animation: scrollRight 30s linear infinite;
}

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

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

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  min-width: 320px;
  max-width: 320px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.testimonial-stars {
  color: #fd5754;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #000;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
}

.testimonial-handle {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

/* ===== TEAM ===== */
.team-section {
  padding: 120px 0;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-image {
  position: relative;
  height: 400px;
  border-radius: 6px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.team-linkedin {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  background: #f2f2f2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.2s;
}

.team-linkedin:hover {
  background: #0a66c2;
  color: #fff;
}

.team-linkedin svg {
  width: 20px;
  height: 20px;
}

.team-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 4px;
}

.team-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -1.32px;
  line-height: 26.4px;
  color: #000;
}

.team-role {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  line-height: 21px;
}

/* ===== BLOG ===== */
.blog-section {
  padding: 120px 0;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-image {
  height: 219px;
  border-radius: 6px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-read-time {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  display: block;
}

.blog-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: -0.54px;
  color: #000;
  margin: 0;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}

.blog-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f2f2f2;
  border-radius: 100px;
  color: #000;
  transition: all 0.2s;
}

.blog-card:hover .blog-arrow {
  background: #000;
  color: #fff;
}

.blog-view-all {
  margin-top: 40px;
}

.blog-view-all .btn {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 0 24px;
  height: 44px;
  font-size: 12px;
  font-weight: 400;
  border: none;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 120px 0;
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item:first-child {
  border-top: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 16px;
  letter-spacing: -0.54px;
  line-height: 21.6px;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.35);
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 32px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cta-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 32px 32px;
}

.footer-container {
  max-width: 1075px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f2f2f2;
  border-radius: 8px;
  color: #000;
  transition: all 0.2s;
}

.social-icon:hover {
  background: #000;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-nav-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.2s;
}

.footer-link:hover {
  color: #000;
}

.footer-bottom {
  max-width: 1075px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #e9e9e9;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.scroll-reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.scroll-reveal-stagger.revealed > *:nth-child(1) {
  transition-delay: 0s;
}
.scroll-reveal-stagger.revealed > *:nth-child(2) {
  transition-delay: 0.1s;
}
.scroll-reveal-stagger.revealed > *:nth-child(3) {
  transition-delay: 0.2s;
}
.scroll-reveal-stagger.revealed > *:nth-child(4) {
  transition-delay: 0.3s;
}
.scroll-reveal-stagger.revealed > *:nth-child(5) {
  transition-delay: 0.4s;
}
.scroll-reveal-stagger.revealed > *:nth-child(6) {
  transition-delay: 0.5s;
}

.scroll-reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}

/* ===== BRAND TEXT ===== */
.brand-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.brand-item:hover .brand-text {
  color: rgba(0, 0, 0, 0.6);
}

/* ===== CASE LOGO TEXT ===== */
.case-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== FAQ CATEGORIES ===== */
.faq-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  padding: 28px 28px 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-category:first-child {
  border-top: none;
  padding-top: 20px;
}

/* ===== SECURITY CARDS (replaces team photos) ===== */
.security-icon-bg {
  background: linear-gradient(135deg, #f0f0f8, #e8e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.security-badge-label {
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Geist Mono", monospace;
  letter-spacing: -0.5px;
}

/* ===== ADVANTAGE CARDS (replaces blog images) ===== */
.advantage-card .blog-image {
  overflow: visible;
}

.advantage-icon-bg {
  background: linear-gradient(135deg, #f0f0f8, #e8e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  min-height: 180px;
}

.advantage-big-text {
  font-size: 28px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Geist Mono", monospace;
  letter-spacing: -1px;
}

.advantage-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  margin-top: 4px;
}

.advantage-card .blog-info {
  padding: 16px 4px 8px;
}

/* ===== PRICE CUSTOM ===== */
.price-custom {
  font-size: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }

  .section-title,
  .gs-title,
  .parallax-title,
  .cta-title {
    font-size: 36px;
  }

  .benefits-grid,
  .features-grid,
  .pricing-grid,
  .case-studies-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .getting-started-container,
  .parallax-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .hero {
    padding: 120px 24px 48px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .section-title,
  .gs-title,
  .parallax-title,
  .cta-title {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .section-container {
    padding: 0 24px;
  }

  .benefits-grid,
  .features-grid,
  .pricing-grid,
  .case-studies-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .brands-section {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .brands-label {
    min-width: auto;
    text-align: center;
  }

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

  .footer-container {
    flex-direction: column;
    gap: 32px;
  }

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Security cards: reduce height on mobile */
  .security-icon-bg {
    height: 120px;
  }

  /* Advantage cards: reduce height on mobile */
  .advantage-icon-bg {
    min-height: 100px;
  }

  .advantage-big-text {
    font-size: 22px;
  }

  /* Pricing buttons as links */
  .pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Nav logo video smaller on mobile */
  .nav-logo-video {
    width: 36px;
    height: 36px;
  }

  .nav-logo {
    gap: 8px;
    font-size: 18px;
  }

  /* FAQ categories padding on mobile */
  .faq-category {
    padding: 20px 20px 6px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  /* Login OAuth card on mobile */
  .login-form-oauth {
    width: 85%;
    padding: 20px 16px;
  }

  .login-logo-video {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .login-title-oauth {
    font-size: 13px;
  }

  .login-subtitle {
    font-size: 10px;
    margin-bottom: 14px;
  }

  /* Hero buttons stack nicely */
  .hero-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Parallax sections mobile */
  .parallax-container.reverse {
    flex-direction: column;
  }
}
