@font-face {
    font-family: "Vazirmatn";
    src: url("../assets/fonts/Vazirmatn[wght].ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../assets/fonts/fontawesome-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}


/* =========================================================
   ROOT
========================================================= */

:root {
    --primary: #1A2F50;
    --accent: #00E0E6;
    --background: #F9FAFC;
    --text: #111827;
    --white: #ffffff;
    --muted: #64748b;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: "Vazirmatn", Arial, sans-serif;
    background: var(--background);
    color: var(--text);
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1200px, 90%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-main {
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 12px;
    color: var(--muted);
}

.navigation {
    display: flex;
    gap: 35px;
}

.navigation a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: .3s;
}

.navigation a:hover {
    color: var(--accent);
}

.header-button {
    background: var(--primary);
    color: white;
    padding: 13px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
}


/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.primary-button {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
}

.secondary-button {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 90px 0 120px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 70px;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.45;
    color: var(--primary);
    font-weight: 900;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    margin-top: 25px;
    max-width: 560px;
    line-height: 2;
    font-size: 18px;
    color: #475569;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.brand-message {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-message strong {
    color: var(--primary);
    font-size: 20px;
}

.brand-message span {
    color: var(--muted);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-image {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;
    transform: scale(1.5);
}

.data-network {
    height: 460px;
    background: white;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);
}

.network-point {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
}

.network-line {
    width: 2px;
    height: 45px;
    background: var(--accent);
}

.network-core {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 900;
    line-height: 1.8;
    box-shadow: 0 0 50px rgba(0, 224, 230, .35);
}

.hero-network {
    position: relative;
    width: 430px;
    height: 430px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-center {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #0f172a,
        #1e293b
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 50px rgba(0, 224, 230, .25);
    z-index: 3;
}

.center-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

.center-text {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 12px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 22px;
    padding: 20px 25px;
    min-width: 150px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 4;
}

.floating-card span {
    color: #64748b;
    font-size: 14px;
}

.floating-card strong {
    color: #0f172a;
    font-size: 15px;
}

.audience-card {
    top: 20px;
    right: 20px;
}

.message-card {
    left: 10px;
    top: 170px;
}

.result-card {
    bottom: 40px;
    right: 40px;
}

.connection {
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent,
        #00e0e6,
        transparent
    );
    height: 2px;
    width: 130px;
    opacity: .6;
}

.connection-one {
    top: 145px;
    right: 130px;
    transform: rotate(-25deg);
}

.connection-two {
    left: 120px;
    top: 210px;
    transform: rotate(0deg);
}

.connection-three {
    bottom: 150px;
    right: 140px;
    transform: rotate(35deg);
}


/* =========================================================
   DATA TAGS / ICON
========================================================= */

.data-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    direction: rtl;
    white-space: nowrap;
}

.data-tags span {
    display: inline-block;
}

.data-tags .tag-separator {
    width: 1px;
    height: 16px;
    background: #cbd5e1;
    flex: none;
}

.data-icon {
    font-family: "FontAwesome";
    font-size: 32px;
    color: var(--accent);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 900;
}

.section-title p {
    color: var(--muted);
    font-size: 18px;
    line-height: 2;
}


/* =========================================================
   ADVANTAGES
========================================================= */

.advantages {
    padding: 120px 0;
    background: #ffffff;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 35px;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: .3s;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0f172a;
}

.advantage-card p {
    color: #64748b;
    line-height: 2;
    font-size: 15px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfeff;
    color: #0891b2;
    font-family: "FontAwesome";
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(8, 145, 178, .10);
}

.featured-advantage {
    grid-column: span 3;
    background: linear-gradient(
        135deg,
        #0f172a,
        #164e63
    );
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.featured-advantage .advantage-icon {
    background: rgba(255, 255, 255, .12);
    color: #67e8f9;
    margin-bottom: 25px;
}

.featured-advantage h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.featured-advantage p {
    color: #f8fafc;
    max-width: 90%;
    margin: 0 auto;
    line-height: 2;
}


/* =========================================================
   DATABASE
========================================================= */

.database-section {
    padding: 120px 0;
    background: var(--background);
}

.database-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.database-text {
    flex: 1;
    min-width: 0;
}

.database-text h2 {
    font-size: 40px;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 25px;
    white-space: nowrap;
    letter-spacing: -.5px;
}

.database-text p {
    font-size: 18px;
    line-height: 2.2;
    color: #475569;
    margin-bottom: 30px;
}

.database-text ul {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    column-gap: 30px;
    row-gap: 0;
}

.database-text li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 18px;
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
    white-space: nowrap;
}

.database-text li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--accent);
    font-weight: bold;
}

.database-text .primary-button {
    position: relative;
    top: 0;
    right: 220px;
}

.database-visual {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    transform: translateY(55px);
}

.data-box {
    width: 380px;
    height: 380px;
    border-radius: 40px;
    background: #ffffff;
    border: 1px solid rgba(6, 182, 212, .18);
    box-shadow:
        0 30px 70px rgba(15, 23, 42, .08),
        0 0 0 10px rgba(6, 182, 212, .035);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.data-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(0, 224, 230, .12);
    border-radius: 50%;
    filter: blur(40px);
}

.data-box span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 1;
}

.data-box strong {
    margin-top: 15px;
    font-size: 28px;
    color: var(--primary);
    z-index: 1;
}

.data-lines {
    margin-top: 35px;
    width: 200px;
    z-index: 1;
}

.data-lines div {
    height: 8px;
    background: #e2e8f0;
    border-radius: 20px;
    margin-bottom: 12px;
}

.data-lines div:nth-child(1) {
    width: 100%;
}

.data-lines div:nth-child(2) {
    width: 75%;
}

.data-lines div:nth-child(3) {
    width: 50%;
}


/* =========================================================
   OLD PRICING
========================================================= */

.pricing-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: var(--background);
    border-radius: 35px;
    padding: 60px;
    border: 1px solid #e5e7eb;
}

.pricing-slider {
    flex: 1;
    min-width: 0;
}

.pricing-slider label {
    display: block;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.volume-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 35px;
}

.pricing-slider input[type="range"] {
    width: 100%;
    height: 8px;
    accent-color: var(--accent);
    cursor: pointer;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    margin-top: 15px;
    font-size: 14px;
}

.price-card {
    width: 330px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.price-card span {
    color: var(--muted);
    font-size: 15px;
}

.price-card h3 {
    margin: 20px 0;
    font-size: 55px;
    color: var(--primary);
    font-weight: 900;
}

.price-card h3::after {
    content: " تومان";
    font-size: 18px;
    font-weight: 500;
}

.price-card p {
    color: #64748b;
    margin-bottom: 30px;
}


/* =========================================================
   PREMIUM PRICING
========================================================= */

.pricing-section {
    padding: 120px 0;
    background: #ffffff;
}

.premium-pricing-box {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 35px;
    background: #f8fafc;
    border-radius: 40px;
    padding: 45px;
    border: 1px solid #e2e8f0;
}

.pricing-control {
    background: white;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .06);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.pricing-header span {
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
}

.pricing-header strong {
    color: #0f172a;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -.5px;
}


/* =========================================================
   PREMIUM SLIDER
========================================================= */

#volumeRange {
    width: 100%;
    height: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 20px;
    background:
        linear-gradient(
            to left,
            #00e0e6 0%,
            #00e0e6 10%,
            #e2e8f0 10%,
            #e2e8f0 100%
        );
}

#volumeRange::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 20px;
    background: transparent;
}

#volumeRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -7px;
    border-radius: 50%;
    background: #00e0e6;
    border: 4px solid #ffffff;
    box-shadow: 0 3px 12px rgba(0, 224, 230, .28);
    cursor: pointer;
}

#volumeRange::-moz-range-track {
    height: 8px;
    border-radius: 20px;
    background: #e2e8f0;
}

#volumeRange::-moz-range-progress {
    height: 8px;
    border-radius: 20px;
    background: #00e0e6;
}

#volumeRange::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00e0e6;
    border: 4px solid #ffffff;
    box-shadow: 0 3px 12px rgba(0, 224, 230, .28);
    cursor: pointer;
}

.range-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: #94a3b8;
    font-size: 13px;
}


/* =========================================================
   CUSTOMER LEVEL
========================================================= */

.customer-level {
    margin-top: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customer-level div {
    background: #ffffff;
    border-radius: 22px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
    position: relative;
    overflow: hidden;
}

.customer-level span {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.customer-level strong {
    color: #0f172a;
    font-size: 28px;
    font-weight: 900;
}


/* =========================================================
   BENEFITS
========================================================= */

.pricing-benefits {
    background: #0f172a;
    color: white;
    border-radius: 30px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-benefits h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.pricing-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-benefits li {
    margin-bottom: 18px;
    color: #cbd5e1;
    position: relative;
    padding-right: 25px;
}

.pricing-benefits li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #00e0e6;
    font-weight: bold;
}

.pricing-benefits .primary-button {
    text-align: center;
    background: #00e0e6;
    color: #0f172a;
}


/* =========================================================
   ENTERPRISE
========================================================= */

.premium-pricing-box.enterprise-mode {
    border: 2px solid #00e0e6;
    box-shadow: 0 30px 80px rgba(0, 224, 230, .15);
}

.pricing-benefits.enterprise-mode {
    background: linear-gradient(
        135deg,
        #0f172a,
        #164e63
    );
    box-shadow: 0 20px 60px rgba(0, 224, 230, .25);
}

.pricing-benefits.enterprise-mode .primary-button {
    background: #00e0e6;
    color: #0f172a;
}

.pricing-benefits.enterprise-mode h3 {
    color: white;
}


/* =========================================================
   ENTERPRISE BUTTON
========================================================= */

.enterprise-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    padding: 13px 18px;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    line-height: 1.7;
}


/* =========================================================
   MANAGED SERVICE
========================================================= */

.managed-section {
    padding: 120px 0;
    background: var(--background);
}

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

.managed-card {
    background: #ffffff;
    padding: 32px 30px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    transition: .3s;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.managed-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    background: #ecfeff;
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FontAwesome";
    font-size: 21px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.managed-step {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.managed-card h3 {
    font-size: 23px;
    color: var(--primary);
    margin: 0 0 14px;
    font-weight: 800;
}

.managed-card p {
    color: #64748b;
    line-height: 2;
    font-size: 15px;
    margin: 0;
}

.managed-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: .3s;
}

.managed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, .08);
}

.managed-card:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {
    padding: 120px 0;
    background: #ffffff;
}

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

.feature-card {
    background: var(--background);
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 30px 25px;
    transition: .3s;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    background: #ecfeff;
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FontAwesome";
    font-size: 21px;
    margin-bottom: 22px;
}

.feature-card h3 {
    color: var(--primary);
    font-size: 21px;
    margin: 0 0 22px;
    font-weight: 800;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--accent);
    font-weight: bold;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.feature-card:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   TRUST
========================================================= */

.trust-section {
    padding: 120px 0;
    background: var(--background);
}

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

.trust-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 35px 30px;
    text-align: right;
    border: 1px solid #e5e7eb;
    transition: .3s;
    position: relative;
    overflow: hidden;
    min-height: 235px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #ecfeff;
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FontAwesome";
    font-size: 22px;
    margin-bottom: 22px;
}

.trust-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin: 0 0 14px;
    font-weight: 900;
}

.trust-card p {
    color: #64748b;
    line-height: 2;
    font-size: 15px;
    margin: 0;
}

.trust-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: .3s;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.trust-card:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 120px 0;
    background: var(--background);
}

.cta-box {
    background: var(--primary);
    border-radius: 40px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 224, 230, .15);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(50px);
}

.cta-box h2 {
    position: relative;
    color: white;
    font-size: 42px;
    line-height: 1.6;
    font-weight: 900;
    margin-bottom: 25px;
}

.cta-box p {
    position: relative;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 2;
    max-width: 650px;
    margin: 0 auto 40px;
}

.cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .primary-button {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
}

.cta-buttons .secondary-button {
    border-color: white;
    color: white;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #0f172a;
    padding: 80px 0 30px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 2;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    color: #94a3b8;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-links li a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 25px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

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

}


/* =========================================================
   MOBILE — GENERAL
========================================================= */

@media (max-width: 900px) {

    .container {
        width: calc(100% - 32px);
        max-width: 100%;
    }


    /* Hero */

    .hero {
        padding: 55px 0 70px;
    }

    .hero-container {
        flex-direction: column;
        gap: 45px;
        width: 100%;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(34px, 8vw, 48px);
        line-height: 1.5;
    }

    .hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 2;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        transform: scale(1.40);
    }

    .hero-network {
        width: 330px;
        height: 330px;
    }

    .network-center {
        width: 140px;
        height: 140px;
    }

    .floating-card {
        transform: scale(.85);
    }


    /* Database */

    .database-section {
        padding: 75px 0;
    }

    .database-content {
        flex-direction: column;
        gap: 40px;
    }

    .database-text {
        width: 100%;
    }

    .database-text h2 {
        font-size: 32px;
        line-height: 1.6;
        white-space: normal;
    }

    .database-text p {
        font-size: 16px;
        line-height: 2;
    }

    .database-text ul {
        grid-template-columns: 1fr;
    }

    .database-text li {
        white-space: normal;
    }

    .database-text .primary-button {
        right: auto;
        top: auto;
    }

    .database-visual {
        width: 100%;
        flex: 0 0 auto;
        transform: none;
    }

    .data-box {
        width: min(380px, 100%);
        height: min(380px, 90vw);
    }


    /* Old Pricing */

    .pricing-section {
        padding: 75px 0;
    }

    .pricing-box {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        width: 100%;
    }

    .pricing-slider {
        width: 100%;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
    }

    .volume-number {
        font-size: 34px;
    }


    /* Managed */

    .managed-section {
        padding: 75px 0;
    }

    .managed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* Features */

    .features-section,
    .trust-section,
    .cta-section {
        padding: 75px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* Advantages */

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .featured-advantage {
        grid-column: auto;
    }


    /* =====================================================
       PREMIUM PRICING — MOBILE
    ===================================================== */

    .premium-pricing-box {
        display: flex;
        flex-direction: column;
        gap: 22px;

        width: 100%;

        padding: 0;

        background: transparent;

        border: 0;

        box-shadow: none;

        align-items: center;
    }


    /* Pricing control */

    .premium-pricing-box > .pricing-control {
        width: 100%;
        max-width: 350px;
        flex: 0 0 auto;
    }


    /* Benefits */

    .premium-pricing-box > .pricing-benefits {
        width: 100%;
        max-width: 350px;
        margin: 0;
        flex: 0 0 auto;
    }


    /* Pricing header */

    .premium-pricing-box .pricing-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 8px;

        margin-bottom: 35px;
        padding-bottom: 25px;

        border-bottom: 1px solid #e2e8f0;
    }

    .premium-pricing-box .pricing-header span {
        display: block;
        width: 100%;

        color: #64748b;

        font-size: 16px;
        line-height: 1.8;
        font-weight: 600;

        text-align: center;
    }

    .premium-pricing-box .pricing-header strong {
        display: block;
        width: 100%;

        color: #0f172a;

        font-size: 32px;
        line-height: 1.5;
        font-weight: 900;

        text-align: center;
        white-space: normal;
    }


    /* =====================================================
       CUSTOMER LEVEL
       Always two columns on mobile
    ===================================================== */

    .premium-pricing-box .customer-level {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 12px;

        width: 100%;

        margin-top: 45px;
    }

    .premium-pricing-box .customer-level > div {
        width: 100%;
        min-width: 0;

        box-sizing: border-box;

        text-align: center;

        padding: 20px 12px;
    }

    .premium-pricing-box .customer-level span {
        display: block;

        margin-bottom: 10px;

        font-size: 13px;
        line-height: 1.7;

        text-align: center;
    }

    .premium-pricing-box .customer-level strong {
        display: block;

        font-size: 20px;
        line-height: 1.8;

        text-align: center;

        white-space: normal;
    }


    /* Benefits card */

    .premium-pricing-box .pricing-benefits {
        background: #0f172a;

        color: white;

        border-radius: 30px;

        padding: 35px;

        display: flex;

        flex-direction: column;

        justify-content: center;
    }

    .premium-pricing-box .pricing-benefits h3 {
        color: white;

        font-size: 24px;

        line-height: 1.7;

        margin-bottom: 25px;

        text-align: center;
    }

    .premium-pricing-box .pricing-benefits ul {
        list-style: none;

        padding: 0;

        margin: 0 0 30px;
    }

    .premium-pricing-box .pricing-benefits li {
        position: relative;

        padding-right: 25px;

        margin-bottom: 18px;

        color: #cbd5e1;

        line-height: 1.9;
    }

    .premium-pricing-box .pricing-benefits li::before {
        content: "✓";

        position: absolute;

        right: 0;

        color: #00e0e6;

        font-weight: bold;
    }

    .premium-pricing-box .pricing-benefits .primary-button {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 100%;

        min-height: 52px;

        padding: 13px 18px;

        box-sizing: border-box;

        text-align: center;

        white-space: normal;

        line-height: 1.7;

        background: #00e0e6;

        color: #0f172a;
    }

}


/* =========================================================
   MOBILE — SMALL
========================================================= */

@media (max-width: 600px) {

    .header {
        padding: 15px 0;
    }

    .header .container {
        gap: 15px;
    }

    .brand-main {
        font-size: 22px;
    }

    .brand-sub {
        font-size: 10px;
    }

    .navigation {
        display: none;
    }

    .header-button {
        padding: 10px 16px;
        font-size: 12px;
        white-space: nowrap;
    }


    /* Hero */

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 352px;
        min-height: 55px;

        padding: 13px 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;

        text-align: center;
        white-space: nowrap;
    }


    .data-network {
        height: 330px;
    }

    .network-core {
        width: 135px;
        height: 135px;
    }

    .network-point {
        padding: 12px 25px;
        font-size: 14px;
    }


    /* Advantages */

    .advantages {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 15px;
    }

    .advantage-grid {
        gap: 18px;
    }

    .advantage-card {
        padding: 28px 22px;
    }


    /* Database */

    .database-text h2 {
        font-size: 28px;
    }

    .database-text .primary-button {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .data-box {
        height: 320px;
    }


    /* Old Pricing */

    .pricing-box {
        padding: 25px 16px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .price-card h3 {
        font-size: 42px;
    }


    /* Managed */

    .managed-section {
        padding: 90px 0;
    }

    .managed-card {
        padding: 28px 25px;
    }


    /* Features */

    .features-section {
        padding: 90px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
        padding: 28px 25px;
    }


    /* Trust */

    .trust-section {
        padding: 90px 0;
    }

    .trust-card {
        min-height: auto;
        padding: 28px 25px;
    }


    /* CTA */

    .cta-box {
        padding: 50px 25px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

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


    /* Premium Pricing */

    .premium-pricing-box {
        gap: 22px;
    }

    .premium-pricing-box > .pricing-control,
    .premium-pricing-box > .pricing-benefits {
        max-width: 350px;
    }

    .premium-pricing-box .pricing-header span {
        font-size: 16px;
    }

    .premium-pricing-box .pricing-header strong {
        font-size: 31px;
    }

    .premium-pricing-box .pricing-benefits {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .premium-pricing-box .pricing-benefits h3 {
        font-size: 21px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .premium-pricing-box .pricing-benefits ul {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 0 0 25px;
    }

    .premium-pricing-box .pricing-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.8;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .container {
        width: calc(100% - 24px);
    }

    .premium-pricing-box > .pricing-control,
    .premium-pricing-box > .pricing-benefits {
        max-width: 100%;
    }

    .premium-pricing-box .pricing-control {
        padding: 28px 22px;
    }

    .premium-pricing-box .pricing-header strong {
        font-size: 28px;
    }

    .premium-pricing-box .customer-level {
        gap: 8px;
    }

    .premium-pricing-box .customer-level > div {
        padding: 18px 8px;
    }

    .premium-pricing-box .customer-level span {
        font-size: 12px;
    }

    .premium-pricing-box .customer-level strong {
        font-size: 18px;
    }

}

/* =========================================================
   CONTACT MODAL
========================================================= */

#contactModal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

#contactModal.is-open {
    display: flex;
}


/* Overlay */

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* Modal Box */

.contact-modal-content {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    background: #ffffff;
    border-radius: 28px;
    padding: 40px;

    box-sizing: border-box;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.25);

    direction: rtl;
    text-align: right;

    animation: contactModalIn .25s ease;
}


/* Modal Animation */

@keyframes contactModalIn {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* Close Button */

#contactModalClose {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: #f1f5f9;
    color: #475569;

    font-size: 22px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .2s ease;
}

#contactModalClose:hover {
    background: #e2e8f0;
    color: #0f172a;
}


/* Modal Brand */

.contact-modal-content > span,
.contact-modal-brand {
    display: block;

    color: var(--primary);
    font-size: 14px;
    font-weight: 700;

    margin-bottom: 6px;
}


/* Modal Title */

.contact-modal-content h2 {
    color: var(--primary);
    font-size: 30px;
    font-weight: 900;

    line-height: 1.6;

    margin: 0 0 10px;
}


/* Modal Description */

.contact-modal-content > p {
    color: #64748b;
    font-size: 15px;
    line-height: 2;

    margin: 0 0 25px;
}


/* Form */

#contactForm {
    width: 100%;
}


/* Labels */

#contactForm label {
    display: block;

    color: #334155;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 8px;
}


/* Inputs / Textarea */

#contactForm input,
#contactForm textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #cbd5e1;
    border-radius: 12px;

    background: #ffffff;
    color: #0f172a;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: .2s ease;

    box-sizing: border-box;
}

#contactForm input {
    height: 48px;
}

#contactForm textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.8;
}


/* Input Focus */

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(0, 224, 230, .12);
}


/* Form Groups */

#contactForm .form-group,
#contactForm > div {
    margin-bottom: 18px;
}


/* Submit Button */

#contactForm button[type="submit"] {
    width: 100%;

    min-height: 52px;

    border: 0;
    border-radius: 13px;

    background: var(--primary);
    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;

    box-sizing: border-box;
}

#contactForm button[type="submit"]:hover {
    background: #243f66;
}


/* Success Message */

#contactFormMessage {
    display: none;

    margin-top: 18px;
    padding: 14px 16px;

    border-radius: 12px;

    background: #ecfeff;
    color: #0e7490;

    font-size: 14px;
    line-height: 1.8;

    text-align: center;
}

#contactFormMessage.is-visible {
    display: block;
}


/* Prevent Background Scroll */

body.modal-open {
    overflow: hidden;
}


/* =========================================================
   CONTACT MODAL — MOBILE
========================================================= */

@media (max-width: 600px) {

    #contactModal {
        padding: 15px;
        align-items: center;
    }

    .contact-modal-content {
        width: 100%;
        max-width: 100%;

        max-height: calc(100vh - 30px);

        padding: 32px 22px 25px;

        border-radius: 22px;
    }

    #contactModalClose {
        top: 12px;
        left: 12px;

        width: 34px;
        height: 34px;

        font-size: 20px;
    }

    .contact-modal-content h2 {
        font-size: 25px;
        padding-left: 35px;
    }

    .contact-modal-content > p {
        font-size: 14px;
        line-height: 1.9;
    }

    #contactForm input {
        height: 46px;
    }

    #contactForm textarea {
        min-height: 110px;
    }

}

/* =========================================================
   CONTACT MODAL — FIX LAYER / CLICK
========================================================= */

#contactModal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

/* پرده مات باید پشت فرم باشد */
#contactModal .contact-modal-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: auto;
}

/* خود محتوای Popup باید بالای پرده باشد */
#contactModal > *:not(.contact-modal-overlay) {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

/* اگر باکس اصلی همین کلاس است */
#contactModal .contact-modal-content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* تمام عناصر فرم قابل کلیک باشند */
#contactModal form,
#contactModal input,
#contactModal textarea,
#contactModal button,
#contactModal select,
#contactModal label {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

/* =========================================================
   PAYAMAKE CONTACT MODAL — FINAL VISUAL FIX
========================================================= */

/* کل مودال */
#contactModal {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;

    display: none;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;
    box-sizing: border-box !important;

    z-index: 99999 !important;
}

#contactModal.is-open {
    display: flex !important;
}


/* =========================================================
   BACKDROP
========================================================= */

#contactModal .contact-modal-overlay {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(15, 23, 42, 0.72) !important;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    z-index: 1 !important;
}


/* =========================================================
   MODAL CARD
========================================================= */

/*
   هر چیزی که داخل مودال است ولی Overlay نیست،
   به عنوان کارت اصلی در نظر گرفته می‌شود.
*/

#contactModal > *:not(.contact-modal-overlay) {
    position: relative !important;

    z-index: 10 !important;

    width: min(520px, 100%) !important;
    max-width: 520px !important;

    max-height: calc(100vh - 40px) !important;

    overflow-y: auto !important;

    background: #ffffff !important;

    border: 1px solid #e2e8f0 !important;

    border-radius: 28px !important;

    padding: 40px !important;

    box-sizing: border-box !important;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, .28) !important;

    color: #111827 !important;

    direction: rtl !important;
    text-align: right !important;

    pointer-events: auto !important;
}


/* اگر کلاس content وجود دارد */
#contactModal .contact-modal-content {
    position: relative !important;
    z-index: 10 !important;

    background: #ffffff !important;

    border: 1px solid #e2e8f0 !important;

    border-radius: 28px !important;

    color: #111827 !important;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

#contactModalClose {
    position: absolute !important;

    top: 16px !important;
    left: 16px !important;

    z-index: 20 !important;

    width: 38px !important;
    height: 38px !important;

    padding: 0 !important;

    border: 1px solid #e2e8f0 !important;

    border-radius: 50% !important;

    background: #f8fafc !important;

    color: #475569 !important;

    font-family: Arial, sans-serif !important;

    font-size: 20px !important;
    line-height: 38px !important;

    text-align: center !important;

    cursor: pointer !important;

    pointer-events: auto !important;
}

#contactModalClose:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}


/* =========================================================
   MODAL TEXT
========================================================= */

#contactModal h2 {
    margin: 0 0 12px !important;

    color: #1A2F50 !important;

    font-size: 30px !important;
    font-weight: 900 !important;

    line-height: 1.6 !important;
}

#contactModal p {
    margin: 0 0 25px !important;

    color: #64748b !important;

    font-size: 15px !important;

    line-height: 2 !important;
}


/* PAYAMAKE label */
#contactModal .contact-modal-content > span,
#contactModal > div:not(.contact-modal-overlay) > span {
    display: block !important;

    margin-bottom: 5px !important;

    color: #1A2F50 !important;

    font-size: 14px !important;
    font-weight: 700 !important;
}


/* =========================================================
   FORM
========================================================= */

#contactModal form {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    box-sizing: border-box !important;
}


/* =========================================================
   FORM LABELS
========================================================= */

#contactModal form label {
    display: block !important;

    width: 100% !important;

    margin: 0 0 8px !important;

    color: #334155 !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    line-height: 1.8 !important;
}


/* =========================================================
   INPUTS
========================================================= */

#contactModal form input,
#contactModal form textarea,
#contactModal form select {
    display: block !important;

    width: 100% !important;

    max-width: 100% !important;

    min-width: 0 !important;

    margin: 0 0 18px !important;

    padding: 13px 15px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    background-color: #ffffff !important;

    color: #111827 !important;

    border: 1px solid #cbd5e1 !important;

    border-radius: 12px !important;

    outline: none !important;

    font-family: "Vazirmatn", Arial, sans-serif !important;

    font-size: 14px !important;

    line-height: 1.8 !important;

    opacity: 1 !important;

    appearance: none;
    -webkit-appearance: none;
}


/* Input height */

#contactModal form input,
#contactModal form select {
    height: 50px !important;
}


/* Textarea */

#contactModal form textarea {
    min-height: 120px !important;

    height: 120px !important;

    resize: vertical !important;
}


/* Focus */

#contactModal form input:focus,
#contactModal form textarea:focus,
#contactModal form select:focus {
    background: #ffffff !important;

    border-color: #00e0e6 !important;

    box-shadow:
        0 0 0 3px rgba(0, 224, 230, .12) !important;
}


/* Placeholder */

#contactModal form input::placeholder,
#contactModal form textarea::placeholder {
    color: #94a3b8 !important;

    opacity: 1 !important;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

#contactModal form button[type="submit"] {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;

    min-height: 54px !important;

    margin: 5px 0 0 !important;

    padding: 13px 20px !important;

    box-sizing: border-box !important;

    border: 0 !important;

    border-radius: 13px !important;

    background: #1A2F50 !important;

    color: #ffffff !important;

    font-family: "Vazirmatn", Arial, sans-serif !important;

    font-size: 15px !important;

    font-weight: 700 !important;

    cursor: pointer !important;

    pointer-events: auto !important;

    transition: .2s ease !important;
}

#contactModal form button[type="submit"]:hover {
    background: #243f66 !important;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

#contactFormMessage {
    display: none !important;

    width: 100% !important;

    margin-top: 18px !important;

    padding: 13px 15px !important;

    box-sizing: border-box !important;

    border-radius: 12px !important;

    background: #ecfeff !important;

    color: #0e7490 !important;

    font-size: 14px !important;

    line-height: 1.8 !important;

    text-align: center !important;
}

#contactFormMessage.is-visible {
    display: block !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    #contactModal {
        padding: 15px !important;
    }

    #contactModal > *:not(.contact-modal-overlay) {
        width: 100% !important;
        max-width: 420px !important;

        max-height: calc(100vh - 30px) !important;

        padding: 32px 22px 25px !important;

        border-radius: 22px !important;
    }

    #contactModal h2 {
        font-size: 25px !important;

        padding-left: 35px !important;
    }

    #contactModal p {
        font-size: 14px !important;
    }

}
