.elementor-72 .elementor-element.elementor-element-81d970e{--display:flex;--margin-top:40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-72 .elementor-element.elementor-element-aba1ae9{--display:flex;}.elementor-72 .elementor-element.elementor-element-5d07409{--display:flex;}.elementor-72 .elementor-element.elementor-element-4562a90{--display:flex;}.elementor-72 .elementor-element.elementor-element-ff194c1{--display:flex;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-72 .elementor-element.elementor-element-24043d4{--display:flex;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-72 .elementor-element.elementor-element-c443d8a{--display:flex;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-72 .elementor-element.elementor-element-8641fa1{--display:flex;}.elementor-72 .elementor-element.elementor-element-bc8bc86{--display:flex;}.elementor-72 .elementor-element.elementor-element-b2a4841{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-61d02d6 *//* Container & Layout */
.custom-hero {
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    overflow: hidden; /* Prevents badge from causing scroll */
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Typography */
.stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.star-icons { color: #fbbf24; font-size: 18px; letter-spacing: 2px; }
.star-label { color: #64748b; font-size: 14px; font-weight: 500; }

.hero-text-side h1 {
    font-size: clamp(32px, 5vw, 56px); /* Responsive font sizing */
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: -1.5px;
}

.blue-text { color: #2563eb; }

.hero-desc {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 520px;
}

/* Responsive Buttons */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

.btn-solid, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
}

.btn-solid {
    background-color: #7096ff;
    color: #ffffff !important;
}

.btn-solid:hover { background-color: #5a85ff; transform: translateY(-2px); }

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb !important;
    background: transparent;
}

.btn-outline:hover { background: #f0f7ff; transform: translateY(-2px); }

/* Image Styling */
.hero-visual-side {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-visual-side img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Floating Badge */
.stat-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #edf2f7;
    z-index: 2;
}

.green-check {
    background: #dcfce7;
    color: #16a34a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.stat-number { display: block; font-weight: 800; color: #1e293b; font-size: 15px; }
.stat-sub { font-size: 12px; color: #64748b; }

/* Mobile Optimization */
@media (max-width: 991px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-side {
        order: 1; /* Text first */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-solid, .btn-outline {
        width: 100%; /* Full width on mobile */
    }

    .hero-visual-side {
        order: 2;
        margin-top: 50px;
    }

    .stat-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-88de138 *//* Section Container */
.benefits-section {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Header Styling */
.benefits-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.benefits-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.benefits-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Grid Layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Number Circle */
.step-number {
    width: 50px;
    height: 50px;
    background-color: #eff6ff; /* Light blue circle */
    color: #2563eb;           /* Brand blue number */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-weight: 800;
    font-size: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* Responsive Tablet & Mobile */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }
    
    .benefits-header h2 {
        font-size: 28px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5f8cf82 *//* Container */
.process-section {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Header */
.process-header {
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.process-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.process-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Grid & Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.process-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    position: relative;
}

/* Number & Connector Line */
.number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    z-index: 2;
}

.connector-line {
    position: absolute;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    left: 50%;
    z-index: 1;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* Footer Button */
.process-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-boost {
    background-color: #7096ff;
    color: white !important;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-boost:hover {
    background-color: #5a85ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(112, 150, 255, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .connector-line {
        display: none; /* Hide dashes on mobile stack */
    }
    
    .process-header h2 {
        font-size: 30px;
    }
    
    .btn-boost {
        width: 100%; /* Full width for mobile thumbs */
        box-sizing: border-box;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0dff0b3 */:root {
    --primary-blue: #2563eb;
    --bg-blue: #eff6ff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --card-border: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    padding: 40px 20px;
    color: var(--text-dark);
    line-height: 1.5;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefits-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid setup: 1 column on mobile, 3 on desktop */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s ease;
}

/* Optional hover effect */
.benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--bg-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments for small screens */
@media (max-width: 600px) {
    .benefits-header h1 {
        font-size: 1.6rem;
    }
    
    .benefit-card {
        padding: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-70d594e */:root {
    --primary-blue: #1d4ed8; /* Darker blue for button */
    --hover-blue: #1e40af;
    --star-gold: #f59e0b;
    --bg-avatar: #dbeafe;
    --text-main: #1e293b;
    --text-sub: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 60px 20px;
    background-color: #f8fafc;
}

.success-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-sub);
    font-size: 1.1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--star-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quote-icon {
    font-family: serif;
    font-size: 4rem;
    line-height: 1;
    color: #e2e8f0;
    height: 30px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 48px;
    height: 48px;
    background-color: var(--bg-avatar);
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.user-details strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
}

.user-details span {
    color: var(--text-sub);
    font-size: 0.85rem;
}

/* Button Styling */
.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background-color: var(--hover-blue);
}

.cta-button .arrow {
    margin-left: 10px;
    font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-header h2 { font-size: 1.8rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-92e4a8a */:root {
  --blue: #0d61ff;
  --green: #22c55e;
  --text: #0a1021;
  --light-gray: #f1f5f9;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.5; }

/* --- SECTION 1: STATS --- */
.stats-section { background: var(--blue); color: white; padding: 60px 20px; text-align: center; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.stat-num { font-size: 3.5rem; font-weight: 800; }
.stat-desc { font-size: 1.1rem; opacity: 0.9; }

.divider { height: 1px; background: var(--light-gray); width: 100%; }

/* --- SECTION 2: PRICING --- */
.pricing-section { padding: 40px 20px; }
.pricing-container { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }

.badge { background: #eff6ff; color: var(--blue); padding: 6px 14px; border-radius: 20px; font-weight: 700; font-size: 14px; }
.main-title { font-size: 2.2rem; font-weight: 800; margin: 20px 0; line-height: 1.1; }
.sub-title { color: #64748b; margin-bottom: 30px; }

.benefit-list { list-style: none; padding: 0; margin-bottom: 30px; }
.benefit-list li { display: flex; align-items: center; margin-bottom: 15px; font-weight: 600; }
.check { color: var(--green); font-weight: 900; margin-right: 12px; font-size: 1.2rem; }

/* --- THE BUTTON FIX --- */
.btn {
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px;
  display: inline-flex;     /* Keeps text and arrow aligned */
  align-items: center;      /* Centers items vertically */
  justify-content: center;  /* Centers items horizontally */
  text-align: center;
  min-height: 60px;         /* Ensures button is never too small */
  line-height: 1.2;         /* Allows text to wrap without breaking layout */
  transition: 0.2s;
  cursor: pointer;
}

.arrow { margin-left: 10px; font-size: 1.2rem; }

/* Responsive Buttons */
.full-width-btn { width: 100%; }
.mobile-btn { display: none; } /* HIDDEN ON MOBILE AS REQUESTED */
.desktop-btn { display: none; }

/* Pricing Card */
.pricing-card { border: 1px solid var(--light-gray); border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.card-title { font-size: 2.5rem; font-weight: 800; margin: 10px 0; }
.card-price { color: var(--blue); font-weight: 700; margin-bottom: 20px; }

/* --- DESKTOP LAYOUT --- */
@media (min-width: 992px) {
  .stats-grid { flex-direction: row; justify-content: space-around; }
  .pricing-container { flex-direction: row; align-items: center; }
  .pricing-info, .card-area { flex: 1; }
  .main-title { font-size: 3.5rem; }
  
  .desktop-btn { display: inline-flex; } /* Shows on Desktop */
  .mobile-btn { display: none; }        /* Stays hidden on Desktop */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b253cb7 *//* This ensures the styles ONLY apply to this specific section */
.reviews-hero-unique {
    font-family: 'Inter', sans-serif;
    background-color: #f4f8ff;
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}

.reviews-hero-unique .container {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-hero-unique .headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1321;
    margin-bottom: 20px;
}

.reviews-hero-unique .description {
    font-size: 1.2rem;
    color: #5b6a81;
    margin-bottom: 40px;
}

.reviews-hero-unique .cta-button {
    display: inline-flex;
    background-color: #1161ee;
    color: white;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile adjustments stay scoped too */
@media (max-width: 768px) {
    .reviews-hero-unique .headline {
        font-size: 1.8rem;
    }
    .reviews-hero-unique .cta-button {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e4db874 *//* Container for the sticky bar */
.mobile-sticky-bar {
  display: none; /* Hidden by default */
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    box-sizing: border-box;
  }

  .boost-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #5d87ff; /* Primary Blue */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-family: sans-serif;
    transition: transform 0.2s ease;
    
    /* Trigger the blinking animation */
    animation: blinkGlow 2s infinite;
  }

  .arrow {
    margin-left: 8px;
  }

  /* Blinking Animation Logic */
  @keyframes blinkGlow {
    0% {
      background-color: #5d87ff;
      box-shadow: 0 0 0px rgba(93, 135, 255, 0);
    }
    50% {
      background-color: #4a6edb; /* Darker blue mid-blink */
      box-shadow: 0 0 15px rgba(93, 135, 255, 0.6);
    }
    100% {
      background-color: #5d87ff;
      box-shadow: 0 0 0px rgba(93, 135, 255, 0);
    }
  }
}/* End custom CSS */