/* Nubetec - Professional Corporate Styles */
/* Modern, clean and professional design */

:root {
    --primary-color: #1e5aa8;
    --secondary-color: #3dadd9;
    --accent-color: #ff6b35;
    --dark-blue: #0d3d6e;
    --light-blue: #5cb8e6;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --text-dark: #1a1a1a;
    --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);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

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

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-brand {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand .logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.navbar-brand .logo-text {
    font-size: 1.75rem;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}

.navbar-menu {
    display: none;
}

.navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

.navbar-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 0.875rem 1.25rem;
    display: block;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.navbar-toggle {
    display: block;
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 7.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero con foto: solo página principal */
.hero-home {
    background-image: url('/media/hero/hero.png');
    background-repeat: no-repeat;
    background-position: center 25%;
    background-size: cover;
}

/* Overlay oscuro para el hero con foto (legibilidad del texto blanco) */
.hero-home .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 55, 0.55) 0%,
        rgba(10, 25, 55, 0.35) 50%,
        rgba(10, 25, 55, 0.65) 100%
    );
}

.hero-small {
    padding: 5rem 0;
    min-height: 300px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(61, 173, 217, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 90, 168, 0.3) 0%, transparent 50%);
}
    font-weight: 800;
    line-height: 1.2;
}

.hero .hero-content {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Cards */
.cards {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

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

.card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.card-icon {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #008f5a 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #008f5a 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Steps */
.steps {
    display: grid;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
}

/* Lists */
.feature-list, .problem-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li, .problem-list li {
    padding: 0.875rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--gray-700);
    font-size: 1.05rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--secondary-color), #008f5a);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* FAQ */
.faq {
    margin: 2rem 0;
}

.faq-item {
    background: var(--gray-50);
    padding: 1.75rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 2.5rem auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--gray-50);
}

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-green {
    color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--gray-50);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

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

/* Tablet Styles */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 2rem; }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
    
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar-toggle {
        display: none;
    }
    
    .navbar-menu {
        display: flex;
        flex-direction: row;
        position: static;
        padding: 0;
        background: transparent !important;
    }
    
    .navbar-menu a {
        padding: 0.75rem 1.25rem;
    }
    
    .section {
        padding: 5rem 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
    
    .hero {
        padding: 7rem 0;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 80px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
    animation: fadeSlideDown 0.7s ease both;
}

.hero-text h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    animation: fadeSlideDown 0.8s ease 0.1s both;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-nube {
    font-weight: 800;
}

.hero-tec {
    font-weight: 300;
    opacity: 0.88;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    animation: fadeSlideDown 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    line-height: 1.6;
    animation: fadeSlideDown 0.8s ease 0.3s both;
}

/* Hero CTA buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeSlideDown 0.8s ease 0.4s both;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--dark-blue);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-3px);
    color: var(--white);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 1rem 2rem;
    animation: fadeSlideDown 0.8s ease 0.55s both;
}

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

.hero-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
}

/* Animations */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PROMO WEB SECTION
   ============================================= */
.promo-web {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3d6e 0%, #1e5aa8 50%, #0d3d6e 100%);
    padding: 6rem 0;
}

.promo-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.promo-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.promo-shape-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #3dadd9, transparent);
    top: -150px; left: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.promo-shape-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #5cb8e6, transparent);
    bottom: -80px; right: 5%;
    animation: floatShape 10s ease-in-out 2s infinite reverse;
}

.promo-shape-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #fff, transparent);
    top: 40%; left: 55%;
    animation: floatShape 6s ease-in-out 1s infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b35, #ff9a3c);
    color: #fff;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    animation: pulse-tag 2s ease-in-out infinite;
}

@keyframes pulse-tag {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
}

.promo-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-align: left;
}

.promo-highlight {
    background: linear-gradient(90deg, #3dadd9, #5cb8e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.5rem;
}

.promo-features li {
    color: rgba(255,255,255,0.9);
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-features li i {
    color: #43e97b;
    font-size: 1rem;
    flex-shrink: 0;
}

.promo-price-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.promo-price {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.promo-price-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.promo-price-amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.promo-price-period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.2rem;
}

.btn-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ff6b35, #ff9a3c);
    color: #fff;
    padding: 1.1rem 2.4rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255,107,53,0.45);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-promo-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(255,107,53,0.55);
    color: #fff;
}

.promo-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Mockup visual */
.promo-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.promo-card-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    animation: floatMockup 5s ease-in-out infinite;
}

@keyframes floatMockup {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.mockup-bar {
    background: #f1f3f4;
    padding: 0.6rem 1rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.mockup-bar span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.mockup-bar span:nth-child(1) { background: #ef4444; }
.mockup-bar span:nth-child(2) { background: #f59e0b; }
.mockup-bar span:nth-child(3) { background: #10b981; }

.mockup-body { padding: 1.25rem; }

.mockup-header-img {
    height: 90px;
    background: linear-gradient(135deg, #1e5aa8, #3dadd9);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mockup-lines { margin-bottom: 1rem; }

.mockup-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 6px;
    margin-bottom: 0.55rem;
    animation: shimmerLine 2s linear infinite;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
}

.mockup-line-title { height: 16px; width: 70%; background-size: 200% 100%; }
.mockup-line-short { width: 45%; background-size: 200% 100%; }

@keyframes shimmerLine {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.mockup-cards-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mockup-mini-card {
    flex: 1;
    height: 50px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 8px;
}

.mockup-btn-placeholder {
    height: 36px;
    background: linear-gradient(90deg, #1e5aa8, #3dadd9);
    border-radius: 50px;
    width: 60%;
    margin: 0 auto;
}

/* Floating badges on mockup */
.promo-floating {
    position: absolute;
    background: #fff;
    color: var(--gray-800);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.promo-floating i { color: var(--primary-color); }

.floating-1 { top: 10%; left: -10px; animation: floatBadge 3.5s ease-in-out infinite; }
.floating-2 { top: 45%; right: -10px; animation: floatBadge 4s ease-in-out 0.8s infinite; }
.floating-3 { bottom: 12%; left: 5%; animation: floatBadge 3s ease-in-out 1.5s infinite; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Responsive promo */
@media (min-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .promo-title { font-size: 2.8rem; }
}

@media (max-width: 600px) {
    .promo-features { grid-template-columns: 1fr; }
    .promo-price-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .promo-title { font-size: 1.9rem; }
    .promo-floating { display: none; }
    .hero-stats { gap: 1rem; padding: 0.75rem 1rem; }
    .hero-stat-number { font-size: 1.3rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(30, 90, 168, 0.3);
    flex-shrink: 0;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-card h3 {
    color: var(--gray-900);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Service Detail Pages */
.service-detail {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-detail:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(30, 90, 168, 0.3);
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-detail-header h2 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.service-detail-header p {
    color: var(--gray-600);
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.feature-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.feature-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(61, 173, 217, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(30, 90, 168, 0.2) 0%, transparent 50%);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.btn-light-large {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-light-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--dark-blue);
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(30, 90, 168, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 90, 168, 0.4);
    color: var(--white);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Updates */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .cta-banner h2 {
        font-size: 3rem;
    }
}

/* =============================================
   PLATAFORMA SAAS INMOBILIARIA
   ============================================= */
.saas-section {
    background: var(--gray-50);
}

.saas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.saas-tag {
    display: inline-block;
    background: rgba(30, 90, 168, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(30, 90, 168, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.saas-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.saas-highlight {
    color: var(--primary-color);
}

.saas-desc {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.saas-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saas-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.saas-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.saas-features li div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.saas-features li strong {
    color: var(--gray-800);
    font-size: 0.95rem;
    font-weight: 600;
}

.saas-features li span {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.saas-cta-area {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.saas-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.25rem;
}

.saas-price-from {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.saas-price-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

.saas-price-period {
    font-size: 1rem;
    color: var(--gray-600);
}

.saas-cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-saas-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(30, 90, 168, 0.3);
    transition: all 0.2s ease;
}

.btn-saas-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(30, 90, 168, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-saas-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s;
}

.btn-saas-secondary:hover {
    gap: 0.7rem;
    text-decoration: none;
    color: var(--dark-blue);
}

.btn-saas-vermas {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(61,173,217,0.4);
    animation: vermasFloat 2.2s ease-in-out infinite;
    transition: box-shadow 0.2s, transform 0.2s;
}

.btn-saas-vermas:hover {
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(61,173,217,0.6);
    animation: none;
    transform: translateY(-3px) scale(1.04);
}

.btn-saas-vermas i {
    transition: transform 0.2s;
}

.btn-saas-vermas:hover i {
    transform: translateX(4px);
}

@keyframes vermasFloat {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 18px rgba(61,173,217,0.4); }
    50%       { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(61,173,217,0.55); }
}

.saas-note {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin: 0;
}

.saas-note i {
    margin-right: 0.25rem;
}

/* SaaS Phone Mockup */
.saas-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem 4rem;
}

.saas-phone-mockup {
    width: 240px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}

.saas-phone-screen {
    background: #f8fafc;
    border-radius: 26px;
    overflow: hidden;
    min-height: 420px;
}

.saas-phone-header {
    background: var(--primary-color);
    padding: 1rem 1rem 0.75rem;
    text-align: center;
}

.saas-phone-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.saas-phone-menu {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.saas-phone-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6rem;
    color: #9ca3af;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.saas-phone-menu-item i {
    font-size: 0.9rem;
}

.saas-phone-menu-item.active {
    color: var(--primary-color);
    background: rgba(30, 90, 168, 0.08);
}

.saas-phone-cards {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.saas-phone-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.saas-card-img {
    height: 70px;
    background: linear-gradient(135deg, #bfdbfe, #dbeafe);
}

.saas-card-info {
    padding: 0.5rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.saas-card-title {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    width: 70%;
}

.saas-card-price {
    height: 8px;
    background: #bfdbfe;
    border-radius: 4px;
    width: 40%;
}

.saas-badge {
    position: absolute;
    background: #fff;
    border-radius: 30px;
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.saas-badge-1 {
    bottom: 80px;
    left: 10px;
    color: #16a34a;
    animation: saasBadgeFloat 3s ease-in-out infinite;
}

.saas-badge-2 {
    top: 40px;
    right: 10px;
    color: var(--primary-color);
    animation: saasBadgeFloat 3s ease-in-out infinite 1s;
}

.saas-badge-3 {
    bottom: 30px;
    right: 5px;
    color: var(--accent-color);
    animation: saasBadgeFloat 3s ease-in-out infinite 2s;
}

@keyframes saasBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
    .saas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .saas-visual {
        display: none;
    }
}

/* Featured Product */
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.featured-product-content {
    padding: 3rem;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--dark-blue);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: bounce-subtle 2s infinite;
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.featured-product-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.featured-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.featured-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
    background: var(--white);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(30, 90, 168, 0.25);
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    stroke-width: 2;
}

.highlight-icon i {
    font-size: 28px;
    color: var(--white);
}

.highlight-item span:last-child {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1.05rem;
}

.featured-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-top: 2px solid var(--gray-200);
}

.btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 90, 168, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-featured:hover::before {
    left: 100%;
}

.btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 90, 168, 0.45);
    color: var(--white);
}

.btn-featured svg {
    transition: transform 0.3s ease;
}

.btn-featured:hover svg {
    transform: translateX(5px);
}

.btn-featured i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-featured:hover i {
    transform: translateX(5px);
}

/* =============================================
   PLATAFORMA INMOBILIARIA PAGE
   ============================================= */
.inmo-hero {
    text-align: center;
}

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

.inmo-for-whom {
    padding: 2.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.inmo-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.inmo-whom-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.inmo-whom-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.inmo-whom-card i {
    color: var(--primary-color);
}

/* Features grid */
.inmo-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.inmo-feat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.inmo-feat-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

.inmo-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inmo-feat-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.inmo-feat-body {
    flex: 1;
}

.inmo-feat-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--gray-900);
    font-weight: 700;
}

.inmo-feat-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

/* Steps */
.inmo-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.inmo-step {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
    max-width: 220px;
    flex: 1;
    min-width: 170px;
}

.inmo-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.inmo-step h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--gray-900);
}

.inmo-step p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.inmo-step-arrow {
    color: var(--gray-300);
    font-size: 1.2rem;
}

/* Pricing */
.inmo-pricing-section {
    padding: 5rem 0;
}

.inmo-pricing-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    max-width: 820px;
    margin: 0 auto;
    align-items: center;
}

.inmo-pricing-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.inmo-pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.inmo-pricing-from {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.inmo-pricing-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

.inmo-pricing-period {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.inmo-pricing-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.inmo-pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inmo-pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.inmo-pricing-includes li i {
    color: #16a34a;
    font-size: 0.85rem;
}

/* WhatsApp CTA section */
.inmo-wsp-section {
    padding: 4rem 0;
}

.inmo-wsp-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #0d3d6e 0%, #1e5aa8 100%);
    border-radius: 20px;
    padding: 3rem;
    flex-wrap: wrap;
}

.inmo-wsp-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inmo-wsp-icon i {
    font-size: 2rem;
    color: #4ade80;
}

.inmo-wsp-content {
    flex: 1;
    min-width: 200px;
}

.inmo-wsp-content h2 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.inmo-wsp-content p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 1rem;
}

.btn-inmo-wsp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-inmo-wsp:hover {
    background: #1fba58;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-inmo-wsp i {
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .inmo-features-grid {
        grid-template-columns: 1fr;
    }
    .inmo-pricing-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .inmo-wsp-card {
        flex-direction: column;
        text-align: center;
    }
    .inmo-step-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .inmo-features-grid {
        grid-template-columns: 1fr;
    }
    .inmo-feat-card {
        padding: 1.25rem;
    }
    .inmo-whom-grid {
        gap: 0.75rem;
    }
}

/* Under Construction Page */
.under-construction {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 1.5rem;
}

.construction-icon-wrapper {
    margin-bottom: 2rem;
}

.construction-icon {
    font-size: 6rem;
    display: inline-block;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.under-construction h2 {
    font-size: 2.8rem;
    color: var(--gray-900);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.construction-lead {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.construction-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.construction-features-modern {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--gray-200);
}

.construction-features-modern h3 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.features-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.checklist-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.check-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.construction-cta-modern {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(30, 90, 168, 0.3);
}

.construction-cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-gradient 6s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--dark-blue);
}

.btn-cta-modern svg {
    transition: transform 0.3s ease;
}

.btn-cta-modern:hover svg {
    transform: translateX(5px) rotate(15deg);
}

.btn-cta-modern i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta-modern:hover i {
    transform: translateX(5px) rotate(15deg);
}

@media (min-width: 768px) {
    .features-checklist {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .construction-icon {
        font-size: 8rem;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(30, 90, 168, 0.3);
}

.about-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    stroke-width: 2;
}

.about-icon i {
    font-size: 40px;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-wrapper {
    max-width: 860px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* WhatsApp contact card */
.contact-wsp-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.contact-wsp-logo {
    width: 80px;
    height: 80px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.contact-wsp-logo i {
    font-size: 2.5rem;
    color: #fff;
}

.contact-wsp-card h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.contact-wsp-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.btn-contact-wsp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37,211,102,0.35);
    transition: all 0.2s ease;
}

.btn-contact-wsp:hover {
    background: #1fba58;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    color: #fff;
    text-decoration: none;
}

.btn-contact-wsp i {
    font-size: 1.15rem;
}

/* Floating WhatsApp button */
.wsp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: wspPulse 2.5s ease-in-out infinite;
}

.wsp-float i {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.wsp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37,211,102,0.65);
    text-decoration: none;
}

@keyframes wspPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}

@media (max-width: 600px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    .wsp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
    }
    .wsp-float i {
        font-size: 1.6rem;
    }
}

.contact-info-cards {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(30, 90, 168, 0.3);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    stroke-width: 2;
}

.contact-icon i {
    font-size: 32px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    color: var(--dark-blue);
}

.contact-form-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
}

.contact-form-modern h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 90, 168, 0.1);
}

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

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .featured-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Modern Service Cards */
/* =============================================
   SERVICES SECTION - NEW DESIGN
   ============================================= */
.services-section {
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.services-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgba(30,90,168,0.04) 0%, rgba(61,173,217,0.04) 100%);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.11);
    border-color: var(--secondary-color);
}

.svc-card:hover::after {
    opacity: 1;
}

.svc-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    user-select: none;
    transition: color 0.3s ease;
}

.svc-card:hover .svc-num {
    color: rgba(30,90,168,0.08);
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.svc-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.svc-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.svc-body p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 0.85rem;
    flex: 1;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.svc-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
}

.svc-cta:hover {
    gap: 0.75rem;
    color: var(--dark-blue);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Modern Service Cards (legacy, kept for compatibility) */
.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon-modern {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gradient-blue {
    background: linear-gradient(135deg, #1e5aa8 0%, #3dadd9 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.icon-svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    stroke-width: 2;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.icon-fa {
    font-size: 48px;
    color: var(--white);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0,0,0,0.14);
    border-color: transparent;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.service-cta:hover {
    gap: 0.7rem;
    text-decoration: none;
    color: var(--dark-blue);
}

.btn-saas-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(37,211,102,0.35);
    transition: all 0.2s ease;
    animation: saasDemo 1.8s ease-in-out infinite;
}

.btn-saas-demo:hover {
    background: #1fba58;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(37,211,102,0.5);
    animation: none;
}

@keyframes saasDemo {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 700;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-modern:hover .tag {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.tag:nth-child(1) {
    transition-delay: 0.05s;
}

.tag:nth-child(2) {
    transition-delay: 0.1s;
}

.tag:nth-child(3) {
    transition-delay: 0.15s;
}
