﻿/* ===== HERO SECTION PREMIUM ===== */
.hero-premium {
    width: 100%;
    height: calc(100vh - 180px);
    margin-left: 0;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    position: relative;
    padding: 40px 20px;
    min-height: 500px;
}

.hero-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    padding: 60px 40px;
    animation: fadeInUp 0.9s ease-out;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 207, 79, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(46, 207, 79, 0);
    }
}

.hero-content h1 {
    font-family: 'Impact', sans-serif;
    font-size: 58px;
    color: #ffffff;
    margin: 0;
    font-weight: 380;
    letter-spacing: 3px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content .subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 26px;
    color: #f5f5f5;
    font-weight: 300;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 17px;
    font-family: 'Prompt', sans-serif;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    max-width: 600px;
}

.hero-content .hero-highlight-text {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.btn-whatsapp {
    font-family: 'Michroma', sans-serif;
    background-color: #2ecf4f;
    color: white;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    box-shadow: 0 8px 25px rgba(46, 207, 79, 0.35);
    cursor: pointer;
    font-size: 17px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: buttonPulse 2.5s infinite;
}

.btn-whatsapp:hover {
    background-color: #2ecf4f;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(46, 207, 79, 0.5);
    animation: none;
}

.btn-whatsapp:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-secondary-nav {
    font-family: 'Michroma', sans-serif;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-secondary-nav:hover {
    background-color: white;
    color: #1a3a52;
    transform: translateY(-4px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* ===== TRUST CAROUSEL SECTION - SLIDES WITH CURVED BORDER ===== */
.trust-carousel-section {
    width: 100%;
    padding: 40px 20px;
    background: #ffffff;
    margin: 20px 0;
}

.trust-carousel-container {
    max-width: 1300px;
    margin: 0 auto;
    border: 2px solid #e0e0e0;
    border-radius: 50px 50px 50px 50px / 30px 30px 30px 30px;
    padding: 40px 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease;
}

.trust-carousel-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 6px 15px rgba(0, 0, 0, 0.04);
}

.trustSwiper {
    width: 100%;
    overflow: hidden;
}

.trustSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.trust-slide {
    text-align: center;
    padding: 20px;
    background: transparent;
}

.trust-title {
    font-family: 'Michroma', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-subtitle {
    font-family: 'Michroma', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Swiper Pagination */
.trustSwiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.trustSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cccccc;
    opacity: 1;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trustSwiper .swiper-pagination-bullet-active {
    background: #2ecf4f;
    width: 30px;
}

/* ===== CREDIBILITY SECTION ===== */
.credibility-section {
    background: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    width: 100%;
}

.credibility-section .container {
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
}

.credibility-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.credibility-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.credibility-badges-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
    max-width: 100%;
}

.credibility-item {
    padding: 20px 15px;
}

.credibility-item-title {
    font-weight: 700;
    color: #1a3a52;
    font-size: 18px;
    margin-bottom: 8px;
}

.credibility-item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ===== SECTION HEADER ===== */
.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 16px;
    color: #2a2a2a;
    font-weight: 630;
    letter-spacing: 0.4px;
    font-family: 'Michroma', sans-serif;
    position: relative;
    padding-bottom: 24px;
    line-height: 1.35;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2ecf4f 50%, transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    background: #f9f9f9;
    padding: 80px 0 80px;
    margin: 0;
    position: relative;
    overflow: visible;
    border-top: 1px solid #eaeaea;
}

.categories-section > .container {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.category-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: inherit;
    border: 2px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecf4f 0%, #2ecf4f 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.category-card:hover::before {
    transform: translateX(0);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(46, 207, 79, 0.12);
    border-color: #2ecf4f;
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9f7 0%, #f2f3f1 100%);
    flex-shrink: 0;
}

.category-card:hover .category-icon {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #f0f1ee 0%, #e8e9e6 100%);
}

.category-icon svg {
    width: 32px;
    height: 32px;
    stroke: #3a3a3a;
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.4s ease;
}

.category-card:hover .category-icon svg {
    stroke: #2ecf4f;
}

.category-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 19px;
    font-family: 'Michroma', sans-serif;
    letter-spacing: 0px;
    margin: 0;
    font-weight: 600;
}

.category-description {
    font-size: 14px;
    color: #3a3a3a;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Michroma', sans-serif;
    margin: 0;
    flex-grow: 1;
}

.category-count {
    font-size: 12px;
    color: #555555;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.categories-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}

.categories-cta a {
    background: linear-gradient(135deg, #2ecf4f 0%, #2ecf4f 100%);
    color: white;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    box-shadow: 0 8px 25px rgba(46, 207, 79, 0.35);
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.categories-cta a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(46, 207, 79, 0.5);
}

/* ===== CAROUSEL MOBILE ===== */
.categories-carousel {
    display: none;
}

.swiper {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* ===== LEAD GENERATION CTA ===== */
.lead-gen-section {
    text-align: center;
    margin-top: 0;
    padding: 60px 20px 60px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-top: 1px solid #eaeaea;
}

.lead-gen-section h3 {
    font-family: 'Michroma', sans-serif;
    font-size: 42px;
    font-weight: 620;
    color: #2a2a2a;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    line-height: 1.35;
}

.lead-gen-section p {
    color: #3a3a3a;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-lead-gen {
    display: inline-block;
    background: linear-gradient(135deg, #2ecf4f 0%, #2ecf4f 100%);
    color: white;
    padding: 16px 50px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(46, 207, 79, 0.3);
    cursor: pointer;
    border: none;
    font-family: 'Michroma', sans-serif;
    letter-spacing: 0.5px;
}

.btn-lead-gen:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 207, 79, 0.4);
}

/* ===== MODAL LEAD GEN ===== */
.modal-lead {
    display: none;
    position: fixed;
    z-index: 1300;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 50px 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #555555;
    float: right;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 20px;
    background: none;
    border: none;
}

.close:hover {
    color: #2ecf4f;
}

.modal-content h2 {
    font-family: 'Michroma', sans-serif;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.modal-content p {
    color: #555555;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Michroma', sans-serif;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.form-group input:focus {
    outline: none;
    border-color: #2ecf4f;
    box-shadow: 0 0 0 3px rgba(46, 207, 79, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #2ecf4f 0%, #2ecf4f 100%);
    color: white;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(46, 207, 79, 0.3);
    font-family: 'Michroma', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46, 207, 79, 0.4);
}

.form-group.error input {
    border-color: #ff6b6b;
}

.error-message {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

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

/* ===== ADDRESS SECTION PREMIUM ===== */
.address-section {
    background: linear-gradient(145deg, #fafcfa 0%, #f5f8f5 100%);
    padding: 70px 0;
    margin: 40px 0 20px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.address-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-icon svg {
    width: 48px;
    height: 48px;
}

.address-title {
    font-family: 'Michroma', sans-serif;
    font-size: 32px;
    font-weight: 620;
    color: #1a3a52;
    margin: 0 0 5px 0;
    letter-spacing: 0.3px;
}

.address-text {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.address-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0 5px;
}

.address-badge {
    background: #eafaf1;
    color: #1d6f42;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-address {
    background: transparent;
    color: #1a3a52;
    border: 2px solid #2ecf4f;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-top: 10px;
}

.btn-address:hover {
    background: #2ecf4f;
    color: white;
    border-color: #2ecf4f;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(46, 207, 79, 0.25);
}

.address-map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(46, 207, 79, 0.3);
    background: white;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.map-overlay p {
    color: #1a3a52;
    font-weight: 700;
    margin-top: 10px;
    font-size: 16px;
}

.address-map-placeholder:hover .map-overlay {
    opacity: 1;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.address-map-placeholder:hover .map-image {
    transform: scale(1.05);
}

.workshop-photo-card {
    margin-top: 16px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(46, 207, 79, 0.2);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.workshop-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.workshop-photo-caption {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a3a52;
    font-weight: 600;
    padding: 12px 14px;
    background: linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%);
}

/* ===== SERVICE ACCORDION ===== */
.service-accordion {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #eaeaea;
    overflow: hidden;
    position: relative;
}

.service-accordion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecf4f 0%, #2ecf4f 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-accordion:hover::before {
    transform: translateX(0);
}

.service-accordion:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(46, 207, 79, 0.12);
    border-color: #2ecf4f;
}

.service-accordion-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.12em;
    padding: 16px 20px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.2s;
    border-radius: 12px 12px 0 0;
    font-family: inherit;
}

.service-accordion-icon {
    color: #27ae60;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.service-accordion-title {
    flex: 1;
    text-align: left;
    font-weight: 600;
}

.accordion-arrow {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.service-accordion-content {
    width: 100%;
    background: #f7f7f7;
    border-radius: 0 0 12px 12px;
    padding: 18px 24px;
    margin-top: -2px;
    box-sizing: border-box;
    display: none;
}

.service-items-list {
    margin: 0 0 16px 0;
    padding: 0;
    list-style: none;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.service-item-icon {
    color: #27ae60;
    display: flex;
    align-items: center;
    min-width: 18px;
    flex-shrink: 0;
}

.service-item-text {
    color: #444;
}

/* ===== SERVICES IMAGE LAYOUT ===== */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(165deg, #314b3f 0%, #293d34 55%, #22362d 100%);
    padding: clamp(28px, 4vw, 90px);
    border-radius: 24px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.services-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-image {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.services-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.services-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-title {
    font-size: 32px;
    font-family: 'Michroma', sans-serif;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.12em;
    font-weight: 520;
    width: 100%;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 640px;
}

.service-row {
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: 'Michroma', sans-serif;
    font-size: 15px;
    font-weight: 520;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.service-row-text {
    flex: 1;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 520;
    color: #1a1a1a;
}

.accordion-arrow {
    margin-left: 16px;
    font-size: 18px;
    transition: transform 0.3s;
    color: #293d34;
}

.service-accordion-content {
    width: 100%;
    background: #f7f7f7;
    border-radius: 0 0 12px 12px;
    padding: 18px 24px;
    margin-top: -2px;
    box-sizing: border-box;
    display: none;
}

.service-items-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-item:last-child {
    border-bottom: 0;
}

.service-item-icon {
    color: #1f6f45;
    min-width: 16px;
    margin-top: 2px;
}

.service-item-text,
.service-description-text {
    color: #2f2f2f;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FULL WIDTH SECTION FIX ===== */
.full-width-section {
    width: 100%;
    margin-left: 0;
    position: relative;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #355344 0%, #2b4137 55%, #22362d 100%);
    padding: 80px 0;
    isolation: isolate;
}

.full-width-section::before {
    content: "";
    position: absolute;
    top: -64px;
    left: 0;
    width: 100%;
    height: 88px;
    background: linear-gradient(180deg, rgba(236, 236, 236, 1) 0%, rgba(213, 219, 215, 0.78) 42%, rgba(53, 83, 68, 0) 100%);
    border-bottom-left-radius: 55% 100%;
    border-bottom-right-radius: 55% 100%;
    z-index: 0;
    pointer-events: none;
}

.full-width-section .services-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 90px);
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

/* ===== MAIN CONTENT ADJUSTMENT ===== */
.main-content .container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .trust-carousel-container {
        padding: 30px 15px;
    }
    
    .trust-title {
        font-size: 28px;
    }
    
    .trust-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .services-layout {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .services-title {
        text-align: center;
    }
    
    .full-width-section .services-layout {
        padding: 0 40px;
    }
    
    .full-width-section {
        padding: 50px 0;
    }

    .full-width-section::before {
        top: -44px;
        height: 62px;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        height: auto;
        min-height: 400px;
        margin-bottom: 50px;
        padding: 30px 16px;
    }

    .hero-content {
        max-width: 100%;
        padding: 30px 16px;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 8.5vw, 42px);
        letter-spacing: 2px;
    }

    .hero-content .subtitle {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .btn-whatsapp {
        width: 100%;
        max-width: 360px;
        padding: 14px 28px;
        font-size: 15px;
    }

    .btn-secondary-nav {
        width: 100%;
        max-width: 360px;
        padding: 14px 28px;
        font-size: 14px;
    }

    .trust-carousel-section {
        padding: 30px 15px;
    }

    .services-content {
        transform: translateY(24px);
    }

    .full-width-section::before {
        top: -36px;
        height: 52px;
        border-bottom-left-radius: 65% 100%;
        border-bottom-right-radius: 65% 100%;
    }
    
    .trust-carousel-container {
        padding: 30px 15px;
        border-radius: 40px 40px 40px 40px / 25px 25px 25px 25px;
    }
    
    .trust-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .trust-subtitle {
        font-size: 15px;
    }

    .categories-section {
        padding: 50px 0;
        border-top: 1px solid #eaeaea;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 12px;
        padding-bottom: 20px;
    }

    .section-title::after {
        width: 50px;
        height: 2px;
    }

    .section-subtitle {
        margin-bottom: 40px;
        font-size: 15px;
    }

    .categories-grid {
        display: none;
        margin-top: 60px;
    }

    .categories-carousel {
        display: block;
        margin-top: 60px;
    }

    .category-card {
        padding: 20px;
        gap: 16px;
    }

    .category-icon {
        width: 56px;
        height: 56px;
    }

    .category-icon svg {
        width: 28px;
        height: 28px;
    }

    .category-name {
        font-size: 17px;
    }

    .category-description {
        font-size: 13px;
    }

    .categories-cta {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid #eaeaea;
    }

    .categories-cta a {
        padding: 16px 50px;
        font-size: 15px;
    }

    .lead-gen-section {
        margin-top: 40px;
        padding: 40px 16px;
        border: none;
        border-top: 1px solid #eaeaea;
    }

    .lead-gen-section h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .lead-gen-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .modal-content {
        margin: 16px auto;
        padding: 28px 20px;
        width: 95%;
    }

    .address-section {
        padding: 50px 0;
    }

    .address-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .address-title {
        font-size: 28px;
    }

    .address-text {
        font-size: 16px;
    }

    .address-badges {
        justify-content: flex-start;
    }

    .btn-address {
        width: 100%;
        padding: 14px 24px;
    }

    .address-map-placeholder {
        height: 200px;
        order: -1;
    }

    .workshop-photo {
        height: 150px;
    }
    
    .full-width-section .services-layout {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content .subtitle {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-whatsapp {
        padding: 14px 40px;
        font-size: 14px;
    }

    .btn-secondary-nav {
        padding: 12px 20px;
        font-size: 13px;
    }

    .trust-carousel-container {
        border-radius: 30px 30px 30px 30px / 20px 20px 20px 20px;
        padding: 25px 10px;
    }
    
    .trust-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .trust-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .category-card {
        padding: 20px;
    }

    .category-icon {
        width: 48px;
        height: 48px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }

    .category-name {
        font-size: 16px;
    }

    .categories-cta a {
        padding: 14px 40px;
        font-size: 13px;
    }

    .lead-gen-section {
        padding: 40px 16px;
        margin-top: 40px;
    }

    .lead-gen-section h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .lead-gen-section p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .address-title {
        font-size: 24px;
    }

    .address-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 430px) {
    .hero-premium {
        min-height: 360px;
        margin-bottom: 36px;
    }

    .hero-content {
        padding: 20px 8px;
        gap: 14px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
        gap: 10px;
    }

    .services-layout {
        gap: 24px;
    }

    .service-row {
        padding: 14px 12px;
    }

    .service-row-text {
        font-size: 13px;
    }

    .service-accordion-content {
        padding: 14px;
    }

    .modal-content h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .modal-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .address-section {
        padding: 36px 0;
    }

    .address-text {
        font-size: 15px;
    }
}

/* ========================= */
/* TRUST SLIDER PREMIUM */
/* ========================= */

.trust-slider-section {
    width: 100%;
    margin-left: 0;

    background: #ffffff;

    padding: 80px 0 120px;

    position: relative;

}


/* CURVATURA CENTRAL */

.trust-slider-section::after {

    content: "";

    position: absolute;

    bottom: -1px;

    left: 0;

    width: 100%;

    height: 120px;

    background: #293d34;

    border-top-left-radius: 50% 100%;

    border-top-right-radius: 50% 100%;

}


/* CONTAINER */

.trust-slider-container {

    max-width: 1300px;

    margin: auto;

    padding: 0 40px;

}


/* ITEM */

.trust-item {

    background: white;

    border-radius: 16px;

    padding: 40px;

    text-align: center;

    border: 1px solid #e5e5e5;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;

}


.trust-item:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);

}


/* TEXT */

.trust-title {

    font-family: 'Michroma';

    font-size: 18px;

    margin-bottom: 10px;

}


.trust-subtitle {

    font-size: 14px;

    color: #777;

}


/* SWIPER FIX */

.trustSwiper {

    padding: 20px 10px 40px;

}

/* ============================================== */
/* TRUST SECTION â€” BANNER CURVO PREMIUM DEFINITIVO */
/* ============================================== */

.trust-slider-section {
    width: 100%;
    padding: 72px 16px;
    background: linear-gradient(180deg, #ececec 0%, #e4e4e4 100%);
    display: flex;
    justify-content: center;
}

.trust-slider-section::before,
.trust-slider-section::after {
    content: none;
    display: none;
}

.trust-slider-container {
    width: min(1240px, 100%);
    padding: 34px 36px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #ededed 52%, #f3f3f3 100%);
    box-shadow:
        0 18px 28px rgba(0, 0, 0, 0.22),
        inset 0 8px 16px rgba(255, 255, 255, 0.55),
        inset 0 -10px 18px rgba(0, 0, 0, 0.18);
}

.trust-slider-container::before,
.trust-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 54px;
    height: 100%;
    pointer-events: none;
}

.trust-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 100%);
}

.trust-slider-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 100%);
}

.trustSwiper {
    padding: 6px 8px;
}

.trust-item {
    padding: 14px 22px;
    min-height: 90px;
    height: 100%;
    text-align: center;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    display: grid;
    align-content: center;
    gap: 8px;
}

.trust-title {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(1.05rem, 1.25vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    overflow-wrap: anywhere;
    color: #1e1f23;
    margin: 0;
}

.trust-subtitle {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(0.72rem, 0.82vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    line-height: 1.35;
    overflow-wrap: anywhere;
    color: rgba(30, 31, 35, 0.62);
    margin: 0;
}

@media (max-width: 991px) {
    .trust-slider-section {
        padding: 56px 14px;
    }

    .trust-slider-container {
        padding: 28px 18px;
        border-radius: 0;
    }

    .trust-slider-container::before,
    .trust-slider-container::after {
        width: 40px;
    }
}

@media (max-width: 640px) {
    .trust-slider-section {
        padding: 44px 10px;
    }

    .trust-slider-container {
        padding: 20px 12px;
        border-radius: 0;
        box-shadow:
            0 12px 20px rgba(0, 0, 0, 0.2),
            inset 0 6px 10px rgba(255, 255, 255, 0.45),
            inset 0 -8px 12px rgba(0, 0, 0, 0.16);
    }

    .trust-slider-container::before,
    .trust-slider-container::after {
        display: none;
    }

    .trust-item {
        min-height: 0;
        padding: 10px 10px;
    }

    .trust-subtitle {
        letter-spacing: 0.03em;
    }
}

@media (max-width: 991px) {
    .hero-premium {
        min-height: 460px;
        height: auto;
    }

    .hero-content {
        max-width: 840px;
        padding: 34px 24px;
    }

    .services-layout {
        gap: 28px;
    }

    .address-content {
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .hero-premium {
        min-height: 420px;
        padding: 24px 14px;
        margin-bottom: 36px;
    }

    .hero-content {
        padding: 22px 12px;
        gap: 14px;
    }

    .hero-content h1 {
        font-size: clamp(27px, 8vw, 38px);
        line-height: 1.18;
        letter-spacing: 1.4px;
    }

    .hero-content .subtitle {
        font-size: clamp(15px, 4.2vw, 19px);
        line-height: 1.35;
    }

    .hero-buttons {
        width: 100%;
        gap: 10px;
    }

    .btn-whatsapp,
    .btn-secondary-nav {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        min-height: 46px;
    }

    .trust-slider-section {
        padding: 34px 10px;
    }

    .trust-slider-container {
        border-radius: 44px / 18px;
        padding: 16px 10px;
    }

    .trust-slider-container::before,
    .trust-slider-container::after {
        display: none;
    }

    .trust-item {
        min-height: 0;
        padding: 8px 8px;
    }

    .services-layout {
        grid-template-columns: 1fr;
        padding: 0 14px;
        gap: 22px;
    }

    .services-images {
        display: none;
    }

    .service-row {
        align-items: flex-start;
    }

    .service-row-text {
        white-space: normal;
    }

    .address-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: calc(100% - 20px);
        margin: 10px auto;
        border-radius: 12px;
        padding: 20px 14px;
        max-height: calc(100dvh - 20px);
    }

    .close {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #dcdcdc;
    }
}

@media (max-width: 575px) {
    .hero-premium {
        min-height: 380px;
    }

    .hero-content h1 {
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .trust-title {
        font-size: 14px;
    }

    .trust-subtitle {
        font-size: 11px;
    }

    .address-title {
        font-size: 22px;
    }

    .address-text {
        font-size: 15px;
    }

    .address-badges {
        gap: 8px;
    }

    .address-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .btn-address {
        min-height: 44px;
        font-size: 13px;
        padding: 12px 16px;
    }
}

@media (max-width: 429px) {
    .hero-premium {
        min-height: 340px;
    }

    .hero-content {
        padding: 18px 8px;
    }

    .service-accordion-toggle {
        padding: 12px 10px;
    }

    .service-accordion-content {
        padding: 12px;
    }

    .modal-content {
        width: calc(100% - 12px);
        padding: 16px 12px;
    }

    .btn-submit {
        min-height: 44px;
    }
}

@media (max-width: 359px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content .subtitle {
        font-size: 14px;
    }

    .btn-whatsapp,
    .btn-secondary-nav {
        font-size: 12px;
        padding: 11px 12px;
    }

    .modal-content {
        width: calc(100% - 8px);
        padding: 12px 10px;
    }

    .form-group input,
    .btn-submit {
        font-size: 13px;
    }
}

/* ==================================================== */
/* PHASE 1 PREMIUM ALIGNMENT (Benchmark: Vanguard style) */
/* ==================================================== */

.hero-content {
    max-width: 920px;
    gap: 20px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(16, 24, 32, 0.32);
    color: #f4f7f9;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-content h1 {
    font-family: 'Impact', sans-serif;
    font-size: clamp(28px, 4.2vw, 52px);
    font-weight: 560;
    letter-spacing: 1.3px;
}

.hero-content .subtitle {
    font-size: clamp(13px, 1.45vw, 19px);
    letter-spacing: 0.06em;
    line-height: 1.5;
    max-width: 840px;
}

.hero-content p {
    max-width: 760px;
    font-size: clamp(13px, 1.05vw, 16px);
}

.premium-differentials-section {
    background: #f6f6f6;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 70px 0;
}

.premium-differentials-kicker {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2e6f4f;
    font-weight: 600;
    margin: 0 0 12px;
}

.premium-differentials-title,
.reviews-title,
.services-title,
.who-we-are-title,
.trust-title {
    font-weight: 520;
}

.premium-differentials-title {
    text-align: center;
    margin: 0;
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1.28;
    color: #1f1f1f;
}

.premium-differentials-subtitle {
    text-align: center;
    margin: 16px auto 34px;
    max-width: 780px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.75;
}

.premium-authority-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto 26px;
}

.premium-authority-item {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 12px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.premium-authority-item strong {
    display: block;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #253b31;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.premium-authority-item span {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    color: #5a5a5a;
}

.premium-differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.premium-differential-card {
    background: #ffffff;
    border: 2px solid #eaeaea;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.premium-differential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecf4f 0%, #2ecf4f 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.premium-differential-card:hover::before {
    transform: translateX(0);
}

.premium-differential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(46, 207, 79, 0.12);
    border-color: #2ecf4f;
}

.premium-differential-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    line-height: 1.4;
}

.premium-differential-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
}

.premium-differentials-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.premium-differentials-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 28px;
    border-radius: 999px;
    background: #2ecf4f;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 13px;
    text-decoration: none;
    border: 0;
    box-shadow: 0 8px 25px rgba(46, 207, 79, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-differentials-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(46, 207, 79, 0.5);
}

@media (max-width: 991px) {
    .premium-authority-stats,
    .premium-differentials-grid {
        grid-template-columns: 1fr;
    }

    .premium-differentials-section {
        padding: 56px 0;
    }
}

.who-we-are-section {
    background: linear-gradient(165deg, #314b3f 0%, #293d34 55%, #22362d 100%);
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.who-we-are-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.who-we-are-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}

.who-we-are-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(196, 255, 218, 0.9);
    font-weight: 700;
}

.who-brand-line {
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.who-we-are-title {
    margin: 0 0 14px;
    font-family: 'Prompt', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.who-we-are-text {
    margin: 0 0 12px;
    color: rgba(245, 248, 246, 0.92);
    font-size: 15px;
    line-height: 1.75;
}

.who-we-are-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 999px;
    background: #2ecf4f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(46, 207, 79, 0.35);
}

.who-we-are-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(46, 207, 79, 0.5);
}

.who-we-are-highlights {
    display: grid;
    gap: 14px;
}

.who-highlight-card {
    background: #fefefe;
    border: 2px solid rgba(234, 234, 234, 0.95);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.who-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecf4f 0%, #2ecf4f 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.who-highlight-card:hover::before {
    transform: translateX(0);
}

.who-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(46, 207, 79, 0.12);
    border-color: #2ecf4f;
}

.who-highlight-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.4;
}

.who-highlight-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

.reviews-section {
    background: #f4f4f4;
    padding: 76px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.reviews-frame {
    position: relative;
    background: linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    padding: 34px 28px;
    box-shadow: 0 2px 0 #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.55), 0 18px 36px rgba(0, 0, 0, 0.12), 0 30px 70px rgba(0, 0, 0, 0.08);
}

.reviews-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 28px;
}

.reviews-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2e6f4f;
    font-weight: 700;
}

.reviews-brand-line {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4f5d54;
}

.reviews-title {
    margin: 0;
    font-size: clamp(22px, 2.7vw, 34px);
    line-height: 1.3;
}

.reviews-subtitle {
    margin: 14px auto 18px;
    max-width: 760px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.7;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 10px 14px;
}

.reviews-summary-rating {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #1d2f26;
}

.reviews-summary-meta {
    display: grid;
    text-align: left;
}

.reviews-summary-meta strong {
    font-size: 13px;
    letter-spacing: 0.04em;
}

.reviews-summary-meta span {
    font-size: 12px;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    background: #ffffff;
    border: 2px solid #eaeaea;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecf4f 0%, #2ecf4f 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.review-card:hover::before {
    transform: translateX(0);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(46, 207, 79, 0.12);
    border-color: #2ecf4f;
}

.review-text {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.65;
    color: #3f3f3f;
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.review-stars {
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #1d7a4a;
}

.review-source {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid #d4d4d4;
    background: #fafafa;
    color: #585858;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-author {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2d2d2d;
    font-weight: 700;
}

.reviews-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 999px;
    background: #2ecf4f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(46, 207, 79, 0.35);
}

.reviews-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(46, 207, 79, 0.5);
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 991px) {
    .who-we-are-container,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .who-we-are-section,
    .reviews-section {
        padding: 48px 0;
    }

    .reviews-frame {
        padding: 24px 16px;
        border-radius: 14px;
        box-shadow: 0 2px 0 #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.55), 0 12px 28px rgba(0, 0, 0, 0.12), 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .who-we-are-content,
    .who-highlight-card,
    .review-card {
        padding: 16px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        min-height: 46px;
        border-radius: 999px;
        z-index: 1200;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #2ecf4f;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.06em;
        box-shadow: 0 12px 32px rgba(46, 207, 79, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .address-section {
        padding-bottom: 88px;
    }
}

/* ===== TRUST SLIDER REFINEMENT - PREMIUM VISUAL ===== */
.trust-slider-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 68px 0;
    background: linear-gradient(180deg, #ececec 0%, #e6e6e6 100%);
    overflow: hidden;
}

.trust-slider-section::before {
    display: none;
}

.trust-slider-container {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 40px 26px;
    border-radius: 0;
    border: 1px solid #d4d4d4;
    background: linear-gradient(180deg, #f9f9f9 0%, #f2f2f2 54%, #f8f8f8 100%);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.14),
        0 20px 42px rgba(0, 0, 0, 0.1),
        inset 0 2px 2px rgba(255, 255, 255, 0.72),
        inset 0 -2px 2px rgba(0, 0, 0, 0.08),
        inset 0 14px 16px -14px rgba(0, 0, 0, 0.26),
        inset 0 -14px 16px -14px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    position: relative;
}

.trust-slider-container::before,
.trust-slider-container::after {
    display: none;
}

.trustSwiper {
    padding: 2px 4px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.trustSwiper .swiper-wrapper {
    gap: 0;
    transition-timing-function: linear !important;
    will-change: transform;
}

.trustSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    width: auto;
    box-sizing: border-box;
}

.trust-item {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 12px 18px 14px;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: none;
    gap: 7px;
    transform: none;
    opacity: 1;
    filter: none;
}

.trustSwiper .swiper-slide-prev .trust-item,
.trustSwiper .swiper-slide-next .trust-item {
    transform: none;
    opacity: 1;
    filter: none;
}

.trustSwiper .swiper-slide-active .trust-item {
    transform: none;
    opacity: 1;
    filter: none;
}

.trust-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(82%, 320px);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2ecf4f 0%, #2ecf4f 100%);
    opacity: 0.92;
}

.trust-item:hover {
    opacity: 0.92;
}

.trust-title {
    color: #1f2f27;
    font-size: clamp(0.9rem, 1.05vw, 1.18rem);
    letter-spacing: 0.09em;
    font-weight: 700;
}

.trust-subtitle {
    color: #55635b;
    font-size: clamp(0.64rem, 0.74vw, 0.78rem);
    letter-spacing: 0.065em;
    font-weight: 600;
}

@media (max-width: 991px) {
    .trust-slider-section {
        padding: 50px 0;
    }

    .trust-slider-container {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 30px 14px;
        border-radius: 0;
    }

    .trust-slider-container::before,
    .trust-slider-container::after {
        height: 28px;
    }

    .trust-item {
        min-height: 0;
        padding: 10px 10px 12px;
    }
}

@media (max-width: 640px) {
    .trust-slider-section {
        padding: 38px 0;
    }

    .trust-slider-container {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 24px 10px;
        border-radius: 0;
        box-shadow:
            0 10px 18px rgba(0, 0, 0, 0.12),
            0 18px 32px rgba(0, 0, 0, 0.08),
            inset 0 1px 2px rgba(255, 255, 255, 0.65),
            inset 0 -1px 2px rgba(0, 0, 0, 0.08);
    }

    .trust-slider-container::before,
    .trust-slider-container::after {
        height: 22px;
    }

    .trust-item {
        min-height: 0;
        padding: 8px 8px 10px;
    }

    .trustSwiper .swiper-slide-prev .trust-item,
    .trustSwiper .swiper-slide-next .trust-item {
        transform: scale(0.93);
        opacity: 0.88;
    }

    .trust-title {
        font-size: clamp(0.82rem, 2.8vw, 0.98rem);
    }

    .trust-subtitle {
        font-size: clamp(0.58rem, 2.1vw, 0.68rem);
    }
}

.subtitle,
[class*="subtitle"] {
    font-family: 'Prompt', sans-serif !important;
}

.hero-content h1 {
    font-family: 'Impact', sans-serif;
}


