/* ============================================
   Tu Aliado Digital v3.0 - Professional CSS
   Ultra-professional, conversion-optimized design
   ============================================ */

/* ============================================
   1. CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #1E3A8A;
    --primary-light: #3B82F6;
    --primary-dark: #1E40AF;
    --accent: #10B981;
    --accent-orange: #F59E0B;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FAFAF9;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-base: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-xs: 14px;
    --font-size-sm: 15px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --font-size-5xl: 48px;
    --font-size-6xl: 60px;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;

    /* Other */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. Reset & Base
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
    font-weight: 800;
}

h2 {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
}

h3 {
    font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-3xl));
}

p {
    margin-bottom: var(--space-4);
    text-align: justify;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

section {
    padding: var(--space-24) 0;
}

/* ============================================
   3. Utilities
   ============================================ */
.highlight-gradient {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-text {
    font-size: var(--font-size-xl);
    font-weight: 500;
    line-height: 1.7;
    color: var(--gray-700);
}

.link-underline,
.link-underline-white {
    text-decoration: underline;
    font-weight: 600;
}

.link-underline-white {
    color: var(--white);
}

.link-bold {
    font-weight: 600;
    color: var(--primary);
}

.link-inline {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ============================================
   4. Section Headers
   ============================================ */
.section-header {
    margin-bottom: var(--space-16);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, #DBEAFE, #E0E7FF);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 700px;
    line-height: 1.7;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   5. Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-base);
    font-weight: 600;
    font-family: var(--font-base);
    text-align: center;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary,
.btn-primary-large,
.btn-primary-full {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary-large:hover,
.btn-primary-full:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary-large {
    padding: var(--space-5) var(--space-12);
    font-size: var(--font-size-lg);
}

.btn-primary-full {
    width: 100%;
}

.btn-outline,
.btn-outline-full {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover,
.btn-outline-full:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-full {
    width: 100%;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white-small {
    background: var(--white);
    color: var(--primary);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-lg);
}

/* ============================================
   6. Hero Modern
   ============================================ */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #6366F1 100%);
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-16);
    align-items: center;
}

.hero-content-modern {
    color: var(--white);
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-modern {
    font-size: clamp(var(--font-size-5xl), 7vw, 72px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-subtitle-highlight {
    font-weight: 600;
    opacity: 0.95;
}

.hero-subtitle-modern {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.hero-ctas {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-trust-badges {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.trust-badge-icon {
    font-weight: 700;
}

.hero-stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    color: var(--white);
    min-width: 140px;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-xs);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============================================
   7. Benefits Section
   ============================================ */
.benefits {
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-8);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: var(--space-4);
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
}

.benefit-card p {
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   8. About Section
   ============================================ */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-16);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

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

.avatar-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-xl);
}

.avatar-badge {
    margin-top: var(--space-4);
}

.avatar-badge span {
    display: block;
}

.avatar-badge span:first-child {
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--gray-900);
}

.avatar-role {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.about-highlights-inline {
    display: flex;
    gap: var(--space-8);
    margin: var(--space-8) 0;
    padding: var(--space-6) 0;
    border-top: 2px solid var(--gray-100);
    border-bottom: 2px solid var(--gray-100);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.highlight-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-top: var(--space-1);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.skill-badge {
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, #DBEAFE, #E0E7FF);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ============================================
   9. Services Section
   ============================================ */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: var(--space-6);
    background: linear-gradient(135deg, var(--accent-orange), #F97316);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.service-icon {
    font-size: 48px;
    margin-bottom: var(--space-4);
}

.service-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
}

.service-card>p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.service-includes {
    list-style: none;
    margin-top: var(--space-4);
}

.service-includes li {
    padding: var(--space-2) 0;
    color: var(--gray-700);
    font-size: var(--font-size-sm);
}

.service-includes li::before {
    content: '→ ';
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   10. Portfolio Section
   ============================================ */
.portfolio {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.portfolio-item.featured {
    grid-column: span 2;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--gray-100);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: var(--space-6);
}

.portfolio-header {
    margin-bottom: var(--space-4);
}

.portfolio-tags {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.tag {
    padding: var(--space-1) var(--space-3);
    background: #DBEAFE;
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.tag-success {
    background: #D1FAE5;
    color: var(--accent);
}

.portfolio-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
}

.portfolio-description {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.portfolio-results {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    padding: var(--space-3) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.result-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
}

.result-icon {
    color: var(--accent);
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.portfolio-tech span {
    padding: var(--space-1) var(--space-3);
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.portfolio-item.cta-card,
.portfolio-item.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}

.portfolio-cta-content,
.coming-soon-content {
    text-align: center;
    padding: var(--space-10);
}

.cta-icon,
.coming-icon {
    font-size: 64px;
    margin-bottom: var(--space-4);
}

.coming-soon-content h3 {
    margin-bottom: var(--space-3);
}

.coming-examples {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

.coming-examples span {
    padding: var(--space-2) var(--space-4);
    background: white;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
}

/* Continue in next part due to length... */

/* ============================================
   11. Comparison Section
   ============================================ */
.why-me {
    background: var(--gray-50);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    padding: var(--space-6);
    text-align: center;
}

.comparison-header.bad {
    background: #FEE2E2;
}

.comparison-header.good {
    background: #D1FAE5;
}

.comparison-header h3 {
    font-size: var(--font-size-xl);
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: var(--space-6);
}

.comparison-list li {
    display: flex;
    align-items: start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.comparison-text {
    flex: 1;
    font-size: var(--font-size-sm);
}

.comparison-vs {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-xl);
    align-self: center;
}

/* ============================================
   12. Process Timeline
   ============================================ */
.process {
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-16);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + var(--space-16));
    background: linear-gradient(180deg, var(--primary-light), transparent);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--gray-50);
    padding: var(--space-6);
    border-radius: var(--radius-md);
}

.step-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-3);
}

.step-duration {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: #DBEAFE;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ============================================
   13. Guarantees Section
   ============================================ */
.guarantees {
    background: var(--cream);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.guarantee-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.guarantee-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    font-size: 40px;
    margin-bottom: var(--space-3);
}

.guarantee-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.guarantee-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: var(--font-size-sm);
}

/* ============================================
   14. Pricing Modern
   ============================================ */
.pricing {
    background: var(--white);
}

.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto var(--space-12);
}

.pricing-card-modern {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card-modern.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-ribbon {
    position: absolute;
    top: -16px;
    right: var(--space-4);
    background: linear-gradient(135deg, var(--accent-orange), #F97316);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.pricing-name {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-2);
}

.pricing-tagline {
    color: var(--gray-600);
    font-size: var(--font-size-base);
}

.pricing-price-box {
    text-align: center;
    padding: var(--space-6) 0;
    margin-bottom: var(--space-6);
}

.price-amount-large {
    font-size: clamp(var(--font-size-5xl), 8vw, 64px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-top: var(--space-2);
}

.pricing-features-modern {
    list-style: none;
    margin-bottom: var(--space-8);
    flex-grow: 1;
}

.pricing-features-modern li {
    display: flex;
    align-items: start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.feature-icon {
    flex-shrink: 0;
    color: var(--accent);
}

.pricing-custom-note {
    max-width: 800px;
    margin: 0 auto;
}

.custom-note-content {
    background: linear-gradient(135deg, var(--primary-light), #6366F1);
    color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.custom-note-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.custom-note-text h4 {
    color: var(--white);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
}

.custom-note-text p {
    margin: 0;
    opacity: 0.95;
}

/* ============================================
   15. FAQ Modern
   ============================================ */
.faq {
    background: var(--gray-50);
}

.faq-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto var(--space-12);
}

.faq-item-modern {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item-modern:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question-modern {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.faq-answer-modern {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--gray-700);
}

/* ============================================
   16. Contact Section
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-16);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
}

.contact-info>p {
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.contact-methods {
    margin-bottom: var(--space-8);
}

.contact-method {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.contact-method-content a {
    color: var(--primary);
    font-weight: 600;
}

.contact-method-note {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    margin: var(--space-1) 0 0;
}

.contact-guarantee {
    background: var(--cream);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: var(--font-size-sm);
}

.guarantee-check {
    color: var(--accent);
    font-weight: 700;
}

/* Contact Form */
.contact-form-container {
    background: var(--gray-50);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

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

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

.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    margin-top: var(--space-2);
    text-align: center;
}

/* ============================================
   17. Footer Modern
   ============================================ */
.footer-modern {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-brand-section h3 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
}

.footer-tagline {
    color: var(--gray-400);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.footer-badge {
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--gray-300);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.footer-column h4 {
    color: var(--white);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-4);
}

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

.footer-column li {
    margin-bottom: var(--space-2);
}

.footer-column a {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ============================================
   18. Responsive Design
   ============================================ */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
    :root {
        --space-24: var(--space-20);
        --space-32: var(--space-24);
    }

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

    .hero-stats-sidebar {
        flex-direction: row;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-avatar,
    .avatar-image {
        margin: 0 auto;
    }

    .about-highlights-inline {
        justify-content: center;
    }

    .portfolio-item.featured {
        grid-column: span 1;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .comparison-vs {
        display: none;
    }

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

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

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

/* Mobile (< 640px) */
@media (max-width: 640px) {
    :root {
        --space-16: var(--space-12);
        --space-20: var(--space-16);
        --space-24: var(--space-16);
    }

    /* Navbar Optimization for Mobile */
    .navbar-links {
        gap: var(--space-3);
    }

    /* Hide standard navigation links on mobile to prevent overcrowding */
    .nav-link {
        display: none;
    }

    /* Show only Logo and CTA */
    .navbar-container {
        padding: 0 var(--space-4);
    }

    section {
        padding: var(--space-16) 0;
    }

    .hero-modern {
        min-height: auto !important;
        /* Remove forced height */
        padding: var(--space-16) 0 !important;
    }

    .hero-title-centered {
        font-size: 36px;
        /* Reduced from clamp/72px */
        line-height: 1.2;
    }

    .hero-subtitle-centered {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-8);
    }

    .hero-ctas-centered {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-4);
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
    }

    .hero-stats-integrated {
        flex-direction: column;
        gap: var(--space-6);
        padding: var(--space-6);
        margin: 0 var(--space-4) var(--space-8);
    }

    .stat-divider-inline {
        width: 100%;
        height: 1px;
        /* Horizontal divider instead of vertical */
    }

    /* Adjust grids for mobile */
    .benefits-grid,
    .services-grid,
    .portfolio-grid,
    .guarantees-grid,
    .pricing-grid-modern,
    .faq-grid-modern,
    .contact-content,
    .footer-content-grid,
    .footer-links-grid,
    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        margin-bottom: var(--space-10);
    }

    .process-step:not(:last-child)::after {
        display: none;
        /* Hide timeline line on mobile for cleaner look */
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-2xl);
        margin: 0 auto;
    }

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

    .about-highlights-inline {
        flex-direction: column;
        gap: var(--space-6);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .avatar-image {
        margin: 0 auto;
    }

    .contact-methods {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Centered Hero Overrides */
.hero-container-centered {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.hero-content-centered {
    color: var(--white);
    text-align: center;
}

.hero-title-centered {
    font-size: clamp(var(--font-size-5xl), 7vw, 72px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-subtitle-centered {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: var(--space-10);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas-centered {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats-integrated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item-inline {
    text-align: center;
}

.stat-number-inline {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label-inline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.stat-divider-inline {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-trust-simple {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.hero-trust-simple span {
    opacity: 0.9;
}

.hero-modern {
    min-height: 100vh !important;
    padding: 0 !important;
}

/* Hero subtitle centered override */
.hero-subtitle-centered {
    text-align: center !important;
}

/* ============================================
   2b. Navbar
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4) 0;
    transition: var(--transition);
}

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

.navbar-logo {
    font-weight: 800;
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    text-decoration: none;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.btn-primary-small {
    padding: var(--space-2) var(--space-5);
    font-size: var(--font-size-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    /* Ensure no underline */
}

.btn-primary-small:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}