/* =========================================
   RESET & VARIABLES
   ========================================= */
:root {
    /* Requested Primary Colors */
    --acc-lp-orange-start: #fd6802;
    --acc-lp-orange-end: #fcbf02;
    
    /* Requested Blue Shade (Approximated from image) */
    --acc-lp-blue: #0099ff; 
    --acc-lp-blue-hover: #007acc;

    /* Neutrals */
    --acc-lp-dark: #1a1a1a;
    --acc-lp-gray: #555555;
    --acc-lp-light-gray: #f4f8fb;
    --acc-lp-white: #ffffff;
    --acc-lp-border: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--acc-lp-dark);
    line-height: 1.6;
    background-color: var(--acc-lp-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility: Main Container */
.acc-lp-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility: Buttons */
.acc-lp-btn {
    display: inline-block;
    background-color: var(--acc-lp-blue);
    color: var(--acc-lp-white);
    padding: 14px 32px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.acc-lp-btn:hover {
    background-color: var(--acc-lp-blue-hover);
    transform: translateY(-2px);
}

/* =========================================
   TRUSTPILOT WIDGET
   ========================================= */
.acc-lp-trustpilot-section {
    background-color: var(--acc-lp-white);
    padding: 40px 0;
    text-align: center;
}

.trustpilot-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trustpilot-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.trustpilot-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--acc-lp-dark);
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
    color: #00b67a; /* Trustpilot green */
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #00b67a; /* Trustpilot green */
    font-size: 1rem;
}

.trustpilot-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--acc-lp-gray);
}

.rating-score {
    font-weight: 700;
}

.trustpilot-link {
    font-size: 0.85rem;
    color: var(--acc-lp-blue);
    text-decoration: none;
    margin-top: 5px;
}

.trustpilot-link:hover {
    text-decoration: underline;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.acc-lp-hero-section {
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 80vh; /* Adjust height based on content */
}

.acc-lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.acc-lp-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.acc-lp-hero-list {
    list-style: none;
    margin-bottom: 2rem;
}

.acc-lp-hero-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--acc-lp-gray);
}

.acc-lp-list-number {
    background: transparent;
    border: 2px solid var(--acc-lp-orange-start);
    color: var(--acc-lp-orange-start);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.acc-lp-hero-image-wrapper {
    position: relative;
}

.acc-lp-hero-image-wrapper img {
    border-radius: 20px; /* Slight rounding like the collage effect */
}

/* =========================================
   2. STATS BANNER
   ========================================= */
.acc-lp-stats-banner {
    background: linear-gradient(90deg, var(--acc-lp-orange-start) 0%, var(--acc-lp-orange-end) 100%);
    padding: 30px 0;
    color: var(--acc-lp-white);
}

.acc-lp-stats-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.acc-lp-stat-item {
    flex: 1;
    position: relative;
}

/* Vertical dividers between stats */
.acc-lp-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(255,255,255,0.4);
}

.acc-lp-stat-label-top {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.acc-lp-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.acc-lp-stat-label-bottom {
    font-size: 0.9rem;
    font-weight: 600;
}

/* =========================================
   3. SERVICES TRYPTICH
   ========================================= */
.acc-lp-services-section {
    padding: 80px 0;
    text-align: center;
}

.acc-lp-section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.acc-lp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.acc-lp-service-card {
    border: 1px solid var(--acc-lp-border);
    padding: 40px 20px;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}

.acc-lp-service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--acc-lp-blue);
}

.acc-lp-icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--acc-lp-orange-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.acc-lp-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.acc-lp-service-desc {
    font-size: 0.95rem;
    color: var(--acc-lp-gray);
}

/* =========================================
   4. TESTIMONIAL BLOCK
   ========================================= */
.acc-lp-testimonial-section {
    background-color: var(--acc-lp-blue);
    padding: 80px 0 0 0; /* No bottom padding because image sits on bottom */
    color: var(--acc-lp-white);
    overflow: hidden; /* Hide bottom of image if needed */
}

.acc-lp-testimonial-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text wider than image */
    gap: 40px;
    align-items: center;
}

.acc-lp-testimonial-content {
    padding-bottom: 80px;
}

.acc-lp-quote-text {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
}

.acc-lp-stars {
    color: var(--acc-lp-white); /* Or yellow/orange */
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.acc-lp-client-name {
    font-weight: 800;
    font-size: 1.2rem;
    display: block;
}

.acc-lp-client-details {
    font-size: 0.9rem;
    opacity: 0.9;
}

.acc-lp-testimonial-image-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.acc-lp-testimonial-image-container img {
    max-height: 400px;
    object-fit: contain;
    /* Creates the effect of the person standing at bottom of section */
    margin-bottom: -5px; 
}

/* =========================================
   5. MID-PAGE CTA
   ========================================= */
.acc-lp-mid-cta-section {
    background-color: #e6f4fc; /* Very light blue */
    padding: 60px 0;
    text-align: center;
}

.acc-lp-mid-heading {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.acc-lp-mid-sub {
    color: var(--acc-lp-gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* =========================================
   6. FEATURE ROWS (ALTERNATING)
   ========================================= */
.acc-lp-feature-row {
    padding: 80px 0;
}

/* Use this to alternate background colors if desired, 
   design shows white/light grey mix possibly, keeping white for cleanliness */

.acc-lp-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.acc-lp-feature-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.acc-lp-feature-content p {
    font-size: 1.05rem;
    color: var(--acc-lp-gray);
    margin-bottom: 20px;
}

.acc-lp-feature-img img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* =========================================
   7. BOTTOM SERVICE GRID
   ========================================= */
.acc-lp-bottom-grid-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.acc-lp-bottom-grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.acc-lp-bottom-grid-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.acc-lp-bottom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.acc-lp-b-card {
    background: white;
    border: 1px solid var(--acc-lp-border);
    text-align: center;
    transition: transform 0.3s;
}

.acc-lp-b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.acc-lp-b-card-img {
    height: 200px;
    overflow: hidden;
}

.acc-lp-b-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acc-lp-b-card-content {
    padding: 30px 20px;
}

.acc-lp-b-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.acc-lp-b-card-text {
    font-size: 0.9rem;
    color: var(--acc-lp-gray);
    line-height: 1.5;
}

/* =========================================
   8. FINAL CTA
   ========================================= */
.acc-lp-final-cta {
    padding: 60px 0;
    text-align: center;
    background: white;
}

.acc-lp-final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .acc-lp-hero-grid,
    .acc-lp-feature-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 40px;
        text-align: center;
    }

    .acc-lp-services-grid,
    .acc-lp-bottom-cards {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }

    .acc-lp-testimonial-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .acc-lp-testimonial-image-container img {
        max-height: 300px;
    }

    /* Reorder alternating features so image is always top on mobile */
    .acc-lp-feature-grid .acc-lp-feature-img {
        order: -1; 
    }
    
    .trustpilot-header {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .acc-lp-hero-content h1 {
        font-size: 2.2rem;
    }

    .acc-lp-stats-flex {
        flex-direction: column;
        gap: 30px;
    }

    .acc-lp-stat-item:not(:last-child)::after {
        display: none; /* Hide dividers on mobile */
    }

    .acc-lp-services-grid,
    .acc-lp-bottom-cards {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }

    .acc-lp-quote-text {
        font-size: 1.3rem;
    }
    
    .trustpilot-stats {
        flex-direction: column;
        gap: 5px;
    }
}