.elementor-2 .elementor-element.elementor-element-8b72452{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8b72452 */:root {
    --primary-black: #000000;
    --light-bg: #FFFFFF;
    --soft-grey-bg: #F8F9FA;
    --accent-purple: #710AE3;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-blur: blur(10px);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Layout Helpers */
.text-purple {
    color: var(--accent-purple);
}

.text-orange {
    color: var(--accent-orange);
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.check-list li i {
    color: var(--accent-purple);
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    background: rgba(113, 10, 227, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.highlight {
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-purple);
    z-index: -1;
    opacity: 0.5;
}

.bg-darker {
    background-color: var(--soft-grey-bg);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, background 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #5b08b8;
}

.btn-secondary {
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--accent-purple);
    color: white;
}

.btn-alt {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-alt:hover {
    color: var(--accent-purple);
}

/* Header */
#main-header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#agency-logo {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: width 0.3s ease;
}

nav ul a:hover {
    color: var(--accent-purple);
}

nav ul a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--accent-purple);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ROI Simulator */
.roi-simulator {
    background: var(--light-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    color: var(--text-dark);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.dot-blink {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 30px rgba(113, 10, 227, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-grey-bg);
    color: var(--accent-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--accent-purple);
    color: white;
    transform: rotate(10deg);
}

.step-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.05;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.stat-card .label {
    font-size: 0.8rem;
    opacity: 0.6;
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

.stat-card.orange .value {
    color: var(--primary-black);
}

.stat-card.purple .value {
    color: var(--accent-purple);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
}

.chart-mockup .bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-purple), transparent);
    border-radius: 5px 5px 0 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(113, 10, 227, 0.2);
}

.icon-wrap {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

/* Results Banner */
.results-banner {
    background: linear-gradient(90deg, var(--accent-purple), var(--primary-black));
    padding: 3rem;
    border-radius: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 4rem 0;
    color: white;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-item .num {
    font-size: 3rem;
    font-weight: 800;
}

.result-item .desc {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Roadmap */
.roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    border-left: 1px solid var(--accent-purple);
}

.step-num {
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-accordion-item {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    flex-grow: 1;
}

.faq-question i.main-icon {
    font-size: 1.2rem;
    color: var(--accent-purple);
    display: inline-block;
    opacity: 1;
}

.faq-question i.fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--accent-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--soft-grey-bg);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-accordion-item.active .faq-question {
    color: var(--accent-purple);
}

.faq-accordion-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    /* Large enough for content */
}

/* Form */
.form-wrapper {
    max-width: 600px;
    margin: 6rem auto;
    padding: 4rem;
    border-radius: 30px;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.input-group {
    margin-bottom: 2rem;
}

label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.6;
}

input,
textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 1.2rem;
    color: var(--text-dark);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: var(--accent-purple);
    outline: none;
}

.full-width {
    width: 100%;
}

/* Sections */
section {
    padding: 8rem 0;
}

/* Flex Helpers */
.flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {

    .hero-content,
    .flex-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .roadmap {
        grid-template-columns: 1fr 1fr;
    }

    .results-banner {
        border-radius: 20px;
        flex-direction: column;
        gap: 2rem;
    }
}/* End custom CSS */
/* Start custom CSS */.grad {
  background: -webkit-linear-gradient(#EC9F05, #FF4E00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.elementor-counter-title{
    text-align: center!important;
}/* End custom CSS */