/* ===== VARIABLES ===== */
:root {
    --bg-deep: #0d141a;
    --bg-dark: #141b22;
    --bg-card: #141b22;
    --bg-glass: #141b22;
    --primary: #0292b7;
    --primary-dim: rgba(2, 146, 183, 0.12);
    --secondary: #8c756a;
    --accent: #b8c0cc;
    --text-primary: #ffffff;
    --text-secondary: #b8c0cc;
    --text-muted: #8c756a;
    --border: rgba(2, 146, 183, 0.08);
    --border-hover: rgba(2, 146, 183, 0.25);
    --success: #22c55e;
    --warning: #f59e0b;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Neumorphic shadows */
    --shadow-light: rgba(255, 255, 255, 0.04);
    --shadow-dark: rgba(0, 0, 0, 0.35);
    --neu-raised: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    --neu-raised-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --neu-raised-lg: 8px 8px 20px var(--shadow-dark), -8px -8px 20px var(--shadow-light);
    --neu-inset: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    --neu-inset-sm: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    --neu-inset-lg: inset 4px 4px 10px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light);
    --neu-pressed: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(ellipse at 75% 25%, rgba(2, 146, 183, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 25% 75%, rgba(140, 117, 106, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(184, 192, 204, 0.03) 0%, transparent 60%),
        var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 146, 183, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: var(--bg-deep);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar.scrolled {
    background: var(--bg-deep);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--neu-raised-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-dark);
    box-shadow: var(--neu-inset-sm);
}

.nav-cta {
    background: var(--bg-dark);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--neu-raised-sm);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    box-shadow: var(--neu-pressed);
    color: var(--text-primary) !important;
    transform: translateY(1px);
}

.menu-toggle {
    display: none;
    background: var(--bg-dark);
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius);
    box-shadow: var(--neu-raised-sm);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13, 20, 26, 0.35) 0%,
        rgba(13, 20, 26, 0.55) 50%,
        rgba(13, 20, 26, 0.85) 100%
    );
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(2, 146, 183, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(140, 117, 106, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.25; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.15; }
    75% { transform: translateY(-40px) translateX(5px); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 80vh;
    max-width: 800px;
    margin: 0 auto;
}

.hero-portrait-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-portrait-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 146, 183, 0.15) 0%, rgba(140, 117, 106, 0.1) 50%, transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-portrait-img {
    position: relative;
    z-index: 2;
    width: 260px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--neu-raised-lg);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

@media (max-width: 1024px) {
    .hero-layout {
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-portrait-wrap {
        order: -1;
    }
    .hero-portrait-img {
        width: 200px;
    }
    .hero-portrait-glow {
        width: 220px;
        height: 220px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-portrait-img {
        width: 160px;
    }
    .hero-portrait-glow {
        width: 180px;
        height: 180px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    box-shadow: var(--neu-inset-sm);
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.highlight {
    background: linear-gradient(135deg, #0292b7 0%, #4db8d4 35%, #8c756a 70%, #b8c0cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out 0.9s both;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.6s ease-out 1.1s both;
}

/* ===== STATS ROW ===== */
.stats-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.6s ease-out 1.3s both;
    flex-wrap: wrap;
}

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

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.03em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: fadeInUp 0.6s ease-out 1.5s both;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid var(--text-muted);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
    box-shadow: var(--neu-inset-sm);
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 2.5s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(2, 146, 183, 0.4);
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--primary);
    box-shadow: var(--neu-raised);
}

.btn-primary:hover {
    box-shadow: var(--neu-pressed);
    color: var(--text-primary);
    transform: translateY(1px);
}

.btn-glow {
    box-shadow: var(--neu-raised), 0 0 20px rgba(2, 146, 183, 0.1);
}

.btn-glow:hover {
    box-shadow: var(--neu-pressed), 0 0 30px rgba(2, 146, 183, 0.15);
}

.btn-outline {
    background: var(--bg-dark);
    color: var(--text-secondary);
    box-shadow: var(--neu-raised);
}

.btn-outline:hover {
    box-shadow: var(--neu-pressed);
    color: var(--text-primary);
    transform: translateY(1px);
}

.btn-whatsapp {
    background: var(--bg-dark);
    color: #25D366;
    box-shadow: var(--neu-raised);
}

.btn-whatsapp:hover {
    box-shadow: var(--neu-pressed);
    color: #4ade80;
    transform: translateY(1px);
}

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn-large { padding: 14px 36px; font-size: 1rem; }

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section-gradient {
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(26, 20, 16, 0.6) 50%, var(--bg-deep) 100%);
    position: relative;
}

.section-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(2, 146, 183, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(140, 117, 106, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-dark);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: var(--neu-inset-sm);
}

.tag-glow {
    box-shadow: var(--neu-inset-sm), 0 0 12px rgba(2, 146, 183, 0.08);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.gradient-text {
    background: linear-gradient(135deg, #0292b7 0%, #4db8d4 30%, #8c756a 60%, #b8c0cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: 64px;
}

/* ===== GLASS CARDS -> NEUMORPHIC CARDS ===== */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.glass-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--neu-raised);
}

.glass-card:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(2px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 146, 183, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.card-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: var(--neu-inset-sm);
    font-size: 1.25rem;
}

.glass-card:hover .card-icon-wrap {
    box-shadow: var(--neu-raised-sm);
    color: var(--text-primary);
}

.glass-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== SERVICES SECTION WITH BACKGROUND ===== */
.services-section {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(180deg,
            rgba(13, 20, 26, 0.55) 0%,
            rgba(13, 20, 26, 0.40) 50%,
            rgba(13, 20, 26, 0.55) 100%
        ),
        url('../assets/images/servicios-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: rgba(13, 20, 26, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(13, 20, 26, 0.65);
    border-color: rgba(2, 146, 183, 0.25);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: rgba(2, 146, 183, 0.2);
    background: rgba(13, 20, 26, 0.55);
}

.service-card.featured:hover {
    border-color: rgba(2, 146, 183, 0.4);
    background: rgba(13, 20, 26, 0.75);
}

.service-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.service-link:hover {
    color: var(--primary);
    gap: 10px;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

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

/* ===== SPLIT LAYOUT ===== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.split-content .lead-text {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.split-content .body-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list li .check {
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ===== VISUAL CARD ===== */
.visual-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--neu-raised-lg);
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    transition: var(--transition);
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: var(--neu-pressed);
}

.visual-header {
    display: flex;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-dark);
    box-shadow: var(--neu-inset-sm);
}

.v-dot { width: 10px; height: 10px; border-radius: 50%; box-shadow: var(--neu-raised-sm); }
.v-dot.red { background: #EF4444; }
.v-dot.yellow { background: #F59E0B; }
.v-dot.green { background: #22C55E; }

.visual-body {
    display: flex;
    height: 320px;
}

.v-sidebar {
    width: 64px;
    background: var(--bg-dark);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--neu-inset-sm);
}

.v-item {
    height: 36px;
    background: var(--bg-card);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--neu-raised-sm);
}

.v-item.active {
    background: var(--primary-dim);
    box-shadow: var(--neu-inset-sm);
}

.v-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v-line {
    height: 14px;
    background: var(--bg-dark);
    border-radius: 4px;
    width: 70%;
    box-shadow: var(--neu-inset-sm);
}

.v-line.short { width: 50%; }

.v-card {
    height: 80px;
    background: var(--bg-dark);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--neu-raised-sm);
}

.visual-card:hover .v-card {
    box-shadow: var(--neu-inset-sm);
}

/* ===== APPS GRID ===== */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.app-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    box-shadow: var(--neu-raised);
}

.app-card:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(2px);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--neu-inset-sm);
    transition: var(--transition);
}

.app-card:hover .app-icon {
    box-shadow: var(--neu-raised-sm);
    color: var(--text-primary);
}

/* App card with image */
.app-card-img {
    padding: 0 0 32px;
    overflow: hidden;
}

.app-img-wrap {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-bottom: 24px;
    position: relative;
    box-shadow: var(--neu-inset-sm);
}

.app-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.app-card-img:hover .app-img {
    transform: scale(1.03);
}

.app-card-img h3,
.app-card-img .app-tag,
.app-card-img p,
.app-card-img .status {
    padding: 0 24px;
}

.app-card-img p {
    padding: 0 24px;
    margin-bottom: 16px;
}

.app-card-img .status {
    margin-left: 24px;
}

.app-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.app-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    display: block;
}

.app-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius);
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: var(--neu-inset-sm);
}

.status.active { background: rgba(34, 197, 94, 0.08); color: var(--success); }
.status.dev { background: rgba(245, 158, 11, 0.08); color: var(--warning); }

/* ===== ABOUT LAYOUT ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--neu-raised-lg);
}

.image-frame img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.image-glow {
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, rgba(2, 146, 183, 0.2), rgba(140, 117, 106, 0.15));
    opacity: 0.3;
    z-index: -1;
    filter: blur(16px);
    transition: var(--transition);
}

.about-image:hover .image-glow {
    opacity: 0.5;
    filter: blur(24px);
}

.image-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    box-shadow: var(--neu-raised-sm);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.social-bar {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--neu-raised-sm);
}

.social-pill:hover {
    color: var(--primary);
    box-shadow: var(--neu-pressed);
    transform: translateY(1px);
}

/* ===== PROCESS TIMELINE ===== */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 48px;
    align-items: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    padding-top: 20px;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0.2;
    box-shadow: 0 0 8px rgba(2, 146, 183, 0.1);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.process-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: var(--bg-card);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--neu-raised-sm);
    color: var(--primary);
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-step:hover .process-icon {
    box-shadow: var(--neu-pressed);
    transform: scale(0.95);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.process-deliver {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    box-shadow: var(--neu-inset-sm);
    letter-spacing: 0.03em;
}

.process-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-photo img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--neu-raised-lg);
}

/* ===== RESULTS ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.result-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--neu-raised);
}

.result-card:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(2px);
}

.result-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--neu-raised);
}

.testimonial-card:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(2px);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: -20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card cite {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* ===== RESOURCES ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--neu-raised);
}

.resource-card:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(2px);
}

.resource-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--neu-inset-sm);
    color: var(--primary);
}

.resource-icon svg {
    width: 100%;
    height: 100%;
}

.resource-card:hover .resource-icon {
    box-shadow: var(--neu-raised-sm);
}

.resource-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.resource-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== FORMS ===== */
.form { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }

.input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: none;
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--neu-inset);
    outline: none;
}

.input:focus {
    box-shadow: var(--neu-inset-lg), 0 0 12px rgba(2, 146, 183, 0.08);
}

.input::placeholder { color: var(--text-muted); }
.textarea { min-height: 120px; resize: vertical; }
select.input { cursor: pointer; }

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
    box-shadow: var(--neu-inset-sm);
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.08);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #EF4444;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--neu-raised);
}

.contact-card:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(2px);
}

.contact-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    box-shadow: var(--neu-inset-sm);
}

.whatsapp-card .contact-icon-wrap {
    background: rgba(37, 211, 102, 0.08);
    color: #25D366;
}

.form-card .contact-icon-wrap {
    background: var(--primary-dim);
    color: var(--primary);
}

.calendar-card .contact-icon-wrap {
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ===== COMMUNITY ===== */
.community-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.community-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.community-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--neu-raised-sm);
}

.community-benefits li:hover {
    box-shadow: var(--neu-pressed);
    transform: translateX(2px);
}

.benefit-icon {
    font-size: 1.2rem;
}

.community-photo img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--neu-raised-lg);
}

.community-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--neu-raised);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deep);
    padding: 80px 0 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: var(--neu-raised-sm);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.legal-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NEXO 360 SHOWCASE ===== */
.nexo360-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.showcase-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--neu-raised-lg);
    transition: var(--transition);
}

.showcase-frame:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(2px) scale(1.01);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.showcase-glow {
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, rgba(2, 146, 183, 0.2), rgba(140, 117, 106, 0.15));
    z-index: -1;
    filter: blur(16px);
    opacity: 0.4;
    transition: var(--transition);
}

.showcase-frame:hover .showcase-glow {
    opacity: 0.6;
    filter: blur(24px);
}

.showcase-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.showcase-stat {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 12px 20px;
    text-align: center;
    transition: var(--transition);
    min-width: 100px;
    box-shadow: var(--neu-raised-sm);
}

.showcase-stat:hover {
    box-shadow: var(--neu-pressed);
    transform: translateY(1px);
}

.ss-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.ss-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
    letter-spacing: 0.02em;
}

/* ===== NEON BUTTON EFFECT (adapted to neumorphism) ===== */
.btn-neon,
.btn-primary,
.btn-outline,
.btn-whatsapp {
    position: relative;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.neon-line-top {
    top: 0;
}

.neon-line-bottom {
    bottom: 0;
}

.btn-primary:hover .neon-line,
.btn-outline:hover .neon-line,
.btn-whatsapp:hover .neon-line,
.btn-neon:hover .neon-line {
    opacity: 0.5;
}

/* ===== SPOTLIGHT CARD EFFECT ===== */
.spotlight-card,
.glass-card,
.service-card,
.app-card,
.resource-card,
.contact-card,
.testimonial-card,
.result-card {
    position: relative;
    overflow: hidden;
}

.spotlight-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    background: radial-gradient(
        300px 300px at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
        hsla(var(--spotlight-hue, 190), 80%, 60%, 0.1),
        transparent 100%
    );
}

.spotlight-active .spotlight-layer {
    opacity: 1;
}

/* ===== CONTACT SECTION WITH BG ===== */
#registro {
    position: relative;
}

.registro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.registro-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

.registro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 20, 26, 0.90) 0%, rgba(13, 20, 26, 0.82) 50%, rgba(13, 20, 26, 0.90) 100%);
    z-index: 1;
}

.registro-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.blue-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 146, 183, 0.8) 0%, rgba(2, 146, 183, 0.2) 50%, transparent 70%);
    filter: blur(1px);
    animation: floatUp linear infinite;
    pointer-events: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(100%) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10%) scale(1.2);
        opacity: 0;
    }
}

#registro .container {
    position: relative;
    z-index: 3;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-raised);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--neu-raised-lg);
}

.faq-item.active {
    box-shadow: var(--neu-pressed);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-trigger svg {
    flex-shrink: 0;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    display: inline-block;
}

.faq-item.active .faq-trigger svg {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    opacity: 1;
}

.faq-content-inner {
    padding: 0 28px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-item.active .faq-content-inner {
    padding-bottom: 24px;
}

.faq-content-inner a {
    color: var(--primary);
    text-decoration: none;
}

.faq-content-inner a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blue-particle {
        filter: none !important;
        opacity: 0.4 !important;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-trigger {
        padding: 20px 22px;
        font-size: 0.95rem;
    }
    .faq-content-inner {
        padding: 0 22px;
    }
    .faq-item.active .faq-content-inner {
        padding-bottom: 20px;
    }
}

/* ===== WORK CARDS ===== */
.work-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
}

.work-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.work-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 2px solid var(--primary);
    opacity: 0.85;
}

.work-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cards-3 { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .apps-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .community-layout { grid-template-columns: 1fr; gap: 40px; }
    .community-photo { display: none; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .process-layout { grid-template-columns: 1fr; }
    .process-photo { order: -1; margin-bottom: 32px; }
    .process-photo img { height: 280px; object-position: center top; }
    .process-timeline { grid-template-columns: 1fr; gap: 48px; }
    .process-line { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .footer-links-group { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 2.2rem; }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-divider { display: none; }
    .cards-3, .services-grid, .apps-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .footer-links-group { grid-template-columns: 1fr; }
    .section { padding: 80px 0; }
    .section-title { font-size: 1.75rem; }
    .btn { padding: 10px 24px; font-size: 0.88rem; }
    .hero-cta { flex-direction: column; }
    .cta-group { flex-direction: column; }
    .cursor-glow { display: none; }
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.8rem; }
    .section { padding: 60px 0; }
    .glass-card, .service-card, .app-card, .resource-card, .contact-card, .testimonial-card, .result-card {
        padding: 24px 20px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
