
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
}

header {
  padding: 24px 80px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 32px;
}

/*.hero {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: #f8f9fb;
}*/

.hero {
  padding: 120px 80px;
  background: #f8f9fb;
}

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

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #0f172a;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  max-width: 520px;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

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

.hero p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
}

.hero strong {
  color: #22d18f;
}

.section {
  padding: 80px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.section p {
  color: #666;
  max-width: 700px;
  margin-bottom: 48px;
}

.products {
  padding: 120px 80px;
  background: #ffffff;
}

.products-container {
  max-width: 1300px;
  margin: 0 auto;
}

.products-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.products-subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
  /*max-width: 640px;*/
}

.products-grid {
  display: grid;
  /*grid-template-columns: repeat(4, 1fr);*/
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: #f8f9fb;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0f172a;
}

.product-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  flex-grow: 1;
}

.product-card a {
  margin-top: 20px;
  font-weight: 600;
  color: #22d18f;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

footer {
  background: #0f1720;
  color: #ccc;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

footer p {
  font-size: 14px;
  line-height: 1.6;
}

footer a {
  color: #22d18f;
  text-decoration: none;
}

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

  header, .hero, .section, footer {
    padding: 40px 24px;
  }
}

/*.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            120deg,
            rgba(34, 209, 143, 0.12),
            transparent 60%
    );
    border-radius: 18px;
}*/

/* ================================
   RESPONSIVE PRODUCTS SECTION
================================ */

/* Large laptops */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 900px) {
  .products {
    padding: 80px 40px;
  }

  .products-title {
    font-size: 32px;
  }

  .products-subtitle {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .products {
    padding: 60px 24px;
  }

  .products-title {
    font-size: 28px;
  }

  .products-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    padding: 22px;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-card p {
    font-size: 14.5px;
  }
}

/* ================================
   RESPONSIVE HERO
================================ */

/* Tablets */
@media (max-width: 900px) {
  .hero {
    padding: 80px 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding: 60px 24px;
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-image img {
    border-radius: 14px;
  }
}

/* ================================
   HERO → PRODUCTS BRIDGE
================================ */

/* Option 1 */
/*.section-bridge {
    height: 120px;
    background: linear-gradient(
            to bottom,
            #f8f9fb 0%,
            #ffffff 100%
    );
}*/

/* Option 2 */
/*.curve-divider {
    margin-top: -1px;
    background: #ffffff;
}

.curve-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}*/

/* Option 3 */
.hero-accent-line {
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    #22d18f,
    transparent
  );
}

