/* ==========================================
   SCANORA - PROFESSIONAL WEBSITE STYLESHEET
   ========================================== */

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

.logo i {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.stat i {
    font-size: 1.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   TRUST SECTION
   ========================================== */

.trust-section {
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-medium);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.step-time {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--text-medium);
    font-size: 0.875rem;
}

.step-time i {
    color: var(--accent-color);
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.cta-box h3 {
    font-size: 2rem;

    /* ==========================================
       LEGAL PAGES STYLES
       ========================================== */

    .legal-page {
        padding: 4rem 0;
        background: white;
    }

    .legal-content {
        max-width: 900px;
        margin: 0 auto;
        background: white;
        padding: 3rem;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
    }

    .legal-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .last-updated {
        color: var(--text-medium);
        font-style: italic;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid #e2e8f0;
    }

    .legal-content h2 {
        font-size: 1.75rem;
        margin-top: 3rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .legal-content h3 {
        font-size: 1.25rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .info-block {
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: var(--border-radius-md);
        border-left: 4px solid var(--primary-color);
        margin-bottom: 1.5rem;
    }

    .info-block p {
        margin: 0.5rem 0;
        color: var(--text-dark);
    }

    .info-block ul {
        margin: 1rem 0;
        padding-left: 2rem;
    }

    .info-block li {
        margin: 0.5rem 0;
        color: var(--text-dark);
    }

    .info-block a {
        color: var(--primary-color);
        text-decoration: underline;
    }

    .info-block a:hover {
        color: var(--primary-dark);
    }

    .legal-footer {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid #e2e8f0;
        text-align: center;
        color: var(--text-medium);
        font-size: 0.875rem;
    }

    .legal-footer p {
        margin: 0.5rem 0;
    }

    .legal-content ol {
        margin: 1rem 0 1rem 2rem;
    }

    .legal-content ol li {
        margin: 1rem 0;
        line-height: 1.7;
        color: var(--text-dark);
    }

    .legal-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
    }

    .legal-content table th,
    .legal-content table td {
        padding: 1rem;
        text-align: left;
        border: 1px solid #e2e8f0;
    }

    .legal-content table th {
        background: var(--primary-color);
        color: white;
        font-weight: 600;
    }

    .legal-content table tr:nth-child(even) {
        background: #f8fafc;
    }

    .warning-box {
        background: #fef3c7;
        border-left: 4px solid #f59e0b;
        padding: 1.5rem;
        border-radius: var(--border-radius-md);
        margin: 2rem 0;
    }

    .warning-box i {
        color: #f59e0b;
        margin-right: 0.5rem;
    }

    @media (max-width: 768px) {
        .legal-content {
            padding: 2rem 1.5rem;
        }

        .legal-content h1 {
            font-size: 2rem;
        }

        .legal-content h2 {
            font-size: 1.5rem;
        }
    }
    margin-bottom: 1.5rem;
}

/* ==========================================
   SERVICES GRID
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.service-features i {
    font-size: 1rem;
    color: var(--success-color);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.service-price-note {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* ==========================================
   PRICING TRANSPARENCY
   ========================================== */

.pricing-transparency {
    background: var(--bg-light);
}

.pricing-formula {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.formula-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.formula-box h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.formula-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    min-width: 150px;
}

.formula-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.formula-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.formula-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

.formula-plus,
.formula-times {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-medium);
}

.pricing-examples h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.example {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.example-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.example-header span {
    font-weight: 600;
    color: var(--text-dark);
}

.example-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.example-time {
    color: var(--accent-color);
    font-weight: 600;
}

.example-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.example-note {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-top: 0.25rem;
}

.transparency-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
}

.transparency-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.transparency-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--accent-color);
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

    /* ==========================================
       SERVICES PAGE STYLES
       ========================================== */

    /* Service Detail Sections */
    .service-detail {
        padding: 4rem 0;
    }

    .service-content {
        display: flex;
        gap: 3rem;
        align-items: flex-start;
    }

    .service-icon {
        flex-shrink: 0;
    }

    .service-icon i {
        font-size: 5rem;
        color: var(--primary-color);
    }

    .service-text {
        flex: 1;
    }

    .service-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .lead {
        font-size: 1.25rem;
        color: var(--text-medium);
        margin-bottom: 2rem;
    }

    .service-text h3 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .service-list {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .service-list li {
        padding: 0.5rem 0;
        padding-left: 2rem;
        position: relative;
    }

    .service-list li i {
        position: absolute;
        left: 0;
        top: 0.6rem;
        color: var(--secondary-color);
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
    }

    .feature-item {
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: var(--border-radius-md);
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .feature-item i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .feature-item p {
        font-size: 0.875rem;
        color: var(--text-medium);
    }

    /* Pricing Examples */
    .pricing-examples {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
    }

    .example-card {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: var(--border-radius-lg);
        padding: 2rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .example-card:hover {
        border-color: var(--primary-color);
        box-shadow: var(--shadow-md);
    }

    .example-card.featured {
        border-color: var(--secondary-color);
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.1));
    }

    .example-card .badge {
        position: absolute;
        top: -12px;
        right: 20px;
        background: var(--secondary-color);
        color: white;
        padding: 0.375rem 1rem;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 600;
    }

    .example-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .example-card h4 {
        font-size: 1.25rem;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .example-price {
        font-size: 1.75rem;
        font-weight: bold;
        color: var(--primary-color);
        display: block;
        margin-bottom: 1rem;
    }

    .example-card ul {
        list-style: none;
        padding: 0;
    }

    .example-card ul li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--text-medium);
        font-size: 0.9rem;
    }

    .example-card ul li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--primary-color);
    }

    /* Process Steps */
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .process-step {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 1.5rem;
        background: white;
        border-radius: var(--border-radius-md);
        border-left: 4px solid var(--primary-color);
    }

    .step-number {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--primary-color);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        flex-shrink: 0;
    }

    .process-step h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .process-step p {
        color: var(--text-medium);
    }

    /* Info Box */
    .info-box {
        background: #f0f9ff;
        border-left: 4px solid var(--primary-color);
        padding: 1.5rem;
        border-radius: var(--border-radius-md);
        margin: 2rem 0;
    }

    .info-box i {
        color: var(--primary-color);
        margin-right: 0.5rem;
    }

    .info-box p {
        margin: 0;
    }

    /* CTA Box */
    .cta-box {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid #e2e8f0;
    }

    /* FAQ Section */
    .faq-section {
        padding: 4rem 0;
        background: white;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--text-dark);
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .faq-item {
        background: #f8fafc;
        padding: 2rem;
        border-radius: var(--border-radius-md);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--primary-color);
        box-shadow: var(--shadow-md);
    }

    .faq-item h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .faq-item h3 i {
        color: var(--primary-color);
    }

    .faq-item p {
        color: var(--text-medium);
        line-height: 1.6;
    }

    /* Responsive Services */
    @media (max-width: 768px) {
        .service-content {
            flex-direction: column;
            gap: 2rem;
        }

        .service-icon i {
            font-size: 3.5rem;
        }

        .service-text h2 {
            font-size: 1.75rem;
        }

        .lead {
            font-size: 1.125rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .pricing-examples {
            grid-template-columns: 1fr;
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 2rem;
        }
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid,
    .services-grid,
    .testimonials-grid,
    .example-grid {
        grid-template-columns: 1fr;
    }

    .formula {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* ==========================================
   SIGNAL FLOATING BUTTON
   ========================================== */

.signal-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #3A76F0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(58, 118, 240, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.signal-float:hover {
    background: #2E5FBD;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(58, 118, 240, 0.6);
}

.signal-float i {
    color: white;
}

@media (max-width: 768px) {
    .signal-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

