@font-face {
    font-family: 'yekan-bakh';
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.eot');
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.ttf');
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.woff');
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.woff2');
}

@font-face {
    font-family: 'yekan-bakh-heavy';
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-heavy.eot');
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-hevy.ttf');
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-heavy.woff');
    src: url('yekan-bakh/yekan-bakh-heavy/yekan-bakh-en-07-heavy.woff2');
}

@font-face {
    font-family: 'yekan-bakh-light';
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.eot');
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.ttf');
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.woff');
    src: url('yekan-bakh/yekan-bakh-light/yekan-bakh-en-03-light.woff2');
}

@font-face {
    font-family: 'yekan-bakh-bold';
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.eot');
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.ttf');
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.woff');
    src: url('yekan-bakh/yekan-bakh-bold/yekan-bakh-en-06-bold.woff2');
}

:root{
  --bg: #f8f6ef;
  --bg-soft: #f2efe5;
  --card: #ffffff;
  --card-strong: #fcfbf7;
  --line: rgba(58, 87, 42, 0.10);

  --text: #1f2a1f;
  --muted: #5f6f5c;

  --primary: #6d8f39;
  --primary-2: #b8d14e;
  --primary-dark: #486128;
  --accent: #dff0a6;

  --radius: 22px;
  --radius-sm: 16px;

  --shadow: 0 16px 45px rgba(76, 98, 53, 0.10);
  --container: 1120px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "yekan-bakh", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(184,209,78,0.20), transparent 26%),
    radial-gradient(circle at top left, rgba(109,143,57,0.10), transparent 20%),
    linear-gradient(180deg, #fbfaf5 0%, #f6f3ea 100%);
  color: var(--text);
  line-height: 1.9;
}

a{
  text-decoration: none;
  color: inherit;
}

.container{
  width: min(100% - 28px, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(58,87,42,0.08);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav{
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
}

.brand-logo{
  width: auto;
  height: 70px;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

.nav-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 14px;
  font-family: 'yekan-bakh-bold';
  font-size: 0.95rem;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border: 1px solid rgba(109,143,57,0.18);
  box-shadow: 0 12px 24px rgba(109,143,57,0.20);
  transition: .25s ease;
}

.nav-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(109,143,57,0.28);
}

/* Hero */
.hero{
  padding: 42px 0 20px;
}

.hero-inner{
  max-width: 780px;
}

.eyebrow{
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(109,143,57,0.08);
  border: 1px solid rgba(109,143,57,0.12);
  color: var(--primary-dark);
  font-size: 0.9rem;
  margin-bottom: 18px;
  font-family: 'yekan-bakh-bold';
}

.hero h1{
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.25;
  font-family: 'yekan-bakh-heavy';
  letter-spacing: -0.5px;
  color: var(--text);
}

.hero h1 span{
  display: block;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text{
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(109,143,57,0.16);
}

.btn-secondary{
  border-color: rgba(109,143,57,0.16);
  background: rgba(255,255,255,0.78);
  color: var(--text);
}

.btn-large{
  min-height: 54px;
  padding: 0 24px;
}

/* Sections */
.section{
  padding: 34px 0;
}

.section-soft{
  background: linear-gradient(180deg, rgba(109,143,57,0.04), rgba(255,255,255,0.45));
}

.section-head{
  margin-bottom: 18px;
}

.section-kicker{
  display: inline-block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-family: 'yekan-bakh-bold';
}

.section-head h2,
.brand-box h2,
.shipping-box h2,
.cta-box h2{
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.5;
  color: var(--text);
}

/* Cards */
.feature-card,
.pack-item,
.brand-box,
.shipping-box,
.cta-box,
.pack-card{
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Features */
.feature-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-card{
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.feature-card p{
  margin: 0;
  color: var(--text);
}

.highlight-box{
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(184,209,78,0.18), rgba(255,255,255,0.90));
  border: 1px solid rgba(109,143,57,0.12);
}

.highlight-box p{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

/* Brand / Shipping / CTA */
.brand-box,
.shipping-box,
.cta-box{
  border-radius: var(--radius);
  padding: 24px;
}

.brand-box p,
.shipping-box p{
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #ffffff, #f4f8e8);
}

/* Lists */
.elegant-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.elegant-list li{
  position: relative;
  padding: 8px 10px;
  padding-right: 40px;
  border-radius: 16px;
  color: var(--text);
}

.elegant-list li::before{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 7px rgba(184,209,78,0.16);
}

/* Premium Shipping Box */
.shipping-box--premium{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(109,143,57,0.16);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(184,209,78,0.22), transparent 55%),
    radial-gradient(700px 320px at 10% 110%, rgba(109,143,57,0.08), transparent 60%),
    #ffffff;
}

.shipping-box--premium::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(184,209,78,0.12), transparent 35%);
  opacity: 0.8;
}

.shipping-head{
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.shipping-title{
  margin: 0;
  font-family: 'yekan-bakh-heavy';
  letter-spacing: -0.2px;
  color: var(--text);
}

.shipping-sub{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 56ch;
}

.elegant-list--premium{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  position: relative;
}

.elegant-list--premium li{
  position: relative;
  padding: 12px 14px;
  padding-right: 46px;
  border-radius: 16px;
  border: 1px solid rgba(109,143,57,0.10);
  background: rgba(248,246,239,0.95);
  color: var(--text);
}

.elegant-list--premium li::before{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow:
    0 0 0 7px rgba(184,209,78,0.14),
    0 12px 30px rgba(184,209,78,0.10);
}

.elegant-list--premium li::after{
  content: "";
  position: absolute;
  left: 14px;
  right: 46px;
  bottom: -6px;
  height: 1px;
  background: rgba(109,143,57,0.08);
  opacity: 0.6;
}
.elegant-list--premium li:last-child::after{ display:none; }

/* Packaging */
.section-head--center{
  text-align: center;
  margin-bottom: 18px;
}

.section-title{
  margin: 0;
  color: var(--text);
  font-family: 'yekan-bakh-heavy';
  letter-spacing: -0.2px;
}

.section-head--center .section-kicker{
  color: var(--primary);
}

.section-sub{
  margin: 8px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.pack-hero{
  margin: 16px auto 14px;
  width: min(320px, 78vw);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(109,143,57,0.16);
  background:
    radial-gradient(900px 420px at 80% 0%, rgba(184,209,78,0.15), transparent 55%),
    #ffffff;
  box-shadow: 0 20px 55px rgba(109,143,57,0.12);
}

.pack-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(1.05);
}

.pack-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 45%);
  opacity: 0.6;
}

.pack-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.pack-card{
  position: relative;
  border-radius: 18px;
  padding: 16px 16px;
  padding-right: 52px;
  background:
    radial-gradient(700px 240px at 90% 0%, rgba(184,209,78,0.12), transparent 55%),
    #ffffff;
}

.pack-card p{
  margin: 0;
  color: var(--text);
}

.pack-icon{
  position: absolute;
  right: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(184,209,78,0.14);
  border: 1px solid rgba(109,143,57,0.16);
  box-shadow: 0 12px 30px rgba(184,209,78,0.10);
}

.pack-icon::before{
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

/* CTA */
.mobile-cta2 a,
.mobile-cta a{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: 'yekan-bakh-bold';
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(109,143,57,0.18);
}

/* Footer */
.site-footer{
  margin-top: 26px;
  border-top: 1px solid rgba(109,143,57,0.10);
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(184,209,78,0.12), transparent 55%),
    #f6f3ea;
}

.footer-inner{
  padding: 22px 0 18px;
  display: grid;
  gap: 16px;
}

.footer-brand{
  display: grid;
  gap: 10px;
}

.footer-logo img{
  max-width: 140px;
  height: auto;
  display: block;
}

.footer-note{
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-note a{
  color: var(--primary-dark);
  border-bottom: 1px dashed rgba(109,143,57,0.35);
}

.footer-trust{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.trust-item{
  border: 1px solid rgba(109,143,57,0.10);
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-placeholder{
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-item img{
  max-width: 100%;
  max-height: 72px;
  height: auto;
  display: block;
}

.footer-copy{
  padding-top: 6px;
  color: #788674;
  font-size: 0.88rem;
  border-top: 1px solid rgba(109,143,57,0.08);
}

/* Responsive */
@media (min-width: 768px){
  .feature-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .pack-list,
  .pack-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px){
  body{
    padding-bottom: 0;
  }

  .mobile-cta{
    display: none;
  }

  .hero{
    padding: 80px 0 40px;
  }

  .feature-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px){
  .footer-inner{
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
  .footer-copy{
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px){
  .elegant-list--premium li{
    padding: 11px 12px;
    padding-right: 44px;
  }
}

@media (max-width: 360px){
  .brand-logo{ height: 54px; }
  .nav-btn{ padding: 9px 12px; font-size: 0.9rem; }
}
