:root {
  --brand-blue: #12308b;
  --brand-gold: #9f8a25;
  --brand-blue-dark: #0d2366;
  --brand-text: #1f2937;
  --brand-muted: #6b7280;
  --brand-border: #e5e7eb;
  --brand-bg-soft: #f8fafc;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(18, 48, 139, 0.08);
  --shadow-hover: 0 18px 40px rgba(18, 48, 139, 0.14);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--brand-text);
  background: var(--white);
  line-height: 1.7;
  padding-top: 88px;
}

html[dir="rtl"] body {
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  direction: rtl;
  text-align: right;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
}

.navbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-blue);
}

.brand-tagline {
  font-size: 0.74rem;
  color: var(--brand-gold);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-menu a {
  color: var(--brand-blue);
  font-weight: 800;
}

.nav-menu a:hover {
  color: var(--brand-gold);
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 0.6rem;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}

/* Sections */
.section-padding {
  padding: 90px 0;
}

.section-bg-light {
  background: var(--brand-bg-soft);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

html[dir="rtl"] .section-kicker {
  letter-spacing: 0;
}

.section-title {
  /*font-size: clamp(2rem, 3vw, 2.75rem);*/
	font-size: clamp(0.9rem, 1.875vw, 1.6875rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--brand-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.section-header {
  max-width: 780px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
  transition: all 0.25s ease;
}

.btn-brand-primary {
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  color: var(--white);
}

.btn-brand-primary:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-brand-secondary {
  background: transparent;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
}

.btn-brand-secondary:hover {
  background: var(--brand-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(18, 48, 139, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(159, 138, 37, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(18, 48, 139, 0.05), rgba(159, 138, 37, 0.05)),
    #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  /*font-size: clamp(2.4rem, 5vw, 4.5rem);*/
	/*font-size: clamp(1.2rem, 2.5vw, 2.25rem);*/
	font-size: clamp(0.9rem, 1.875vw, 1.6875rem);
  line-height: 1.08;
  color: var(--brand-blue);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  max-width: 680px;
  color: var(--brand-muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-item strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.1rem;
  font-weight: 900;
}

.trust-item span {
  color: var(--brand-muted);
  font-size: 0.95rem;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
}

.hero-image,
.hero-image-small,
.section-feature-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.hero-image {
  min-height: 520px;
  height: 100%;
}

.hero-image-small {
  min-height: 250px;
  height: 100%;
}

.hero-image-small-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

/* Layout Grids */
.two-column-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Cards */
.about-card,
.service-card,
.contact-card,
.market-card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-card,
.contact-card {
  padding: 2rem;
}

.service-card {
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 48, 139, 0.08);
  color: var(--brand-gold);
  font-size: 1.5rem;
}

.service-card h3,
.about-card h3,
.contact-card h3 {
  color: var(--brand-blue);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.service-card p,
.about-card p,
.contact-card p {
  color: var(--brand-muted);
}

.market-card {
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  color: var(--brand-blue);
}

/* Lists */
.icon-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--brand-text);
}

.icon-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
  position: absolute;
  left: 0;
  top: 0.7rem;
}

html[dir="rtl"] .icon-list li {
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .icon-list li::before {
  left: auto;
  right: 0;
}

/* Contact */
.contact-card a {
  color: var(--brand-blue);
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--brand-gold);
}

/* Footer */
.site-footer {
  background: var(--brand-blue);
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 991px) {
  body {
    padding-top: 82px;
  }

  .navbar {
    height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--brand-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 4%;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  html[dir="rtl"] .nav-menu {
    align-items: flex-end;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0 75px;
  }

  .hero-grid,
  .two-column-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .hero-image-small-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-image-small {
    min-height: 220px;
  }

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

  .market-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero-subheadline {
    font-size: 1.05rem;
  }

  .hero-image-small-grid {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .hero-image-small,
  .section-feature-image {
    min-height: auto;
    height: auto;
  }

  .about-card,
  .service-card,
  .contact-card {
    padding: 1.5rem;
  }

  .cards-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-tagline {
    font-size: 0.62rem;
  }

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

  .btn {
    width: 100%;
  }
}