/* Generated by script */
@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("fonts/Vazirmatn-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lalezar";
  src: url(fonts/Lalezar-Regular.ttf);
}


.gradient-light {
 
  background: linear-gradient(
    120deg,
    #0c3d2e,
    #10513e,
    #1f8a6f,
    #b9862e,
    #84fab0,
    #58655d
  );
  background-size: 300% 300%;
  animation: rotateColors 12s ease-in-out infinite;
}

@keyframes rotateColors {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

:root {
  --cream: #fbf6ec;
  --cream-2: #f2ebda;
  --emerald-900: #0c3d2e;
  --emerald-800: #10513e;
  --emerald-700: #146353;
  --emerald-500: #1f8a6f;
  --emerald-100: #deeee5;
  --gold-600: #815813;
  --gold-500: #c9973b;
  --gold-200: #f1dfb6;
  --ink: #1b2420;
  --ink-soft: #58655d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Vazirmatn", sans-serif;
  line-height: 1.9;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.display {
  font-family: "Lalezar", "Vazirmatn", sans-serif;
  font-weight: 400;
  line-height: 1.35;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- thread motif (signature) ---------- */
.thread {
  display: block;
  height: 2px;
  background-image: repeating-linear-gradient(
    to left,
    var(--gold-500) 0 8px,
    transparent 8px 16px
  );
  border: none;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(251, 246, 236, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 99, 83, 0.12);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  padding-top: 13px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--emerald-700), var(--emerald-900));
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(12, 61, 46, 0.35);
}
.brand-name {
  font-family: "Lalezar", sans-serif;
  font-size: 1.5rem;
  color: var(--emerald-900);
  display: flex;
  align-items: baseline;
  gap: 6px;
  height: 30px;
}
.brand-name .dot {
  color: var(--gold-500);
}
.brand-tag {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-family: "Vazirmatn";
  margin-top: -2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-block;
  font-family: "Vazirmatn";
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    0.25s transform ease,
    0.25s box-shadow ease,
    0.25s background ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--emerald-700);
  color: var(--emerald-800);
  background: transparent;
}
.btn-outline:hover {
  background: var(--emerald-100);
}
.btn-solid {
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  color: #fff;
  box-shadow: 0 8px 18px rgba(185, 134, 46, 0.35);
}
.btn-solid:hover {
  box-shadow: 0 12px 22px rgba(185, 134, 46, 0.45);
}
.btn-ghost {
  border-color: rgba(27, 36, 32, 0.2);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(27, 36, 32, 0.05);
}
.btn-lg {
  padding: 15px 40px;
  font-size: 1.05rem;
}

/* ---------- hero ---------- */
.hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(
      600px 320px at 85% -10%,
      var(--emerald-100) 0%,
      transparent 70%
    ),
    var(--cream);
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-copy {
  flex: 1 1 460px;
  min-width: 300px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-100);
  color: var(--emerald-800);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  margin: 0 0 22px;
  color: var(--ink);
}
.gradient-text {
  background: linear-gradient(90deg, var(--emerald-700), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.stat-row {
  display: flex;
  justify-content: space-around;
  gap: 0;
}
.stat {
  padding: 0 26px;
  text-align: center;
  position: relative;
}
.stat:first-child {
  padding-inline-start: 0;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--gold-500) 0 5px,
    transparent 5px 10px
  );
}
.stat b {
  display: block;
  font-family: "Lalezar";
  font-size: 1.7rem;
  color: var(--emerald-800);
}
.stat span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ---------- hero visual : phone chat mock ---------- */
.hero-visual {
  flex: 1 1 380px;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  width: 300px;
  background: #fff;
  border-radius: 34px;
  padding: 14px;
  box-shadow:
    0 30px 60px -20px rgba(12, 61, 46, 0.35),
    0 0 0 8px rgba(12, 61, 46, 0.06);
  position: relative;
  z-index: 2;
  animation: floatUp 0.7s ease both;
}
.phone-notch {
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background: var(--emerald-100);
  margin: 0 auto 10px;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 14px;
  border-bottom: 1px solid var(--cream-2);
  margin-bottom: 12px;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--emerald-100);
  font-size: 1.1rem;
}
.chat-header strong {
  display: block;
  font-size: 0.92rem;
}
.chat-header small {
  color: var(--emerald-600, #2b8f6d);
  font-size: 0.72rem;
}

.bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  line-height: 1.7;
}
.bubble-in {
  background: var(--cream-2);
  border-start-start-radius: 4px;
}
.bubble-out {
  background: var(--emerald-700);
  color: #fff;
  margin-inline-start: auto;
  border-start-end-radius: 4px;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--gold-200);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
}
.product-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-200);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex: none;
}
.product-info {
  flex: 1;
  min-width: 0;
}
.product-info strong {
  display: block;
  font-size: 0.8rem;
}
.product-info .price {
  font-size: 0.75rem;
  color: var(--gold-600);
  font-weight: 700;
}
.product-btn {
  background: var(--gold-500);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.floating-dash {
  position: absolute;
  z-index: 3;
  width: 190px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 34px -12px rgba(12, 61, 46, 0.4);
  inset-inline-start: -38px;
  bottom: -30px;
  transform: rotate(-4deg);
  animation: floatUp 0.8s 0.15s ease both;
}
.floating-dash .fd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.floating-dash .fd-head span {
  color: #2b8f6d;
  font-weight: 600;
  font-size: 0.7rem;
}
.fd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fd-box {
  background: var(--cream-2);
  border-radius: 10px;
  text-align: center;
  padding: 8px 4px;
  font-size: 0.68rem;
  color: var(--ink-soft);
}
.fd-box b {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(var(--r, 0deg));
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--r, 0deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .phone,
  .floating-dash {
    animation: none;
  }
}

/* ---------- features ---------- */
.features {
  padding: 100px 0;
  background: var(--cream-2);
}
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: 2.2rem;
  margin: 0 0 12px;
  color: var(--emerald-900);
}
.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  border-top: 4px solid var(--gold-500);
  box-shadow: 0 12px 30px -18px rgba(12, 61, 46, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px -16px rgba(12, 61, 46, 0.32);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--emerald-100);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}
.feature-card h4 {
  font-family: "Lalezar";
  font-size: 1.3rem;
  color: var(--emerald-900);
  margin: 0 0 10px;
}
.feature-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.92rem;
}

/* ---------- cta ---------- */
.cta-wrap {
  padding: 90px 0 110px;
}
.cta-box {
  position: relative;
  overflow: hidden;
  
  border-radius: 32px;
  padding: 70px 30px;
  text-align: center;
  color: #130909;
}

.cta-box > * {
  position: relative;
}
.cta-box h2 {
  font-family: "Lalezar";
  font-size: 2.3rem;
  margin: 0 0 14px;
}
.cta-box p {
  opacity: 0.85;
  margin: 0 0 30px;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .floating-dash {
    display: none;
  }
  .hero {
    padding-top: 130px;
  }
  .btn {
    padding: 0px 16px;
    border-radius: 10px;
    font-size: 0.9em;
  }
}
