:root {
  --primary: #FF7E1D;
  --primary-light: #FFF1E7;
  --primary-dark: #E06D12;
  --accent: #FFD814;
  --accent-dark: #FCD200;
  --dark: #232F3E;
  --gray-900: #1A1A1A;
  --gray-800: #333333;
  --gray-700: #4D4D4D;
  --gray-600: #666666;
  --gray-500: #808080;
  --gray-400: #999999;
  --gray-300: #B3B3B3;
  --gray-200: #E0E0E0;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--gray-800);
  background-color: var(--gray-100);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

/* HEADER */
header {
    background-color: #ffffffbf;
/*   background-color: var(--white); */
  box-shadow: var(--shadow-sm);
/*   position: sticky; */
  top: 0;
  z-index: 100;
}

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

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

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
    font-size: 15px;
    font-weight: 600;
    color: #686868;
}

.btn-close {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  transition: color 0.2s;
}

.btn-close:hover {
  color: var(--gray-800);
}

.premium-badge{
	max-width: 240px !important;
}

/* HERO SECTION */
.hero {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #364759 100%);
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* STEPS SECTION */
.steps {
  padding: 40px 0;
  background-color: var(--white);
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  color: var(--gray-900);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.step-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
    box-shadow: var(--shadow-sm);
}

.step-image {
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-image img {
  max-width: 100%;
  max-height: 100%;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.step-card p {
  color: var(--gray-600);
  font-size: 16px;
}

/* INSIGHTS SECTION */
.insights {
  padding: 80px 0;
  background-color: var(--gray-100);
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--gray-600);
  font-size: 18px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.insight-item {
  display: flex;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.insight-item:hover {
  transform: translateY(-5px);
}

.insight-icon {
/*
  font-size: 32px;
  margin-bottom: 16px;
*/
  
  font-size: 80px;
    padding-right: 20px;
    margin-top: -19px;
}

.insight-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.insight-item p {
  color: var(--gray-600);
  font-size: 15px;
}

/* TIPS SECTION */
.tips {
  padding: 80px 0;
  background-color: var(--white);
}

.tips-list {
  max-width: 800px;
  margin: 0 auto;
}

.tip-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background-color: var(--gray-100);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.tip-item:hover {
  transform: translateX(5px);
}

.tip-icon {
  font-size: 42px;
  flex-shrink: 0;
}

.tip-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.tip-content p {
  color: var(--gray-600);
  font-size: 16px;
}

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

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

.cta h2 {
  margin-bottom: 24px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--gray-800);
}

.pricing {
  margin-bottom: 32px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}

.price span {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-600);
}

.price-note {
  font-size: 16px;
  color: var(--gray-600);
  margin-top: 8px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}


.btn-primary, .btn-secondary {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
    width: 50%;
min-width: 250px; 
}

.btn-primary {
  background-color: var(--accent);
  border: 1px solid var(--accent-dark);
  color: var(--gray-900);
/*
  width: 50%;
min-width: 250px;
*/
}

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

.btn-secondary {
	  background-color: var(--accent);

/*   background-color: var(--white); */
/*   border: 1px solid var(--gray-300); */
    border: 1px solid var(--accent-dark);
  color: var(--gray-800);
}

.btn-secondary:hover {
/*   background-color: var(--gray-100); */
  
    background-color: var(--accent-dark);

}

/* FOOTER */
footer {
  padding: 60px 0;
  background-color: var(--dark);
  color: var(--white);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

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

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-copyright p {
  margin-bottom: 4px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subtitle {
    font-size: 18px;
  }
  
  .steps, .insights, .tips, .cta {
    padding: 60px 0;
  }
  
  h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  .step-card {
    padding: 24px 16px;
  }
  
/*
  .step-number {
    top: -15px;
    left: -15px;
    width: 36px;
    height: 36px;
  }
*/
  
  .cta-content {
    padding: 0 16px;
  }
  
  .price {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .subtitle {
    font-size: 16px;
  }
  
  .tip-item {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
}


/* Добавьте эти стили в onboarding.css */
.pin-hint {
    position: fixed;
    top: 0;
    /* left: 0; */
    right: 116px;
    z-index: 1000;
    /* text-align: center; */
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.pin-hint.show {
  transform: translateY(0); /* Показывается при добавлении класса show */
}

.pin-hint-content {
    display: inline-flex;
    align-items: center;
    /* background: #232F3E; */
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    border-radius: 20px;
}

.pin-hint-arrow {
  position: absolute;
  top: -8px;
  right: 70px; /* Примерное положение для указания на иконку расширений */
  width: 16px;
  height: 16px;
  background: #232F3E;
  transform: rotate(45deg);
}

.pin-hint-message {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.pin-hint-icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.pin-hint-close {
    background: none;
    border: none;
    /* color: white; */
    font-size: 16px;
    cursor: pointer;
    margin-left: 16px;
    opacity: 0.7;
    line-height: 1;
    padding: 4px;
    position: absolute;
    top: 23px;
    right: -90px;
    width: 30px;
    background: rgba(0, 0, 0, 0.1);
    height: 30px;
    border-radius: 4px;
}

.pin-hint-close:hover {
  opacity: 1;
}

/* Анимация пульсации для привлечения внимания */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pin-hint.show {
  animation: pulse 2s infinite;
}

@media (max-width: 600px) {
  .pin-hint-content {
    width: 100%;
    border-radius: 0;
  }
  
  .pin-hint-message {
    font-size: 12px;
  }
}