/**
 * PAGES.CSS - Page Specific Styles
 * Hero, Services, Testimonials, FAQ, Content Pages
 * Mobile-First & Performance Optimized
 * @version 2.0
 */

/* ============================================ */
/* HERO SECTION - Mobile Optimized */
/* ============================================ */

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 50px 0 40px;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Blue Overlay - Optimized */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(45, 75, 188, 0.92) 0%,
        rgba(59, 91, 219, 0.88) 50%,
        rgba(76, 110, 245, 0.85) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 70px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 1.3;
}

.badge-item svg {
    flex-shrink: 0;
    color: #ffa94d;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    width: 18px;
    height: 18px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Tablet */
@media (min-width: 768px) {
    .hero {
        min-height: 550px;
        padding: 60px 0 50px;
    }
    
    .hero-overlay::before {
        width: 500px;
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .hero-stats {
        gap: 30px;
        margin-bottom: 2rem;
        padding-top: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .hero-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 2rem;
    }
    
    .badge-item {
        flex-direction: row;
        gap: 8px;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .badge-item svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 15px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        min-height: 600px;
        padding: 80px 0 60px;
    }
    
    .hero-overlay::before {
        width: 600px;
        height: 600px;
        top: -50%;
    }
    
    .hero-overlay::after {
        width: 400px;
        height: 400px;
        bottom: -30%;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* ============================================ */
/* SERVICES */
/* ============================================ */

.services {
    background-color: var(--bg-light);
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Tablet */
@media (min-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* ============================================ */
/* WHY US */
/* ============================================ */

.why-us {
    padding: 50px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Tablet */
@media (min-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .why-us {
        padding: 80px 0;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ============================================ */
/* TESTIMONIALS */
/* ============================================ */

.testimonials {
    background-color: var(--bg-light);
    padding: 50px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Tablet */
@media (min-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* ============================================ */
/* FAQ - Mobile Optimized */
/* ============================================ */

.faq {
    background-color: white;
    padding: 50px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    background-color: white;
}

.faq-item:hover {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 45px 14px 14px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
    position: relative;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    background-color: var(--bg-light);
    color: var(--primary-600);
}

.faq-question:active {
    background-color: var(--gray-100);
}

.faq-item.active .faq-question {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

.faq-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-600);
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary-700);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 14px 14px;
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0;
    font-size: 0.9rem;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 18px 55px 18px 20px;
        font-size: 1.0625rem;
    }
    
    .faq-icon {
        right: 20px;
        width: 24px;
        height: 24px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-question {
        font-size: 1.125rem;
    }
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section::before {
        width: 500px;
        height: 500px;
    }
    
    .cta-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-description {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section::before {
        width: 600px;
        height: 600px;
        top: -50%;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
}

/* ============================================ */
/* PAGE HERO (Content Pages) */
/* ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    padding: 40px 0 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: white;
}

.page-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: white;
}

.page-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .page-hero {
        padding: 50px 0 40px;
    }
    
    .page-hero::before {
        width: 400px;
        height: 400px;
        top: -50%;
    }
    
    .breadcrumb {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .page-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================ */
/* CONTENT PAGES */
/* ============================================ */

.about-content {
    padding: 50px 0;
    background-color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.content-main {
    max-width: 100%;
}

.content-block {
    margin-bottom: 40px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.content-block h3 {
    font-size: 1.125rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-block h3 svg {
    color: var(--accent-500);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.content-block p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.content-block ul {
    margin-bottom: 1.25rem;
}

.content-block li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--primary-600);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 1rem;
}

.values-list svg {
    color: var(--accent-500);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    margin-bottom: 12px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.advantages-list li:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
    border-color: var(--primary-500);
}

.advantages-list svg {
    flex-shrink: 0;
    color: var(--accent-500);
    width: 22px;
    height: 22px;
}

.advantages-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 1.0625rem;
}

.advantages-list p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.content-sidebar {
    position: static;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.contact-info svg {
    flex-shrink: 0;
    color: var(--primary-600);
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.contact-info a {
    color: var(--text-medium);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.contact-info a:hover {
    color: var(--primary-600);
}

.contact-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.services-links {
    list-style: none;
    padding: 0;
}

.services-links li {
    margin-bottom: 6px;
}

.services-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--text-medium);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.services-links a:hover {
    background-color: var(--bg-light);
    color: var(--primary-600);
    padding-left: 16px;
}

.services-links svg {
    flex-shrink: 0;
    color: var(--primary-600);
    width: 16px;
    height: 16px;
}

/* Tablet */
@media (min-width: 768px) {
    .about-content {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }
    
    .content-block {
        margin-bottom: 45px;
    }
    
    .content-block h2 {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem;
    }
    
    .content-block h3 svg {
        width: 20px;
        height: 20px;
    }
    
    .advantages-list li {
        flex-direction: row;
        gap: 15px;
        padding: 18px;
        margin-bottom: 15px;
    }
    
    .advantages-list li:hover {
        transform: translateX(5px);
    }
    
    .advantages-list svg {
        width: 24px;
        height: 24px;
        margin-top: 3px;
    }
    
    .advantages-list strong {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
    
    .advantages-list p {
        font-size: 0.95rem;
    }
    
    .content-sidebar {
        position: sticky;
        top: 100px;
        align-self: start;
    }
    
    .contact-info li {
        margin-bottom: 15px;
    }
    
    .contact-info svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-info a,
    .contact-info strong {
        font-size: 1rem;
    }
    
    .services-links a {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .services-links a:hover {
        padding-left: 20px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .about-content {
        padding: 80px 0;
    }
    
    .content-grid {
        gap: 60px;
    }
    
    .content-block {
        margin-bottom: 50px;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .values-list li {
        padding: 15px 0;
    }
    
    .advantages-list li {
        padding: 20px;
    }
}

/* ============================================ */
/* SERVICE AREAS */
/* ============================================ */

.service-areas {
    background-color: var(--bg-light);
    padding: 50px 0;
}

.areas-content {
    max-width: 900px;
    margin: 0 auto;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.area-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.area-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary-600);
    flex-shrink: 0;
}

.area-badge:hover {
    border-color: var(--primary-500);
    background: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.areas-cta {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.areas-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.areas-text strong {
    color: var(--primary-600);
    font-weight: 700;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .service-areas {
        padding: 60px 0;
    }
    
    .areas-list {
        gap: 15px;
    }
    
    .area-badge {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .area-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .areas-cta {
        padding: 40px;
    }
    
    .areas-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .service-areas {
        padding: 80px 0;
    }
}

/* ============================================ */
/* HOW TO SECTION */
/* ============================================ */

.how-to {
    padding: 50px 0;
    background: white;
}

.how-to-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.how-to-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: var(--transition);
}

.how-to-step:hover {
    border-color: var(--primary-500);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.step-number {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--accent-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .how-to {
        padding: 60px 0;
    }
    
    .how-to-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .how-to-step {
        padding: 35px 25px;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
    }
    
    .step-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.375rem;
        margin-bottom: 15px;
    }
    
    .step-description {
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .how-to {
        padding: 80px 0;
    }
    
    .how-to-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================ */
/* TRUST BADGES */
/* ============================================ */

.trust-badges {
    padding: 50px 0;
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.trust-card {
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.trust-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.trust-icon svg {
    width: 48px;
    height: 48px;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0;
}

.trust-description strong {
    color: var(--text-dark);
    font-weight: 700;
}

.trust-footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.trust-stats-title {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.trust-stats-title strong {
    color: var(--primary-600);
    font-weight: 700;
}

.trust-stats-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Tablet */
@media (min-width: 768px) {
    .trust-badges {
        padding: 60px 0;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .trust-card {
        padding: 40px 30px;
    }
    
    .trust-icon {
        width: 100px;
        height: 100px;
    }
    
    .trust-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .trust-title {
        font-size: 1.375rem;
    }
    
    .trust-description {
        font-size: 1rem;
    }
    
    .trust-footer {
        padding: 35px 40px;
        margin-top: 50px;
    }
    
    .trust-stats-list {
        gap: 30px;
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .trust-badges {
        padding: 80px 0;
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ============================================ */
/* BLOG GUIDES */
/* ============================================ */

.blog-guides {
    padding: 50px 0;
    background: white;
}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.guide-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.guide-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: var(--transition);
}

.guide-card:hover .guide-overlay {
    opacity: 1;
}

.guide-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.guide-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.guide-title a:hover {
    color: var(--accent-600);
}

.guide-excerpt {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.guide-reading-time {
    font-size: 0.875rem;
    color: var(--text-light);
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-600);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.guide-link:hover {
    gap: 10px;
    color: var(--accent-700);
}

.guide-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .blog-guides {
        padding: 60px 0;
    }
    
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-image {
        height: 220px;
    }
    
    .guide-content {
        padding: 30px;
    }
    
    .guide-title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    
    .guide-excerpt {
        font-size: 1rem;
    }
    
    .guide-link {
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .blog-guides {
        padding: 80px 0;
    }
    
    .guides-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guide-image {
        height: 240px;
    }
}

/* ============================================ */
/* CTA SECTION - Balanced Design */
/* ============================================ */

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-badge svg {
    width: 18px;
    height: 18px;
}

/* Title & Description */
.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Features */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-cta.btn-primary {
    background: white;
    color: var(--primary-600);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta.btn-primary:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn-cta.btn-whatsapp:hover {
    transform: translateY(-2px);
}

/* Guarantee */
.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin: 0;
}

.cta-guarantee svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-guarantee strong {
    font-weight: 700;
    color: white;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-badge {
        font-size: 0.9375rem;
        padding: 12px 24px;
    }
    
    .cta-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    .cta-features {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .cta-feature {
        padding: 12px 22px;
        font-size: 1rem;
    }
    
    .cta-feature svg {
        width: 22px;
        height: 22px;
    }
    
    .cta-buttons {
        flex-direction: row;
        max-width: 700px;
    }
    
    .btn-cta {
        flex: 1;
    }
    
    .btn-cta svg {
        width: 24px;
        height: 24px;
    }
    
    .cta-guarantee {
        font-size: 1rem;
    }
    
    .cta-guarantee svg {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 100px 0;
    }
    
    .cta-title {
        font-size: 3rem;
    }
}