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

:root {
    --bg: #EFEFED;
    --blue: #1400FF;
    --black: #111111;
    --white: #FFFFFF;
    --gray: #888888;
    --radius: 16px;
    --font: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: var(--bg);
    background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    font-family: var(--font);
    color: var(--black);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 36px 100px;
    cursor: none;
}

a { text-decoration: none; color: inherit; }

/* ── CUSTOM CURSOR ── */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s var(--ease), background 0.2s;
    transform: translate(-50%, -50%);
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(17,17,17,0.35);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, transform 0.08s linear;
    transform: translate(-50%, -50%);
}
.cursor.active { transform: translate(-50%, -50%) scale(1.5); background: var(--blue); }
.cursor-ring.active { width: 56px; height: 56px; border-color: rgba(20, 0, 255, 0.3); }
.cursor.hidden, .cursor-ring.hidden { opacity: 0; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes tabIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}
@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes gradientShift {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(10px, -10px); }
    100% { transform: translate(0, 0); }
}
@keyframes btnShimmer {
    0%   { background-position: -200px center; }
    100% { background-position: 200px center; }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── ENTRANCE ── */
.top-nav     { animation: fadeUp 0.5s var(--ease) 0.05s both; }
.hero        { animation: fadeUp 0.5s var(--ease) 0.15s both; }
.see-more    { animation: fadeUp 0.45s var(--ease) 0.25s both; }
.tabs-wrapper{ animation: fadeUp 0.45s var(--ease) 0.32s both; }
.tab-content.active { animation: tabIn 0.3s var(--ease) both; }

/* ── NAV ── */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: padding 0.3s var(--ease);
}
.top-nav.scrolled {
    padding: 14px 0;
    margin-bottom: 24px;
    border-color: rgba(0,0,0,0.15);
}
.nav-logo {
    background: var(--black);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.25s var(--ease), background 0.25s;
}
.nav-logo:hover { transform: scale(1.1) rotate(-5deg); background: var(--blue); box-shadow: 0 0 20px rgba(20,0,255,0.35); }
.nav-title { font-size: 0.95rem; font-weight: 500; color: var(--gray); }
.nav-cta {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--black);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--black); color: var(--white); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 10px;
    min-width: 140px;
}
.hero-arrow {
    font-size: 4rem;
    line-height: 1;
    transition: transform 0.3s var(--ease);
    display: inline-block;
}
.hero-arrow:hover { transform: translate(4px, 4px); }
.hero-tags { display: flex; flex-direction: column; gap: 7px; }
.htag {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    white-space: nowrap;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
    animation: fadeUp 0.4s var(--ease) both;
}
.htag:hover { color: var(--black); transform: translateX(4px); }
.htag:nth-child(1) { animation-delay: 0.4s; }
.htag:nth-child(2) { animation-delay: 0.5s; }
.htag:nth-child(3) { animation-delay: 0.6s; }
.htag:nth-child(4) { animation-delay: 0.7s; }
.htag:nth-child(5) { animation-delay: 0.8s; }
.hero-right { flex: 1; }
.hero-blue-block {
    background: var(--blue);
    border-radius: var(--radius);
    padding: 36px 32px 30px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
}
.hero-blue-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"), linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-blue-block:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(20,0,255,0.3); }
.hero-big-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5.5rem, 16vw, 13rem);
    color: var(--white);
    line-height: 0.85;
    letter-spacing: -3px;
    margin-left: -4px;
    transition: text-shadow 0.3s;
}
.hero-blue-block:hover .hero-big-text { text-shadow: 4px 4px 0 rgba(0,0,0,0.15); transition: text-shadow 0.3s; }
.hero-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.hero-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    opacity: 0.7;
}
.hero-cta-inline {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.2s;
}
.hero-cta-inline:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }
.hero-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ── SEE MORE ── */
.see-more {
    text-align: right;
    font-size: 0.85rem;
    color: var(--gray);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bounce { display: inline-block; animation: bounce 1.8s ease-in-out infinite; }

/* ── TABS ── */
.tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 34px;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
}
.avatar {
    background: var(--black);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.25s var(--ease);
}
.avatar:hover { transform: scale(1.1); }
.tabs { display: flex; gap: 4px; flex: 1; position: relative; }
.tab-indicator {
    position: absolute;
    height: 100%;
    background: var(--black);
    border-radius: 20px;
    z-index: 0;
    transition: left 0.35s var(--ease), width 0.35s var(--ease);
    top: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.tab {
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    cursor: none;
    padding: 9px 18px;
    border-radius: 20px;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.tab:hover { color: var(--black); }
.tab.active { color: var(--white); }
.tab-icons { display: flex; gap: 12px; flex-shrink: 0; }
.icon-link {
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.icon-link:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: scale(1.1); }

/* ── TAB CONTENT ── */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── CARDS ── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 18px;
}
.about-photo-card {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    overflow: hidden;
    position: relative;
}
.about-photo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(20,0,255,0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: gradientShift 8s ease-in-out infinite;
}
.about-photo-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.photo-greeting { font-size: 0.95rem; opacity: 0.5; margin-bottom: 6px; }
.photo-name { font-size: 1.8rem; font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.photo-desc { font-size: 0.8rem; opacity: 0.55; line-height: 1.6; }
.about-info { display: flex; flex-direction: column; gap: 0; }
.intro-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.card-row { display: flex; gap: 12px; align-items: flex-start; }
.card-row p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; flex: 1; }
.card-icon {
    color: var(--gray);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.3s var(--ease);
}
.card:hover .card-icon { color: var(--blue); transform: scale(1.15) rotate(-5deg); }
.contact-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.contact-links { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: none;
    flex: 1;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease);
}
.contact-btn:hover::before { transform: translateX(0); }
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.contact-btn.dark { background: var(--black); color: var(--white); }
.contact-btn.blue { background: var(--blue); color: var(--white); }
.contact-btn.light { background: #f0f0f0; color: var(--black); }
.contact-btn.light::before { background: rgba(0,0,0,0.05); }
.btn-icon { flex-shrink: 0; }
.btn-label { font-size: 0.78rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── SERVICES ── */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resume-col {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.resume-col:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.col-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.timeline-item { margin-bottom: 16px; }
.timeline-item strong { display: block; font-size: 0.85rem; margin: 5px 0 3px; }
.timeline-item p { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }
.tbar { width: 2px; height: 18px; background: rgba(0,0,0,0.1); margin: 10px 0 0 7px; }
.badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    transition: transform 0.2s;
}
.badge:hover { transform: scale(1.08); }
.badge.blue   { background: #dde8ff; color: var(--blue); }
.badge.green  { background: #d4f5e2; color: #1a7a3f; }
.badge.purple { background: #ede0ff; color: #6b00cc; }
.expertise-list { list-style: none; font-size: 0.82rem; font-weight: 500; line-height: 2.1; }
.expertise-list li {
    padding-left: 14px;
    position: relative;
    transition: transform 0.2s, color 0.2s;
}
.expertise-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray);
    font-size: 0.7rem;
}
.expertise-list li:hover { transform: translateX(4px); color: var(--blue); }
.tech-list { font-size: 0.78rem; color: var(--gray); margin: 10px 0 12px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
    background: var(--bg);
    font-size: 0.68rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.tag:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* ── GARANTÍAS ── */
.garantias-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-top: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.garantias-section:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.garantias-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.garantias-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    transition: transform 0.2s;
}
.garantias-list li:hover { transform: translateX(4px); }
.garantias-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d4f5e2;
    color: #1a7a3f;
    font-weight: 700;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    overflow: hidden;
    position: relative;
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); }
.stat-card:hover::after { transform: scaleX(1); }
.stat-card.dark { background: var(--black); color: var(--white); }
.stat-card.dark::after { background: rgba(255,255,255,0.3); }
.stat-card.blue { background: var(--blue); color: var(--white); }
.stat-card.blue::after { background: rgba(255,255,255,0.4); }
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 6.5vw, 6.5rem);
    line-height: 1;
    margin-bottom: 10px;
    transition: transform 0.25s var(--ease);
}
.stat-card:hover .stat-number { transform: scale(1.05); }
.stat-card p { font-size: 0.78rem; line-height: 1.5; opacity: 0.85; }

.stat-highlight-card {
    grid-column: 1 / -1;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.stat-highlight-card:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.stat-highlight-card p { font-size: 1.05rem; line-height: 1.55; font-weight: 500; flex: 1; min-width: 220px; }

.cta-card {
    grid-column: 1 / -1;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 52px 40px;
}
.cta-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.cta-card p { font-size: 0.85rem; opacity: 0.55; margin-bottom: 24px; }

/* ── BUTTONS ── */
.cta-btn {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
    cursor: none;
}
.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,0,255,0.35); }
.cta-btn:hover::before { transform: translateX(0); }

/* ── PORTFOLIO ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portfolio-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.portfolio-placeholder {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}
.portfolio-placeholder.olive { background: linear-gradient(135deg, #7c8c45 0%, #a4b85c 100%); }
.portfolio-placeholder.teal  { background: linear-gradient(135deg, #2a6e7e 0%, #3a9aae 100%); }
.portfolio-placeholder.coral { background: linear-gradient(135deg, #c4512d 0%, #e07050 100%); }
.portfolio-placeholder-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-placeholder-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: opacity 0.2s;
}
.portfolio-card:hover .portfolio-placeholder-inner span { opacity: 0; transition: opacity 0.2s; }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 0, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-overlay-btn {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 10px 22px;
    border-radius: 24px;
    transition: background 0.2s, border-color 0.2s;
}
.portfolio-overlay-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.portfolio-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.portfolio-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--bg);
    color: var(--gray);
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}
.portfolio-card:hover .portfolio-tag { background: #dde8ff; color: var(--blue); }
.portfolio-name { font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.portfolio-desc { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }
.portfolio-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: auto;
    padding-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.portfolio-link:hover { gap: 8px; }

/* ── FLOATING WA ── */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: #ffffff;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
    animation: pulse-wa 2.5s ease-in-out infinite;
    cursor: none;
}
.floating-wa:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    animation: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    body { padding: 0 20px 80px; cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .hero-left { min-width: 100px; }
    .contact-links { flex-direction: column; }
    .contact-btn { min-width: unset; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .stat-highlight-card { flex-direction: column; align-items: flex-start; }
    /* Fix 1: tabs scroll horizontally on mobile */
    .tabs { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .tabs::-webkit-scrollbar { display: none; }
    .tab { font-size: 0.78rem; padding: 7px 12px; }
    /* Fix 4: nav-title hidden and nav-cta smaller on tablet */
    .nav-title { display: none; }
    .nav-cta { font-size: 0.75rem; padding: 7px 13px; }
    /* Fix 6: restore auto cursor on touch devices */
    .cta-btn, .contact-btn, .tab, .pricing-option, .addon-item,
    .floating-wa, .faq-question { cursor: auto; }
}
@media (max-width: 520px) {
    body { padding: 0 14px 80px; }
    .three-col { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .hero-big-text { letter-spacing: -1px; }
    .nav-title { display: none; }
    /* Fix 2: hero-left min-width and hero-tags font on small screens */
    .hero-left { min-width: 70px; }
    .htag { font-size: 0.68rem; }
    /* Fix 7: hero blue block height reduced on mobile */
    .hero-blue-block { min-height: 260px; }
    /* Fix 9: general section spacing tightened on mobile */
    .top-nav { padding: 16px 0 12px; margin-bottom: 24px; }
    .hero { gap: 14px; }
    .tabs-wrapper { padding: 12px 0; margin-bottom: 20px; gap: 10px; }
    .card { padding: 16px; }
    .about-photo-card { padding: 22px 18px; min-height: 220px; }
    .resume-col { padding: 16px; }
    .stats-strip { padding: 14px 16px; }
    .pricing-calculator { padding: 20px 16px; }
    .pricing-consult { padding: 18px 16px; }
    /* Fix 5: portfolio overlay — hide overlay, always show link on mobile */
    .portfolio-overlay { display: none; }
    .portfolio-link { display: inline-flex; }
}
/* Fix 8: floating WA button on very small screens */
@media (max-width: 400px) {
    .floating-wa { padding: 10px 14px; font-size: 0.78rem; right: 16px; bottom: 16px; }
}

/* ── PAGE LOADER ── */
@keyframes loaderShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.page-loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.5s var(--ease);
}
.loader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 18vw, 10rem);
    color: var(--white);
    background: linear-gradient(90deg, #fff 0%, #1400FF 40%, #fff 60%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loaderShimmer 1.6s linear infinite;
    letter-spacing: 0.02em;
}
.loader-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--blue);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ── MARQUEE BAND ── */
.marquee-band {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 14px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
    will-change: transform; /* Fix 10: improve marquee performance on mobile */
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-content {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding-right: 2rem;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-item { text-align: center; }
.stat-item .stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--blue);
    display: block;
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 0.72rem;
    color: var(--gray);
}

/* ── PRICING CALCULATOR ── */
.pricing-calc {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pricing-option {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    position: relative;
}
.pricing-option:hover {
    border-color: rgba(20, 0, 255, 0.3);
}
.pricing-option.selected {
    border-color: var(--blue);
    background: #f0f3ff;
}
.pricing-option h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-option .price-base {
    font-size: 0.75rem;
    color: var(--gray);
}
.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 16px;
}
.addon-item {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    position: relative;
}
.addon-item:hover {
    border-color: rgba(20, 0, 255, 0.3);
}
.addon-item.selected {
    border-color: var(--blue);
    background: #f0f3ff;
}
.addon-item h4 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.addon-item .price-base {
    font-size: 0.72rem;
    color: var(--gray);
}
.price-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--blue);
    text-align: center;
    margin: 24px 0 8px;
    line-height: 1;
}
.price-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray);
}

/* ── FAQ ACCORDION ── */
.faq-list { list-style: none; }
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
    list-style: none;
    user-select: none;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
    transition: transform 0.3s var(--ease);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    padding: 0;
}
.faq-answer p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    padding-bottom: 16px;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ── TESTIMONIALS ── */
.testimonials-section { margin-top: 16px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}
.testimonial-quote {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--black);
    margin-bottom: 16px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}
.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 2rem;
    font-style: normal;
    color: var(--blue);
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-author {
    font-size: 0.78rem;
    font-weight: 600;
}
.testimonial-role {
    font-size: 0.72rem;
    color: var(--gray);
}

/* ── STATS STRIP — stat-big variant (used in our markup) ── */
.stat-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--blue);
    display: block;
    line-height: 1;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    flex-shrink: 0;
    align-self: center;
}

/* ── PRICING CALCULATOR — full layout ── */
.pricing-calculator {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 16px;
}
.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 28px;
}
.pricing-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 28px;
    align-items: start;
}
.pricing-group { margin-bottom: 24px; }
.pricing-group:last-child { margin-bottom: 0; }
.pricing-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
    margin-bottom: 12px;
}
/* override grid layout for our pricing-options */
.pricing-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    grid-template-columns: unset !important;
}
.pricing-option {
    background: var(--bg);
    border: 2px solid transparent !important;
    border-radius: 12px;
    padding: 14px 18px;
    text-align: left;
    cursor: none !important;
    transition: border-color 0.2s var(--ease), background 0.2s, transform 0.2s;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 3px 12px;
    font-family: var(--font);
    width: 100%;
}
.pricing-option:hover { border-color: rgba(20,0,255,0.3) !important; transform: translateX(3px); }
.pricing-option.active { background: #dde8ff; border-color: var(--blue) !important; }
.option-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
    grid-row: 1;
    grid-column: 1;
}
.option-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    grid-row: 1;
    grid-column: 2;
    white-space: nowrap;
}
.option-desc {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.4;
    grid-row: 2;
    grid-column: 1 / -1;
}
.addons-list { display: flex; flex-direction: column; gap: 8px; }
.addon-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: var(--bg) !important;
    border: 2px solid transparent !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    cursor: none !important;
    transition: border-color 0.2s, background 0.2s;
    grid-template-columns: unset !important;
}
.addon-item:hover { border-color: rgba(20,0,255,0.25) !important; }
.addon-item.checked { background: #dde8ff !important; border-color: var(--blue) !important; }
.addon-check {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
    cursor: none;
    flex-shrink: 0;
}
.addon-info { display: flex; justify-content: space-between; align-items: center; flex: 1; gap: 8px; }
.addon-name { font-size: 0.83rem; font-weight: 500; }
.addon-price { font-size: 0.78rem; color: var(--blue); font-weight: 600; white-space: nowrap; }

.pricing-summary {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
}
.pricing-summary-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.5;
}
.pricing-total {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--white);
}
@keyframes pop-price {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.08); color: #6690ff; }
    100% { transform: scale(1); }
}
.pricing-total.pop { animation: pop-price 0.35s var(--ease) both; }
.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
}
.breakdown-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    opacity: 0.7;
}
.breakdown-addon { opacity: 0.55; }
.pricing-cta {
    width: 100%;
    text-align: center;
    margin-top: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, #3a20ff 50%, var(--blue) 100%);
    background-size: 200px 100%;
    animation: btnShimmer 2.5s linear infinite;
}

.pricing-consult {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pricing-consult:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.pricing-consult p { font-size: 0.9rem; line-height: 1.55; color: var(--gray); flex: 1; min-width: 200px; }
.pricing-consult p strong { color: var(--black); }

/* ── FAQ — full styles ── */
.faq-header { margin-bottom: 24px; }
.faq-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.faq-subtitle { font-size: 0.85rem; color: var(--gray); }
.faq-list { display: flex !important; flex-direction: column !important; gap: 8px !important; list-style: none !important; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border-bottom: none !important;
    transition: box-shadow 0.25s var(--ease);
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black) !important;
    text-align: left;
    padding: 20px 24px !important;
    cursor: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
    list-style: none;
    user-select: none;
}
.faq-question:hover { color: var(--black) !important; background: rgba(0,0,0,0.02); }
.faq-item.open .faq-question { background: rgba(20,0,255,0.04); }
.faq-icon {
    font-size: 1.4rem !important;
    font-weight: 300;
    color: var(--blue);
    flex-shrink: 0;
    line-height: 1;
    margin-left: 0 !important;
    transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(0deg) !important; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    padding: 0 !important;
}
.faq-item.open .faq-answer { max-height: 300px !important; }
.faq-answer p {
    padding: 0 24px 20px !important;
    font-size: 0.85rem !important;
    color: var(--gray);
    line-height: 1.7;
}

/* ── TESTIMONIALS — full styles ── */
.testimonials-section { margin-top: 24px; }
.testimonials-section .col-title { margin-bottom: 16px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--blue);
    opacity: 0.1;
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--black);
    font-style: italic;
    padding-top: 8px;
}
.testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}
.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
}
.testimonial-author span {
    font-size: 0.72rem;
    color: var(--gray);
}

/* ── RESPONSIVE — new sections ── */
@media (max-width: 768px) {
    .marquee-band { margin: 0 -20px; width: calc(100% + 40px); }
    /* Fix 3: stats-strip scrollable on mobile */
    .stats-strip { gap: 10px; padding: 16px 20px; overflow-x: auto; }
    .stat-divider { display: none; }
    .pricing-body { grid-template-columns: 1fr; }
    .pricing-summary { position: static; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-consult { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
    .marquee-band { margin: 0 -14px; width: calc(100% + 28px); }
    .stats-strip { flex-wrap: wrap; justify-content: center; overflow-x: visible; }
    .stat-item { min-width: 40%; }
}

/* ── TESTIMONIAL FOOTER ── */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── STATS STRIP DIVIDER ── */
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    align-self: center;
}

/* ── PRICING EXTRA ── */
.pricing-calculator { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.pricing-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.pricing-subtitle { font-size: 0.82rem; color: var(--gray); margin-bottom: 28px; }
.pricing-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.pricing-group { margin-bottom: 24px; }
.pricing-group-title { font-size: 0.82rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pricing-options { display: flex; flex-direction: column; gap: 10px; }
.pricing-option {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    text-align: left;
    background: none;
    font-family: var(--font);
    width: 100%;
}
.pricing-option:hover { border-color: rgba(20,0,255,0.3); transform: translateX(3px); }
.pricing-option.active { border-color: var(--blue); background: #f0f3ff; }
.option-name { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.option-price { display: block; font-size: 0.78rem; color: var(--blue); font-weight: 600; margin-bottom: 4px; }
.option-desc { display: block; font-size: 0.72rem; color: var(--gray); line-height: 1.4; }
.addons-list { display: flex; flex-direction: column; gap: 8px; }
.addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    cursor: none;
    transition: border-color 0.2s, background 0.2s;
}
.addon-item:hover { border-color: rgba(20,0,255,0.25); background: #f8f8ff; }
.addon-check { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
.addon-info { flex: 1; }
.addon-name { display: block; font-size: 0.8rem; font-weight: 500; }
.addon-price { display: block; font-size: 0.72rem; color: var(--blue); font-weight: 600; }
.pricing-summary {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: sticky;
    top: 80px;
    text-align: center;
}
.pricing-summary-label { font-size: 0.75rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.pricing-total { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--white); line-height: 1; margin-bottom: 16px; transition: all 0.3s var(--ease); }
.pricing-breakdown { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; margin-bottom: 20px; }
.breakdown-line { display: flex; justify-content: space-between; font-size: 0.75rem; opacity: 0.7; padding: 3px 0; }
.pricing-cta {
    display: block;
    margin-top: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, #3a20ff 50%, var(--blue) 100%);
    background-size: 200px 100%;
    animation: btnShimmer 2.5s linear infinite;
}
.pricing-consult {
    margin-top: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.pricing-consult p { font-size: 0.85rem; line-height: 1.5; flex: 1; min-width: 200px; }

/* ── FAQ HEADER ── */
.faq-header { margin-bottom: 24px; }
.faq-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.faq-subtitle { font-size: 0.82rem; color: var(--gray); }

/* ── RESPONSIVE NEW SECTIONS ── */
@media (max-width: 768px) {
    .pricing-body { grid-template-columns: 1fr; }
    .pricing-summary { position: static; }
    .stats-strip { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .stat-divider { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-consult { flex-direction: column; }
}
@media (max-width: 520px) {
    .pricing-options { flex-direction: column; }
}

/* ── CÓMO FUNCIONA ── */
.section-how {
    max-width: 100%;
    margin: 32px 0;
    padding: 40px 0;
}
.section-how h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue) 0%, rgba(20, 0, 255, 0.15) 100%);
    pointer-events: none;
}
.how-step {
    text-align: left;
    padding: 0 24px;
    position: relative;
}
.how-step:first-child { padding-left: 0; }
.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}
.step-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.55;
}

/* ── MOCKUP BANNER ── */
.mockup-banner {
    background: var(--blue);
    padding: 28px 36px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.mockup-banner p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex: 1;
    min-width: 240px;
    line-height: 1.35;
}
.mockup-banner-btn {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 24px;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    cursor: none;
}
.mockup-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* ── RESPONSIVE — how + banner ── */
@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .how-steps::before { display: none; }
    .how-step { padding: 0; }
    .mockup-banner { flex-direction: column; align-items: flex-start; }
    .mockup-banner-btn { cursor: auto; }
}
@media (max-width: 520px) {
    .mockup-banner { padding: 22px 20px; }
    .mockup-banner p { font-size: 1rem; }
}

/* ── SVG ARROW DRAW ANIMATION ── */
.hero-arrow svg path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawPath 0.8s var(--ease) 0.6s forwards;
}
.hero-arrow svg path:nth-child(2) { animation-delay: 0.9s; }
@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

/* ── HERO LETTER SPLIT ── */
.hero-letter {
    display: inline-block;
    animation: fadeUp 0.5s var(--ease) both;
}

/* ── TAB SLIDE DIRECTION ── */
@keyframes slideInRight { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInLeft  { from { opacity:0; transform: translateX(-20px); } to { opacity:1; transform:translateX(0); } }
.slide-in-right { animation: slideInRight 0.3s var(--ease) both; }
.slide-in-left  { animation: slideInLeft  0.3s var(--ease) both; }

/* ── ANIMATION EFFECTS ── */

/* 1. Hero canvas particles */
.hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

/* Make hero-blue-block children sit above the canvas */
.hero-blue-block > *:not(.hero-canvas) {
    position: relative;
    z-index: 1;
}

/* 3. Animated gradient border on mockup-banner */
.mockup-banner {
    background: linear-gradient(135deg, #1400FF, #0a00cc, #2500ff, #1400FF);
    background-size: 300% 300%;
    animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 4. Hover glow on stat cards */
.stat-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    left: var(--mouse-x, -100px);
    top: var(--mouse-y, -100px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}
.stat-card:hover::before { opacity: 1; }

/* 2. Parallax reset transition on hero elements */
.hero-big-text,
.hero-year,
.hero-tags {
    will-change: transform;
}
.hero-big-text.parallax-reset,
.hero-year.parallax-reset,
.hero-tags.parallax-reset {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
