@font-face {
  font-family: "Lalezar";
  src: url("../fonts/Lalezar-Regular.woff2") format("woff2");
  font-weight: 400;
  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;
}

:root {
  --site-scale: 0.9;
  --font-heading: "Lalezar", "Vazirmatn", sans-serif;
  --font-body: "Vazirmatn", Tahoma, Arial, sans-serif;
  --bg-main: #f7f8fa;
  --bg-card: rgba(255, 255, 255, 0.78);
  --text-main: #101828;
  --text-muted: #667085;
  --primary: #1f6feb;
  --primary-dark: #1557c0;
  --secondary: #12b76a;
  --border: rgba(16, 24, 40, 0.08);
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
  --radius-xl: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  zoom: var(--site-scale);
  background:
    radial-gradient(circle at top left, rgba(31, 111, 235, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(18, 183, 106, 0.10), transparent 30%),
    var(--bg-main);
  color: var(--text-main);
  line-height: 1.8;
  min-height: 100vh;
}
@supports not (zoom: 1) {
  body { width: calc(100% / var(--site-scale)); min-height: calc(100vh / var(--site-scale)); transform: scale(var(--site-scale)); transform-origin: top right; }
}
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6,.brand-name,.brand-logo,.hero-title,.hero-title span,.stat-number,.panel-title,.solution-title,.section-title,.project-title-modal,.consult-title { font-family: var(--font-heading); font-weight: 400; }
p,a,span,li,label,input,select,textarea,button,.btn,.brand-subtitle,.nav-links a,.eyebrow,.hero-description,.stat-label,.service-name,.service-score,.floating-chip,.section-description,.solution-text,.solution-link,.demo-feature,.form-group label,.consult-text,.consult-label,.consult-value,.mobile-menu a,.mobile-consult-link { font-family: var(--font-body); }
.site-header { width: 100%; position: fixed; top: 0; right: 0; z-index: 1000; padding: 18px 24px; }
.navbar { max-width: var(--container); margin: 0 auto; min-height: 72px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 999px; box-shadow: 0 18px 45px rgba(16,24,40,.07); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); position: relative; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; overflow: hidden;}
.brand-logo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; gap: 0; justify-content: center; line-height: 1; }
.brand-name { font-size: 25px; letter-spacing: -.02em; color: var(--text-main); line-height: .95; }
.brand-subtitle { margin-top: -1px; font-size: 12px; color: var(--text-muted); line-height: 1.1; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 15px; color: var(--text-muted); transition: color .25s ease; position: relative; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -7px; width: 0; height: 2px; border-radius: 999px; background: var(--primary); transition: width .25s ease; }
.nav-links a:hover,.nav-links a.is-active { color: var(--text-main); }
.nav-links a:hover::after,.nav-links a.is-active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; border: 1px solid transparent; cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 14px 30px rgba(31,111,235,.22); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(31,111,235,.28); }
.btn-ghost { background: rgba(255,255,255,.65); color: var(--text-main); border-color: var(--border); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.mobile-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.mobile-menu-toggle span { width: 20px; height: 2px; border-radius: 999px; background: var(--text-main); position: relative; }
.mobile-menu-toggle span::before,.mobile-menu-toggle span::after { content: ""; position: absolute; right: 0; width: 20px; height: 2px; border-radius: 999px; background: var(--text-main); }
.mobile-menu-toggle span::before { top: -7px; }
.mobile-menu-toggle span::after { top: 7px; }
.mobile-menu { display: none; position: absolute; top: calc(100% + 12px); right: 0; left: 0; width: min(100%,92vw); margin: 0 auto; padding: 14px; border-radius: 24px; background: rgba(255,255,255,.92); border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(16,24,40,.12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.mobile-menu a,.mobile-consult-link { display: block; padding: 14px 16px; border-radius: 16px; color: var(--text-main); font-size: 15px; font-weight: 600; transition: background .25s ease,color .25s ease; }
.mobile-consult-link { width: 100%; border: 0; text-align: right; background: transparent; cursor: pointer; }
.mobile-menu a:hover,.mobile-consult-link:hover { background: rgba(31,111,235,.08); color: var(--primary); }
.mobile-menu.is-open { display: block; }
.project-modal,.consult-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(16,24,40,.38); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 2000; }
.project-modal.is-open,.consult-modal.is-open { display: flex; }
.project-dialog,.consult-dialog { width: min(100%,520px); position: relative; padding: 32px; border-radius: 30px; background: radial-gradient(circle at top left, rgba(31,111,235,.12), transparent 38%), #fff; border: 1px solid rgba(255,255,255,.72); box-shadow: 0 34px 90px rgba(16,24,40,.24); }
.project-close,.consult-close { position: absolute; top: 18px; left: 18px; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; background: rgba(247,248,250,.92); color: var(--text-main); font-size: 24px; line-height: 1; cursor: pointer; transition: background .25s ease,transform .25s ease; }
.project-close:hover,.consult-close:hover { background: #fff; transform: rotate(8deg); }
.project-kicker,.consult-kicker { display: inline-flex; margin-bottom: 16px; padding: 7px 13px; border-radius: 999px; background: rgba(31,111,235,.08); color: var(--primary); font-size: 13px; font-weight: 700; }
.project-title-modal,.consult-title { margin-bottom: 12px; color: var(--text-main); font-size: 28px; line-height: 1.35; letter-spacing: -.02em; }
.project-text-modal,.consult-text { margin-bottom: 24px; color: var(--text-muted); font-size: 15px; }
.project-info-list,.consult-list { display: grid; gap: 12px; margin-bottom: 26px; }
.project-info-item,.consult-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px; border-radius: 18px; background: rgba(247,248,250,.86); border: 1px solid var(--border); }
.project-info-icon,.consult-icon { width: 36px; height: 36px; flex-shrink: 0; display: grid; place-items: center; border-radius: 14px; background: rgba(31,111,235,.1); color: var(--primary); font-size: 17px; }
.project-info-label,.consult-label { display: block; margin-bottom: 2px; color: var(--text-muted); font-size: 12px; font-weight: 700; }
.project-info-value,.consult-value { color: var(--text-main); font-size: 15px; font-weight: 700; direction: ltr; text-align: right; }
.project-info-value.link,.consult-value.address { direction: ltr; font-weight: 600; line-height: 1.6; }
.project-actions,.consult-actions { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.project-actions .btn,.consult-actions .btn { min-height: 50px; }
.hero { min-height: 100vh; padding: 150px 24px 80px; display: flex; align-items: center; }
.hero-container { width: 100%; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
.hero-content { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; margin-bottom: 24px; border-radius: 999px; background: rgba(31,111,235,.08); color: var(--primary); font-size: 14px; font-weight: 600; border: 1px solid rgba(31,111,235,.12); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 6px rgba(18,183,106,.12); }
.hero-title { font-size: clamp(27px,3.2vw,40px); line-height: 1.35; letter-spacing: -.018em; color: var(--text-main); margin-bottom: 24px; }
.hero-title span { color: var(--primary); position: relative; display: inline-block; }
.hero-title span::after { content: ""; position: absolute; right: 0; bottom: 6px; width: 100%; height: 12px; background: rgba(18,183,106,.16); z-index: -1; border-radius: 999px; }
.hero-description { font-size: 16px; color: var(--text-muted); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-actions .btn { min-height: 52px; padding: 0 24px; font-size: 15px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,minmax(110px,1fr)); gap: 14px; max-width: 560px; }
.stat-card { padding: 18px 16px; background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 14px 34px rgba(16,24,40,.05); }
.stat-number { display: block; font-size: 21px; color: var(--text-main); line-height: 1.2; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.visual-card { width: min(100%,460px); min-height: 500px; position: relative; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.62)), url("../images/hero-concept.svg"); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.76); box-shadow: var(--shadow); }
.visual-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 20%, rgba(31,111,235,.72), transparent 34%), radial-gradient(circle at 75% 72%, rgba(18,183,106,.58), transparent 36%), linear-gradient(145deg, rgba(16,24,40,.5), rgba(31,111,235,.2)); mix-blend-mode: multiply; }
.concept-orbit { position: absolute; inset: 44px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; z-index: 1; }
.concept-orbit::before,.concept-orbit::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 9px rgba(255,255,255,.16); }
.concept-orbit::before { top: 34px; left: 62px; }
.concept-orbit::after { right: 48px; bottom: 70px; }
.dashboard-panel { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 2; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 22px 48px rgba(16,24,40,.16); }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 16px; }
.panel-title { font-size: 19px; color: var(--text-main); }
.panel-badge { padding: 5px 10px; border-radius: 999px; background: rgba(18,183,106,.12); color: #067647; font-size: 12px; font-weight: 700; white-space: nowrap; }
.service-list { display: grid; gap: 10px; }
.service-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.68); border: 1px solid rgba(16,24,40,.06); }
.service-name { font-size: 13px; color: var(--text-main); font-weight: 600; }
.service-score { font-size: 12px; color: var(--primary); font-weight: 700; }
.floating-chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.76); box-shadow: 0 18px 40px rgba(16,24,40,.12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); color: var(--text-main); font-size: 13px; font-weight: 700; z-index: 2; }
.floating-chip::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--secondary); }
.chip-one { top: 78px; right: 10px; } .chip-two { top: 190px; left: -4px; } .chip-three { bottom: 150px; right: -2px; }
.content-section { padding: 96px 24px; scroll-margin-top: 120px; }
.section-container,.solutions-container { width: 100%; max-width: var(--container); margin: 0 auto; }
.section-header-center { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.solutions-section { padding: 96px 24px; background: radial-gradient(circle at 15% 20%, rgba(31,111,235,.08), transparent 34%), radial-gradient(circle at 85% 72%, rgba(18,183,106,.08), transparent 30%), #fff; }
.solutions-header { max-width: 720px; margin-bottom: 34px; }
.solutions-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.solution-card { min-height: 260px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-radius: 28px; background: rgba(247,248,250,.86); border: 1px solid var(--border); box-shadow: 0 18px 44px rgba(16,24,40,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.solution-card::before { content: ""; position: absolute; inset: auto -30px -70px auto; width: 150px; height: 150px; border-radius: 50%; background: rgba(31,111,235,.1); transition: transform .25s ease; }
.solution-card:hover { transform: translateY(-6px); border-color: rgba(31,111,235,.2); box-shadow: 0 26px 60px rgba(16,24,40,.1); }
.solution-card:hover::before { transform: scale(1.18); }
.solution-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 16px; background: #fff; color: var(--primary); font-size: 14px; font-weight: 800; border: 1px solid var(--border); box-shadow: 0 12px 26px rgba(16,24,40,.06); position: relative; z-index: 1; }
.solution-title { margin: 24px 0 12px; color: var(--text-main); font-size: 25px; line-height: 1.45; position: relative; z-index: 1; }
.solution-text { color: var(--text-muted); font-size: 14px; line-height: 1.9; position: relative; z-index: 1; }
.solution-link { width: fit-content; border: 0; background: transparent; cursor: pointer; margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 14px; font-weight: 800; position: relative; z-index: 1; }
.solution-link::after { content: "←"; transition: transform .25s ease; } .solution-link:hover::after { transform: translateX(-4px); }
.products-section { background: radial-gradient(circle at 18% 12%, rgba(18,183,106,.08), transparent 32%), var(--bg-main); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.product-card { padding: 26px; min-height: 260px; border-radius: 28px; background: rgba(255,255,255,.78); border: 1px solid var(--border); box-shadow: 0 18px 44px rgba(16,24,40,.055); transition: transform .25s ease,box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 26px 58px rgba(16,24,40,.1); }
.product-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 18px; background: rgba(31,111,235,.1); color: var(--primary); font-size: 20px; font-weight: 800; }
.product-title { margin-bottom: 10px; color: var(--text-main); font-size: 25px; line-height: 1.4; }
.product-text { color: var(--text-muted); font-size: 14px; line-height: 1.9; }
.demo-section { padding: 100px 24px; background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(247,248,250,.95)), var(--bg-main); }
.demo-container { width: 100%; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.demo-content { position: sticky; top: 130px; }
.section-kicker { display: inline-flex; margin-bottom: 18px; padding: 8px 14px; border-radius: 999px; background: rgba(18,183,106,.1); color: #067647; font-size: 14px; font-weight: 700; }
.section-title { font-size: clamp(28px,3.5vw,42px); line-height: 1.35; letter-spacing: -.035em; color: var(--text-main); margin-bottom: 18px; }
.section-description { font-size: 15px; color: var(--text-muted); margin-bottom: 30px; }
.demo-title-small { font-size: clamp(22px,2.4vw,30px); line-height: 1.45; margin-bottom: 18px; }
.demo-features { display: grid; gap: 14px; }
.demo-feature { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 16px; background: rgba(255,255,255,.72); border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(16,24,40,.05); color: var(--text-main); font-size: 13px; font-weight: 600; }
.demo-feature span { width: 28px; height: 28px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: rgba(31,111,235,.1); color: var(--primary); font-size: 11px; font-weight: 800; }
.demo-contact-box { margin-top: 20px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.78); border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(16,24,40,.05); }
.demo-contact-title { margin-bottom: 12px; color: var(--text-main); font-size: 23px; line-height: 1.4; }
.demo-contact-list { display: grid; gap: 10px; }
.demo-contact-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 16px; background: rgba(247,248,250,.82); border: 1px solid rgba(16,24,40,.06); }
.demo-contact-label { color: var(--text-muted); font-size: 12px; font-weight: 800; white-space: nowrap; }
.demo-contact-value { direction: ltr; color: var(--text-main); font-size: 13px; font-weight: 700; text-align: left; }
.demo-form { padding: 30px; border-radius: var(--radius-xl); background: rgba(255,255,255,.82); border: 1px solid var(--border); box-shadow: var(--shadow); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-main); font-size: 14px; font-weight: 700; }
.form-group input,.form-group select,.form-group textarea { width: 100%; border: 1px solid rgba(16,24,40,.11); background: rgba(255,255,255,.84); border-radius: 16px; padding: 14px 16px; color: var(--text-main); font-size: 15px; outline: none; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,.form-group textarea::placeholder { color: #98a2b3; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: rgba(31,111,235,.55); background: #fff; box-shadow: 0 0 0 4px rgba(31,111,235,.1); }
.form-submit { width: 100%; min-height: 54px; font-size: 15px; }
.form-note { margin-top: 12px; color: var(--text-muted); font-size: 13px; text-align: center; }
@media (max-width:1024px) { .navbar{border-radius:28px}.nav-links{gap:18px}.hero-container{grid-template-columns:1fr;gap:44px}.hero-content{max-width:760px;text-align:center;margin:0 auto}.hero-description{margin-right:auto;margin-left:auto}.hero-actions{justify-content:center}.hero-stats{margin:0 auto}.hero-visual{min-height:500px}.visual-card{min-height:480px}.solutions-grid,.products-grid{grid-template-columns:repeat(2,1fr)}.demo-container{grid-template-columns:1fr}.demo-content{position:static;text-align:center}.demo-features{max-width:680px;margin:0 auto} }
@media (max-width:820px) { .site-header{padding:14px 16px}.navbar{min-height:66px;padding:0 16px}.nav-links,.nav-actions{display:none}.mobile-menu-toggle{display:inline-flex}.hero{padding:130px 16px 64px}.hero-stats{grid-template-columns:1fr}.stat-card{text-align:center}.hero-visual{min-height:440px}.visual-card{min-height:420px}.chip-one{top:44px;right:8px}.chip-two{top:140px;left:8px}.chip-three{right:8px;bottom:110px}.solutions-section{padding:76px 16px}.solutions-grid,.products-grid{grid-template-columns:1fr}.demo-section{padding:76px 16px}.demo-form{padding:22px;border-radius:24px}.form-row{grid-template-columns:1fr;gap:0} }
@media (max-width:520px) { .consult-dialog,.project-dialog{padding:26px 20px 22px;border-radius:24px}.consult-title,.project-title-modal{font-size:23px}.consult-actions,.project-actions{grid-template-columns:1fr}.brand-subtitle{display:none}.brand-name{font-size:20px}.hero{padding-top:118px}.eyebrow{font-size:12px;margin-bottom:20px}.hero-title{font-size:26px}.hero-description{font-size:16px}.hero-actions{flex-direction:column;align-items:stretch}.hero-actions .btn{width:100%}.hero-visual{min-height:380px}.visual-card{min-height:370px;border-radius:24px}.dashboard-panel{left:16px;right:16px;bottom:16px;padding:16px;border-radius:20px}.floating-chip{display:none}.mobile-menu{top:calc(100% + 10px)}.section-title{font-size:28px}.solution-card{min-height:auto}.solution-title{font-size:23px}.section-description{font-size:15px}.demo-feature{align-items:flex-start;text-align:right;padding:10px 12px;font-size:12px}.demo-form{padding:18px} }
