/* Critical Above-Fold Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

/* Preload critical font display */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    font-display: swap;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.625;
    color: #000000;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #357AD3;
}

h2 {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3125;
    color: #000000;
}

h3 {
    font-weight: 600;
    font-size: 1.625rem;
    line-height: 1.385;
    color: #000000;
}

h4 {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.364;
    color: #357AD3;
}

p {
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    text-decoration: none;
    text-align: center;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #357AD3;
    color: #FFFFFF;
    border-color: #357AD3;
}

.btn-primary:hover {
    background-color: #2a5fa8;
    border-color: #2a5fa8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #357AD3;
    border-color: #357AD3;
}

.btn-secondary:hover {
    background-color: #357AD3;
    color: #FFFFFF;
    transform: translateY(-2px);
}



.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(53, 122, 211, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1,
.nav-brand > a {
    font-size: 1.5rem;
    color: #357AD3;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #357AD3;
}

.cta-nav {
    background-color: #357AD3;
    color: #FFFFFF !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.cta-nav:hover {
    background-color: #2a5fa8;
    color: #FFFFFF !important;
}



/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #357AD3;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(53, 122, 211, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .btn-primary {
    background-color: #FFD449;
    color: #000000;
    border-color: #FFD449;
    box-shadow: 0 4px 15px rgba(255, 212, 73, 0.4);
}

.hero .btn-primary:hover {
    background-color: #e6bf3f;
    border-color: #e6bf3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 212, 73, 0.6);
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}





/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #357AD3;
    font-weight: 700;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD449, #357AD3);
    border-radius: 2px;
}

/* Frustration Section */
.frustration {
    background: #ffffff;
    padding: 4rem 0;
}

.frustration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.frustration-item {
    text-align: left;
    padding: 2rem 0 2rem 2rem;
    background: transparent;
    border-left: 4px solid #357AD3;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    visibility: visible !important;
}

.problem-badge {
    position: absolute;
    top: 0;
    left: -14px;
    width: 28px;
    height: 28px;
    background: #FFD449;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.frustration-icon {
    margin: 0 0 1.5rem 0;
    display: flex;
    justify-content: flex-start;
}

.frustration-icon svg {
    width: 50px;
    height: 50px;
}

.frustration-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.problem-highlight {
    color: #357AD3;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #357AD3;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.frustration-item p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.frustration-item p strong {
    color: #357AD3;
    font-weight: 600;
}

.frustration-stat {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.frustration-stat strong {
    color: #357AD3;
    font-weight: 700;
}

.stat-highlight {
    color: #2c3e50;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(53, 122, 211, 0.2);
    text-align: center;
    contain: layout style paint;
}

.testimonial-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.customer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid #B1E4FA;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    loading: eager;
}

blockquote p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #000000;
}

cite {
    font-weight: 600;
    color: #357AD3;
    font-style: normal;
}

/* Process Section */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-content {
    padding-right: 2rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #357AD3;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #357AD3, #B1E4FA);
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD449, #e6bf3f);
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 212, 73, 0.3);
    border: 3px solid #ffffff;
    z-index: 2;
    position: relative;
}

.timeline-content h3 {
    color: #357AD3;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.process-cta {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.cta-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(53, 122, 211, 0.15);
    border: 1px solid #B1E4FA;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.cta-card h3 {
    color: #357AD3;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #495057;
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.cta-support {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.support-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.phone-link {
    color: #357AD3;
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
}

.phone-link:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

/* Value Section */
.value {
    background-color: #B1E4FA;
    padding: 5rem 0;
}

.value-header {
    text-align: center;
    margin-bottom: 4rem;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD449 0%, #357AD3 100%);
    border-radius: 2px;
}

.value-subtitle {
    font-size: 1.25rem;
    color: #495057;
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 400;
}

.value-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-image {
    position: relative;
}

.value-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(53, 122, 211, 0.15);
    border: 3px solid #ffffff;
}

.value-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(53, 122, 211, 0.03) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.value-content {
    padding: 0;
}

.value-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(177, 228, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #357AD3 0%, #B1E4FA 100%);
}

.benefit-item.featured {
    background: linear-gradient(145deg, #ffffff 0%, #fffcf7 100%);
    border: 2px solid #FFD449;
    box-shadow: 0 12px 40px rgba(255, 212, 73, 0.25);
}

.benefit-item.featured::before {
    background: linear-gradient(180deg, #FFD449 0%, #f4c842 100%);
    width: 6px;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #357AD3;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.benefit-item.featured .benefit-content h3 {
    color: #357AD3;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefit-item.featured .benefit-content p {
    color: #444;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #357AD3 0%, #2a5fa8 100%);
    color: #ffffff;
    padding: 5rem 0;
}

.final-cta .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-cta .container {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    text-align: left;
}

.services-cta .cta-content {
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta p {
    color: #B1E4FA;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.services-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Simplified CTA - benefits section removed for cleaner focus */

.services-cta .cta-benefits {
    justify-content: space-around;
    max-width: 600px;
    margin: 2rem auto;
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.final-cta .btn-primary {
    background-color: #FFD449;
    color: #000000;
    border-color: #FFD449;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.final-cta .btn-primary:hover {
    background-color: #e6bf3f;
    border-color: #e6bf3f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 212, 73, 0.4);
}

/* Services Page Specific CTA Enhancements */
.services-cta .cta-content {
    max-width: none;
}

.cta-benefits-section {
    margin-bottom: 2.5rem;
}

.benefits-heading {
    color: #B1E4FA;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.urgency-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #FFD449;
}

.urgency-message p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

.urgency-message strong {
    color: #FFD449;
}

.services-cta-btn {
    background: linear-gradient(135deg, #FFD449 0%, #e6bf3f 100%);
    box-shadow: 0 6px 20px rgba(255, 212, 73, 0.3);
}

.services-cta-btn:hover {
    background: linear-gradient(135deg, #e6bf3f 0%, #d4a934 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 212, 73, 0.5);
}

/* Footer */
.footer {
    border-top: 3px solid #357AD3;
    position: relative;
}

/* Footer Upper Section - Dark */
.footer-upper {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    padding: 1.75rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-upper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(53, 122, 211, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 212, 73, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Transition Element */
.footer-upper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #357AD3 50%, transparent 100%);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 1.5rem 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Lower Section - Light */
.footer-lower {
    background: linear-gradient(180deg, #e8e9eb 0%, #f0f1f3 50%, #f8f9fa 100%);
    color: #333333;
    padding: 0.75rem 0;
    position: relative;
}

.footer-lower::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(53, 122, 211, 0.1) 25%, 
        rgba(53, 122, 211, 0.2) 50%, 
        rgba(53, 122, 211, 0.1) 75%, 
        transparent 100%);
}

/* Footer Brand Column - Left Aligned */
.footer-brand {
    text-align: left;
}

.footer-brand h3 {
    color: #357AD3;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: #D9D9D9;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-badges {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #D9D9D9;
    background: rgba(255, 212, 73, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #FFD449;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 212, 73, 0.2);
    transform: translateY(-2px);
}

.trust-badge svg {
    flex-shrink: 0;
}

/* Footer Contact Column - Center Aligned */
.footer-contact {
    text-align: center;
}

.footer-contact h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-contact .phone-number {
    color: #FFD449;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-contact .phone-number:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
    text-shadow: 0 4px 8px rgba(255, 212, 73, 0.6);
}

.footer-contact .emergency-note {
    color: #B1E4FA;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-contact .service-area {
    color: #D9D9D9;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-contact .response-time {
    color: #B1E4FA;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Footer Action Column - Right Aligned */
.footer-action {
    text-align: right;
}

.footer-action h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.footer-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #357AD3 0%, #2968c4 100%);
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-cta-btn:hover {
    background: linear-gradient(135deg, #2968c4 0%, #357AD3 100%);
    border-color: #FFD449;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(53, 122, 211, 0.4);
}

.business-hours {
    color: #D9D9D9;
    text-align: right;
}

.business-hours p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.business-hours strong {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer Navigation */
.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
    margin-bottom: 0.5rem;
}

.footer-nav-link {
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: #357AD3;
    background-color: rgba(53, 122, 211, 0.1);
    transform: translateY(-1px);
}

.footer-copyright {
    margin: 0;
}

.footer-copyright p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Simplified Typography Mobile */
    h1, .hero-headline {
        font-size: 2.25rem;
    }

    h2, .section-title {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.375rem;
    }

    .hero-subheadline, p {
        font-size: 1.125rem;
    }

    /* Hero Mobile */
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    /* Simplified Grid Layouts Mobile */
    .frustration-grid,
    .testimonial-grid,
    .process-layout,
    .value-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-content {
        padding-right: 0;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    /* Value Mobile */
    .value {
        padding: 3rem 0;
    }
    
    .value-header {
        margin-bottom: 2.5rem;
    }
    
    .value-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .value-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .value-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .value-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .value-image img {
        height: 250px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 0 0.25rem;
    }
    
    .benefit-item.featured {
        transform: none;
        margin: 0 0.25rem;
    }
    
    .benefit-content h3 {
        font-size: 1.125rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Process CTA Mobile - Remove height constraints */
    .process-cta {
        min-height: auto;
        margin-top: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    


    /* Final CTA Mobile */
    .final-cta {
        padding: 3rem 0;
    }
    
    .final-cta .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .final-cta p {
        font-size: 1.125rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-content {
        text-align: center;
    }
    
    /* Testimonials Mobile - Optimized for Netlify */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials .container {
        padding: 0 1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 0;
        will-change: auto;
        transform: translateZ(0);
    }
    
    .testimonial-card .customer-photo {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        object-fit: cover;
        display: block;
    }
    
    .testimonial-card blockquote p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .testimonial-card cite {
        font-size: 0.9rem;
        font-weight: 600;
        color: #357AD3;
    }
    
    .services-cta .container {
        padding: 0 1rem;
    }
    
    .frustration {
        padding: 3rem 0;
    }
    
    .frustration-grid {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .frustration-item {
        padding: 1.5rem 0 1.5rem 1.5rem;
    }
    
    .frustration-stat {
        font-size: 1rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .final-cta h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Simplified CTA Mobile */
    .services-cta .cta-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        max-width: 320px;
        margin: 1.5rem auto;
    }
    
    .cta-benefit {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .urgency-message {
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .urgency-message p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-image img {
        height: 280px;
    }
    
    .final-cta .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-cta-btn {
        padding: 1rem 2rem;
        font-size: 1.05rem;
        font-weight: 600;
    }

    /* Values Section Mobile */
    .values {
        padding: 3rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
        margin: 1rem 0 1.5rem;
    }
    
    .value-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        margin-bottom: 1.5rem;
    }
    
    .value-icon svg {
        width: 60px;
        height: 60px;
    }
    
    /* Story Section Mobile */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text h2 {
        font-size: 1.875rem;
    }
    
    .story-intro {
        font-size: 1rem;
    }
    
    .story-conclusion {
        font-size: 1rem;
    }
    
    .team-photo {
        height: 250px;
        order: -1;
    }
    
    /* Footer Mobile */
    .footer-upper {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Reset alignments to center on mobile */
    .footer-brand {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-action {
        text-align: center;
    }
    
    .business-hours {
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 1.25rem;
    }

    .footer-brand p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
    }
    
    .footer-contact h4 {
        justify-content: center;
        font-size: 1rem;
    }
    
    .footer-contact .phone-number {
        font-size: 1.3rem;
    }
    
    .footer-contact .emergency-note,
    .footer-contact .service-area {
        font-size: 0.9rem;
    }
    
    .footer-contact .response-time {
        font-size: 0.85rem;
    }
    
    .footer-nav {
        gap: 0.5rem 1.5rem;
    }
    
    .footer-nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.75rem;
    }

    .footer-action h4 {
        font-size: 1rem;
    }
    
    .footer-cta-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.25rem;
    }
    
    .business-hours p {
        font-size: 0.85rem;
    }

    .footer-copyright p {
        font-size: 0.9rem;
    }

    /* Sections Mobile */
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    /* Simplified Extra Small Mobile */
    .hero-headline,
    h1 {
        font-size: 1.875rem;
    }

    .hero-subheadline,
    .final-cta h2,
    h2 {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .services-cta .cta-benefits {
        gap: 1rem;
    }
    
    .cta-benefit {
        font-size: 0.9rem;
    }
    
    .frustration {
        padding: 2.5rem 0;
    }
    
    .frustration-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .frustration-item {
        padding: 1rem 0 1rem 1rem;
    }
    
    /* Simplified Frustration Mobile */
    .frustration-item h3 {
        font-size: 1.125rem;
    }
    
    .frustration-item p,
    .frustration-stat {
        font-size: 0.9rem;
    }
    
    .frustration-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .problem-badge {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        left: -12px;
    }

    .nav-brand h1,
    .nav-brand > a {
        font-size: 1.25rem;
    }

    section {
        padding: 2rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
        font-size: 1.75rem;
    }
    
    .frustration-item {
        padding: 1.5rem 1rem;
    }
    
    .frustration-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .frustration-item h3 {
        font-size: 1.125rem;
    }
    
    .frustration-item p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .process-title {
        font-size: 1.75rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .value-title {
        font-size: 1.75rem;
    }
    
    .value-subtitle {
        font-size: 1rem;
    }
    
    /* Values Section Extra Small Mobile */
    .values {
        padding: 2.5rem 0;
    }
    
    .values-grid {
        padding: 0 0.5rem;
        gap: 1.25rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    /* Personas Section Extra Small Mobile */
    .target-personas {
        padding: 2.5rem 0;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .personas-grid {
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .persona-card {
        padding: 1.5rem 1rem;
    }
    
    .persona-card h3 {
        font-size: 1.125rem;
    }
    
    .persona-problem,
    .persona-solution {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .persona-fit li {
        font-size: 0.9rem;
    }
    
    .persona-cta {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Story Section Extra Small Mobile */
    .story-text h2 {
        font-size: 1.5rem;
    }
    
    .story-conclusion {
        font-size: 0.95rem;
    }
    
    .team-photo {
        height: 200px;
    }
    
    /* Footer Extra Small Mobile */
    .footer-upper {
        padding: 1.25rem 0;
    }
    
    .footer-content {
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.125rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        max-width: 200px;
    }
    
    .footer-contact .phone-number {
        font-size: 1.125rem;
    }
    
    .footer-contact .emergency-note,
    .footer-contact .service-area {
        font-size: 0.85rem;
    }
    
    .footer-contact .response-time {
        font-size: 0.8rem;
    }
    
    .footer-nav {
        gap: 0.25rem 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-cta-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .business-hours p {
        font-size: 0.8rem;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}

/* Accessibility and Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #FFD449;
    outline-offset: 2px;
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .btn,
    .nav-link,
    .hamburger .bar {
        transition: all 0.3s ease;
    }
}

/* Services Page Styles */
.services-problem {
    background-color: #f8f9fa;
    text-align: center;
}

.service-packages {
    padding: 5rem 0;
}

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

.package-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

/* Essential Package Styling */
.package-card.essential {
    border-color: #B1E4FA;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfd 100%);
}

.package-card.essential:hover {
    box-shadow: 0 12px 40px rgba(177, 228, 250, 0.25);
}

/* Complete Package (Featured) Styling */
.package-card.featured.complete {
    border: 3px solid #357AD3;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafe 100%);
    position: relative;
}

.package-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #357AD3 0%, #2a5fa8 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(53, 122, 211, 0.3);
}



/* Premium Package Styling */
.package-card.premium {
    border-color: #FFD449;
    background: linear-gradient(145deg, #ffffff 0%, #fffefa 100%);
}

.package-card.premium:hover {
    box-shadow: 0 12px 40px rgba(255, 212, 73, 0.25);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.package-card h3 {
    color: #357AD3;
}

.package-subtitle {
    color: #495057;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
    font-weight: 400;
}

.package-outcome {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2.25rem;
    line-height: 1.5;
    font-size: 0.95rem;
    color: #495057;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #ffffff;
}

.package-card.essential .package-features li::before {
    background-color: #B1E4FA;
    color: #357AD3;
}

.package-card.complete .package-features li::before {
    background-color: #357AD3;
}

.package-card.premium .package-features li::before {
    background-color: #FFD449;
    color: #000000;
}

.package-cta {
    text-align: center;
    margin-top: auto;
}

/* Enhanced CTA Button Styling */
.essential-btn {
    background: linear-gradient(135deg, #B1E4FA 0%, #87ceeb 100%);
    color: #357AD3;
    border-color: #B1E4FA;
    font-weight: 600;
}



.complete-btn {
    background: linear-gradient(135deg, #357AD3 0%, #2a5fa8 100%);
    color: #ffffff;
    border-color: #357AD3;
    font-weight: 600;
}



.premium-btn {
    background: linear-gradient(135deg, #FFD449 0%, #e6bf3f 100%);
    color: #000000;
    border-color: #FFD449;
    font-weight: 600;
}



/* About Page Styles */
.mission {
    background-color: #f8f9fa;
    text-align: center;
}

.mission-statement {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.values {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values .section-title {
    color: #357AD3;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    border: 2px solid #357AD3;
    box-shadow: 0 4px 12px rgba(53, 122, 211, 0.1);
    display: flex;
    flex-direction: column;
}

.value-card:focus-within {
    outline: 2px solid #FFD449;
    outline-offset: 2px;
}

.value-icon {
    margin-bottom: 2rem;
}

.value-card h3 {
    color: #357AD3;
    margin: 1.5rem 0 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.value-card p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.value-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #B1E4FA, #e8f4fd);
    color: #357AD3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
    border: 1px solid rgba(53, 122, 211, 0.2);
}

.value-benefit svg {
    width: 16px;
    height: 16px;
}

.our-story {
    background-color: #fff9e6;
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: #357AD3;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.story-intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 2rem;
}

.story-intro strong {
    color: #357AD3;
    font-weight: 600;
}

.story-highlights {
    margin: 1.5rem 0 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item span {
    color: #495057;
    font-size: 1rem;
    line-height: 1.4;
}

.story-conclusion {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #357AD3;
    font-weight: 600;
    margin-top: 1.5rem;
}

.team-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.target-personas {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #495057;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.persona-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: left;
    border: 1px solid #e9ecef;
}

.persona-primary {
    border-top: 4px solid #FFD449;
}

.persona-icon {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #B1E4FA, #e8f4fd);
    border-radius: 12px;
    display: inline-block;
}

.persona-card h3 {
    color: #357AD3;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.persona-problem {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffeaa7;
    border-radius: 8px;
    border-left: 4px solid #fdcb6e;
}

.persona-problem p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.persona-problem strong {
    color: #d63031;
    font-weight: 600;
}

.persona-fit {
    margin-bottom: 1.5rem;
}

.persona-fit h4 {
    color: #357AD3;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.persona-fit ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.persona-fit li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #495057;
}

.persona-fit li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #357AD3;
    font-weight: bold;
}

.persona-solution {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #B1E4FA, #e8f4fd);
    border-radius: 8px;
    border-left: 4px solid #357AD3;
}

.persona-solution p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.persona-solution strong {
    color: #357AD3;
    font-weight: 600;
}

.persona-social-proof {
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-quote {
    font-style: italic;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.customer-count {
    font-size: 0.8rem;
    color: #357AD3;
    font-weight: 600;
}

.persona-cta {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #357AD3, #2c5aa0);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #357AD3;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-reassurance {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h4 {
    margin: 0 0 0.25rem 0;
    color: #357AD3;
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.response-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.response-info h3 {
    color: #357AD3;
    margin-bottom: 1rem;
}

.response-info ul {
    list-style: none;
    padding: 0;
}

.response-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.response-info li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #357AD3;
    font-weight: bold;
}

/* FAQ Page Styles */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item.faq-popular {
    background-color: #f8fcff;
    border-left: 4px solid #B1E4FA;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: #357AD3;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: #333;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* FAQ Content Elements */
.trust-indicator {
    background-color: #fff9e6;
    border-left: 3px solid #FFD449;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.trust-indicator strong {
    color: #357AD3;
}

.customer-story {
    background-color: #fafbfc;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 6px;
    font-style: italic;
    color: #555;
    border-left: 3px solid #D9D9D9;
}

.next-step {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #B1E4FA;
    border-radius: 6px;
}

.next-step strong {
    color: #357AD3;
}

.next-step a {
    color: #357AD3;
    text-decoration: underline;
    font-weight: 600;
}

.next-step a:hover {
    color: #2a5ba3;
    text-decoration: none;
}

.still-questions {
    padding: 5rem 0;
}

.questions-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.questions-content h2 {
    color: #357AD3;
    margin-bottom: 1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
}

.contact-option.contact-form {
    border-color: #B1E4FA;
}

.contact-option.contact-primary {
    border-color: #FFD449;
    transform: scale(1.02);
}

.option-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.priority-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background-color: #FFD449;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-option h3 {
    color: #357AD3;
    margin-bottom: 0.5rem;
}

.contact-preference {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 6px;
}

.contact-benefit {
    color: #357AD3;
    font-size: 0.85rem;
    margin: 1rem 0;
    font-weight: 500;
}

.success-indicator {
    margin-top: 2rem;
    text-align: center;
}

.success-indicator p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Updates for New Pages */
@media screen and (max-width: 768px) {
    /* Simplified All Pages - Single Column Grids */
    .packages-grid,
    .values-grid,
    .personas-grid,
    .contact-content,
    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Simplified Card Styling */
    .package-card,
    .persona-card,
    .form {
        padding: 1.75rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Simplified Typography */
    .package-header h3,
    .persona-card h3 {
        font-size: 1.25rem;
    }
    
    .package-subtitle,
    .package-outcome,
    .section-subtitle {
        font-size: 0.9rem;
    }
    

    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Personas Section Mobile */
    .target-personas {
        padding: 3rem 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    

    

    
    .persona-card h3 {
        font-size: 1.25rem;
    }
    
    .persona-icon {
        padding: 0.75rem;
    }
    
    .persona-icon svg {
        width: 36px;
        height: 36px;
    }
    

    

    
    /* FAQ Simplified */
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    /* Mobile FAQ Content Elements */
    .trust-indicator {
        padding: 0.5rem 0.75rem;
        margin: 0.75rem 0;
        font-size: 0.85rem;
    }
    
    .customer-story {
        padding: 0.5rem 0.75rem;
        margin: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .next-step {
        padding: 0.5rem 0.75rem;
        margin-top: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Tablet Contact Options */
    .still-questions {
        padding: 3rem 0;
    }
    
    .contact-options {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
    
    .contact-option.contact-primary {
        transform: scale(1.01);
    }
}

@media screen and (max-width: 480px) {
    /* Extra Small Mobile - Simplified */
    .package-card,
    .form,
    .contact-card,
    .response-info {
        padding: 1.5rem;
    }
    
    .contact-card,
    .response-info {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    /* Small Mobile FAQ Content Elements */
    .trust-indicator {
        padding: 0.5rem;
        margin: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .customer-story {
        padding: 0.5rem;
        margin: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .next-step {
        padding: 0.5rem;
        margin-top: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Mobile Contact Options */
    .contact-option {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-option.contact-primary {
        transform: none;
    }
    
    .contact-preference {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
    
    .contact-benefit {
        font-size: 0.8rem;
    }
    
    .priority-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        top: -8px;
        right: 10px;
    }
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        padding-top: 2rem;
    }
}
