/* === BASE === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background: #fafbfc;
    color: #1c1c1c;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.25s ease;
}


/* === HEADER === */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 64px;
}

.menu a {
    margin-left: 25px;
    font-weight: 500;
    color: #333;
}

.menu a:hover {
    color: #ffb347;
}



/* === HERO === */
.hero {
  padding: 80px 0 60px;
  background: #f7f9fc;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  min-width: 420px;
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: 400;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Кнопки */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #ffb347;
  border-color: #ffb347;
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #ffa72c;
  box-shadow: 0 10px 22px rgba(255, 180, 71, 0.35);
}

.btn-outline {
  background: #fff;
  border-color: #1c1c1c;
  color: #1c1c1c;
}

.btn-outline:hover {
  background: #1c1c1c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* Блок с фото */
.hero-image-wrapper {
  flex: 0 0 450px;
  background: #fff7ec;
  border-radius: 32px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.hero-image {
  width: 100%;
  border-radius: 20px;
}



/* === ABOUT === */
.about {
    padding: 50px 0;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.accent {
    color: #ffb347;
}

.stats {
    margin-top: 40px;
    display: flex;
    gap: 25px;
}

.stat-card {
    background: #f0efed;
    padding: 40px 25px;
    border-radius: 14px;
    flex: 1;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 32px;
    color: #ffb347;
    font-weight: 700;
}

.stat-text {
    margin-top: 10px;
    font-size: 15px;
}



/* === GUIDES === */
.guides {
    padding: 50px 0;
}

.guides h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.subtitle {
    font-size: 17px;
    margin-bottom: 40px;
}

.guides-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-card {
    width: 320px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
    transition: 0.25s ease;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.guide-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

.guide-card h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.guide-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid #1c1c1c;
  background: #ffffff;
  color: #1c1c1c;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.guide-btn:hover {
  background: #ffb347;
  border-color: #ffb347;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 179, 71, 0.35);
}



/* === PRODUCTS === */
.section-title {
    text-align: left;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 30px;
}
.products-section {
  padding: 50px 0;
}

.products-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  width: 360px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-content {
  padding: 26px;
  text-align: center;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin-bottom: 24px;
}

.product-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #ffb347;
  border: 1px solid #ffb347;
  color: #000;
  margin: 0 auto 10px;
}

.product-btn:hover {
  transform: translateY(-3px);
  background: #ffa72c;
  box-shadow: 0 8px 18px rgba(255, 179, 71, 0.35);
}

.product-stats {
  background: #f1f1f5;
  padding: 14px 0;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #e4e4e4;
}

.stat-item {
  text-align: center;
  font-size: 14px;
  color: #444;
}

.stat-icon {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}



/* === FOOTER === */
footer {
    background: #ebebeb;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 34px;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
}

.footer-right p {
    margin: 6px 0;
    font-size: 14px;
}



/* === MOBILE === */
@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats,
    .guides-grid,
    .products-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .menu {
        display: none;
    }
}