@font-face {
    font-family: 'irsans';
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/irsans/irsans.eot);
    src: url(../fonts/irsans/irsans.eot) format("embedded-opentype"),
    url(../fonts/irsans/irsans.woff) format("woff"),
    url(../fonts/irsans/irsans.ttf) format("truetype");
}
:root {
    --purple-900: #241a5c;
    --purple-800: #2f2178;
    --purple-700: #4a2fc7;
    --purple-600: #5b3ce0;
    --purple-500: #6d4bf0;
    --purple-100: #eeeafd;
    --purple-50: #f7f5fe;
    --ink: #1b1533;
    --gray-600: #6b6785;
    --gray-400: #a6a2c0;
    --line: #eae7f7;
    --bg: #ffffff;
    --gold: #f5a623;
    --fonts: irsans;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonts), 'Tahoma', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    background: var(--purple-100);
    color: var(--purple-600);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: .2s ease;
}

.btn-primary {
    background: var(--purple-600);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(91, 60, 224, .5);
}

.btn-primary:hover {
    background: var(--purple-700);
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--purple-600);
    color: var(--purple-600);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--purple-900);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--bg);
    z-index: 1000;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.sidebar.open {
    right: 0;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--purple-900);
}

.sidebar .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.sidebar nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.sidebar nav ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
}

.sidebar nav ul li a:hover {
    color: var(--purple-700);
    background: var(--purple-50);
}

.sidebar nav ul li a.active {
    color: var(--purple-700);
    font-weight: 600;
    background: var(--purple-50);
}

.sidebar nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 16px;
    left: 16px;
    height: 3px;
    background: var(--purple-500);
    border-radius: 10px;
}

.sidebar .sidebar-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.sidebar .sidebar-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
}

.btn-mobile {
    display: none;
    background: var(--purple-600);
    color: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-mobile:hover {
    background: var(--purple-700);
}

body.no-scroll {
    overflow: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    font-weight: 800;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

nav ul {
    display: flex;
    gap: 32px;
    font-size: 14.5px;
    font-weight: 500;
    color: #3c3760;
}

nav ul li a.active {
    color: var(--purple-700);
    font-weight: 600;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 16px;
    left: 16px;
    height: 3px;
    background: var(--purple-500);
    border-radius: 10px;
    transition: all 0.3s ease;
}

nav a {
    position: relative;
    padding: 6px 0;
}

nav a.active {
    color: var(--purple-600);
    font-weight: 700;
}

nav a:hover {
    color: var(--purple-600);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 5px 0;
}

.nav-right .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 60px;
}

.hero-grid::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -60px;
    width: 500px;
    height: 510px;
    background: radial-gradient(circle, var(--purple-500) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.35;
    background: linear-gradient(90deg, var(--ink), var(--purple-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p.desc {
    margin: 22px 0 30px;
    color: var(--gray-600);
    font-size: 15.5px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.trust-row {
    display: flex;
    gap: 26px;
    font-size: 13px;
    color: var(--gray-600);
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup {
    position: relative;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.stat-card {
    background: var(--purple-50);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.stat-card b {
    display: block;
    font-size: 14px;
    color: var(--ink);
}

.stat-card small {
    font-size: 10px;
    color: var(--gray-400);
}

.chart-box {
    background: var(--purple-50);
    border-radius: 12px;
    padding: 12px;
    position: relative;
    height: 150px;
}

.chart-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--purple-600);
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 8px;
}

.donut {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: conic-gradient(var(--purple-600) 0 65%, var(--purple-100) 65% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut::after {
    content: '٪۶۵';
    font-size: 10px;
    font-weight: 700;
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-side {
    background: var(--purple-800);
    border-radius: 14px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-side .side-logo {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.side-item {
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    height: 20px;
}

.side-item.on {
    background: var(--purple-600);
}

.section {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.section-head h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 8px;
}

.section-head p {
    color: var(--gray-600);
    margin-top: 10px;
    font-size: 15px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.feat-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 16px;
    text-align: center;
    transition: .2s;
}

.feat-card:hover {
    border-color: var(--purple-600);
    box-shadow: 0 14px 30px -18px rgba(91, 60, 224, .4);
    transform: translateY(-3px);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--purple-100);
    color: var(--purple-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

.feat-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 12.5px;
    color: var(--gray-600);
}

.stats-banner {
    background: linear-gradient(90deg, var(--purple-700), var(--purple-600));
    padding: 56px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stats-grid .icn {
    font-size: 24px;
    margin-bottom: 10px;
}

.stats-grid b {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.stats-grid span {
    font-size: 13px;
    opacity: .85;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

.price-card {
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
}

.price-card.featured {
    border-color: var(--purple-600);
    position: relative;
    box-shadow: 0 24px 50px -20px rgba(91, 60, 224, .4);
    transform: scale(1.03);
}

.price-tag {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    background: var(--purple-600);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-top-right-radius: 18px;
    white-space: nowrap;
    width: 100%;
    border-top-left-radius: 18px;
}

.price-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 16px 0;
}

.price-card .amount {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.price-card .amount b {
    display: block;
    font-size: 26px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
}

.price-card .amount span.sub {
    font-size: 12px;
    color: var(--gray-600);
    text-decoration: none;
}

.price-list {
    text-align: right;
    margin: 24px 0;
    font-size: 13.5px;
    color: #3c3760;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-card .btn {
    width: 100%;
}

.price-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--gray-600);
    margin-top: 24px;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}

.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.test-card p {
    font-size: 14px;
    color: #3c3760;
    margin-bottom: 20px;
}

.test-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--purple-100);
    color: var(--purple-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    overflow: hidden;
}

.test-person b {
    display: block;
    font-size: 13.5px;
}

.test-person span {
    font-size: 11.5px;
    color: var(--gray-600);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-400);
}

.dots i.on {
    background: var(--purple-600);
    width: 18px;
    border-radius: 4px;
}

.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
}

.faq-q .chev {
    transition: .2s;
    color: var(--purple-600);
}

.faq-item.open .chev {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .25s ease;
    padding: 0 20px;
    font-size: 13.5px;
    color: var(--gray-600);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 18px;
}

.contact-box {
    background: var(--purple-50);
    border-radius: 24px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-info p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 28px;
}

.contact-info .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    margin-bottom: 14px;
    color: #3c3760;
}

.contact-info .item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--purple-600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-50);
}

form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 13.5px;
    background: #fff;
}

input:focus, textarea:focus {
    outline: 2px solid var(--purple-600);
    outline-offset: 1px;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

form .btn {
    width: 100%;
    justify-self: start;
}

footer {
    background: var(--purple-900);
    color: #cfc9ec;
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid h4 {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-grid ul li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-grid ul a:hover {
    color: #fff;
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 12px;
}

.footer-grid p {
    font-size: 12.5px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.foot-newsletter {
    display: flex;
    gap: 8px;
}

.foot-newsletter input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.foot-newsletter input::placeholder {
    color: #a19bc9;
}

.foot-newsletter .btn {
    background: var(--purple-600);
    color: #fff;
    padding: 12px 18px;
    white-space: nowrap;
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.bottom-bar {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    font-size: 12px;
    color: #8b85b3;
}

