/* Variables CSS */
:root {
    --primary-blue: #007bff;
    --dark-blue: #1a237e;
    --light-blue: #e0f2f7;
    --accent-orange: #ff9800;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --gray-bg: #f8f9fa;
    --light-gray: #eceff1;
    --border-color: #dee2e6;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Scrollbar personalizada - Naranja */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c00;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-orange) #f1f1f1;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    scroll-behavior: smooth;
}

/* Skip to main content - Accessibility */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--dark-blue);
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 0;
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Fade-in animation for sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1em;
    }
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

section {
    padding: 80px 0;
    overflow: hidden;
    /* Clear floats / prevent content spill */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 3.2em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.8em;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-light) !important;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.text-orange {
    color: var(--accent-orange) !important;
}

/* Backgrounds */
.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-gray-gradient {
    background: linear-gradient(180deg, var(--light-gray) 0%, #fff 100%);
}

.bg-blue-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Section Tags & Descriptions */
.section-tag {
    display: inline-block;
    background-color: rgba(0, 123, 255, 0.1);
    /* primary-blue with transparency */
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.section-tag::before {
    content: '\f111';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent-orange);
    font-size: 0.7em;
    vertical-align: middle;
}

/* Specific icons for each section tag */
.section-tag-results::before {
    content: '\f201';
    /* chart-line */
    font-size: 0.9em;
}

.section-tag-process::before {
    content: '\f0e7';
    /* tasks */
    font-size: 0.9em;
}

.section-tag-tech::before {
    content: '\f544';
    /* robot */
    font-size: 0.9em;
}

.section-tag-human::before {
    content: '\f0c0';
    /* users */
    font-size: 0.9em;
}

.section-tag-investment::before {
    content: '\f155';
    /* dollar-sign */
    font-size: 0.9em;
}

.section-tag-success::before {
    content: '\f091';
    /* trophy */
    font-size: 0.9em;
}

.section-tag-alliances::before {
    content: '\f2b5';
    /* handshake */
    font-size: 0.9em;
}

.section-tag-faq::before {
    content: '\f059';
    /* question-circle */
    font-size: 0.9em;
}

/* Add flat blue icons to specific section tags */
.problem-content .section-tag::before {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent-orange);
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-blue-gradient .solution-content .section-tag::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent-orange);
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-tag.text-blue {
    background-color: rgba(0, 123, 255, 0.1);
}

.bg-dark-blue .section-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.bg-dark-blue .section-tag::before,
.bg-blue-gradient .section-tag::before {
    color: var(--accent-orange);
}

.bg-blue-gradient .section-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.section-title {
    margin-bottom: 25px;
    font-size: 2.5em;
    /* Default for h2 */
    color: var(--dark-blue);
}

.bg-dark-blue .section-title,
.bg-blue-gradient .section-title {
    color: var(--text-light);
}

.section-description {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

.bg-dark-blue .section-description,
.bg-blue-gradient .section-description {
    color: rgba(255, 255, 255, 0.8);
}


/* --- Header --- */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--dark-blue);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .btn {
    margin-left: 20px;
    color: #fff;
    /* Ensure button text is white */
}

.nav-btn {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.hamburger {
    display: none;
    font-size: 1.5em;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}


/* --- Hero Section --- */
.hero {
    background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
    /* Light blueish gradient */
    padding: 100px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--accent-orange);
}

.hero-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-btn {
    margin-bottom: 40px;
}

.hero-benefits {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--primary-blue);
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.hero-benefits p {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.hero-benefits ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-benefits ul li {
    font-size: 0.95em;
    color: #444;
    display: flex;
    align-items: center;
}

.hero-benefits ul li i {
    color: var(--primary-blue);
    margin-right: 8px;
    font-size: 1.1em;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.hero-svg-img {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin-top: 40px;
}

/* --- Trust Logos --- */
.trust-logos {
    padding: 20px 0 0 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-logos .section-description {
    margin-bottom: 10px;
    color: #666;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.logo-grid img {
    max-width: 100px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Problem/Solution Sections --- */
.problem-solution-section {
    padding: 100px 0;
}

.problem-solution-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-solution-section .content-left,
.problem-solution-section .content-right {
    flex: 1;
}

.problem-solution-section .problem-image,
.problem-solution-section .solution-image {
    flex: 1;
    text-align: center;
}

.problem-solution-section img {
    max-width: 70%;
    height: auto;
}

.problem-list,
.solution-list {
    margin-top: 20px;
    margin-bottom: 30px;
}

.problem-list li,
.solution-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.problem-list li i {
    color: var(--accent-orange);
    margin-right: 15px;
    font-size: 1.2em;
}

.solution-list li i {
    color: var(--accent-orange);
    margin-right: 15px;
    font-size: 1.2em;
}

/* Reverse layout for solution section */
.problem-solution-section.reverse-layout .container {
    flex-direction: row-reverse;
}

/* --- Benefits Section --- */
.benefits-section {
    text-align: center;
    padding: 100px 0;
}

.benefits-section .section-description.full-width {
    max-width: 100%;
    width: 100%;
}

/* Compact Benefits Design */
.benefits-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    padding-left: 10px;
}

.benefit-item:hover .benefit-icon-small {
    background-color: var(--accent-orange);
    transform: scale(1.1);
}

.benefit-icon-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3em;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Legacy support */
.benefits-grid {
    display: none;
}

.benefit-card {
    display: none;
}


/* --- How It Works Section --- */
.how-it-works-section {
    text-align: center;
    padding: 100px 0;
}

.how-it-works-section .section-description {
    margin-bottom: 10px;
}

/* Journey Design */
.journey-container {
    position: relative;
    margin-top: 10px;
    padding: 20px 0 60px 0;
    overflow: visible;
}

.journey-path {
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: var(--accent-orange);
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

.journey-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    z-index: 2;
    flex-wrap: nowrap;
    padding: 0 20px;
}

.journey-step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.journey-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #fff;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.journey-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.journey-content {
    text-align: center;
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.journey-content h3 {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.3;
    height: 5.2em;
    display: block;
    text-align: center;
}

.journey-content h3 span {
    color: var(--accent-orange);
    margin-right: 4px;
    font-weight: 700;
}

.journey-content p {
    font-size: 0.75em;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Legacy support for old class names */
.how-it-works-grid {
    display: none;
}

.step-card {
    display: none;
}

.step-icon {
    display: none;
}

/* --- Platform Section --- */
.platform-section {
    text-align: center;
    padding: 100px 0;
}

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: left;
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card .icon-small {
    font-size: 2em;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9em;
    color: #666;
}

/* --- Service Section --- */
.service-section {
    padding: 100px 0;
}

.service-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-content {
    flex: 1;
}

.service-content .section-description {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
}

.service-list {
    margin-top: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-item i {
    font-size: 1.5em;
    color: var(--primary-blue);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
    text-shadow: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-item p {
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    color: #666;
}

.service-item-title-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.service-item-title-row i {
    font-size: 1.5em;
    color: var(--primary-blue);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-item-text {
    flex: 1;
    line-height: 1.5;
}

.service-item-title-row strong {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1em;
    display: inline;
    margin-bottom: 0;
    line-height: 1.5;
}

.service-item-description {
    color: #666;
    font-size: 0.9em;
    display: inline;
    line-height: 1.5;
}

.service-item p {
    display: none; /* Ocultar p en desktop ya que ahora está en title-row */
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* --- Pricing Section --- */
.pricing-section {
    text-align: center;
    padding: 100px 0;
}

.pricing-section .section-description.full-width {
    max-width: 100%;
    width: 100%;
}

/* Full width pricing section */
.pricing-full-width {
    width: 100%;
}

/* Setup Fee Box */
.setup-fee-box {
    background-color: rgba(0, 123, 255, 0.15);
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 15px;
    padding: 40px 0;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.setup-fee-box h3 {
    color: var(--primary-blue);
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.setup-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.setup-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.setup-features-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.setup-features-list li i {
    color: var(--accent-orange);
    font-size: 1.1em;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Services Section */
.services-title {
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 15px;
    text-align: center;
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
}

/* Services Grid Full Width */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 50px;
}

.service-box {
    background-color: rgba(0, 123, 255, 0.15);
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.service-box h4 {
    color: var(--primary-blue);
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    margin-bottom: 25px;
    font-style: italic;
}

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

.service-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95em;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li i {
    color: var(--accent-orange);
    font-size: 1em;
    flex-shrink: 0;
}

.pricing-section h3 {
    color: var(--text-light);
    font-size: 2em;
    margin-top: 50px;
    margin-bottom: 30px;
}

.pricing-section p {
    color: rgba(255, 255, 255, 0.8);
}

.setup-fee {
    margin-bottom: 80px;
}

.setup-features {
    text-align: left;
    max-width: 800px;
    margin: 30px auto 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    /* Override default ul style */
}

.setup-features li {
    display: flex;
    align-items: flex-start;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.setup-features li i {
    color: var(--accent-orange);
    margin-right: 10px;
    margin-top: 2px;
}

.setup-features-simple {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px auto;
    max-width: 700px;
    text-align: center;
}

.setup-features-simple li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.setup-features-simple li i {
    color: var(--accent-orange);
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.setup-table-wrapper,
.pricing-table-wrapper {
    overflow-x: auto;
    /* Enable horizontal scrolling on small screens */
    margin: 0 auto;
    max-width: 100%;
}

/* Old setup table - keeping for backward compatibility */
.setup-table,
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    color: var(--text-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    min-width: 700px;
    /* Ensure tables don't get too narrow */
}

.setup-table th,
.pricing-table th {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

.setup-table td,
.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.95em;
}

.setup-table tr:last-child td,
.pricing-table tr:last-child td {
    border-bottom: none;
}

/* ===== MODERN SETUP TABLE STYLES ===== */

/* Mobile Setup Cards */
.setup-cards-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.setup-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.setup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.setup-card-label {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.setup-card-price {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Modern Desktop Setup Table */
.setup-table-modern {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: none;
    /* Hidden by default, shown on desktop */
}

.setup-table-modern thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.setup-table-modern th {
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1em;
}

.setup-table-modern tbody tr {
    transition: background-color 0.2s ease;
}

.setup-table-modern tbody tr:hover {
    background-color: #f8f9fa;
}

.setup-table-modern tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.setup-table-modern tbody tr:nth-child(even):hover {
    background-color: #f0f2f5;
}

.setup-table-modern td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95em;
    vertical-align: middle;
    color: #333 !important;
}

.setup-table-modern td:first-child {
    font-weight: 500;
    color: var(--dark-blue) !important;
}

.setup-table-modern tr:last-child td {
    border-bottom: none;
}

.setup-table-modern .price-value {
    font-size: 1.3em;
    color: var(--primary-blue) !important;
}

/* Responsive: Show cards on mobile, table on desktop */
@media (min-width: 992px) {
    .setup-cards-mobile {
        display: none;
    }
    
    .setup-table-modern {
        display: table;
    }
}

@media (max-width: 991px) {
    .setup-cards-mobile {
        display: grid;
    }
    
    .setup-table-modern {
        display: none;
    }
}

.pricing-table tbody tr:nth-child(even) {
    background-color: #f0f8ff;
    /* Lightest blue for alternating rows */
}

.pricing-table td i.fa-check {
    color: var(--primary-blue);
    font-size: 1.1em;
}

.pricing-table td i.fa-times-circle {
    color: #dc3545;
    /* Red for 'no' */
    font-size: 1.1em;
}


/* Highlighted Plan */
.pricing-table th.highlight-plan,
.pricing-table td.highlight-plan {
    background-color: rgba(255, 152, 0, 0.15);
    /* Light orange for highlight */
    color: var(--dark-blue);
    font-weight: 600;
}

.pricing-table th.highlight-plan {
    background-color: var(--accent-orange);
    color: var(--text-light);
    border-top: 2px solid var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
}

.pricing-table td.highlight-plan {
    background-color: rgba(255, 152, 0, 0.1);
    /* Light orange for rows */
}

.pricing-table td.highlight-plan strong {
    color: var(--accent-orange);
    /* Price in highlight plan */
}

/* ===== MODERN PRICING TABLE STYLES ===== */

/* Mobile Pricing Cards */
.pricing-cards-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border: 3px solid var(--accent-orange);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: #fff;
    padding: 30px 25px;
    text-align: center;
}

.pricing-card-featured .pricing-card-header {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
}

.pricing-card-header h4 {
    margin: 0 0 15px 0;
    font-size: 1.5em;
    font-weight: 700;
}

.pricing-card-price {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-card-price span {
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.pricing-card-body {
    padding: 25px;
}

.pricing-feature {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95em;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--primary-blue);
    margin-top: 3px;
    flex-shrink: 0;
    margin-right: 8px;
}

.pricing-feature i.fa-times {
    color: #dc3545;
}

.pricing-feature.ideal-for {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e9ecef;
}

.pricing-feature.ideal-for {
    color: #666;
}

.pricing-feature.ideal-for strong {
    color: var(--dark-blue) !important;
}

.pricing-card-featured .pricing-feature i.fa-check {
    color: var(--accent-orange);
}

.pricing-card-featured .pricing-feature i.fa-times {
    color: #dc3545;
}

/* Modern Desktop Table */
.pricing-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: none;
    /* Hidden by default, shown on desktop */
}

.pricing-table-modern thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.pricing-table-modern th {
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1em;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table-modern th:last-child {
    border-right: none;
}

.pricing-table-modern th.feature-col {
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
    width: 25%;
}

.pricing-table-modern th.highlight-plan {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    position: relative;
}

.popular-badge {
    display: block;
    font-size: 0.7em;
    margin-top: 5px;
    opacity: 0.95;
    font-weight: 500;
}

.pricing-table-modern tbody tr {
    transition: background-color 0.2s ease;
}

.pricing-table-modern tbody tr:hover {
    background-color: #f8f9fa;
}

.pricing-table-modern tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.pricing-table-modern tbody tr:nth-child(even):hover {
    background-color: #f0f2f5;
}

.pricing-table-modern td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95em;
    vertical-align: middle;
    color: #333 !important;
}

.pricing-table-modern td * {
    color: #333 !important;
}

/* Ensure icons are centered when alone */
.pricing-table-modern td i.check-icon,
.pricing-table-modern td i.times-icon {
    display: inline-block;
    vertical-align: middle;
}

.pricing-table-modern td.feature-col {
    text-align: left;
    font-weight: 500;
    color: var(--dark-blue);
    background-color: #f8f9fa;
    width: 25%;
}

.pricing-table-modern .price-row {
    background-color: #f0f8ff !important;
}

.pricing-table-modern .price-row:hover {
    background-color: #e6f3ff !important;
}

.pricing-table-modern .price-row td {
    border-bottom: 2px solid var(--primary-blue);
    padding: 25px 20px;
}

.price-value {
    font-size: 1.4em;
    color: var(--primary-blue);
}

.pricing-table-modern td.highlight-plan .price-value {
    color: var(--accent-orange);
}

.check-icon {
    color: var(--primary-blue);
    font-size: 1.2em;
    display: inline-block;
}

.pricing-table-modern .check-icon {
    color: var(--primary-blue) !important;
}

.times-icon {
    color: #dc3545;
    font-size: 1.2em;
    display: inline-block;
}

/* Add margin when icon is followed by text */
.pricing-table-modern td .check-icon+*,
.pricing-table-modern td .times-icon+* {
    margin-left: 8px;
}

/* Remove margin when icon is alone */
.pricing-table-modern td:not(.feature-col) {
    text-align: center;
}

.pricing-table-modern td.highlight-plan {
    background-color: rgba(255, 152, 0, 0.08);
    font-weight: 500;
    color: #333 !important;
}

.pricing-table-modern td.highlight-plan * {
    color: #333 !important;
}

.pricing-table-modern td.highlight-plan .check-icon {
    color: var(--accent-orange) !important;
}

.pricing-table-modern td.highlight-plan .times-icon {
    color: #dc3545 !important;
}

.pricing-table-modern .ideal-for-row {
    background-color: #f8f9fa !important;
}

.pricing-table-modern .ideal-for-row td {
    border-bottom: none;
    padding: 20px;
    font-style: italic;
    color: #666;
}

.pricing-table-modern .ideal-for-row td.feature-col {
    font-style: normal;
    color: var(--dark-blue) !important;
}

.pricing-table-modern .ideal-for-row td.feature-col strong {
    color: var(--dark-blue) !important;
}

/* Responsive: Show cards on mobile, table on desktop */
@media (min-width: 992px) {
    .pricing-cards-mobile {
        display: none;
    }
    
    .pricing-table-modern {
        display: table;
    }
}

@media (max-width: 991px) {
    .pricing-cards-mobile {
        display: grid;
    }
    
    .pricing-table-modern {
        display: none;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-card-header {
        padding: 25px 20px;
    }
    
    .pricing-card-header h4 {
        font-size: 1.3em;
    }
    
    .pricing-card-price {
        font-size: 1.7em;
    }
    
    .pricing-card-body {
        padding: 20px;
    }
    
    .pricing-feature {
        font-size: 0.9em;
        padding: 10px 0;
    }
}

/* --- Case Study Section --- */
.case-study-section {
    padding: 100px 0;
    text-align: center;
}

.case-study-section .section-title {
    font-size: 2.1em;
    line-height: 1.2;
    max-width: 100%;
}

.case-study-section .section-description.full-width {
    max-width: 100%;
    width: 100%;
}

.case-study-content {
    max-width: 100%;
    width: 100%;
    margin: 50px auto 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    padding: 40px;
    text-align: left;
}

.client-logo-case {
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
    margin-left: 0;
}

.case-study-overview h3 {
    font-size: 1.6em;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.case-study-overview p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.case-study-problem,
.case-study-solution,
.case-study-results {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.case-study-results {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}


.case-study-problem h4,
.case-study-solution h4,
.case-study-results h4 {
    font-size: 1.4em;
    color: var(--dark-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.case-study-problem h4::before { 
    content: '\f071'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-blue);
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.case-study-solution h4::before { 
    content: '\f00c'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-blue);
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.case-study-results h4::before { 
    content: '\f135'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-blue);
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.case-study-problem ul,
.case-study-solution ul {
    margin-top: 15px;
}

.case-study-problem ul li,
.case-study-solution ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #555;
}

.case-study-problem ul li i {
    color: var(--accent-orange);
    margin-right: 10px;
}

.case-study-solution ul li i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.result-item {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.result-item i {
    font-size: 2em;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.result-item span {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.result-item p {
    font-size: 0.9em;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-quote {
    background-color: #f5f5f5;
    border-left: 5px solid var(--primary-blue);
    padding: 20px;
    margin-top: 40px;
    font-style: italic;
    color: #555;
    position: relative;
    font-size: 1.1em;
}

.testimonial-quote span {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--dark-blue);
}

/* --- Testimonials Section --- */
.testimonials-section {
    text-align: center;
    padding: 100px 0;
}

.testimonials-carousel {
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-carousel-container {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    /* White with transparency for dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: left;
    border-bottom: 3px solid var(--accent-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1.2em;
}

.carousel-btn:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-card p {
    font-size: 1em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--accent-orange);
    font-style: normal;
    margin: 0;
}

.testimonial-card .author strong {
    color: var(--text-light);
    /* Name in white */
}

/* --- FAQs Section --- */
.faqs-section {
    padding: 100px 0;
    text-align: center;
}

.accordion-container {
    max-width: 100%;
    width: 100%;
    margin: 50px auto 0 auto;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--light-gray);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--dark-blue);
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e0e0e0;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4;
    color: var(--dark-blue);
}

.accordion-header i {
    font-size: 1em;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fff;
}

.accordion-content p {
    margin: 0;
    padding: 20px 0;
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
}

/* --- Final CTA Section --- */
.final-cta-section {
    padding: 100px 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-text {
    text-align: center;
}

.contact-text .section-title {
    font-size: 2.1em;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
}

.contact-text .section-description {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-text .section-description.full-width {
    max-width: 100%;
    width: 100%;
}

/* Contact Form */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
}

.contact-form h3 {
    color: #fff;
    font-size: 1.6em;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 0.95em;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

/* Form validation states */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.05);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.field-error {
    display: block;
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-error.show {
    opacity: 1;
}

.field-success {
    position: absolute;
    right: 12px;
    top: 38px;
    color: #28a745;
    font-size: 1.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.field-success.show {
    opacity: 1;
}

.form-group select+.field-success {
    top: 38px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.checkbox-group {
    margin-bottom: 0;
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-orange);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #fff;
}

.btn-block {
    width: 100%;
    display: block;
}

.form-footer .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.form-note {
    text-align: center;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    margin-bottom: 0;
}

.final-cta-section .small-text {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px 0;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-orange);
}

.footer-col p {
    margin-bottom: 8px;
}

.footer-col p a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col p a:hover {
    color: var(--accent-orange);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
}

.hero-footer-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.logo-col p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-links a {
    color: #fff;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

/* Ocultar indicadores en desktop/tablet */
@media (min-width: 769px) {
    .services-indicators,
    .journey-indicators {
        display: none;
    }
}

/* Tablet optimizations (768px - 992px) */
@media (max-width: 1200px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .journey-steps {
        gap: 8px;
        padding: 0 15px;
    }

    .journey-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7em;
    }

    .journey-content h3 {
        font-size: 0.9em;
        height: 4em;
    }

    .journey-content p {
        font-size: 0.75em;
    }

    .journey-path {
        top: 60px;
        left: 5%;
        right: 5%;
    }

    .benefits-compact {
        gap: 20px;
    }

    .benefit-item {
        padding: 15px 0;
        gap: 18px;
    }

    .benefit-icon-small {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.25em;
    }

    .services-grid-full {
        gap: 25px;
        padding: 0 30px;
    }

    .setup-fee-box {
        margin: 40px 30px;
        padding: 35px 30px;
    }
}

/* Tablet specific (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }

    .service-box:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .platform-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-compact {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .setup-fee-box {
        margin: 40px 20px;
    }

    .testimonials-carousel {
        gap: 20px;
    }

    .testimonial-card {
        min-width: 300px;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }

    section {
        padding: 60px 0;
    }

    .hero .container,
    .problem-solution-section .container,
    .service-section .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .hero-content,
    .problem-solution-section .content-left,
    .problem-solution-section .content-right,
    .service-content {
        order: 1;
    }

    .hero-image,
    .problem-image,
    .solution-image,
    .service-image {
        order: 2;
        margin-top: 30px;
    }

    .problem-solution-section img {
        max-width: 70%;
        max-height: 300px;
        object-fit: contain;
    }

    .service-image img {
        max-width: 90%;
    }

    .problem-solution-section.reverse-layout .container {
        flex-direction: column;
    }

    .hero-benefits ul {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background-color: #fff;
        box-shadow: var(--shadow-medium);
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
        z-index: 999;
        -webkit-transform: translateY(-20px);
        -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        will-change: transform, opacity;
    }

    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        -webkit-transform: translateY(0) !important;
    }

    .nav-menu a {
        padding: 12px 15px;
        border-bottom: 1px solid var(--light-gray);
        text-align: left;
        display: block;
        width: 100%;
        font-size: 1em;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu .btn {
        margin: 10px 0 0 0;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        background: transparent;
        border: none;
        outline: none;
    }
    
    .hamburger:focus {
        outline: 2px solid var(--primary-blue);
        outline-offset: 2px;
    }
    
    .hamburger:active {
        transform: scale(0.95);
    }

    /* Hamburger Animation */
    .hamburger i {
        transition: transform 0.3s ease;
        font-size: 1.5em;
    }

    /* If we want to swap the icon to an X, we can do it via CSS if the icon class changes, 
       or just rotate/transform lines if it was SVG lines. Since it's font-awesome, rotation is good. */

    .setup-features {
        grid-template-columns: 1fr;
    }

    .setup-table-wrapper,
    .pricing-table-wrapper {
        padding: 0 10px;
        /* Add some horizontal padding */
    }

    .pricing-table th.highlight-plan,
    .pricing-table td.highlight-plan {
        /* Reset background for better mobile readability if needed */
        background-color: rgba(255, 152, 0, 0.15);
    }

    .case-study-problem ul,
    .case-study-solution ul {
        padding-left: 0;
        /* Remove default ul padding */
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet/small desktop */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet */
    }

    .footer-col.logo-col {
        grid-column: span 2;
        /* Logo column spans full width */
        text-align: center;
    }

    .logo-col .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 10px 0;
        /* Compact header */
    }

    .logo-img {
        max-width: 100px;
    }

    .hamburger {
        font-size: 1.5em;
    }

    section {
        padding: 30px 0;
        /* Reduced padding */
    }

    .hero {
        padding-top: 70px !important;
        padding-bottom: 50px;
        margin-top: 0;
    }

    .hero .container {
        padding-top: 25px;
        margin-top: 0;
    }

    .hero-content {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-image,
    .hero-svg-img {
        margin-top: 0;
        padding-top: 0;
    }

    .pricing-full-width {
        width: 100%;
        overflow-x: hidden;
    }

    .hero .container,
    .problem-solution-section .container,
    .service-section .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.3em;
    }

    .hero-title { 
        font-size: 1.8em; 
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle { 
        font-size: 0.95em; 
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.8em;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-benefits { 
        margin-top: 30px;
        padding: 15px 20px;
    }

    .hero-benefits ul { 
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-benefits ul li {
        font-size: 0.85em;
    }

    .hero-btn { 
        margin-bottom: 30px;
        padding: 12px 25px;
        font-size: 1em;
    }

    .hero-svg-img {
        max-width: 100%;
        margin-top: 0 !important;
    }

    .section-title { 
        font-size: 1.8em; 
        margin-bottom: 15px;
    }

    .section-description { 
        font-size: 0.95em; 
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .section-tag {
        font-size: 0.8em;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .benefits-compact {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .benefit-item {
        padding: 12px 0;
        gap: 15px;
    }

    .benefit-item:hover {
        padding-left: 5px;
    }

    .benefit-icon-small {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.2em;
    }

    .benefit-content h3 {
        font-size: 0.8em;
        text-align: left;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .benefit-content p {
        font-size: 0.85em;
        text-align: left;
    }

    /* Legacy support */
    .benefits-grid,
    .how-it-works-grid,
    .platform-features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .benefit-card,
    .step-card,
    .feature-card,
    .testimonial-card {
        padding: 20px;
    }

    .benefit-card .icon-large {
        font-size: 1.8em;
    }

    .benefit-card h3 {
        font-size: 1.1em;
    }

    .benefit-card p {
        font-size: 0.9em;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }

    .step-card h3 {
        font-size: 1.1em;
    }

    .step-card p {
        font-size: 0.9em;
    }

    .feature-card .icon-small {
        font-size: 1.5em;
    }

    .feature-card h3 {
        font-size: 1.1em;
    }

    .feature-card p {
        font-size: 0.85em;
    }

    .service-item {
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item-title-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 0;
    }

    .service-item-text {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .service-item-title-row i {
        font-size: 1.2em;
        margin-right: 10px;
        margin-top: 0;
        margin-bottom: 6px;
        flex-shrink: 0;
        color: var(--primary-blue);
    }

    .service-item-title-row strong {
        font-size: 0.8em;
        color: var(--dark-blue);
        font-weight: 600;
        text-align: left;
        line-height: 1.2;
        margin-bottom: 0;
        display: block;
    }

    .service-item-description {
        font-size: 0.85em;
        line-height: 1.5;
        width: 100%;
        margin: 0;
        padding-left: 0;
        color: #666;
        text-align: left;
        display: block;
        margin-top: 4px;
    }

    .service-item p {
        display: none;
    }

    .problem-list li,
    .solution-list li {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .problem-list li i,
    .solution-list li i {
        font-size: 1.1em;
        margin-right: 12px;
    }

    .setup-table,
    .pricing-table {
        min-width: 500px;
    }

    .case-study-content {
        padding: 20px;
    }

    .case-study-problem h4,
    .case-study-solution h4,
    .case-study-results h4 {
        font-size: 1.2em;
    }

    .case-study-problem ul li,
    .case-study-solution ul li {
        font-size: 0.85em;
        margin-bottom: 6px;
        line-height: 1.4;
        display: flex;
        align-items: flex-start;
    }

    .case-study-problem ul li i,
    .case-study-solution ul li i {
        font-size: 0.9em;
        margin-right: 8px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .result-item {
        padding: 12px 8px;
    }

    .result-item i {
        font-size: 1.2em;
        margin-bottom: 6px;
    }

    .result-item span {
        font-size: 1.3em;
        margin-bottom: 4px;
    }

    .result-item p {
        font-size: 0.75em;
        line-height: 1.3;
    }

    .testimonials-carousel {
        margin-top: 30px;
        gap: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 0.9em;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-text .section-title {
        font-size: 1.6em;
        white-space: normal;
        line-height: 1.3;
    }

    .contact-text .section-description.full-width {
        max-width: 100%;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 1.5em;
    }

    .final-cta-section .section-title { 
        font-size: 1.8em; 
    }

    .final-cta-section .section-description {
        font-size: 0.95em;
    }

    .pricing-section h3 {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .setup-fee h3 {
        font-size: 1.3em;
    }

    .setup-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px auto;
    }

    .setup-features li {
        font-size: 0.9em;
    }

    .footer {
        padding: 30px 0 15px 0;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-bottom: 25px;
    }

    .footer-col.logo-col {
        grid-column: span 1;
        text-align: left;
        margin-bottom: 0;
    }

    .footer-logo-img {
        max-width: 90px;
        margin-bottom: 8px;
    }

    .social-links {
        gap: 8px;
        margin-top: 6px;
        justify-content: flex-start;
    }

    .social-links a {
        font-size: 0.9em;
    }

    .footer-col h3 {
        font-size: 0.75em;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .footer-col ul {
        margin: 0;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 3px;
    }

    .footer-col ul li a {
        font-size: 0.7em;
        line-height: 1.3;
    }

    .footer-col p {
        font-size: 0.7em;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .footer-col p i {
        font-size: 0.75em;
        margin-right: 4px;
    }

    .footer-bottom {
        padding-top: 15px;
        margin-top: 15px;
        gap: 8px;
        font-size: 0.8em;
    }

    .footer-bottom p {
        margin: 0;
        line-height: 1.4;
    }

    .footer-bottom a {
        font-size: 0.85em;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95em;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1em;
        min-height: 48px;
    }

    /* Touch-friendly elements */
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .trust-logos {
        padding: 40px 0;
    }

    .logo-grid {
        gap: 20px;
    }

    .how-it-works-section,
    .platform-section,
    .benefits-section {
        padding: 50px 0;
    }

    /* Journey responsive */
    .journey-container {
        margin-top: 40px;
        padding: 20px 0 50px 0;
    }

    .journey-path {
        display: none;
    }

    .journey-steps {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 10px 20px 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-direction: row;
        align-items: flex-start;
    }

    .journey-steps::-webkit-scrollbar {
        display: none;
    }

    .journey-steps::before {
        display: none;
    }

    .journey-step {
        flex: 0 0 calc(100% - 20px);
        position: relative;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        scroll-snap-align: center;
    }

    .journey-step::before {
        display: none;
    }

    .journey-icon {
        position: relative;
        width: 50px;
        height: 50px;
        font-size: 1.2em;
        margin-bottom: 12px;
        flex-shrink: 0;
    }

    .journey-content {
        text-align: left;
        width: 100%;
    }

    .journey-content h3 {
        font-size: 0.75em;
        height: auto;
        min-height: auto;
        line-height: 1.2;
        margin-bottom: 8px;
        text-align: left;
        width: 100%;
    }

    .journey-content h3 span {
        margin-right: 4px;
    }

    .journey-content p {
        font-size: 0.75em;
        line-height: 1.4;
    }

    /* Indicadores de puntos para journey */
    .journey-indicators {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 20px;
        padding-bottom: 10px;
    }

    .journey-indicator {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: rgba(0, 123, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .journey-indicator.active {
        background-color: var(--accent-orange);
        width: 20px;
        border-radius: 3px;
    }

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

    /* Setup Fee Box Responsive */
    .setup-fee-box {
        margin: 30px 10px;
        padding: 25px 15px;
        border-radius: 10px;
    }

    .setup-fee-box h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .setup-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .setup-features-list {
        text-align: left;
    }

    .setup-features-list li {
        font-size: 0.85em;
        padding: 8px 0;
        line-height: 1.4;
    }

    /* Services Grid Responsive */
    .services-title {
        font-size: 1.4em;
        margin-top: 40px;
        padding: 0 15px;
    }

    .services-subtitle {
        font-size: 0.95em;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .services-grid-full {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 10px 30px 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
    }

    .services-grid-full::-webkit-scrollbar {
        display: none;
    }

    .service-box {
        flex: 0 0 calc(100% - 20px);
        padding: 20px 15px;
        border-radius: 10px;
        scroll-snap-align: center;
        border: 2px solid rgba(0, 123, 255, 0.3);
        transition: all 0.3s ease;
        background-color: rgba(0, 123, 255, 0.15);
    }

    .service-box.active {
        background-color: rgba(255, 152, 0, 0.2);
        border-color: var(--accent-orange);
        box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
    }

    /* Indicadores de puntos - solo en mobile */
    .services-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        padding-bottom: 20px;
    }

    .services-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .services-indicator.active {
        background-color: var(--accent-orange);
        width: 24px;
        border-radius: 4px;
    }

    .service-box h4 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .service-subtitle {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .service-features li {
        font-size: 0.85em;
        padding: 8px 0;
    }

    .accordion-header {
        padding: 15px 12px;
        font-size: 1em;
        min-height: 44px;
    }

    .accordion-header h3 {
        font-size: 0.85em;
        font-weight: 600;
        line-height: 1.3;
    }

    .accordion-header i {
        font-size: 0.9em;
    }

    .accordion-content {
        padding: 0 15px;
    }

    .accordion-content p {
        font-size: 0.85em;
        padding: 12px 0;
        line-height: 1.5;
    }

    /* Prevent text overflow */
    .section-title,
    .section-description,
    .benefit-content h3,
    .journey-content h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .case-study-overview h3 {
        font-size: 1.2em;
    }

    .case-study-overview p {
        font-size: 1em;
    }

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

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

    .final-cta-section {
        padding: 50px 0;
    }

    .contact-form-container {
        padding: 15px 12px;
    }

    .contact-form h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-group label {
        margin-bottom: 0;
        font-size: 0.8em;
        margin-top: 6px;
    }

    .form-group:first-child label {
        margin-top: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 4px 10px;
        font-size: 16px;
        margin-bottom: 0;
        /* Prevent iOS zoom */
    }

    .form-group textarea {
        min-height: 50px;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-top: 10px;
    }

    .form-footer .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .checkbox-group {
        margin-bottom: 0;
    }

    .checkbox-label {
        font-size: 0.65em;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .checkbox-label span {
        display: inline;
    }

    .checkbox-label a {
        font-size: 0.65em;
    }

    .form-note {
        font-size: 0.75em;
        margin-top: 8px;
    }

    .problem-solution-section {
        padding: 50px 0;
    }

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

    .case-study-section {
        padding: 50px 0;
    }

    .case-study-section .section-title {
        font-size: 1.5em;
        line-height: 1.3;
    }

    /* === MEJORAS MÓVILES MODERNAS === */
    
    /* Header mejorado para mobile */
    .header {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* Navegación mobile mejorada */
    .nav-menu {
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        padding: 20px;
    }

    .nav-menu a {
        border-radius: 8px;
        padding: 12px 15px;
        transition: all 0.2s ease;
    }

    .nav-menu a:hover {
        background-color: rgba(0, 123, 255, 0.08);
        color: var(--primary-blue);
    }

    /* Hero section mobile mejorado */
    .hero {
        background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
    }

    .hero-title {
        letter-spacing: -0.5px;
    }

    /* Botones más táctiles en mobile */
    .btn {
        border-radius: 12px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
    }

    .btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-primary {
        box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
    }

    .btn-primary:active {
        box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
    }

    /* Cards con mejor sombra y hover */
    .benefit-item,
    .service-box,
    .testimonial-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

    .benefit-item:active {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Formulario mejorado */
    .contact-form-container {
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        outline: none;
    }

    /* Accordion mejorado */
    .accordion-header {
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .accordion-header:active {
        background-color: rgba(0, 123, 255, 0.05);
    }

    /* Journey steps más visuales en mobile */
    .journey-icon {
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
    }

    /* Mejoras en scroll suave */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Mejor espaciado en secciones */
    section {
        scroll-margin-top: 70px;
    }

    /* Footer más compacto - ya optimizado arriba */

    /* Mejoras en imágenes */
    img {
        border-radius: 8px;
    }

    /* Mejor feedback táctil */
    .carousel-btn:active,
    .hamburger:active {
        transform: scale(0.95);
    }

    /* Setup fee box mejorado */
    .setup-fee-box {
        box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
        border: 2px solid rgba(255, 152, 0, 0.2);
    }

    /* Service boxes con mejor jerarquía visual */
    .service-box {
        border-left: 4px solid var(--primary-blue);
    }

    /* Mejoras en testimonials */
    .testimonial-card {
        border-left: 3px solid var(--accent-orange);
    }

    /* Mejor contraste en textos */
    .section-description {
        color: #555;
    }

    /* Ocultar elementos en mobile */
    .hide-mobile {
        display: none;
    }

    /* Animaciones más suaves */
    * {
        -webkit-tap-highlight-color: rgba(0, 123, 255, 0.1);
    }
}