.elementor-939 .elementor-element.elementor-element-85e056b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-939 .elementor-element.elementor-element-471c8ae{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-939 .elementor-element.elementor-element-6ded60f{--display:flex;--min-height:0px;--flex-direction:row-reverse;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap-reverse;--justify-content:center;--align-items:center;}.elementor-939 .elementor-element.elementor-element-6ded60f.e-con{--align-self:center;}.elementor-939 .elementor-element.elementor-element-811c895{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-evenly;--align-items:center;}.elementor-939 .elementor-element.elementor-element-811c895.e-con{--align-self:flex-start;--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-939 .elementor-element.elementor-element-811c895{--width:48%;}}/* Start custom CSS for text-editor, class: .elementor-element-a0ca709 *//* =========================================================
   1. Brand Variables & General Setup
   ========================================================= */
:root {
  /* Colors */
  --brand-orange: #FF8A00;   /* Main CTA */
  --brand-purple: #4B32FF;   /* Secondary/Accent */
  --brand-gold: #D9C79A;     /* Highlight/Detail */
  --text-dark: #1b1b1b;      /* Main Content Text */
  --text-light: #ffffff;
  --text-off-light: #DCE1F9; /* Used in dark backgrounds */
  
  /* Backgrounds & Base Colors */
  --hero-bg-start: #1C1A52; /* Dark Indigo Blue */
  --hero-bg-end: #2F2A85;   /* Royal Purple-Blue */
  --final-cta-bg: #0A0D2C;  /* Very Dark Blue */
  --mini-content-bg: #f5f6fb; /* Light Gray for Link Box */
}

body {
  margin: 0;
  font-family: 'IRANYekan', sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  direction: rtl; /* Ensure RTL for Persian text */
}

/* Base Link Styling */
a {
  color: var(--brand-purple);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--brand-orange);
}

/* =========================================================
   2. HERO Section - DARK THEME (The Corrected Version)
   ========================================================= */
.hero {
  /* Applying the brand gradient */
  background: linear-gradient(135deg, var(--hero-bg-start), var(--hero-bg-end));
  color: var(--text-light);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 🎨 Overlay for perfect text contrast (Fix for Readability) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* A subtle dark overlay to deepen the background and boost text contrast */
  background: rgba(10, 13, 44, 0.25); 
  z-index: 1; 
}

/* Ensuring all content stays above the overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

/* 📝 H1 - Main Title Styling */
.hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-weight: 900;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

/* 📝 Sub-Headline Text Styling */
.hero-sub {
  color: var(--text-off-light); 
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* 📋 Features List Styling */
.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  font-size: 1.05rem;
}

.hero-features li {
  margin-bottom: 0.6rem;
  padding-right: 25px;
  position: relative;
  color: #EEF0FF; 
  font-weight: 500;
}

/* 🌟 Brand Gold Checkmark */
.hero-features li::before {
  content: "★"; /* Star symbol for a premium/secure feel */
  color: var(--brand-gold);
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1.1em;
  top: -2px;
}

/* =========================================================
   3. CTA Buttons (Based on .btn-brand system)
   ========================================================= */

.cta-primary {
  /* Corresponds to .btn-brand */
  display: inline-block;
  background-color: var(--brand-orange);
  color: var(--text-light);
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(255, 138, 0, 0.5); 
  font-size: 1.1rem;
}

.cta-primary:hover {
  background-color: var(--brand-purple);
  box-shadow: 0 12px 30px rgba(75, 50, 255, 0.5);
  transform: translateY(-2px);
}

.cta-secondary {
  /* Secondary style for final CTA, uses gold/dark contrast */
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--brand-gold);
  color: var(--text-dark);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-secondary:hover {
  background: var(--brand-orange);
  color: var(--text-light);
}

/* =========================================================
   4. ARTICLE & CONTENT
   ========================================================= */

.content {
  max-width: 900px;
  margin: auto;
  padding: 4rem 1.5rem;
}

.content h2, .content h3, .content h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    /* Brand Gold accent line */
    border-bottom: 2px solid var(--brand-gold); 
    display: inline-block;
    padding-bottom: 0.3rem;
    font-weight: 700;
}

/* Emphasizing strong words with Brand Purple */
.content strong {
  color: var(--brand-purple);
  font-weight: 700;
}

/* List styling with brand purple accent */
.content ul {
  list-style: none;
  padding-right: 0;
  margin-top: 1rem;
}
.content ul li {
  padding-right: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.content ul li::before {
    content: "•";
    color: var(--brand-purple);
    font-size: 1.2em;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: -2px;
}

/* =========================================================
   5. MINI CONTENT (Card-like - Internal Linking Section)
   ========================================================= */
.mini-content {
  background: var(--mini-content-bg);
  padding: 1.8rem;
  max-width: 900px;
  margin: 2.5rem auto;
  border-radius: 8px;
  border-right: 8px solid var(--brand-purple); /* Stronger Brand Accent */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.mini-content strong {
    font-weight: 700;
}


/* =========================================================
   6. FAQ & FINAL CTA
   ========================================================= */

.faq {
  max-width: 900px;
  margin: auto;
  padding: 1.5rem;
}

.faq h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--brand-gold);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 1rem;
}

.faq-item h4 {
  color: var(--brand-purple);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  border-bottom: none; /* Remove redundant border */
}

.final-cta {
  background: var(--final-cta-bg);
  color: var(--text-off-light);
  text-align: center;
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-6ded60f */.asset-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  font-family: IRANYekan, YekanBakh, sans-serif;
  direction: rtl;
  line-height: 1.8;
  color: #1b1b1b;
}

/* H1 */
.asset-h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.asset-h1 span {
  display: block;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-top: 0.4rem;
  color: #4B32FF;
}

/* Intro */
.asset-intro {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Headings */
.asset-article h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: #1C1A52;
}

.asset-article h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
  color: #2F2A85;
}

/* Lists */
.asset-list {
  padding-right: 1.2rem;
  margin: 1rem 0 1.5rem;
}

.asset-list li {
  margin-bottom: 0.5rem;
}

/* CTA */
.asset-cta {
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1C1A52, #2F2A85);
  color: #fff;
  border-radius: 12px;
}

.asset-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: #FF8A00;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-cf432bc *//* =========================================================
   1. Brand Variables & General Setup
   ========================================================= */
:root {
  /* Colors */
  --brand-orange: #FF8A00;   /* Main CTA */
  --brand-purple: #4B32FF;   /* Secondary/Accent */
  --brand-gold: #D9C79A;     /* Highlight/Detail */
  --text-dark: #1b1b1b;      /* Main Content Text */
  --text-light: #ffffff;
  --text-off-light: #DCE1F9; /* Used in dark backgrounds */
  
  /* Backgrounds & Base Colors */
  --hero-bg-start: #1C1A52; /* Dark Indigo Blue */
  --hero-bg-end: #2F2A85;   /* Royal Purple-Blue */
  --final-cta-bg: #0A0D2C;  /* Very Dark Blue */
  --mini-content-bg: #f5f6fb; /* Light Gray for Link Box */
  
  /* Typography */
  --font-base-size: 16px;
}

body {
  margin: 0;
  font-family: 'IRANYekan', sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  direction: rtl; 
  font-size: var(--font-base-size);
}

/* Base Link Styling */
a {
  color: var(--brand-purple);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--brand-orange);
}

/* =========================================================
   2. HERO Section - DARK THEME
   ========================================================= */
.hero {
  background: linear-gradient(135deg, var(--hero-bg-start), var(--hero-bg-end));
  color: var(--text-light);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Overlay for perfect text contrast */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 44, 0.25); 
  z-index: 1; 
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* H1 - Title */
.hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  margin-bottom: 0.8rem;
  line-height: 1.35; /* Improved readability for long titles */
  font-weight: 900;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

/* Sub-Headline */
.hero-sub {
  color: var(--text-off-light); 
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Features List */
.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  font-size: 1.05rem;
}

.hero-features li {
  margin-bottom: 0.6rem;
  padding-right: 25px;
  position: relative;
  color: #EEF0FF; 
  font-weight: 500;
}

/* Brand Gold Checkmark */
.hero-features li::before {
  content: "★"; 
  color: var(--brand-gold);
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1.1em;
  top: -2px;
}

/* =========================================================
   3. CTA Buttons (Data-Event Ready)
   ========================================================= */

.cta-primary {
  display: inline-block;
  background-color: var(--brand-orange);
  color: var(--text-light);
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(255, 138, 0, 0.5); 
  font-size: 1.1rem;
}

.cta-primary:hover {
  background-color: var(--brand-purple);
  box-shadow: 0 12px 30px rgba(75, 50, 255, 0.5);
  transform: translateY(-2px);
}

.cta-secondary {
  /* Used for Final CTA */
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--brand-gold);
  color: var(--text-dark);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-secondary:hover {
  background: var(--brand-orange);
  color: var(--text-light);
}

/* =========================================================
   4. ARTICLE & CONTENT
   ========================================================= */

.content {
  max-width: 900px;
  margin: auto;
  padding: 4rem 1.5rem;
}

/* Intro paragraph emphasis */
.content .intro {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.9;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}

.content h2, .content h3, .content h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    border-bottom: 2px solid var(--brand-gold); 
    display: inline-block;
    padding-bottom: 0.3rem;
    font-weight: 700;
}

/* Emphasizing strong words with Brand Purple */
.content strong {
  color: var(--brand-purple);
  font-weight: 700;
}

/* List styling with brand purple accent */
.content ul {
  list-style: none;
  padding-right: 0;
  margin-top: 1rem;
}
.content ul li {
  padding-right: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.content ul li::before {
    content: "•";
    color: var(--brand-purple);
    font-size: 1.2em;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: -2px;
}

/* =========================================================
   5. MINI CONTENT (Mid-Content BOFU Link Box)
   ========================================================= */
.mini-content {
  background: var(--mini-content-bg);
  padding: 1.8rem;
  max-width: 900px;
  margin: 2.5rem auto;
  border-radius: 8px;
  border-right: 8px solid var(--brand-purple); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mini-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.mini-content strong {
    font-weight: 800;
    color: var(--brand-orange); /* Stronger call to attention */
}

/* =========================================================
   6. FAQ & FINAL CTA
   ========================================================= */

.faq {
  max-width: 900px;
  margin: auto;
  padding: 1.5rem;
}

.faq h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--brand-gold);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #e0e0e0; /* Lighter dashed line */
  padding-bottom: 1rem;
}

.faq-item h4 {
  color: var(--brand-purple);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  border-bottom: none;
}

.final-cta {
  background: var(--final-cta-bg);
  color: var(--text-off-light);
  text-align: center;
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}

.final-cta p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.6;
}


/* =========================================================
   7. RESPONSIVENESS (Mobile Optimizations)
   ========================================================= */

@media (max-width: 768px) {
    
    /* Global Padding Reduction */
    .hero, .content, .final-cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Smaller Hero Title on mobile */
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Feature list center alignment on mobile */
    .hero-features {
        text-align: center;
    }
    .hero-features li {
        text-align: center;
        padding-right: 0;
    }
    .hero-features li::before {
        display: none; /* Hide custom icon for cleaner mobile look */
    }

    /* Content text size adjustment */
    .content p, .content ul li, .mini-content p {
        font-size: 1rem;
    }

    /* CTA Button size adjustment */
    .cta-primary {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }
    
    /* Ensure the mini-content box wraps cleanly */
    .mini-content {
        padding: 1rem;
        border-right-width: 4px; 
    }
}/* End custom CSS */