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

:root{
  --ink:#17111f;
  --muted:#6c6576;
  --purple:#5a20ff;
  --purple-dark:#17003a;
  --soft:#f7f3ff;
  --line:#e7ddfb;
  --green:#25d366;
  --white:#fff;
  --shadow:0 28px 85px rgba(23,0,58,.14);
}

html{scroll-behavior:smooth}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:#fff;
  color:var(--ink);
  line-height:1.6;
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(1160px,92%);
  margin:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo-wrap img{width:190px}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:800;
  color:#34283f;
}

.nav-button{
  background:linear-gradient(135deg,var(--purple),var(--purple-dark));
  color:#fff!important;
  padding:14px 22px;
  border-radius:999px;
  box-shadow:0 16px 34px rgba(90,32,255,.2);
}

.menu-toggle{
  display:none;
  border:0;
  background:var(--soft);
  color:var(--purple-dark);
  font-size:28px;
  border-radius:14px;
  padding:8px 13px;
}

.hero{
  padding:90px 0 78px;
  background:
    radial-gradient(circle at 80% 8%,rgba(90,32,255,.16),transparent 30%),
    linear-gradient(180deg,#fff 0%,#fbf9ff 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:60px;
  align-items:center;
}

.pill,
.small-title{
  display:inline-flex;
  align-items:center;
  color:var(--purple);
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 13px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 10px 24px rgba(23,0,58,.05);
  margin-bottom:18px;
}

h1{
  font-size:clamp(46px,6vw,76px);
  line-height:.96;
  letter-spacing:-.065em;
  font-weight:900;
  margin-bottom:24px;
}

.hero-copy p{
  font-size:21px;
  color:var(--muted);
  max-width:680px;
  margin-bottom:30px;
}

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

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:900;
  transition:.2s ease;
}

.button:hover{transform:translateY(-2px)}

.button.primary{
  color:white;
  background:linear-gradient(135deg,var(--purple),var(--purple-dark));
  box-shadow:0 18px 42px rgba(90,32,255,.22);
}

.button.secondary{
  background:#fff;
  border:1px solid var(--line);
  color:var(--purple-dark);
}

.hero-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.hero-trust div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
}

.hero-trust strong{
  display:block;
  font-size:17px;
  color:var(--ink);
}

.hero-trust span{
  color:var(--muted);
  font-size:14px;
}

.hero-photo-card{
  position:relative;
  border-radius:34px;
  padding:18px;
  background:white;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-photo{
  min-height:520px;
  border-radius:26px;
  background:
    linear-gradient(180deg,rgba(23,0,58,.08),rgba(23,0,58,.34)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80');
  background-size:cover;
  background-position:center;
}

.photo-overlay-card{
  position:absolute;
  left:42px;
  right:42px;
  bottom:42px;
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:0 18px 45px rgba(23,0,58,.16);
}

.photo-overlay-card strong{
  display:block;
  font-size:24px;
  margin-bottom:4px;
}

.photo-overlay-card span{
  color:var(--muted);
}

.supply-network{
  padding:58px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}

.supply-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:end;
  margin-bottom:28px;
}

.supply-grid h2,
.section-heading h2,
.trade-content h2,
.about h2,
.cta-box h2,
.contact h2{
  font-size:clamp(34px,5vw,56px);
  line-height:1.05;
  letter-spacing:-.045em;
  font-weight:900;
  margin-bottom:14px;
}

.supply-grid p,
.section-heading p,
.trade-content p,
.about-panel p,
.cta-box p,
.contact-copy p{
  color:var(--muted);
  font-size:19px;
}

.inline-link{
  display:inline-flex;
  margin-top:16px;
  color:var(--purple);
  font-weight:900;
}

.category-strip{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}

.category-strip span{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:18px;
  font-weight:900;
  color:var(--purple-dark);
}

.products,
.trade,
.about,
.contact{
  padding:92px 0;
}

.section-heading{
  max-width:780px;
  text-align:center;
  margin:0 auto 46px;
}

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

.product-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 18px 52px rgba(23,0,58,.08);
  transition:.2s ease;
}

.product-card:hover{transform:translateY(-5px)}

.product-photo{
  min-height:265px;
  background-size:cover;
  background-position:center;
}

.food-photo{
  background-image:linear-gradient(180deg,rgba(23,0,58,.03),rgba(23,0,58,.22)),url('https://images.unsplash.com/photo-1601598851547-4302969d0614?auto=format&fit=crop&w=900&q=80');
}

.household-photo{
  background-image:linear-gradient(180deg,rgba(23,0,58,.03),rgba(23,0,58,.22)),url('https://images.unsplash.com/photo-1585421514738-01798e348b17?auto=format&fit=crop&w=900&q=80');
}

.beauty-photo{
  background-image:linear-gradient(180deg,rgba(23,0,58,.03),rgba(23,0,58,.22)),url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=900&q=80');
}

.product-content{
  padding:26px;
}

.product-content h3{
  font-size:25px;
  margin-bottom:10px;
}

.product-content p{
  color:var(--muted);
}

.trade{
  background:linear-gradient(180deg,#fbf9ff,#fff);
}

.trade-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:center;
}

.trade-photo{
  min-height:520px;
  border-radius:34px;
  background:
    linear-gradient(180deg,rgba(23,0,58,.05),rgba(23,0,58,.28)),
    url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=1100&q=80');
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}

.benefit-list{
  display:grid;
  gap:12px;
  margin:28px 0;
}

.benefit-list div{
  background:white;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  font-weight:800;
}

.benefit-list span{
  color:var(--purple);
  margin-right:8px;
}

.about{
  background:var(--soft);
}

.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:start;
}

.about-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:34px;
  box-shadow:var(--shadow);
}

.about-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}

.about-points div{
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  background:#fff;
}

.about-points strong{
  display:block;
  color:var(--purple);
  margin-bottom:8px;
}

.about-points span{
  font-weight:800;
}

.cta-section{
  padding:66px 0;
  background:#fff;
}

.cta-box{
  border-radius:34px;
  background:linear-gradient(135deg,var(--purple),var(--purple-dark));
  color:white;
  padding:48px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  box-shadow:var(--shadow);
}

.cta-box h2{color:#fff}
.cta-box p{color:#eee7ff}

.small-title.light{
  color:white;
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.24);
}

.button.white{
  background:#fff;
  color:var(--purple-dark);
  white-space:nowrap;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:46px;
  align-items:start;
}

.contact-card{
  margin-top:28px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:26px;
  padding:26px;
}

.contact-card p{
  margin:9px 0;
}

.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:32px;
  box-shadow:var(--shadow);
}

.contact-form label{
  display:block;
  font-weight:900;
  margin:14px 0 7px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #d8cdea;
  border-radius:16px;
  padding:15px 16px;
  font-size:16px;
  font-family:inherit;
  outline:none;
}

.contact-form textarea{
  min-height:150px;
  resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--purple);
  box-shadow:0 0 0 4px rgba(90,32,255,.08);
}

.contact-form button{
  width:100%;
  border:0;
  border-radius:999px;
  margin-top:18px;
  padding:18px 24px;
  background:linear-gradient(135deg,var(--purple),var(--purple-dark));
  color:white;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.contact-form small{
  display:block;
  color:var(--muted);
  margin-top:12px;
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:120;
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--green);
  color:white;
  border-radius:999px;
  padding:13px 16px;
  box-shadow:0 20px 48px rgba(37,211,102,.34);
  font-weight:900;
}

.whatsapp-float svg{
  width:30px;
  height:30px;
  fill:white;
  display:block;
}

.footer{
  background:var(--purple-dark);
  color:white;
  padding:50px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:30px;
}

.footer img{
  width:190px;
  margin-bottom:16px;
}

.footer p{
  color:#ddd1ff;
  margin:7px 0;
}

@media(max-width:950px){
  .menu-toggle{display:block}

  .nav-links{
    display:none;
    position:absolute;
    top:82px;
    left:0;
    width:100%;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:22px 4%;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links.active{display:flex}

  .logo-wrap img{width:160px}

  .hero{
    padding:52px 0 58px;
  }

  .hero-grid,
  .supply-grid,
  .trade-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:43px;
    letter-spacing:-.045em;
  }

  .hero-copy p{
    font-size:18px;
  }

  .hero-trust,
  .product-grid,
  .about-points,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .category-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-photo,
  .trade-photo{
    min-height:380px;
  }

  .cta-box{
    display:block;
    padding:34px 24px;
  }

  .cta-box .button{
    margin-top:24px;
  }

  .whatsapp-float span{
    display:none;
  }

  .products,
  .trade,
  .about,
  .contact{
    padding:70px 0;
  }
}
