:root {
  --bg: #f6f2eb;
  --surface: #ffffff;
  --dark: #121212;
  --dark-2: #1a1a1a;
  --text: #242424;
  --muted: #6d6a65;
  --accent: #b87333;
  --accent-dark: #8e5225;
  --line: rgba(25, 25, 25, 0.12);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(29, 22, 16, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Vazirmatn", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 235, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--dark);
  color: #fff;
}

.brand{
    display:flex;
    align-items:center;
}

.logo{
    height:70px;
    width:auto;
    object-fit:contain;
}

.brand-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.6px;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  border: 1px solid var(--accent);
  transition: 0.25s ease;
  box-shadow: 0 12px 26px rgba(184, 115, 51, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
  color: white;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding-block: 70px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.88rem;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.18;
  letter-spacing: -2px;
}

.hero-content > p {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1.05rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.28), transparent 65%);
  filter: blur(5px);
}

.machine {
  position: relative;
  width: min(100%, 520px);
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.25));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: white;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.75rem;
}

.card-one {
  right: -20px;
  top: 90px;
}

.card-two {
  left: -10px;
  bottom: 80px;
}

.brands-strip {
  background: var(--dark);
  color: white;
  padding: 26px 0;
}

.brands-strip .container {
  display: flex;
  align-items: center;
  gap: 35px;
}

.brands-strip p {
  white-space: nowrap;
  color: #bdbdbd;
  font-size: 0.85rem;
}

.brand-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  color: #e4e4e4;
  font-weight: 700;
  opacity: 0.78;
}

.section {
  padding: 110px 0;
}

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

.section-heading h2,
.split h2,
.cta-box h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.35;
}

.section-heading p,
.lead,
.cta-box p {
  color: var(--muted);
  margin-top: 15px;
}

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

.service-card {
  min-height: 245px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border-radius: 14px;
  background: #f4e5d6;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.91rem;
}

.dark-section {
  background: var(--dark);
  color: white;
}

.dark-section .eyebrow {
  color: #d89b62;
}

.dark-section .lead {
  color: #aaa;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.check-list > div {
  padding: 24px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
}

.check-list span {
  color: #d89b62;
  font-weight: 800;
  font-size: 0.8rem;
}

.check-list p {
  margin-top: 12px;
  color: #aaa;
  font-size: 0.9rem;
}

.check-list strong {
  display: block;
  color: white;
  font-size: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 28px;
  border-top: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 0 0 18px 18px;
}

.step span {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
}

.step h3 {
  margin-top: 14px;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-section {
  position: relative;
  top: 3rem;
  padding: 0 0 100px;
}

.cta-box {
  padding: 55px;
  background: linear-gradient(125deg, #2c1b11, #121212 62%);
  color: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: #bcbcbc;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.btn-outline-light {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.28);
}

footer {
  padding: 70px 0 22px;
  background: #0c0c0c;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 20px;
  position: relative;
  top: 1rem;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: #aaa;
  font-size: 0.88rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid h4 {
  margin-bottom: 8px;
}

.copyright {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #777;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    padding: 22px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .nav-wrap > .btn {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content > p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

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

  .brands-strip .container {
    display: block;
  }

  .brands-strip p {
    margin-bottom: 15px;
    text-align: center;
  }

  .brand-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    height: 72px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 48px 30px;
    gap: 20px;
  }

  .hero h1 {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row strong {
    font-size: 0.88rem;
  }

  .trust-row span {
    font-size: 0.68rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .floating-card {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .card-one {
    right: 0;
    top: 55px;
  }

  .card-two {
    left: 0;
    bottom: 40px;
  }

  .section {
    padding: 75px 0;
  }

  .cards,
  .check-list,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .cta-box {
    padding: 34px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    min-width: auto;
  }

  .footer-grid {
    gap: 38px;
  }
}

.hero-logo{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:auto;
    object-fit:contain;

    filter: drop-shadow(0 20px 40px rgba(0,0,0,.18));
}