﻿.why-zuki {
  position: relative;
  padding: 80px 20px;
  z-index: 2;
}

.why-zuki-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.why-zuki-heading {
  margin-bottom: 32px;
  max-width: 700px;
}

.why-zuki-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9d9d9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-zuki-heading h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
}

.why-zuki-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.why-zuki-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.why-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.why-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .why-zuki-heading h2 {
    font-size: 38px;
  }

  .why-zuki-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .why-zuki {
    padding: 60px 16px;
  }

  .why-zuki-inner {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .why-zuki-heading h2 {
    font-size: 32px;
  }

  .why-zuki-heading p {
    font-size: 16px;
  }

  .why-card {
    padding: 22px;
  }

  .why-card h3 {
    font-size: 21px;
  }
}
.zuki-stats {
  padding: 90px 20px;
  position: relative;
  z-index: 2;
}

.zuki-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.zuki-stats-heading {
  text-align: center;
  margin-bottom: 40px;
}

.zuki-stats-heading span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zuki-stats-heading h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
}

.zuki-stats-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.zuki-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zuki-stat-card {
  text-align: center;
  padding: 34px 24px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.zuki-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.zuki-stat-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.zuki-stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 991px) {
  .zuki-stats {
    padding: 70px 16px;
  }

  .zuki-stats-inner {
    padding: 38px 22px;
    border-radius: 28px;
  }

  .zuki-stats-heading h2 {
    font-size: 36px;
  }

  .zuki-stats-grid {
    grid-template-columns: 1fr;
  }

  .zuki-stat-card h3 {
    font-size: 46px;
  }

  .zuki-stat-card p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .zuki-stats-heading h2 {
    font-size: 30px;
  }

  .zuki-stats-heading p {
    font-size: 16px;
  }

  .zuki-stat-card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .zuki-stat-card h3 {
    font-size: 40px;
  }

  .zuki-stat-card p {
    font-size: 17px;
  }
}
.zuki-search-section {
  padding: 90px 20px;
  position: relative;
  z-index: 2;
}

.zuki-search-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.zuki-search-heading {
  text-align: center;
  margin-bottom: 28px;
}

.zuki-search-heading span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zuki-search-heading h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
}

.zuki-search-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.zuki-search-form {
  width: 100%;
}

.zuki-search-box {
  display: flex;
  align-items: center;
  min-height: 72px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.zuki-search-box:focus-within {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.zuki-search-icon {
  width: 72px;
  min-width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.zuki-search-box input[type="text"] {
  flex: 1;
  height: 72px;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  padding: 0 20px;
  box-shadow: none;
}

.zuki-search-box input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.zuki-search-box button {
  height: 72px;
  border: 0;
  outline: none;
  padding: 0 28px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.zuki-search-box button:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .zuki-search-section {
    padding: 70px 16px;
  }

  .zuki-search-wrap {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .zuki-search-heading h2 {
    font-size: 34px;
  }

  .zuki-search-heading p {
    font-size: 16px;
  }

  .zuki-search-box {
    min-height: 64px;
    border-radius: 18px;
  }

  .zuki-search-icon {
    width: 60px;
    min-width: 60px;
    height: 64px;
    font-size: 24px;
  }

  .zuki-search-box input[type="text"] {
    height: 64px;
    font-size: 16px;
  }

  .zuki-search-box button {
    height: 64px;
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .zuki-search-box {
    flex-wrap: wrap;
    background: transparent;
    border: 0;
    overflow: visible;
    gap: 12px;
  }

  .zuki-search-icon {
    display: none;
  }

  .zuki-search-box input[type="text"] {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 16px;
  }

  .zuki-search-box button {
    width: 100%;
    height: 56px;
    border-radius: 16px;
  }
}
.zuki-categories {
  padding: 90px 20px;
  position: relative;
  z-index: 2;
}

.zuki-categories-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 36px;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.zuki-categories-heading {
  text-align: center;
  margin-bottom: 36px;
}

.zuki-categories-heading span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zuki-categories-heading h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
}

.zuki-categories-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.zuki-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zuki-category-card {
  display: block;
  text-decoration: none;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.zuki-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.zuki-category-image {
  position: relative;
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  background: #0b0b0f;
}

.zuki-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.zuki-category-card:hover .zuki-category-image img {
  transform: scale(1.04);
}

.zuki-category-content {
  padding: 22px 22px 24px;
  text-align: center;
}

.zuki-category-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.zuki-category-content span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .zuki-categories {
    padding: 70px 16px;
  }

  .zuki-categories-inner {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .zuki-categories-heading h2 {
    font-size: 36px;
  }

  .zuki-categories-heading p {
    font-size: 16px;
  }

  .zuki-categories-grid {
    grid-template-columns: 1fr;
  }

  .zuki-category-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .zuki-categories-heading h2 {
    font-size: 30px;
  }

  .zuki-category-card {
    border-radius: 22px;
  }

  .zuki-category-content {
    padding: 18px 18px 20px;
  }
}
.zuki-products {
  padding: 90px 20px;
  position: relative;
  z-index: 2;
}

.zuki-products-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 50px 36px;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.zuki-products-heading {
  text-align: center;
  margin-bottom: 36px;
}

.zuki-products-heading span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zuki-products-heading h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
}

.zuki-products-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.zuki-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.zuki-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  min-height: 100%;
}

.zuki-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.zuki-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 22px 22px;
  min-height: 240px;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 60%,
    transparent 100%
  );
}

.zuki-product-image img {
  max-width: 170px;
  max-height: 170px;
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.zuki-product-card:hover .zuki-product-image img {
  transform: scale(1.05);
}

.zuki-product-content {
  padding: 0 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.zuki-product-content h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.zuki-product-category {
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.zuki-product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.zuki-product-price {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.zuki-product-price del {
  color: rgba(255, 255, 255, 0.38);
  font-size: 18px;
  margin-left: 6px;
}

.zuki-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.zuki-product-card:hover .zuki-product-button {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.zuki-sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

@media (max-width: 991px) {
  .zuki-products {
    padding: 70px 16px;
  }

  .zuki-products-inner {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .zuki-products-heading h2 {
    font-size: 36px;
  }

  .zuki-products-heading p {
    font-size: 16px;
  }

  .zuki-product-content h3 {
    font-size: 24px;
  }

  .zuki-product-price {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .zuki-products-grid {
    grid-template-columns: 1fr;
  }

  .zuki-product-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .zuki-product-button {
    width: 100%;
  }

  .zuki-product-price {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .zuki-products-heading h2 {
    font-size: 30px;
  }

  .zuki-product-card {
    border-radius: 22px;
  }

  .zuki-product-content {
    padding: 0 18px 20px;
  }

  .zuki-product-image {
    min-height: 210px;
    padding: 28px 18px 18px;
  }

  .zuki-product-image img {
    max-width: 145px;
    max-height: 145px;
  }
}
.zuki-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 50px 40px;
  border-radius: 36px;
}

.zuki-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.66) 34%,
    rgba(0, 0, 0, 0.36) 63%,
    rgba(0, 0, 0, 0.14) 100%
  );
  z-index: 1;
}

.zuki-hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.zuki-hero-content {
  max-width: 650px;
}

.zuki-hero-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.zuki-hero-content h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -1.6px;
  max-width: 700px;
}

.zuki-hero-content p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.55;
  max-width: 620px;
}

.zuki-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.zuki-btn-primary,
.zuki-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.22s ease;
}

.zuki-btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20);
}

.zuki-btn-primary:hover {
  transform: translateY(-2px);
}

.zuki-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.zuki-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
}

.zuki-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zuki-trust-item {
  min-width: 135px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.zuki-trust-item strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 4px;
}

.zuki-trust-item span {
  display: block;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.4;
}

.zuki-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.zuki-hero-image img {
  width: 260px;
  max-width: 100%;
  display: block;
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
}

@media (max-width: 991px) {
  .zuki-hero {
    min-height: auto;
    padding: 60px 20px;
    border-radius: 28px;
  }

  .zuki-hero-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zuki-hero-content h1 {
    font-size: 42px;
  }

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

  .zuki-hero-image {
    justify-content: flex-start;
  }

  .zuki-hero-image img {
    width: 220px;
  }
}

@media (max-width: 575px) {
  .zuki-hero {
    border-radius: 22px;
  }

  .zuki-hero-content h1 {
    font-size: 34px;
  }

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

  .zuki-btn-primary,
  .zuki-btn-secondary {
    width: 100%;
  }

  .zuki-trust-item {
    width: 100%;
  }
}
</style>
	</head>


<body class="home wp-singular page-template-default page page-id-7
