/* Import Poppins Font */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap'); */

@font-face {
  font-family: 'BrittiSans';
  src: url('./fonts/BrittiSansTrial-Regular-BF6757bfd47ffbf.otf')
    format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BrittiSans';
  src: url('./fonts/BrittiSansTrial-RegularItalic-BF6757bfd44e013.otf')
    format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'BrittiSans';
  src: url('./fonts/BrittiSansTrial-Bold-BF6757bfd4a96ed.otf')
    format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BrittiSans';
  src: url('./fonts/BrittiSansTrial-BoldItalic-BF6757bfd4a2285.otf')
    format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --primary-color: #51a2ff;
  --primary-dark: #3d8ae6;
  --primary-light: #6fb3ff;
  --secondary-color: #8b5cf6;
  --text-dark: #111827;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --bg-dark: #1f2937;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'BrittiSans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 2%;
  width: 65%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-radius: 15px;
  box-shadow: 0 100px 80px #00000012, 0 30px 24px #0000000a,
    0 12.5px 10px #0000000a, 0 4.5px 3.5px #00000008;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Buttons */

.btn-primary,
.btn-secondary,
.btn-demo {
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  font-size: 1rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-light)
  ) !important;
  color: white !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.btn-secondary {
  background: white !important;
  color: var(--text-dark) !important;
  border: 1px solid var(--border-color) !important;
}

.btn-secondary:hover {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-demo {
  background: transparent !important;
  color: var(--text-dark) !important;
  border: 2px solid var(--border-color) !important;
}

.btn-demo:hover {
  background: var(--bg-gray) !important;
}

.btn-large {
  padding: 1rem 2rem !important;
  font-size: 1.125rem !important;
}

.btn-block {
  width: 100% !important;
  justify-content: center !important;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

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

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.stat-divider {
  width: 1px;
  background: var(--border-color);
}

/* Hero Visual Styles */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-container {
  position: relative;
  display: inline-block;
}

.dashboard-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.signatures-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.signature-item {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  animation: signatureAppear 0.6s ease-out forwards;
}

/* Позиционирование сигнатур поверх dashboard */
.signature-1 {
  top: -30%;
  left: -10%;
  animation-delay: 0.5s;
}

.signature-2 {
  top: 35%;
  right: -8%;
  animation-delay: 1s;
}

.signature-3 {
  bottom: -10%;
  left: 5%;
  animation-delay: 1.5s;
}

/* Анимация появления */
@keyframes signatureAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Эффекты при наведении */
.signature-card-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

/* .signature-card-wrapper:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
} */

/* Адаптивность */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .signature-1,
  .signature-2,
  .signature-3 {
    transform: scale(0.8);
  }

  .signature-1 {
    top: 10%;
    left: 2%;
  }

  .signature-2 {
    top: 30%;
    right: 2%;
  }

  .signature-3 {
    bottom: 15%;
    left: 5%;
  }
}

/* Click indicator styles (если нужно оставить) */
.click-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
  backdrop-filter: blur(10px);
}

.click-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.signature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.signature-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.signature-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.signature-info {
  flex: 1;
}

.signature-name {
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.verified-badge {
  animation: rotate 20s linear infinite;
}

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

.signature-title {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.signature-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.signature-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gray);
  border-radius: 0.5rem;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.click-indicator {
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  color: var(--text-gray);
}

.created-indicator {
  position: absolute;
  bottom: -2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  color: var(--text-gray);
}

.click-pulse {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: ping 2s infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

/* Shared orb styles */
.gradient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at center,
    rgba(99, 102, 241, 0.6),
    rgba(139, 92, 246, 0.3),
    #c4deff,
    transparent 70%
  );
  filter: blur(120px);
  border-radius: 50%;
  animation: drift 12s ease-in-out infinite;
}

/* Orb positions */
.orb-1 {
  top: -180px;
  left: -120px;
  animation-delay: 0s;
}

.orb-2 {
  bottom: -200px;
  right: -120px;
  animation-delay: -6s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

/* Trusted By Section */
.trusted-by {
  padding: 3rem 0;
  background: var(--bg-gray);
}

.trusted-label {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.company-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--bg-dark);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  width: 20%;
  min-width: 200px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Demo Section */
.demo-section {
  padding: 6rem 0;
  background: var(--bg-gray);
}

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

.demo-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.demo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.video-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-placeholder {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--bg-dark);
}

.video-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.demo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.demo-stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background: var(--bg-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-description {
  font-size: 1.125rem;
  color: var(--bg-dark);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.billing-option {
  font-weight: 600;
  color: var(--text-gray);
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.billing-option.active {
  color: var(--primary-color);
}

.discount-badge {
  background: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.toggle-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-label:before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-checkbox:checked + .toggle-label {
  background-color: var(--primary-color);
}

.toggle-checkbox:checked + .toggle-label:before {
  transform: translateX(30px);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2.5rem;
  background: white;
  border-radius: 1rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.price-monthly,
.price-yearly {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-yearly {
  display: none;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gray);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.price-period {
  font-size: 1rem;
  color: var(--text-gray);
  margin-left: 0.25rem;
}

.billing-note {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.5rem;
}

.pricing-description {
  color: var(--text-gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--bg-gray);
  display: flex;
  align-items: center;
}

.pricing-features li:before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.75rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.btn-block {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Yearly billing active state */
body.yearly-billing .price-monthly {
  display: none;
}

body.yearly-billing .price-yearly {
  display: flex;
}

body.yearly-billing .billing-option[data-billing='monthly'] {
  color: var(--text-gray);
}

body.yearly-billing .billing-option[data-billing='yearly'] {
  color: var(--primary-color);
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: var(--bg-gray);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-gray);
}

.faq-icon {
  color: var(--text-gray);
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  color: var(--bg-dark);
}

.cta .container {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.6),
    rgba(139, 92, 246, 0.3),
    #aed1ff,
    transparent 70%
  );
  padding: 5rem;
  border-radius: 2.5rem;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-buttons .btn-secondary {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-dark);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

/* .footer-brand {
  max-width: 300px;
} */

/* .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
} */

.footer-tagline {
  color: var(--text-light);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  flex-direction: flex;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.footer-bottom p {
  text-align: center;
}

/* .footer-socials {
  display: flex;
  gap: 1rem;
} */

.footer-socials a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--primary-color);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.video-modal.active {
  display: block;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: black;
  border-radius: 1rem;
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-modal-close:hover {
  transform: scale(1.1);
}

/* Top User Examples Section */
.user-examples {
  position: relative;
  padding: 4rem 0;
}

.user-examples .container {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.6),
    rgba(139, 92, 246, 0.3),
    #aed1ff,
    transparent 70%
  );
  padding: 5rem;
  border-radius: 2.5rem;
}

.curved-arrow {
  position: absolute;
  left: -20px; /* adjust as needed */
  top: -2%;
  transform: translateY(-50%);
  width: 150px; /* size of arrow */
  z-index: 100;
  transform: translateY(-50%) scaleY(-1); /* flipped vertically */
}

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

.example-placeholder {
  background: var(--bg-white);
  border: 2px dashed var(--border-color);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  color: var(--text-gray);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* .example-placeholder:hover {
  border-color: var(--primary-color);
  background: rgba(81, 162, 255, 0.05);
} */

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
}

.how-it-works .container {
  padding: 5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-gray));
  border-radius: 2.5rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

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

.step-description {
  color: var(--bg-dark);
  line-height: 1.7;
}

.step-visual {
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Email Comparison Section */
.email-comparison {
  padding: 4rem 0;
}

.email-comparison .container {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.6),
    rgba(139, 92, 246, 0.3),
    #aed1ff,
    transparent 70%
  );
  padding: 5rem;
  border-radius: 2.5rem;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  margin-bottom: 20px;
}

.email-example {
  position: relative;
}

.example-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-gray);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.label-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-icon.negative {
  background: #ef4444;
  color: white;
}

.label-icon.positive {
  background: var(--primary-color);
  color: white;
}

.email-mockup {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.email-glow-wrapper {
  position: relative;
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(
      120deg,
      var(--primary-color),
      var(--primary-light),
      var(--secondary-color),
      var(--primary-color)
    )
    0 0 / 300% 300%;
  animation: borderGradient 6s linear infinite;
}

@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Soft pulsing glow */
@keyframes glowPulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

/* Each popup */
.popup {
  background: var(--primary-color);
  color: white;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(5px);
  animation: popupAnim 6s infinite;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Staggered animations */
.popup:nth-child(1) {
  animation-delay: 0s;
  top: -20px;
  right: -20px;
}
.popup:nth-child(2) {
  animation-delay: 2s;
  top: 150px;
  left: -20px;
}
.popup:nth-child(3) {
  animation-delay: 4s;
  bottom: 20px;
  right: 10px;
}

/* Keyframes */
@keyframes popupAnim {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  35% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}

.love-emojie-icon {
  width: 30px;
}

.email-glow-wrapper:hover {
  transform: translateY(-5px);
}

.email-header {
  padding: 1rem 1.5rem;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 0.5rem;
}

.email-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
}

.email-body {
  padding: 2rem 1.5rem;
}

.email-from {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.email-subject {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.email-content {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.email-signature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.signature-basic {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.signature-pro {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.signature-pro-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
}

.signature-pro-info {
  flex: 1;
}

.signature-pro-name {
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.signature-pro-name svg {
  width: 16px;
  height: 16px;
}

.signature-pro-title {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.signature-pro-links {
  display: flex;
  gap: 0.5rem;
}

.signature-pro-link {
  width: 24px;
  height: 24px;
  background: var(--bg-gray);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.signature-pro-link:hover {
  background: var(--primary-color);
  color: white;
}

.comparison-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto;
}

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

.comparison-stat-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.comparison-stat-label {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* Responsive Design */

@media (max-width: 1400px) {
  .guarantee-popups {
    display: none;
  }

  .navbar {
    width: 80%;
  }
}

@media (max-width: 968px) {
  .navbar {
    width: 80%;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-200%);
    transition: transform 0.3s ease;
    border-radius: 1rem;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .demo-content {
    grid-template-columns: 1fr;
  }

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

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

  .comparison-container {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .comparison-stats {
    flex-direction: column;
    gap: 2rem;
  }
}

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

  .navbar {
    width: 80%;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-200%);
    transition: transform 0.3s ease;
    border-radius: 1rem;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: flex;
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .company-logos {
    gap: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

.signature-card-wrapper,
.example-placeholder,
.signature-showcase,
.signature-preview {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Allow pointer events only for actual links */
.signature-card-wrapper a,
.example-placeholder a {
  pointer-events: auto;
}

/* App Screenshots Section */
.app-screenshots {
  padding: 4rem 0;
  background: var(--bg-white);
}

.screenshots-container {
  max-width: 1000px;
  margin: 0 auto;
}

.screenshot-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 1rem 2rem;
  background: var(--bg-gray);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.screenshot-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.screenshot-annotation {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.annotation-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.annotation-text {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* Social Proof Section */
.social-proof {
  padding: 4rem 0;
}

.social-proof .container {
  padding: 5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-gray));
  border-radius: 2.5rem;
}

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

.testimonial-card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.testimonial-content {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.author-name {
  font-weight: 600;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.badge-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.badge-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Integrations Section */
.integrations {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.6),
    rgba(139, 92, 246, 0.3),
    #aed1ff,
    transparent 70%
  );
  overflow: hidden;
}

.integrations-slider {
  position: relative;
  margin-top: 3rem;
}

.slider-track {
  display: flex;
  width: fit-content;
  animation: slide 40s linear infinite;
  gap: 2rem;
  padding: 1rem 0;
}

.slider-track.top-row {
  animation-direction: normal;
}

.slider-track.bottom-row {
  animation-direction: reverse;
  margin-top: 1rem;
}

.slider-group {
  display: flex;
  gap: 2rem;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  /* background: var(--bg-gray); */
  border-radius: 1rem;
  /* border: 1px solid var(--border-color); */
  min-width: 140px;
  transition: all 0.3s ease;
  position: relative;
}

.integration-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.integration-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.integration-item:hover .integration-icon {
  transform: scale(1.1);
}

.integration-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.integration-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  white-space: nowrap;
}

/* Infinite scroll animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

/* Pause animation on hover */
/* .integrations-slider:hover .slider-track {
  animation-play-state: paused;
} */

/* Gradient fade effects on edges */
.integrations-slider::before,
.integrations-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

/* .integrations-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-white) 0%, transparent 100%);
}

.integrations-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-white) 0%, transparent 100%);
} */

/* Responsive Design */
@media (max-width: 768px) {
  .slider-track {
    gap: 1rem;
    animation-duration: 30s;
  }

  .slider-group {
    gap: 1rem;
  }

  .integration-item {
    padding: 1rem 1.5rem;
    min-width: 120px;
  }

  .integration-icon {
    width: 40px;
    height: 40px;
  }

  .integration-icon img {
    width: 20px;
    height: 20px;
  }

  .integration-name {
    font-size: 0.75rem;
  }

  .integrations-slider::before,
  .integrations-slider::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .slider-track {
    animation-duration: 25s;
  }

  .integration-item {
    padding: 0.75rem 1rem;
    min-width: 100px;
  }

  .integration-icon {
    width: 32px;
    height: 32px;
  }

  .integration-icon img {
    width: 16px;
    height: 16px;
  }
}

/* Results Section */
.results {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-gray));
  color: white;
}

.results .section-title,
.results .section-description {
  color: var(--bg-dark);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
}

.result-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.result-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}

.result-desc {
  font-size: 0.875rem;
  opacity: 0.9;
  color: var(--bg-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .screenshot-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .screenshot-annotation {
    display: none; /* Hide annotations on mobile for better UX */
  }
}

/* Добавьте в конец styles.css */
[aria-hidden='true'] {
  display: none !important;
}

/* Guarantee Section Styles */
.guarantee-section {
  padding: 4rem 0;
  position: relative;
  /* overflow: hidden; */
}

.guarantee-section .container {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.6),
    rgba(139, 92, 246, 0.3),
    #aed1ff,
    transparent 70%
  );
  padding: 5rem;
  border-radius: 2.5rem;
}

.guarantee-popup {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(5px);
  animation: popupAnim 6s infinite;
}

.guarantee-popup:nth-child(1) {
  animation-delay: 0s;
  top: 100px;
  right: 150px;
}

.guarantee-popup:nth-child(2) {
  animation-delay: 1s;
  top: 200px;
  left: 120px;
}

.guarantee-popup:nth-child(3) {
  animation-delay: 2s;
  top: 400px;
  right: 150px;
}

.guarantee-popup:nth-child(4) {
  animation-delay: 3s;
  top: 600px;
  left: 200px;
}

.guarantee-popup:nth-child(5) {
  animation-delay: 4s;
  top: 500px;
  right: 150px;
}

.guarantee-popup:nth-child(6) {
  animation-delay: 5s;
  top: 200px;
  left: 150px;
}

.bouce {
  animation: bounce 0.5s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(2px);
  }
}

.guarantee-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.guarantee-badge {
  margin-bottom: 30px;
}

.guarantee-badge svg {
  width: 80px;
  height: 80px;
}

.guarantee-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.guarantee-description {
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.guarantee-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.guarantee-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guarantee-feature span {
  font-weight: 500;
  color: #374151;
}

.guarantee-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.guarantee-note {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .guarantee-section {
    padding: 60px 0;
  }

  .guarantee-title {
    font-size: 2rem;
  }

  .guarantee-description {
    font-size: 1.1rem;
  }

  .guarantee-features {
    grid-template-columns: 1fr;
  }
}
