h3 {
    font-weight: bold;
}
img {
    max-width: 100%;
    height: auto;
}

.landing-section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
}
.landing-section.no-margin-bottom {
    padding: 3rem 0 0 0;
}
.landing-section.highlighted {
    background: #eaf6ff;
    border-radius: var(--border-radius);
}
.centered {
    text-align: center;
}

.landing-hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.15;
}
.landing-hero .subtitle,
.landing-section .subtitle {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}
.landing-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.15rem;
    text-align: center;
}
.landing-section p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 1.15rem;
}

.video-section {
    padding: 0;
}
.video-section iframe {
    max-width: 100%;
    border-radius: var(--border-radius);
    width: 900px;
    height: 505px;
}

.pillars-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.pillars-section .pillar {
    flex: 1;
    width: 33%;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pillars-section h2 {
    display: block;
    width: 100%;
    text-align: center;
}
@media (max-width: 768px) {
    .pillars-section {
        display: block;
    }
    .pillars-section .pillar {
        width: calc(100% - 2rem);
    }
    .pillars-section .pillar:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

.hand-pointer-icon {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 5rem;
    background-image: url('../icons/hand-pointer.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--color-text-secondary);
    text-align: center;
}

.feature-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 1rem 0;
}

.feature-section img {
    object-fit: cover;
    flex-shrink: 0;
    max-width: 30%;
    border-radius: var(--border-radius);
}
.feature-section img.bged {
    background-color: var(--color-overlay);
    box-shadow: 0 0px 5px rgba(0,0,0,0.1);
}
.feature-section img.picto {
    width: 200px;
    height: auto
}

.feature-section .content {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}
.feature-section .content h2 {
    text-align: left;
}
.feature-section h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.feature-section p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Reverse order for right-aligned sections */
.feature-section.right-aligned {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .feature-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature-section.right-aligned {
        flex-direction: column;
    }
    
    .feature-section img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .feature-section img.picto {
        width: 100px;
    }

    .hand-pointer-icon {
        font-size: 2rem;
        height: 2rem;
        width: 2rem;
        line-height: 2rem;
    }
    .landing-section {
        padding: 1rem;
    }
}

.cta-section {
    padding: 1.5rem 0 3rem 0;
}

/* FAQ Section Styling */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--color-overlay);
}

.faq-question span:first-child {
    flex: 1;
    margin-right: 1rem;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--color-overlay);
    display: none;
}

.faq-answer.active {
    display: block;
    padding: 1.25rem;
    max-height: 500px; /* Adjust based on your content */
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer .button-cta {
    margin-top: 1rem;
    display: inline-block;
}


.visual {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
  }
  .visual__mockup {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visual__bar {
    position: absolute;
    height: 2rem;
    border-radius: var(--border-radius);
    left: 0;
    right: 0;
    transform: rotate(-10deg);
  }
  .visual__bar--orange {
    background: var(--color-accent-dark);
    top: 5rem;
    width: 90%;
    left: 5%;
  }
  .visual__bar--yellow {
    background: var(--color-accent-light);
    top: 10rem;
    width: 80%;
    left: 10%;
  }
  .visual__bar--blue {
    background: var(--color-accent-secondary);
    top: 15rem;
    width: 85%;
    left: 7.5%;
  }
  .visual__phone {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 400px;
    background: #000000;
    border-radius: 30px;
    box-shadow: 0 4px 32px rgba(60,60,60,0.10);
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .visual__phone video {
    width: 200px;
    height: 380px;
    background: white;
    border-radius: 20px;
    margin-left: 10px;
    margin-top: 10px;
  }
  .button-cta {
    font-size: 1.2rem;
    border-radius: var(--border-radius-large);
    font-weight: bold;
  }


.footer-content {
    text-align: center;
    padding: 0 1rem;
    font-size: 0.8rem;
}

.legal-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #333;
    text-decoration: underline;
} 

.help-caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
    font-style: italic;
}
.help-caption a {
    color: var(--color-primary);
}

.button-cta {
    background-color: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)) !important;
}

/* Reviews Section Styling */
.reviews-section {
    padding: 4rem 1rem;
}

.google-reviews {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-info {
    flex: 1;
}

.review-info h4 {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.review-text {
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.google-badge:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.google-logo {
    width: 40px;
    height: 40px;
}

.rating-info {
    text-align: left;
}

.rating {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.total-reviews {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .google-reviews {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        width: calc(100% - 3rem);
        max-width: calc(100% - 3rem);
    }
}


