
/* ============================================================
   IT-MAXIME — Global Stylesheet
   Dark Mode default · Light Mode via .light-mode on <html>
   ============================================================ */

/* 1. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
    --accent-green: #00FFC0;
    --accent-blue:  #00BFFF;

    /* Surfaces */
    --bg-primary:   #0A0A0C;
    --bg-secondary: #1C1C1E;

    /* Text */
    --text-primary: #E0E0E0;
    --text-muted:   #8E8E93;

    /* Glass system */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg:     rgba(255, 255, 255, 0.05);

    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0, 255, 192, 0.1), 0 5px 15px rgba(0, 0, 0, 0.3);
    --hover-glow:  0 0 15px var(--accent-green), 0 0 30px var(--accent-green);

    /* Navbar */
    --navbar-bg:     rgba(28, 28, 30, 0.85);
    --navbar-border: rgba(255, 255, 255, 0.1);

    /* Backward-compat aliases */
    --dark-primary:  #0A0A0C;
    --dark-secondary:#1C1C1E;
    --text-light:    #E0E0E0;
    --shadow-dark:   0 10px 30px rgba(0, 255, 192, 0.1), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.light-mode {
    --bg-primary:   #FFFFFF;
    --bg-secondary: #F5F5F7;
    --text-primary: #1D1D1F;
    --text-muted:   #515154;   /* darkened: 7.5:1 on white — AAA */
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-bg:     rgba(0, 0, 0, 0.04);
    --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    --hover-glow:   0 0 20px rgba(0, 255, 192, 0.35), 0 0 40px rgba(0, 191, 255, 0.2);
    --navbar-bg:     rgba(255, 255, 255, 0.9);
    --navbar-border: rgba(0, 0, 0, 0.1);
    --dark-primary:  #FFFFFF;
    --dark-secondary:#F5F5F7;
    --text-light:    #1D1D1F;
    --shadow-dark:   0 4px 24px rgba(0, 0, 0, 0.08);
}

/* 2. RESET + BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body {
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    padding-top: 80px;
    transition: background-color 0.35s ease, color 0.35s ease;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* 3. KEYFRAMES
   ------------------------------------------------------------ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
@keyframes pulse-neon {
    0%   { box-shadow: 0 0 5px var(--accent-green), 0 0 10px var(--accent-green) inset; }
    50%  { box-shadow: 0 0 15px var(--accent-green), 0 0 25px var(--accent-green) inset; }
    100% { box-shadow: 0 0 5px var(--accent-green), 0 0 10px var(--accent-green) inset; }
}
@keyframes backgroundShift {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(5%, 5%); }
    100% { transform: translate(0, 0); }
}
@keyframes bounce {
    0%   { transform: scaleY(0.4); }
    100% { transform: scaleY(1); }
}
@keyframes drawLine {
    from { stroke-dashoffset: 1000; }
    to   { stroke-dashoffset: 0; }
}
@keyframes pulse-circle {
    0%   { transform: scale(1);   opacity: 0.7; }
    50%  { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1);   opacity: 0.7; }
}
@keyframes fabPop {
    0%   { transform: scale(0) rotate(-90deg); opacity: 0; }
    80%  { transform: scale(1.12) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* 4. SCROLL REVEAL
   ------------------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* 5. FLOATING THEME TOGGLE (FAB)
   ------------------------------------------------------------ */
.fab-theme {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 9999;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease;
    animation: fabPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}
.fab-theme:hover {
    transform: scale(1.14) rotate(18deg);
    box-shadow: var(--hover-glow);
    border-color: var(--accent-green);
    background: rgba(0, 255, 192, 0.1);
}

/* 6. NAVBAR
   ------------------------------------------------------------ */
.navbar {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: var(--navbar-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--navbar-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 0.35s ease, border-color 0.35s ease;
}
.navbar:hover {
    background: var(--navbar-bg);
    border-bottom-color: rgba(0, 255, 192, 0.4);
}

.nav-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.nav-logo {
    font-size: 22px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}
.nav-logo:hover { color: var(--accent-green); }
.nav-logo span { color: var(--accent-green); font-size: 28px; transition: transform 0.3s ease; }
.nav-logo:hover span { transform: rotate(15deg); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 15px; font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; left: 50%; bottom: -5px;
    width: 0; height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover { color: var(--accent-green); transform: translateY(-3px); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a.active { color: var(--accent-green); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-btn {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 25px; padding: 10px 18px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s ease; color: var(--text-primary);
    white-space: nowrap;
}
.lang-btn:hover {
    background: rgba(0, 255, 192, 0.1);
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(0, 255, 192, 0.3);
    transform: translateY(-2px);
}
.login-btn {
    text-decoration: none; color: var(--text-primary);
    font-size: 15px; font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
}
.login-btn:hover { color: var(--accent-blue); transform: translateY(-2px); }
.contact-btn {
    background: linear-gradient(45deg, var(--accent-green), var(--accent-blue));
    color: #0A0A0C; text-decoration: none;
    padding: 10px 22px; border-radius: 25px;
    font-size: 15px; font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 192, 0.4);
}
.contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 255, 192, 0.6), 0 0 25px var(--accent-blue);
}

/* 7. PAGE HEADER  (inner pages: caracteristicas, industrias, pricing)
   ------------------------------------------------------------ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 40%, rgba(0, 255, 192, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundShift 20s infinite alternate ease-in-out;
}
.page-header h1 {
    font-size: 72px; font-weight: 800; letter-spacing: -0.05em;
    color: var(--text-primary); line-height: 1.1; margin-bottom: 24px;
    position: relative; z-index: 1;
}
.page-header h1 span { color: var(--accent-green); }
.page-header p {
    font-size: 22px; color: var(--text-muted);
    max-width: 700px; margin: 0 auto;
    position: relative; z-index: 1;
}

/* 8. HERO
   ------------------------------------------------------------ */
.hero {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #050506 100%);
    padding: 140px 0 100px;
    overflow: hidden; position: relative;
    border-bottom: 1px solid var(--glass-border);
}
.hero::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 192, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 30% 70%, rgba(0, 191, 255, 0.1) 0%, transparent 40%);
    opacity: 0.5;
    animation: backgroundShift 20s infinite alternate ease-in-out;
}
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-text { text-align: left; }
.hero-tag {
    display: inline-block; background: rgba(0, 255, 192, 0.15);
    color: var(--accent-green); padding: 8px 20px; border-radius: 25px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
    margin-bottom: 28px; text-transform: uppercase;
    border: 1px solid rgba(0, 255, 192, 0.3);
    animation: fadeIn 1s ease-out;
}
.hero h1 {
    font-size: 72px; font-weight: 800; letter-spacing: -0.05em;
    margin-bottom: 25px; color: var(--text-primary); line-height: 1.1;
    animation: fadeIn 1.2s ease-out 0.2s backwards;
}
.hero h1 span { color: var(--accent-green); }
.hero p {
    font-size: 22px; color: var(--text-muted);
    margin-bottom: 45px; font-weight: 400; max-width: 600px;
    animation: fadeIn 1.4s ease-out 0.4s backwards;
}

/* Audio Player Widget */
.media-widget {
    background: var(--glass-bg); border-radius: 28px;
    box-shadow: var(--shadow-card); padding: 24px 35px;
    display: inline-flex; align-items: center; gap: 24px;
    border: 1px solid var(--glass-border);
    width: 100%; max-width: 480px;
    transition: all 0.3s ease;
    animation: fadeIn 1.6s ease-out 0.6s backwards;
}
.media-widget:hover { transform: translateY(-5px); box-shadow: var(--hover-glow); }
.pause-btn-large {
    width: 65px; height: 65px;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-blue));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; color: #0A0A0C; font-size: 22px;
    transition: all 0.3s ease; box-shadow: 0 0 10px rgba(0, 255, 192, 0.5);
    flex-shrink: 0;
}
.pause-btn-large:hover {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(0, 255, 192, 0.8), 0 0 30px rgba(0, 191, 255, 0.6);
}
.sound-bars-large { display: flex; align-items: center; gap: 5px; height: 45px; }
.sound-bars-large .bar {
    width: 5px; background-color: var(--text-muted);
    border-radius: 5px; height: 8px;
    transition: height 0.3s ease, background-color 0.3s ease;
}
.sound-bars-large.is-playing .bar { animation: bounce 1s ease-in-out infinite alternate; background-color: var(--accent-green); }
.sound-bars-large.is-playing .bar:nth-child(1) { height: 18px; animation-delay: 0.1s; }
.sound-bars-large.is-playing .bar:nth-child(2) { height: 35px; animation-delay: 0.3s; }
.sound-bars-large.is-playing .bar:nth-child(3) { height: 25px; animation-delay: 0.0s; }
.sound-bars-large.is-playing .bar:nth-child(4) { height: 40px; animation-delay: 0.4s; }
.sound-bars-large.is-playing .bar:nth-child(5) { height: 20px; animation-delay: 0.2s; }
.widget-text strong { display: block; font-size: 17px; margin-bottom: 4px; color: var(--text-primary); }
.widget-text span   { font-size: 14px; color: var(--text-muted); }

/* iPhone Realistic Mockup */
.iphone-wrapper {
    position: relative; display: flex; justify-content: center; align-items: center;
    animation: fadeIn 1.8s ease-out 0.8s backwards, float 4s infinite ease-in-out 2s;
}
.iphone-bg-circle {
    position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 192, 0.18) 0%, transparent 70%);
    border-radius: 50%; z-index: 0; filter: blur(40px); opacity: 0.8;
}
.iphone-bg-circle.is-pulsing { animation: pulse-circle 2s infinite ease-in-out; }

/* Card iPhone Mockup */
.card {
    width: 248px; height: 468px;
    background: black;
    border-radius: 35px;
    border: 2px solid rgb(40, 40, 40);
    padding: 7px;
    position: relative;
    z-index: 1;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.486), 0 0 60px rgba(0,255,192,0.12);
}
.card-int {
    background-image: linear-gradient(
        to right bottom,
        #020812, #001224, #002244, #003366,
        #004455, #00FFC015, #00b38640, #006650,
        #003322, #001a12, #010810, #020812
    );
    background-size: 200% 200%;
    background-position: 0% 0%;
    height: 100%;
    border-radius: 25px;
    transition: all 0.6s ease-out;
    overflow: hidden;
}
.card:hover .card-int { background-position: 100% 50%; }

.top {
    position: absolute; top: 0; right: 50%;
    transform: translate(50%, 0%);
    width: 35%; height: 18px;
    background-color: rgb(1,1,1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.speaker {
    position: absolute; top: 2px; right: 50%;
    transform: translate(50%, 0%);
    width: 40%; height: 2px;
    border-radius: 2px;
    background-color: rgb(20,20,20);
}
.camera {
    position: absolute; top: 6px; right: 84%;
    transform: translate(50%, 0%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.048);
}
.int {
    position: absolute; width: 3px; height: 3px;
    border-radius: 50%; top: 50%; right: 50%;
    transform: translate(50%, -50%);
    background-color: rgba(0,0,255,0.212);
}
.btn1, .btn2, .btn3 { position: absolute; width: 2px; }
.btn1 {
    height: 45px; top: 30%; right: -4px;
    background-image: linear-gradient(to right, #111, #222, #333, #464646, #595959);
}
.btn2, .btn3 {
    transform: scale(-1); left: -4px; height: 30px;
    background-image: linear-gradient(to right, #111, #222, #333, #464646, #595959);
}
.btn2 { top: 26%; }
.btn3 { top: 36%; }

.hello {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; height: 100%; gap: 14px;
    padding: 30px 16px 24px;
    transition: 0.5s ease-in-out;
}
.hello h4 {
    color: #fff; font-size: 17px; font-weight: 500;
    letter-spacing: 0.2px; line-height: 1.3;
    transition: transform 0.5s ease-in-out;
}
.card:hover .welcome { transform: translateY(-8px); }
.hello .card-hidden { opacity: 0; transition: opacity 0.3s ease-in; }
.card:hover .card-hidden { opacity: 1; }
.hello > p { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.4; }

.iphone-buttons { display: flex; gap: 36px; width: 100%; justify-content: center; }
.iphone-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 22px; cursor: pointer; transition: all 0.3s ease; border: none;
}
.iphone-btn.red  { background: radial-gradient(circle at 35% 35%, #ff6b6b, #FF3B30); box-shadow: 0 8px 20px rgba(255,59,48,0.55); }
.iphone-btn.red:hover  { transform: scale(1.12); box-shadow: 0 12px 28px rgba(255,59,48,0.8); }
.iphone-btn.green { background: radial-gradient(circle at 35% 35%, #4cd964, #34C759); box-shadow: 0 8px 20px rgba(52,199,89,0.55); }
.iphone-btn.green:hover { transform: scale(1.12); box-shadow: 0 12px 28px rgba(52,199,89,0.8); }

/* 9. METRICS (Z-LAYOUT)
   ------------------------------------------------------------ */
.metrics-z-layout { padding: 80px 0; background-color: var(--bg-primary); transition: background-color 0.35s ease; }
.metrics-header { text-align: center; margin-bottom: 120px; }
.metrics-header h2 { font-size: 60px; letter-spacing: -0.04em; color: var(--text-primary); }

.metric-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center; margin-bottom: 140px;
}
.metric-row:nth-child(even) .metric-text  { order: 2; }
.metric-row:nth-child(even) .metric-visual { order: 1; }
.metric-row:last-child { margin-bottom: 0; }

.metric-text h3 {
    font-size: 85px; font-weight: 800; color: var(--accent-blue); line-height: 1;
    margin-bottom: 18px; letter-spacing: -0.05em;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}
.metric-text h4 { font-size: 30px; color: var(--accent-green); margin-bottom: 22px; font-weight: 600; }
.metric-text p  { font-size: 20px; color: var(--text-muted); line-height: 1.7; max-width: 500px; }

.metric-visual {
    background: var(--glass-bg); border-radius: 40px; padding: 40px; height: 350px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-card); border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.metric-visual:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-glow);
    background: rgba(0, 255, 192, 0.05);
}
.metric-visual svg { width: 100%; height: 100%; max-width: 260px; }

/* SVG paths start hidden; animation fires only when metric-revealed is added by JS */
.animated-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
.metric-visual.metric-revealed .animated-path {
    animation: drawLine 4.5s ease-out forwards;
}

/* Donut circle: arc draws in on scroll */
.donut-progress {
    transition: stroke-dashoffset 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.metric-visual.metric-revealed .donut-progress {
    stroke-dashoffset: 0;
}

/* Bars: grow upward from bottom on scroll */
#barBefore, #barAfter {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    transform: scaleY(0);
    transition: transform 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#barAfter { transition-delay: 0.25s; }
.metric-visual.metric-revealed #barBefore,
.metric-visual.metric-revealed #barAfter {
    transform: scaleY(1);
}

/* Light mode: fix SVG track rings that are nearly white-on-white */
.light-mode .metric-visual circle:not(.donut-progress) { stroke: #C7C7CC; }
.light-mode .metric-visual rect[fill="#E8E8ED"] { fill: #C7C7CC; }
.light-mode .metric-visual text[fill="#86868B"] { fill: #6E6E73; }
.light-mode .metric-visual text[fill="#1D1D1F"] { fill: #1D1D1F; }

/* 10. COMPARISON TABLE
   ------------------------------------------------------------ */
.comparison-v2 {
    padding: 70px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.35s ease;
}
.comparison-container { max-width: 1100px; margin: 0 auto; }

/* Section header — replaces all inline font-size/spacing/align overrides */
.section-header { text-align: center; }
.section-header h2 {
    font-size: 48px; letter-spacing: -0.04em; color: var(--text-primary);
}
.section-header p {
    margin-top: 15px; font-size: 20px; color: var(--text-muted);
}
/* Industries section gets a slightly larger heading */
.industries-v3 .section-header h2 { font-size: 52px; }
.industries-v3 .section-header p  { margin-top: 20px; }

.comp-table-v2 {
    width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 60px;
    table-layout: fixed; border-radius: 20px; overflow: hidden;
    background: rgba(0, 0, 0, 0.2); backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}
.light-mode .comp-table-v2 { background: rgba(255, 255, 255, 0.7); }
.light-mode .col-itmaxime { color: #007A5C; text-shadow: none; }

.comp-table-v2 th, .comp-table-v2 td {
    padding: 25px; text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.light-mode .comp-table-v2 th,
.light-mode .comp-table-v2 td { border-bottom-color: rgba(0, 0, 0, 0.07); }

.comp-table-v2 td:first-child { text-align: left; font-weight: 600; color: var(--text-primary); font-size: 17px; width: 35%; }
.comp-table-v2 .col-competencia { width: 30%; color: var(--text-muted); font-size: 15px; }
.col-itmaxime {
    width: 35%; background: rgba(0, 255, 192, 0.08);
    border-left: 2px solid rgba(0, 255, 192, 0.3);
    border-right: 2px solid rgba(0, 255, 192, 0.3);
    font-weight: 700; color: var(--accent-green); font-size: 18px;
    text-shadow: 0 0 5px rgba(0, 255, 192, 0.3);
}
.comp-table-v2 th {
    font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--text-muted); border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.comp-table-v2 th.col-itmaxime {
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    color: #0A0A0C; border-top-left-radius: 20px; border-top-right-radius: 20px;
    border: none; font-size: 19px; padding: 20px 25px;
    box-shadow: 0 5px 20px rgba(0, 255, 192, 0.4);
}
.comp-table-v2 tr:last-child td { border-bottom: none; }
.comp-table-v2 tr:last-child td:first-child { border-bottom-left-radius: 20px; }
.comp-table-v2 tr:last-child td:last-child  { border-bottom-right-radius: 20px; }
.comp-table-v2 tr:hover td { background: rgba(0, 255, 192, 0.03); }
.status-icon {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: transform 0.25s ease, filter 0.25s ease;
}
.status-icon.check {
    color: var(--accent-green);
    filter: drop-shadow(0 0 5px rgba(0, 255, 192, 0.7));
}
.status-icon.cross {
    color: #FF453A;
    filter: drop-shadow(0 0 5px rgba(255, 69, 58, 0.7));
}
.comp-table-v2 tr:hover .status-icon { transform: scale(1.15); }

/* 11. INDUSTRIES GRID
   ------------------------------------------------------------ */
.industries-v3 { padding: 80px 0; background-color: var(--bg-primary); transition: background-color 0.35s ease; }
.industries-v3 .section-header { text-align: center; max-width: 900px; margin: 0 auto 100px; }

.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ind-card {
    position: relative; border-radius: 32px; overflow: hidden;
    display: flex; align-items: flex-end; padding: 35px;
    min-height: 430px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer; border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
    background-size: cover !important;
    background-position: center !important;
}
.ind-card.clinic { background: linear-gradient(rgba(10,10,12,0.5), rgba(10,10,12,0.5)), url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80&w=800') center/cover; }
.ind-card.dental { background: linear-gradient(rgba(10,10,12,0.5), rgba(10,10,12,0.5)), url('https://images.unsplash.com/photo-1629909615184-74f495363b67?auto=format&fit=crop&q=80&w=800') center/cover; }
.ind-card.corp   { background: linear-gradient(rgba(10,10,12,0.5), rgba(10,10,12,0.5)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&q=80&w=800') center/cover; }
.ind-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 65%);
    z-index: 1; transition: background 0.6s;
}
.ind-card:hover::after { background: linear-gradient(to top, rgba(0, 180, 120, 0.85) 0%, rgba(0, 0, 0, 0.15) 100%); }
.ind-content { position: relative; z-index: 2; color: var(--text-primary); transition: transform 0.6s; }
.ind-card:hover .ind-content { transform: translateY(-15px); }
.ind-tag {
    background: var(--glass-bg); backdrop-filter: blur(8px); padding: 8px 15px;
    border-radius: 15px; font-size: 13px; font-weight: 600;
    display: inline-block; margin-bottom: 15px; text-transform: uppercase;
    letter-spacing: 1.2px; border: 1px solid var(--glass-border); color: var(--accent-green);
}
.ind-card h3 { font-size: 36px; margin-bottom: 15px; line-height: 1.2; text-shadow: 0 0 10px rgba(0, 255, 192, 0.4); color: #fff; }
.ind-card p  { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 300px; opacity: 0; height: 0; transition: all 0.6s; margin: 0; }
.ind-card:hover p { opacity: 1; height: auto; margin-top: 12px; color: #fff; }

/* "Ver más" hint badge on industry cards */
.ind-more-btn {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 18px;
    background: rgba(0, 255, 192, 0.15);
    border: 1px solid rgba(0, 255, 192, 0.45);
    color: var(--accent-green);
    padding: 7px 16px; border-radius: 20px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.6px;
    text-transform: uppercase;
    animation: pulse-hint 2.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pulse-hint {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 192, 0); }
    50%       { box-shadow: 0 0 0 7px rgba(0, 255, 192, 0.12); }
}

/* Industry card modal */
.ind-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ind-modal-overlay.open { opacity: 1; visibility: visible; }
.ind-modal-card {
    position: relative;
    width: min(620px, 100%);
    border-radius: 32px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    transform: scale(0.88) translateY(30px);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ind-modal-overlay.open .ind-modal-card { transform: scale(1) translateY(0); }
.ind-modal-bg {
    height: 220px;
    background-size: cover; background-position: center;
    position: relative;
}
.ind-modal-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.ind-modal-body {
    background: var(--bg-secondary);
    padding: 32px 40px 40px;
}
.ind-modal-body .ind-tag { margin-bottom: 10px; }
.ind-modal-body h3 {
    font-size: 28px; font-weight: 800; color: var(--text-primary);
    margin: 0 0 16px; line-height: 1.2;
}
.ind-modal-body p {
    font-size: 17px; color: var(--text-muted); line-height: 1.75;
    margin-bottom: 28px; max-width: 100%; opacity: 1; height: auto;
}
.ind-modal-body .btn-cta { font-size: 16px; padding: 14px 32px; }
.ind-modal-close {
    position: absolute; top: 14px; right: 14px; z-index: 10;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0, 0, 0, 0.5); border: none;
    color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.ind-modal-close:hover { background: rgba(255, 59, 48, 0.75); transform: scale(1.1); }

/* 12. FEATURE BLOCKS  (caracteristicas.html)
   ------------------------------------------------------------ */
.feature-block {
    padding: 100px 0;
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-primary);
    transition: background-color 0.35s ease;
}
.feature-block .container { display: flex; align-items: center; gap: 80px; }
.feature-block.alt-bg { background: var(--bg-secondary); }
.feature-block.alt-bg .container { flex-direction: row-reverse; }

.feature-info { flex: 1; }
.feature-info h2 {
    font-size: 42px; font-weight: 800; letter-spacing: -0.04em;
    color: var(--text-primary); margin-bottom: 24px; line-height: 1.2;
}
.feature-info p { font-size: 20px; color: var(--text-muted); line-height: 1.7; }

.feature-visual {
    flex: 1; position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-card); border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.feature-visual:hover { transform: translateY(-8px); box-shadow: var(--hover-glow); }
.feature-visual img {
    width: 100%; height: 320px; object-fit: cover; object-position: center center; display: block;
    transition: transform 0.6s ease;
}
.feature-visual:hover img { transform: scale(1.04); }
.screenshot-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(8px);
    color: var(--accent-green); font-size: 13px; font-weight: 600;
    padding: 14px 20px; text-transform: uppercase; letter-spacing: 0.8px;
}

.cta-final {
    padding: 100px 0; text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--glass-border);
    transition: background 0.35s ease;
}
.cta-final h2 {
    font-size: 56px; font-weight: 800; letter-spacing: -0.04em;
    color: var(--text-primary); margin-bottom: 24px;
}
.cta-final p { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; }
.btn-green {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-blue));
    color: #0A0A0C; text-decoration: none;
    padding: 18px 42px; border-radius: 50px;
    font-size: 18px; font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 192, 0.4);
}
.btn-green:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 255, 192, 0.6), 0 0 40px var(--accent-blue);
}

/* 13. PRICING CARDS
   ------------------------------------------------------------ */
.pricing-section { padding: 80px 0; background: var(--bg-primary); transition: background-color 0.35s ease; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; padding: 0 24px;
    max-width: 1200px; margin: 0 auto;
}
.pricing-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 28px; padding: 48px 40px;
    display: flex; flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--glass-border); transition: background 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-glow);
    border-color: rgba(0, 255, 192, 0.3);
}
.pricing-card:hover::before { background: linear-gradient(90deg, var(--accent-green), var(--accent-blue)); }

.pricing-card.recommended {
    border-color: rgba(0, 255, 192, 0.4);
    background: rgba(0, 255, 192, 0.06);
    box-shadow: 0 0 40px rgba(0, 255, 192, 0.15);
}
.pricing-card.recommended::before { background: linear-gradient(90deg, var(--accent-green), var(--accent-blue)); }
.pricing-card.recommended::after {
    content: '★ RECOMMENDED';
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-blue));
    color: #0A0A0C; font-size: 10px; font-weight: 800;
    letter-spacing: 1px; padding: 5px 12px; border-radius: 20px;
}
.pricing-card h3 { font-size: 26px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.pricing-card .price {
    font-size: 58px; font-weight: 800; color: var(--accent-green);
    letter-spacing: -0.04em; line-height: 1; margin-bottom: 32px;
    text-shadow: 0 0 20px rgba(0, 255, 192, 0.3);
}
.pricing-card .price span { font-size: 20px; font-weight: 400; color: var(--text-muted); }
.pricing-card ul { list-style: none; margin-bottom: 40px; flex: 1; }
.pricing-card ul li {
    padding: 12px 0; border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted); font-size: 16px;
    display: flex; align-items: center; gap: 12px;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li .fa-check { color: var(--accent-green); font-size: 14px; flex-shrink: 0; }
.btn-pricing {
    display: block; text-align: center; padding: 16px 32px;
    border-radius: 50px; font-size: 16px; font-weight: 700;
    text-decoration: none; border: 2px solid var(--glass-border);
    color: var(--text-primary); transition: all 0.3s ease; margin-top: auto;
}
.btn-pricing:hover {
    border-color: var(--accent-green); color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 255, 192, 0.2); transform: translateY(-2px);
}
.pricing-card.recommended .btn-pricing {
    background: linear-gradient(45deg, var(--accent-green), var(--accent-blue));
    color: #0A0A0C; border: none; box-shadow: 0 8px 25px rgba(0, 255, 192, 0.4);
}
.pricing-card.recommended .btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 255, 192, 0.6);
    color: #0A0A0C;
}

/* 14. FINAL CTA + FOOTER
   ------------------------------------------------------------ */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center; border-top: 1px solid var(--glass-border);
    transition: background 0.35s ease;
}
.final-cta h2 { font-size: 60px; letter-spacing: -0.04em; margin-bottom: 35px; color: var(--text-primary); }
.final-cta p  { font-size: 24px; color: var(--text-muted); max-width: 800px; margin: 0 auto 60px; }
.btn-cta {
    background: linear-gradient(45deg, var(--accent-green), var(--accent-blue));
    color: #0A0A0C; text-decoration: none; padding: 20px 45px; border-radius: 50px;
    font-weight: 700; display: inline-block; font-size: 20px;
    transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(0, 255, 192, 0.5);
}
.btn-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 255, 192, 0.7), 0 0 40px var(--accent-blue);
}

.site-footer {
    background-color: var(--bg-primary); padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border); color: var(--text-muted);
    transition: background-color 0.35s ease;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 24px; margin-bottom: 20px; font-weight: 700; color: var(--text-primary); }
.footer-brand p { font-size: 15px; color: var(--text-muted); max-width: 280px; }
.footer-column h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 28px; color: var(--text-primary); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 14px; }
.footer-column ul li a { text-decoration: none; color: var(--text-muted); font-size: 15px; transition: color 0.3s ease; }
.footer-column ul li a:hover { color: var(--accent-green); }
.footer-phone { font-size: 14px; font-weight: 700; color: var(--accent-green); }
.footer-bottom {
    padding-top: 40px; border-top: 1px solid var(--glass-border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--accent-green); }
.footer-links { display: flex; gap: 20px; }

/* 15. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 992px) {
    .hero-content-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-text { text-align: center; margin: 0 auto; }
    .hero p { margin: 0 auto 40px; }
    .iphone-wrapper { margin-top: 60px; }
    .hero h1 { font-size: 55px; }
    .navbar .nav-links { display: none; }
    .metric-row { grid-template-columns: 1fr; gap: 50px; text-align: center; margin-bottom: 100px; }
    .metric-row:nth-child(even) .metric-text  { order: 1; }
    .metric-row:nth-child(even) .metric-visual { order: 2; }
    .metric-text p { margin: 0 auto; }
    .metric-text h3 { font-size: 70px; }
    .metric-visual { height: 320px; }
    .ind-grid { grid-template-columns: 1fr; }
    .ind-card { min-height: 350px; }
    .ind-card p { opacity: 1; height: auto; }
    .page-header h1 { font-size: 52px; }
    .feature-block .container { flex-direction: column !important; gap: 48px; }
    .feature-block.alt-bg .container { flex-direction: column !important; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .cta-final h2 { font-size: 42px; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 25px; text-align: center; }
    .final-cta h2 { font-size: 45px; }
    .nav-actions { gap: 10px; }
    .lang-btn { padding: 8px 12px; }
    .contact-btn { padding: 8px 15px; font-size: 14px; }
    .login-btn { font-size: 14px; }
    .fab-theme { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 20px; }
}

/* 16. CURSOR GLOW EFFECT
   ------------------------------------------------------------ */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 255, 192, 0.075) 0%,
        rgba(0, 191, 255, 0.035) 35%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    z-index: 9997;
    mix-blend-mode: screen;
    transition: opacity 0.4s ease;
    will-change: transform;
}
.cursor-glow.hidden { opacity: 0; }

/* Hero gradient fix for light mode: green → white instead of white → near-black */
.light-mode .hero {
    background: linear-gradient(180deg, rgba(0, 255, 192, 0.18) 0%, var(--bg-primary) 100%);
}

/* In light mode, slightly reduce intensity so it doesn't bleach */
.light-mode .cursor-glow {
    background: radial-gradient(
        circle,
        rgba(0, 200, 150, 0.06) 0%,
        rgba(0, 150, 200, 0.025) 35%,
        transparent 70%
    );
    mix-blend-mode: multiply;
}

/* 17. SVG CHART CONTRAST FIXES
   All metric SVG text overrides hardcoded fill attributes that
   are invisible (#1D1D1F) or use invalid var() attribute syntax.
   ------------------------------------------------------------ */
.metric-visual svg text          { fill: var(--text-primary); font-family: -apple-system, sans-serif; }
.metric-visual svg #svgAntes     { fill: var(--text-muted); }
.metric-visual svg #svgDespues   { fill: var(--accent-green); }

/* Waveform baseline stroke — invisible in light mode without this */
.light-mode .metric-visual svg path[stroke="#E8E8ED"] { stroke: #C7C7CC; }
.light-mode .metric-visual svg circle[stroke="#E8E8ED"] { stroke: #C7C7CC; }

/* 18. FOOTER CONTACT INFO — removes inline font-size/margin from all pages
   ------------------------------------------------------------ */
.footer-column > p {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 19. BUTTON & ICON MICRO-INTERACTION POLISH
   ------------------------------------------------------------ */

/* Active (click) states — tactile press feedback */
.btn-cta:active     { transform: translateY(-1px) scale(0.98); box-shadow: 0 4px 12px rgba(0, 255, 192, 0.4); }
.btn-green:active   { transform: translateY(-1px) scale(0.98); }
.btn-pricing:active { transform: translateY(0)    scale(0.97); }
.contact-btn:active { transform: translateY(-1px) scale(0.99); }
.lang-btn:active    { transform: translateY(0)    scale(0.97); }
.fab-theme:active   { transform: scale(1.02) rotate(0deg); }
.pause-btn-large:active { transform: scale(0.97); }

/* Focus-visible — keyboard accessibility ring */
:focus-visible {
    outline: 2px solid var(--accent-green);
    outline-offset: 3px;
    border-radius: 4px;
}
.btn-cta:focus-visible,
.btn-green:focus-visible,
.btn-pricing:focus-visible,
.contact-btn:focus-visible {
    outline-offset: 4px;
    border-radius: 50px;
}
.fab-theme:focus-visible { border-radius: 50%; outline-offset: 5px; }

/* Pricing check icons — consistent icon+text alignment in list items */
.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pricing-card ul li .fa-check {
    font-size: 13px;
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(0, 255, 192, 0.12);
    border: 1px solid rgba(0, 255, 192, 0.3);
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}
.pricing-card:hover .fa-check {
    background: rgba(0, 255, 192, 0.22);
    transform: scale(1.1);
}
.light-mode .pricing-card ul li .fa-check {
    background: rgba(0, 180, 120, 0.1);
    border-color: rgba(0, 180, 120, 0.3);
}

/* ── DEMO REQUEST MODAL ─────────────────────────────────────── */
.demo-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.78); backdrop-filter: blur(14px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9000; padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.demo-overlay.open { opacity: 1; visibility: visible; }
.demo-card {
    position: relative; width: min(680px, 100%);
    background: var(--bg-secondary); border: 1px solid var(--glass-border);
    border-radius: 32px; padding: 48px 52px;
    box-shadow: var(--shadow-card);
    transform: scale(0.9) translateY(24px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.demo-overlay.open .demo-card { transform: scale(1) translateY(0); }
.demo-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    color: var(--text-muted); font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.demo-close:hover { background: rgba(255,59,48,0.2); color: #FF3B30; }
.demo-title { font-size: 26px; font-weight: 800; color: var(--text-primary); margin: 0 0 8px; }
.demo-sub   { font-size: 15px; color: var(--text-muted); margin: 0 0 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 12px; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.9px;
}
.form-group input {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 12px; padding: 13px 16px;
    color: var(--text-primary); font-size: 15px; font-family: inherit;
    outline: none; width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder { color: var(--text-muted); opacity: 0.55; }
.form-group input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0,255,192,0.12);
}
.light-mode .form-group input { background: #fff; }
.light-mode .form-group input:focus {
    border-color: #007A5C; box-shadow: 0 0 0 3px rgba(0,122,92,0.1);
}
.demo-submit-btn { width: 100%; margin-top: 24px; justify-content: center; }
.demo-success {
    display: none; flex-direction: column;
    align-items: center; text-align: center; padding: 16px 0;
}
.demo-success-icon {
    font-size: 52px; color: var(--accent-green);
    filter: drop-shadow(0 0 20px var(--accent-green));
    margin-bottom: 20px; line-height: 1;
}
.demo-success h3 { font-size: 26px; font-weight: 800; color: var(--text-primary); margin: 0 0 10px; }
.demo-success p  { font-size: 15px; color: var(--text-muted); margin: 0 0 28px; max-width: 380px; opacity: 1; height: auto; }
.demo-success .btn-cta { min-width: 160px; justify-content: center; }
@media (max-width: 640px) {
    .demo-card { padding: 36px 24px; }
    .form-row  { grid-template-columns: 1fr; }
}

/* Feature visual hover label reveal */
.feature-visual .screenshot-label {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(4px);
    opacity: 0.85;
}
.feature-visual:hover .screenshot-label { opacity: 1; transform: translateY(0); }

/* Comparison table — better row hover contrast */
.comp-table-v2 tbody tr { transition: background 0.2s ease; }
.comp-table-v2 tbody tr:hover td { background: rgba(0, 255, 192, 0.05); }
.light-mode .comp-table-v2 tbody tr:hover td { background: rgba(0, 180, 120, 0.07); }

/* Nav link active indicator refinement */
.nav-links a.active::after { width: 100%; left: 0; opacity: 1; }

/* Founding price cell — accent highlight without inline style */
.col-itmaxime.price-highlight { color: var(--accent-green) !important; font-weight: 800; }

/* Footer link hover micro-lift */
.footer-column ul li a { display: inline-block; }
.footer-column ul li a:hover { transform: translateX(4px); }

/* CTA button inner glow on hover (additive) */
.btn-cta:hover::after, .btn-green:hover::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
}
.btn-cta, .btn-green { position: relative; overflow: hidden; }

/* 20. LIGHT MODE — COMPARISON TABLE ACCENTS */
.light-mode .col-itmaxime.price-highlight { color: #007A5C !important; }
.light-mode .status-icon.check { color: #007A5C; filter: none; }

/* PRICING CARD TEXT */
.light-mode .pricing-card .price { color: #007A5C; text-shadow: none; }
.light-mode .pricing-card ul li .fa-check { color: #007A5C; }

/* Industry tags — todas las tarjetas y modales */
.light-mode .ind-tag {
    color: #00A36B;
    background: rgba(0, 163, 107, 0.12);
    border-color: rgba(0, 163, 107, 0.35);
    font-weight: 800;
}

/* 21. PAIN POINTS
   ------------------------------------------------------------ */
.pain-points {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.35s ease;
}
.pain-points .section-header { margin-bottom: 60px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pain-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 40px 32px; text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pain-card:hover { transform: translateY(-8px); box-shadow: var(--hover-glow); }
.pain-icon { font-size: 36px; color: #FF453A; margin-bottom: 24px; display: block; }
.pain-card h3 { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; line-height: 1.3; }
.pain-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; opacity: 1; height: auto; max-width: 100%; }

/* 22. HOW IT WORKS
   ------------------------------------------------------------ */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.35s ease;
}
.how-it-works .section-header { margin-bottom: 60px; }
.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 30px; position: relative;
}
.steps-grid::before {
    content: ''; position: absolute;
    top: 35px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    opacity: 0.25; z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
    font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--accent-green);
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 50%; width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-card);
}
.step-item h3 { font-size: 19px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.step-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.light-mode .step-number { color: #007A5C; border-color: rgba(0,120,90,0.25); background: rgba(0,120,90,0.06); }

/* 23. FAQ
   ------------------------------------------------------------ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    transition: background-color 0.35s ease;
}
.faq-section .section-header { margin-bottom: 50px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-item:first-child { border-top: 1px solid var(--glass-border); }
.faq-item summary {
    padding: 22px 8px; font-size: 17px; font-weight: 600;
    color: var(--text-primary); cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: color 0.25s ease; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 26px; font-weight: 300;
    color: var(--accent-green); flex-shrink: 0;
    transition: transform 0.3s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-green); }
.faq-item > p {
    padding: 0 8px 22px; font-size: 16px; color: var(--text-muted); line-height: 1.8;
    opacity: 1; height: auto; max-width: 100%; margin: 0;
}
.light-mode .faq-item summary:hover { color: #007A5C; }
.light-mode .faq-item summary::after { color: #007A5C; }

@media (max-width: 992px) {
    .pain-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
}
