:root {
  --main-gradient: linear-gradient(to right, #f5faff, #93b5d6);
  --second-gradient: linear-gradient(to right, #93b5d6, #16aca6);
  --accent-color: #16aca6;
  --text-dark: #002366;
}
html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }
  h1 { font-size: 2.5rem; margin-bottom: 0.5em; }
  h2 { font-size: 2rem;   margin-bottom: 0.5em; }
  h3 { font-size: 1.5rem; margin-bottom: 0.5em; }
  p  { font-size: 1rem;   line-height: 1.6; margin: 0.5em 0; }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .grad{
    background: var(--second-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .grad2{
    background: var(--second-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* Header / Nav */
  .header {
    background: #fff;
    padding: 1rem 0;
  }
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .logo img{
    width: 110px;
  }
  .header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  .header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
  }
  .hamburger {
    display: none;
    cursor: pointer;
  }
  .hamburger i {
    font-size: 1.5rem;
  }
  
  /* Hero Section */
  .hero {
    background: var(--main-gradient), 
                url('https://source.unsplash.com/1600x900/?startup') center/cover no-repeat;
    color: #fff;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
  }
  .hero-pattern{
    background-image: url('../img/parkay-floor.svg');
    background-repeat: repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero .container {
    max-width: 700px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero h1 span{
    display: block;
  }
  .subheadline {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0.5em auto;
  }
  .hero-buttons {
    margin-top: 1.5rem;
  }
  .hero-buttons .btn {
    margin: 0.5rem;
  }
  
  /* Core Benefits Section */
  .benefits {
    background: #fff;
    padding: 60px 0;
  }
  .benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }
  .benefit-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.03);
  }
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
  }
  .benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .benefit-item p {
    font-size: 0.95rem;
  }
  
  /* How It Works Section */
  .how-it-works {
    background: #f7f7f7;
    padding: 60px 0;
  }
  .how-it-works h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  .steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    counter-reset: step;
  }
  .steps li {
    position: relative;
    padding: 0.5rem 0 0.5rem 3rem;
    margin-bottom: 1.5rem;
  }
  .steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--accent-color);
    color: #000;
    font-weight: bold;
    text-align: center;
    line-height: 2rem;
  }
  .steps h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }
  .steps p {
    font-size: 0.95rem;
    margin: 0;
  }
  
  /* Call to Action Section */
  .cta {
    background: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
  }
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Trust Section */
  .trust {
    background: var(--accent-color);
    color: #fff;
    padding: 40px 0;
  }
  .trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
  }
  .trust-list li {
    display: flex;
    align-items: center;
    font-weight: 600;
  }
  .trust-list i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #fff;
  }
    .features-alt {
  background: #93b5d6;
  color: #fff;
  padding: 80px 0;
}
.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 2rem;
}
.feature-row.reverse {
  flex-direction: row;
}
.feature-text {
  flex: 1;
  min-width: 280px;
}
.feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.feature-text p {
  font-size: 1rem;
  color: #eee;
}
.feature-image {
  flex: 1;
  text-align: center;
}
.feature-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
  /* Footer */
  .footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  .footer p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  /* Buttons & Links */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
  }
  .primary-btn {
    background: var(--accent-color);
    color: #fff;
  }
  .primary-btn:hover {
    background: #3e6fd8;
  }
  .secondary-btn {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
  }
  .secondary-btn:hover {
    background: var(--accent-color);
    color: #fff;
  }
  .small-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .header nav ul li a:hover {
    color: #3e6fd8;
  }

.header nav ul li.nav-cta a:hover {
  color: #fff;
}
  .reviews {
    background: #fff;
    padding: 60px 0;
    text-align: center;
  }
  .reviews h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .review {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .review-author {
    font-weight: bold;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #555;
  }
  .faq {
    background: #f7f7f7;
    padding: 60px 0;
  }
  .faq h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  .faq-item {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: left;
  }
  .faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .faq-item p {
    font-size: 1rem;
    color: #555;
  }
  #contact a{
    color:#eee;
  }
.about {
  background: #f9fbff;
  padding: 60px 20px;
  text-align: center;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about p {
  color: #444;
}
/* === Packages & Pricing === */
.pricing {
  background: #f8fafd;
  padding: 60px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.pricing p {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #555;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.pricing-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1f2d3d;
}

.pricing-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: #333;
  padding-left: 1.2em;
  position: relative;
}

.pricing-card ul li::before {
  content: \"✔\";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.pricing-card .btn {
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
}
  /* Responsive Media Queries */
  @media (max-width: 768px) {
  .header {
    position: relative; 
  }
    .header .container {
      flex-wrap: wrap;
    }
    .header nav ul {
    display: none;
    position: absolute;       top: 100%;            
    left: 0;             
    z-index: 1000;      
    width: 100%;
    flex-direction: column;
    text-align: center;
    background: #fff;     /* Белый фон, чтобы перекрывать контент сайта */
    border-top: 1px solid #eee;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    .header nav ul.open {
      display: flex;
    }
    .hamburger {
      display: block;
    }
    .hero h1 {
      font-size: 2.2rem;
    }
  }
  