.elementor-kit-33{--e-global-color-primary:#000000;--e-global-color-secondary:#19325A;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-f213b21:#A564D3;--e-global-typography-primary-font-family:"Inter Tight";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter Tight";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter Tight";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter Tight";--e-global-typography-accent-font-weight:500;}.elementor-kit-33 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Color Variables */
:root {
    --primary-blue: hsl(215, 100%, 50%);
    --primary-blue-light: hsl(215, 100%, 95%);
    --marketing-green: hsl(142, 76%, 36%);
    --marketing-green-light: hsl(142, 76%, 95%);
    --marketing-gray: hsl(220, 9%, 46%);
    --marketing-gray-light: hsl(220, 14%, 96%);
    --text-muted: hsl(215, 16%, 47%);
    --red-500: hsl(0, 84%, 60%);
    --yellow-600: hsl(45, 93%, 47%);
    --yellow-100: hsl(54, 92%, 95%);
    --shadow-card: 0 4px 20px -2px hsla(220, 9%, 46%, 0.1);
    --shadow-marketing: 0 10px 40px -10px hsla(215, 100%, 50%, 0.2);
    --gradient-primary: linear-gradient(135deg, hsl(215, 100%, 50%), hsl(215, 100%, 60%));
    --gradient-success: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 76%, 46%));
    --gradient-hero: linear-gradient(135deg, hsl(215, 100%, 50%) 0%, hsl(142, 76%, 36%) 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(to right, white, var(--marketing-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.pain-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.pain-point-icon {
    width: 2rem;
    height: 2rem;
    color: var(--marketing-green);
}

.pain-point-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-trust {
    margin-top: 3rem;
    opacity: 0.8;
}

.trust-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.separator {
    color: var(--marketing-green);
}

/* Buttons */
.btn-primary {
    background: var(--marketing-green);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-marketing);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: hsla(142, 76%, 36%, 0.9);
    box-shadow: 0 15px 50px -10px hsla(215, 100%, 50%, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-marketing);
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-primary-large:hover {
    box-shadow: 0 20px 60px -10px hsla(215, 100%, 50%, 0.4);
    transform: scale(1.05);
}

.btn-form-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-marketing);
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    box-shadow: 0 15px 50px -10px hsla(215, 100%, 50%, 0.3);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.floating-left {
    top: 5rem;
    left: 2.5rem;
}

.floating-right {
    bottom: 5rem;
    right: 2.5rem;
    animation-delay: 1s;
}

.floating-element svg {
    width: 2rem;
    height: 2rem;
    color: var(--marketing-green);
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Sections */
.problem-solution-section {
    padding: 6rem 0;
    background: white;
}

.success-stories-section {
    padding: 6rem 0;
    background: var(--marketing-gray-light);
}

.guarantee-section {
    padding: 6rem 0;
    background: var(--marketing-gray-light);
}

.contact-form-section {
    padding: 6rem 0;
    background: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-red {
    background: var(--red-500);
    color: white;
}

.badge-green {
    background: var(--marketing-green);
    color: white;
}

.badge-blue {
    background: var(--primary-blue);
    color: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
}

/* Problem Section */
.problems-section {
    margin-bottom: 5rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.problem-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--red-500);
    display: flex;
    gap: 1rem;
}

.problem-icon-wrapper {
    background: rgba(239, 68, 68, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.problem-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--red-500);
}

.problem-content {
    flex: 1;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.problem-description {
    color: var(--text-muted);
}

/* Transition */
.transition-section {
    text-align: center;
    margin-bottom: 5rem;
}

.transition-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-hero);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.transition-badge svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--marketing-green);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: var(--shadow-marketing);
}

.solution-icon-wrapper {
    background: var(--marketing-green-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.solution-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--marketing-green);
}

.solution-content {
    flex: 1;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.solution-description {
    color: var(--text-muted);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-card {
    background: var(--primary-blue-light);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.story-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: var(--shadow-marketing);
}

.story-header {
    height: 0.5rem;
    margin-bottom: 1.5rem;
}

.story-header.green {
    background: var(--marketing-green);
}

.story-header.blue {
    background: var(--primary-blue);
}

.story-header.accent {
    background: var(--marketing-green);
}

.story-card > * {
    padding: 0 1.5rem;
}

.story-card > .story-header {
    padding: 0;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.story-badge .story-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    background: var(--marketing-green);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.client-badge {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-metric {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.story-metric.success {
    background: var(--gradient-success);
    color: white;
}

.metric-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.story-metrics-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-before {
    text-align: center;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.5rem;
}

.metric-before .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
}

.metric-before .metric-label {
    font-size: 0.875rem;
    color: #b91c1c;
}

.metric-after {
    text-align: center;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 0.5rem;
}

.metric-after .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

.metric-after .metric-label {
    font-size: 0.875rem;
    color: #15803d;
}

.story-cost-improvement {
    text-align: center;
    padding: 0.75rem;
    background: var(--primary-blue-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.cost-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.cost-value {
    font-weight: 700;
}

.story-cost-range {
    text-align: center;
    padding: 0.75rem;
    background: var(--marketing-green-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.story-cost-range .cost-label {
    color: var(--marketing-green);
}

.story-period {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.story-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-image {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Guarantee Section */
.guarantee-main {
    max-width: 64rem;
    margin: 0 auto 4rem;
}

.guarantee-card {
    background: linear-gradient(135deg, white, rgba(34, 197, 94, 0.05));
    border: 4px solid var(--marketing-green);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-marketing);
}

.guarantee-icon {
    background: var(--marketing-green);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.guarantee-icon svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.guarantee-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.guarantee-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.guarantee-quote {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--marketing-green);
}

.quote-text {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.quote-subtext {
    color: var(--text-muted);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-marketing);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon.blue {
    background: var(--primary-blue-light);
}

.benefit-icon.green {
    background: var(--marketing-green-light);
}

.benefit-icon.yellow {
    background: var(--yellow-100);
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
}

.benefit-icon.blue svg {
    color: var(--primary-blue);
}

.benefit-icon.green svg {
    color: var(--marketing-green);
}

.benefit-icon.yellow svg {
    color: var(--yellow-600);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.benefit-value {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.benefit-card:nth-child(1) .benefit-value {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.benefit-card:nth-child(2) .benefit-value {
    background: var(--marketing-green-light);
    color: var(--marketing-green);
}

.benefit-card:nth-child(3) .benefit-value {
    background: var(--yellow-100);
    color: #b45309;
}

/* Contact Form */
.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.value-prop:nth-child(1) {
    background: var(--marketing-green-light);
}

.value-prop:nth-child(2) {
    background: var(--primary-blue-light);
}

.value-prop-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.value-prop:nth-child(1) .value-prop-icon {
    color: var(--marketing-green);
}

.value-prop:nth-child(2) .value-prop-icon {
    color: var(--primary-blue);
}

.value-prop-content {
    text-align: left;
}

.value-prop-title {
    font-weight: 600;
}

.value-prop-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-marketing);
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.analysis-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    padding-top: 1.5rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1.25rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .guarantee-card {
        padding: 2rem;
    }
    
    .guarantee-title {
        font-size: 1.875rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}/* End custom CSS */